[Git][java-team/aether-ant-tasks][master] 9 commits: DefaultPlexusCipher does not throw a PlexusException anymore
Pierre Gruet (@pgt)
gitlab at salsa.debian.org
Fri Jun 3 19:27:06 BST 2022
Pierre Gruet pushed to branch master at Debian Java Maintainers / aether-ant-tasks
Commits:
69d95517 by Pierre Gruet at 2022-06-03T18:01:46+02:00
DefaultPlexusCipher does not throw a PlexusException anymore
- - - - -
fbf8daef by Pierre Gruet at 2022-06-03T18:03:08+02:00
Depending on debhelper-compat 13
- - - - -
ebf116ca by Pierre Gruet at 2022-06-03T18:05:21+02:00
Raising Standards version to 4.6.1 (Rules-Requires-Root: no)
- - - - -
d404d8c5 by Pierre Gruet at 2022-06-03T18:08:32+02:00
Updating changelog
- - - - -
d18ba4b4 by Pierre Gruet at 2022-06-03T18:08:57+02:00
Wrap long lines in changelog entries: 1.0.1-6.
Changes-By: lintian-brush
Fixes: lintian: debian-changelog-line-too-long
See-also: https://lintian.debian.org/tags/debian-changelog-line-too-long.html
- - - - -
ff1ad854 by Pierre Gruet at 2022-06-03T18:08:57+02:00
Update watch file format version to 4.
Changes-By: lintian-brush
Fixes: lintian: older-debian-watch-file-standard
See-also: https://lintian.debian.org/tags/older-debian-watch-file-standard.html
- - - - -
eb7a357d by Pierre Gruet at 2022-06-03T18:08:59+02:00
Use secure URI in Homepage field.
Changes-By: lintian-brush
Fixes: lintian: homepage-field-uses-insecure-uri
See-also: https://lintian.debian.org/tags/homepage-field-uses-insecure-uri.html
- - - - -
0b559f28 by Pierre Gruet at 2022-06-03T18:11:23+02:00
Set upstream metadata fields: Bug-Database, 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-repository
See-also: https://lintian.debian.org/tags/upstream-metadata-missing-repository.html
- - - - -
a4ce925e by Pierre Gruet at 2022-06-03T20:26:48+02:00
Upload to unstable
- - - - -
7 changed files:
- debian/changelog
- − debian/compat
- debian/control
- + debian/patches/DefaultPlexusCipher_no_except.patch
- debian/patches/series
- + debian/upstream/metadata
- debian/watch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,16 @@
+aether-ant-tasks (1.0.1-6) unstable; urgency=medium
+
+ * Team upload
+ * DefaultPlexusCipher does not throw a PlexusException anymore
+ (Closes: #1011765)
+ * Raising Standards version to 4.6.1 (Rules-Requires-Root: no)
+ * Depending on debhelper-compat 13
+ * Update watch file format version to 4.
+ * Use secure URI in Homepage field.
+ * Set upstream metadata fields: Bug-Database, Repository, Repository-Browse.
+
+ -- Pierre Gruet <pgt at debian.org> Fri, 03 Jun 2022 19:35:14 +0200
+
aether-ant-tasks (1.0.1-5) unstable; urgency=medium
* Team upload.
=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-11
=====================================
debian/control
=====================================
@@ -4,7 +4,7 @@ Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg at apache.org>
Build-Depends:
- debhelper (>= 11~),
+ debhelper-compat (= 13),
default-jdk,
javahelper,
libmaven-resolver-java,
@@ -17,10 +17,11 @@ Build-Depends:
libsisu-plexus-java (>= 0.1.1),
libslf4j-java,
maven-debian-helper (>= 2.2)
-Standards-Version: 4.4.0
+Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/java-team/aether-ant-tasks
Vcs-Git: https://salsa.debian.org/java-team/aether-ant-tasks.git
-Homepage: http://www.eclipse.org/aether/
+Homepage: https://www.eclipse.org/aether/
+Rules-Requires-Root: no
Package: libaether-ant-tasks-java
Architecture: all
=====================================
debian/patches/DefaultPlexusCipher_no_except.patch
=====================================
@@ -0,0 +1,33 @@
+Description: starting from version 2.0 of plexus-cipher, the constructor of
+ DefaultPlexusCipher does not throw any exception.
+Author: Pierre Gruet <pgt at debian.org>
+Bug-Debian: https://bugs.debian.org/1011765
+Forwarded: no
+Last-Update: 2022-06-03
+
+--- a/src/main/java/org/eclipse/aether/internal/ant/AntSecDispatcher.java
++++ b/src/main/java/org/eclipse/aether/internal/ant/AntSecDispatcher.java
+@@ -11,7 +11,6 @@
+ package org.eclipse.aether.internal.ant;
+
+ import org.sonatype.plexus.components.cipher.DefaultPlexusCipher;
+-import org.sonatype.plexus.components.cipher.PlexusCipherException;
+ import org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher;
+
+ /**
+@@ -23,14 +22,7 @@
+ public AntSecDispatcher()
+ {
+ _configurationFile = "~/.m2/settings-security.xml";
+- try
+- {
+- _cipher = new DefaultPlexusCipher();
+- }
+- catch ( PlexusCipherException e )
+- {
+- e.printStackTrace();
+- }
++ _cipher = new DefaultPlexusCipher();
+ }
+
+ }
=====================================
debian/patches/series
=====================================
@@ -1 +1,2 @@
01-maven-compatibility.patch
+DefaultPlexusCipher_no_except.patch
=====================================
debian/upstream/metadata
=====================================
@@ -0,0 +1,4 @@
+---
+Bug-Database: https://bugs.eclipse.org/bugs/buglist.cgi?query_format=specific&bug_status=__open__&product=Aether
+Repository: git://git.eclipse.org/gitroot/aether/aether-ant.git
+Repository-Browse: http://git.eclipse.org/c/aether/aether-ant.git/
=====================================
debian/watch
=====================================
@@ -1,3 +1,2 @@
-version=3
-opts=mode=git,repack,compression=xz \
-https://github.com/eclipse/aether-ant refs/tags/aether-ant-tasks-([\d\.]+)\.v.*
+version=4
+opts=mode=git,repack,compression=xz https://github.com/eclipse/aether-ant refs/tags/aether-ant-tasks-([\d\.]+)\.v.*
View it on GitLab: https://salsa.debian.org/java-team/aether-ant-tasks/-/compare/4c9a97f952abac375466cd3903e2c680b6f5d864...a4ce925eb36c43aebf8b468acf0454ad5b12e8f1
--
View it on GitLab: https://salsa.debian.org/java-team/aether-ant-tasks/-/compare/4c9a97f952abac375466cd3903e2c680b6f5d864...a4ce925eb36c43aebf8b468acf0454ad5b12e8f1
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20220603/a6e267c9/attachment.htm>
More information about the pkg-java-commits
mailing list