Skip to content

Commits on Source 5

libgpars-groovy-java (1.2.1-10) unstable; urgency=medium
* Team upload.
* No longer build the Netty remote classes and removed the dependency
on libnetty-3.9-java (Closes: #905860)
* Standards-Version updated to 4.2.1
* Updated the Homepage field
-- Emmanuel Bourg <ebourg@apache.org> Sun, 14 Oct 2018 09:58:19 +0200
libgpars-groovy-java (1.2.1-9) unstable; urgency=medium
* Team upload.
......
......@@ -2,28 +2,28 @@ Source: libgpars-groovy-java
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Section: java
Priority: optional
Build-Depends: debhelper (>= 11),
Build-Depends:
debhelper (>= 11),
default-jdk,
default-jdk-doc,
maven-repo-helper,
gradle-debian-helper,
groovy (>= 2.0.8~),
libnetty-3.9-java,
libjsr166y-java (>= 1.7.0~),
libjcsp-java,
gradle-debian-helper,
libjsr166y-java (>= 1.7.0~),
libmultiverse-core-java,
libosgi-core-java
Standards-Version: 4.1.4
libosgi-core-java,
maven-repo-helper
Standards-Version: 4.2.1
Vcs-Git: https://salsa.debian.org/java-team/libgpars-groovy-java.git
Vcs-Browser: https://salsa.debian.org/java-team/libgpars-groovy-java
Homepage: http://gpars.github.io
Homepage: http://gpars.org
Package: libgpars-groovy-java
Architecture: all
Depends: groovy,
libnetty-3.9-java,
libjsr166y-java,
Depends:
groovy,
libjcsp-java,
libjsr166y-java,
libmultiverse-core-java,
${misc:Depends}
Suggests: libgpars-groovy-java-doc (= ${binary:Version})
......
......@@ -6,6 +6,7 @@ junit junit * * * *
net.sourceforge.cobertura cobertura * * * *
org.apache.maven.wagon wagon-http-lightweight * * * *
org.grails grails-docs * * * *
org.jboss.netty netty * * * *
org.spockframework spock-core * * * *
org.xhtmlrenderer core-renderer * * * *
org.yaml snakeyaml * * * *
......
Description: Excludes the groovyx.gpars.remote.netty classes which rely on an
unsupported version of Netty (these classes are never used in Debian anyway).
The next upstream release will support a more recent version of Netty.
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/build.gradle
+++ b/build.gradle
@@ -48,6 +48,15 @@
sourceCompatibility = 6
targetCompatibility = 6
+sourceSets {
+ main {
+ groovy {
+ srcDir 'src/main/groovy'
+ exclude '**/remote/netty/**'
+ }
+ }
+}
+
def theVendor = 'gpars.org'
def theTitle = 'GPars: Groovy Parallel Systems'
......@@ -3,3 +3,4 @@ add_compatibility_with_gradle_2.5.diff
reproducible-documentation.patch
groovy-classpath.patch
transition_Gradle_3.1.patch
exclude-netty-remote.patch