Andrius Merkys pushed to branch master at Debian Java Maintainers / vectorgraphics2d
Commits: dc20548c by Andrius Merkys at 2019-09-06T12:52:47Z Wrapping and sorting debian/control. - - - - - 5a168321 by Andrius Merkys at 2019-09-06T12:53:02Z Bumping Standards-Version (no changes). - - - - - fa64b254 by Andrius Merkys at 2019-09-09T05:19:51Z Preserving version in built jar name. - - - - - de9ce9f1 by Andrius Merkys at 2019-09-09T05:20:50Z Preparing for upload. - - - - - 4 changed files: - debian/changelog - debian/control - debian/libvectorgraphics2d-java.poms - debian/patches/package-version.patch Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,11 @@ +vectorgraphics2d (0.13-2) unstable; urgency=medium + + * Wrapping and sorting debian/control. + * Bumping Standards-Version (no changes). + * Preserving version in built jar name. + + -- Andrius Merkys <[email protected]> Mon, 09 Sep 2019 01:20:26 -0400 + vectorgraphics2d (0.13-1) unstable; urgency=medium * Initial release (Closes: #929628) ===================================== debian/control ===================================== @@ -2,19 +2,22 @@ Source: vectorgraphics2d Section: java Priority: optional Maintainer: Debian Java Maintainers <[email protected]> -Uploaders: Andrius Merkys <[email protected]> -Build-Depends: debhelper (>= 12), +Uploaders: + Andrius Merkys <[email protected]>, +Build-Depends: + debhelper (>= 12), gradle-debian-helper, - maven-repo-helper, libproguard-java, -Standards-Version: 4.3.0 + maven-repo-helper, +Standards-Version: 4.4.0 Homepage: https://github.com/eseifert/vectorgraphics2d Vcs-Browser: https://salsa.debian.org/java-team/vectorgraphics2d Vcs-Git: https://salsa.debian.org/java-team/vectorgraphics2d.git Package: libvectorgraphics2d-java Architecture: all -Depends: ${misc:Depends} +Depends: + ${misc:Depends}, Description: library for adding vector export to Java Graphics2D VectorGraphics2D provides implementations of Java's Graphics2D interface and exports the graphics in various vector file formats. Currently, there is ===================================== debian/libvectorgraphics2d-java.poms ===================================== @@ -25,4 +25,4 @@ # --site-xml=<location>: Optional, the location for site.xml if it needs to be installed. # Empty by default. [mh_install] # -build/debian/VectorGraphics2D.pom --artifact=build/libs/VectorGraphics2D-debian.jar --java-lib +build/debian/VectorGraphics2D.pom --artifact=build/libs/VectorGraphics2D*.jar --java-lib ===================================== debian/patches/package-version.patch ===================================== @@ -3,12 +3,14 @@ Description: using 'debian' for package version; otherwise GIT tag name is taken for version string. --- a/build.gradle +++ b/build.gradle -@@ -3,7 +3,7 @@ - targetCompatibility = 1.7 - - group = 'de.erichseifert.vectorgraphics2d' --version = getVersionString() -+version = 'debian' - description = 'A library for adding vector export to Java(R) Graphics2D.' - - ext { +@@ -100,8 +100,8 @@ + def getVersionString() { + def out = new ByteArrayOutputStream() + exec { +- commandLine('git', 'describe', '--tags', '--always') ++ commandLine('dpkg-parsechangelog', '-S', 'Version') + standardOutput = out + } +- return out.toString().trim() ++ return out.toString().trim().split('-')[0] + } View it on GitLab: https://salsa.debian.org/java-team/vectorgraphics2d/compare/615e7f81f915531d76d26bb578c5b687d10b3132...de9ce9f1dfa3ba62b45d3d976784cce0eeb6a2d7 -- View it on GitLab: https://salsa.debian.org/java-team/vectorgraphics2d/compare/615e7f81f915531d76d26bb578c5b687d10b3132...de9ce9f1dfa3ba62b45d3d976784cce0eeb6a2d7 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ pkg-java-commits mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

