[Git][java-team/jarjar-maven-plugin][master] 5 commits: Standards-Version updated to 4.7.0
Emmanuel Bourg (@ebourg)
gitlab at salsa.debian.org
Mon Apr 8 10:06:23 BST 2024
Emmanuel Bourg pushed to branch master at Debian Java Maintainers / jarjar-maven-plugin
Commits:
d0aa3d91 by Emmanuel Bourg at 2024-04-07T22:46:14+02:00
Standards-Version updated to 4.7.0
- - - - -
040584ca by Emmanuel Bourg at 2024-04-07T22:46:25+02:00
Switch to debhelper level 13
- - - - -
a33d3acc by Emmanuel Bourg at 2024-04-07T22:48:45+02:00
Depend on libasm-java (>= 7.0)
- - - - -
493c4176 by Emmanuel Bourg at 2024-04-07T22:50:52+02:00
Updated the Homepage field
- - - - -
d38191ae by Emmanuel Bourg at 2024-04-07T22:52:50+02:00
Upload to unstable
- - - - -
4 changed files:
- debian/changelog
- − debian/compat
- debian/control
- debian/patches/03-asm-compatibility.patch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,12 @@
+jarjar-maven-plugin (1.9-9) unstable; urgency=medium
+
+ * Depend on libasm-java (>= 7.0)
+ * Standards-Version updated to 4.7.0
+ * Switch to debhelper level 13
+ * Updated the Homepage field
+
+ -- Emmanuel Bourg <ebourg at apache.org> Sun, 07 Apr 2024 22:52:41 +0200
+
jarjar-maven-plugin (1.9-8) unstable; urgency=medium
* Team upload.
=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-11
=====================================
debian/control
=====================================
@@ -5,20 +5,20 @@ Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.or
Uploaders: Emmanuel Bourg <ebourg at apache.org>
Build-Depends:
ant,
- debhelper (>= 11),
+ debhelper-compat (= 13),
default-jdk,
junit4,
- libasm-java (>= 6.0),
+ libasm-java (>= 7.0),
libmaven-common-artifact-filters-java,
libmaven-plugin-tools-java,
libmaven3-core-java,
libplexus-archiver-java,
libplexus-utils2-java,
maven-debian-helper (>= 2.0)
-Standards-Version: 4.3.0
+Standards-Version: 4.7.0
Vcs-Git: https://salsa.debian.org/java-team/jarjar-maven-plugin.git
Vcs-Browser: https://salsa.debian.org/java-team/jarjar-maven-plugin
-Homepage: http://sonatype.github.com/jarjar-maven-plugin/
+Homepage: https://sonatype.github.io/jarjar-maven-plugin/
Package: libjarjar-maven-plugin-java
Architecture: all
=====================================
debian/patches/03-asm-compatibility.patch
=====================================
@@ -46,26 +46,26 @@ Forwarded: no
public EmptyClassVisitor() {
- super(Opcodes.ASM4);
-+ super(Opcodes.ASM6);
++ super(Opcodes.ASM7);
}
@Override
public MethodVisitor visitMethod(int access, String name, String desc,
String signature, String[] exceptions) {
- return new MethodVisitor(Opcodes.ASM4) {};
-+ return new MethodVisitor(Opcodes.ASM6) {};
++ return new MethodVisitor(Opcodes.ASM7) {};
}
@Override
public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
- return new AnnotationVisitor(Opcodes.ASM4) {};
-+ return new AnnotationVisitor(Opcodes.ASM6) {};
++ return new AnnotationVisitor(Opcodes.ASM7) {};
}
@Override
public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) {
- return new FieldVisitor(Opcodes.ASM4) {};
-+ return new FieldVisitor(Opcodes.ASM6) {};
++ return new FieldVisitor(Opcodes.ASM7) {};
}
}
@@ -76,7 +76,7 @@ Forwarded: no
public StringReader() {
- super(Opcodes.ASM4);
-+ super(Opcodes.ASM6);
++ super(Opcodes.ASM7);
}
abstract public void visitString(String className, String value, int line);
@@ -85,7 +85,7 @@ Forwarded: no
public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) {
handleObject(value);
- return new FieldVisitor(Opcodes.ASM4){
-+ return new FieldVisitor(Opcodes.ASM6){
++ return new FieldVisitor(Opcodes.ASM7){
@Override
public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
return StringReader.this.visitAnnotation(desc, visible);
@@ -94,7 +94,7 @@ Forwarded: no
@Override
public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
- return new AnnotationVisitor(Opcodes.ASM4) {
-+ return new AnnotationVisitor(Opcodes.ASM6) {
++ return new AnnotationVisitor(Opcodes.ASM7) {
@Override
public void visit(String name, Object value) {
handleObject(value);
@@ -103,7 +103,7 @@ Forwarded: no
public MethodVisitor visitMethod(int access, String name, String desc,
String signature, String[] exceptions) {
- MethodVisitor mv = new MethodVisitor(Opcodes.ASM4){
-+ MethodVisitor mv = new MethodVisitor(Opcodes.ASM6){
++ MethodVisitor mv = new MethodVisitor(Opcodes.ASM7){
@Override
public void visitLdcInsn(Object cst) {
handleObject(cst);
@@ -114,7 +114,7 @@ Forwarded: no
public GetNameClassWriter(int flags) {
- super(Opcodes.ASM4,new ClassWriter(flags));
-+ super(Opcodes.ASM6,new ClassWriter(flags));
++ super(Opcodes.ASM7,new ClassWriter(flags));
}
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) {
View it on GitLab: https://salsa.debian.org/java-team/jarjar-maven-plugin/-/compare/16b9ededd7e4b457e47236cdde04a29f7441814c...d38191ae9f0e2e7b078acebef3c5ccda97add42f
--
View it on GitLab: https://salsa.debian.org/java-team/jarjar-maven-plugin/-/compare/16b9ededd7e4b457e47236cdde04a29f7441814c...d38191ae9f0e2e7b078acebef3c5ccda97add42f
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/20240408/5d43c05a/attachment.htm>
More information about the pkg-java-commits
mailing list