Andrius Merkys pushed to branch master at Debian Java Maintainers / vectorgraphics2d
Commits: 79b689a2 by Andrius Merkys at 2021-11-10T00:40:03-05:00 Fixing debian/watch to watch GitHub tags. - - - - - 9dc3abdb by Andrius Merkys at 2021-11-10T00:41:34-05:00 Marking all patches as not needing forwarding. - - - - - 42885300 by Andrius Merkys at 2021-11-10T00:45:45-05:00 Bumping debhelper-compat (no changes). - - - - - b5d3f746 by Andrius Merkys at 2021-11-10T00:46:31-05:00 Tests depend on junit4. - - - - - 4d6371a7 by Andrius Merkys at 2021-11-10T00:51:34-05:00 Softening a dependency on junit4 via patch. - - - - - 6e73d7a0 by Andrius Merkys at 2022-03-21T05:16:03-04:00 Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse. Changes-By: lintian-brush Fixes: lintian: upstream-metadata-file-is-missing See-also: https://lintian.debian.org/tags/upstream-metadata-file-is-missing.html Fixes: lintian: upstream-metadata-missing-bug-tracking See-also: https://lintian.debian.org/tags/upstream-metadata-missing-bug-tracking.html Fixes: lintian: upstream-metadata-missing-repository See-also: https://lintian.debian.org/tags/upstream-metadata-missing-repository.html - - - - - 80044420 by Andrius Merkys at 2022-03-21T05:16:03-04:00 Update standards version to 4.6.0, no changes needed. Changes-By: lintian-brush Fixes: lintian: out-of-date-standards-version See-also: https://lintian.debian.org/tags/out-of-date-standards-version.html - - - - - d8217271 by Andrius Merkys at 2022-03-21T05:16:38-04:00 Bumping copyright years. - - - - - fc119245 by Andrius Merkys at 2022-03-21T05:32:38-04:00 Tests cannot be run due to unpackaged dependencies. - - - - - 919c5e62 by Andrius Merkys at 2022-03-21T05:35:51-04:00 Update changelog for 0.13-3 release - - - - - 13 changed files: - debian/changelog - − debian/compat - debian/control - debian/copyright - debian/patches/add-mavenLocal.patch - + debian/patches/junit4.patch - debian/patches/package-version.patch - debian/patches/proguard.patch - debian/patches/remove-gradle-plugins.patch - debian/patches/series - debian/rules - + debian/upstream/metadata - debian/watch Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,15 @@ +vectorgraphics2d (0.13-3) unstable; urgency=medium + + * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, + Repository-Browse. + * Update standards version to 4.6.0, no changes needed. + * Bump debhelper-compat (no changes). + * Mark all patches as not needing forwarding. + * Fix debian/watch to watch GitHub tags. + * Bump copyright years. + + -- Andrius Merkys <[email protected]> Mon, 21 Mar 2022 05:35:00 -0400 + vectorgraphics2d (0.13-2) unstable; urgency=medium * Wrapping and sorting debian/control. ===================================== debian/compat deleted ===================================== @@ -1 +0,0 @@ -12 ===================================== debian/control ===================================== @@ -5,11 +5,11 @@ Maintainer: Debian Java Maintainers <[email protected] Uploaders: Andrius Merkys <[email protected]>, Build-Depends: - debhelper (>= 12), + debhelper-compat (= 13), gradle-debian-helper, libproguard-java, maven-repo-helper, -Standards-Version: 4.4.0 +Standards-Version: 4.6.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 ===================================== debian/copyright ===================================== @@ -9,7 +9,7 @@ License: LGPL-3+ /usr/share/common-licenses/LGPL-3 Files: debian/* -Copyright: 2019, Andrius Merkys <[email protected]> +Copyright: 2019-2022, Andrius Merkys <[email protected]> License: public-domain No copyright is claimed. This code is in the public domain; do with it what you wish. ===================================== debian/patches/add-mavenLocal.patch ===================================== @@ -1,5 +1,6 @@ Author: Andrius Merkys <[email protected]> Description: using local maven repo to load artifacts for plugins. +Forwarded: not-needed --- a/settings.gradle +++ b/settings.gradle @@ -1 +1,9 @@ ===================================== debian/patches/junit4.patch ===================================== @@ -0,0 +1,14 @@ +Author: Andrius Merkys <[email protected]> +Description: Softening versioned dependency on junit4. +Forwarded: not-needed +--- a/build.gradle ++++ b/build.gradle +@@ -33,7 +33,7 @@ + } + + dependencies { +- testCompile 'junit:junit:4.12' ++ testCompile 'junit:junit:4.x' + testCompile 'org.hamcrest:hamcrest-library:1.3' + testCompile 'org.ghost4j:ghost4j:1.0.1' + testCompile 'org.apache.xmlgraphics:batik-transcoder:1.9' ===================================== debian/patches/package-version.patch ===================================== @@ -1,5 +1,6 @@ Author: Andrius Merkys <[email protected]> Description: using 'debian' for package version; otherwise GIT tag name is taken +Forwarded: not-needed for version string. --- a/build.gradle +++ b/build.gradle ===================================== debian/patches/proguard.patch ===================================== @@ -1,5 +1,6 @@ Author: Andrius Merkys <[email protected]> Description: removing hard-coded proguard version. +Forwarded: not-needed --- a/build.gradle +++ b/build.gradle @@ -48,7 +48,7 @@ ===================================== debian/patches/remove-gradle-plugins.patch ===================================== @@ -1,5 +1,6 @@ Author: Andrius Merkys <[email protected]> Description: removing Gradle plugins that make little sense for Debian package. +Forwarded: not-needed --- a/build.gradle +++ b/build.gradle @@ -49,33 +49,9 @@ ===================================== debian/patches/series ===================================== @@ -1,4 +1,5 @@ proguard.patch +junit4.patch add-mavenLocal.patch remove-gradle-plugins.patch package-version.patch ===================================== debian/rules ===================================== @@ -2,3 +2,6 @@ %: dh $@ --with maven-repo-helper + +# Tests cannot be executed due to unpackaged dependencies +override_dh_auto_test: ===================================== debian/upstream/metadata ===================================== @@ -0,0 +1,5 @@ +--- +Bug-Database: https://github.com/eseifert/vectorgraphics2d/issues +Bug-Submit: https://github.com/eseifert/vectorgraphics2d/issues/new +Repository: https://github.com/eseifert/vectorgraphics2d.git +Repository-Browse: https://github.com/eseifert/vectorgraphics2d ===================================== debian/watch ===================================== @@ -1,4 +1,4 @@ version=4 opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%vectorgraphics2d-$1.tar.gz%" \ - https://github.com/eseifert/vectorgraphics2d/releases \ + https://github.com/eseifert/vectorgraphics2d/tags \ (?:.*?/)?v?(\d[\d.]*)\.tar\.gz View it on GitLab: https://salsa.debian.org/java-team/vectorgraphics2d/-/compare/de9ce9f1dfa3ba62b45d3d976784cce0eeb6a2d7...919c5e62e7a0c642ef418d76305c374de032c1fa -- View it on GitLab: https://salsa.debian.org/java-team/vectorgraphics2d/-/compare/de9ce9f1dfa3ba62b45d3d976784cce0eeb6a2d7...919c5e62e7a0c642ef418d76305c374de032c1fa 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

