[Git][java-team/jboss-classfilewriter][master] 5 commits: Update debian/watch
Markus Koschany (@apo)
gitlab at salsa.debian.org
Wed Sep 8 11:42:21 BST 2021
Markus Koschany pushed to branch master at Debian Java Maintainers / jboss-classfilewriter
Commits:
da134a24 by Markus Koschany at 2021-09-08T12:34:59+02:00
Update debian/watch
- - - - -
0f874dfe by Markus Koschany at 2021-09-08T12:35:29+02:00
Declare compliance with Debian Policy 4.6.0.
- - - - -
d4f602d3 by Markus Koschany at 2021-09-08T12:37:55+02:00
New upstream version 1.2.5
- - - - -
59a1360d by Markus Koschany at 2021-09-08T12:37:59+02:00
Update upstream source from tag 'upstream/1.2.5'
Update to upstream version '1.2.5'
with Debian dir 42e0c70b8c9adb1141695dbfd1c10ecb9f966ca0
- - - - -
1b48b55e by Markus Koschany at 2021-09-08T12:38:32+02:00
Update changelog
- - - - -
5 changed files:
- debian/changelog
- debian/control
- debian/watch
- pom.xml
- src/main/java/org/jboss/classfilewriter/annotations/EnumAnnotationValue.java
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+jboss-classfilewriter (1.2.5-1) unstable; urgency=medium
+
+ * New upstream version 1.2.5.
+ * Declare compliance with Debian Policy 4.6.0.
+
+ -- Markus Koschany <apo at debian.org> Wed, 08 Sep 2021 12:38:12 +0200
+
jboss-classfilewriter (1.2.4-2) unstable; urgency=medium
* Switch to debhelper-compat = 13.
=====================================
debian/control
=====================================
@@ -12,7 +12,7 @@ Build-Depends:
libmaven-javadoc-plugin-java,
libmaven-bundle-plugin-java,
maven-debian-helper (>= 1.5)
-Standards-Version: 4.5.1
+Standards-Version: 4.6.0
Vcs-Git: https://salsa.debian.org/java-team/jboss-classfilewriter.git
Vcs-Browser: https://salsa.debian.org/java-team/jboss-classfilewriter
Homepage: https://github.com/jbossas/jboss-classfilewriter
=====================================
debian/watch
=====================================
@@ -1,6 +1,5 @@
-version=3
+version=4
opts=dversionmangle=s/(\da?)[\+\.\-~](?:dfsg|debian|ds|repack|repacked)\.?\d*$/$1/,\
uversionmangle=s/_/./g;s/\.Final// \
https://github.com/jbossas/jboss-classfilewriter/tags \
-.*/archive/(?:upstream/)?(?:v||version-|release-|X|R|r)(\d\S*)\.Final\.tar\.gz
-
+.*/@ANY_VERSION@@ARCHIVE_EXT@
=====================================
pom.xml
=====================================
@@ -9,7 +9,7 @@
<groupId>org.jboss.classfilewriter</groupId>
<artifactId>jboss-classfilewriter</artifactId>
- <version>1.2.4.Final</version>
+ <version>1.2.5.Final</version>
<packaging>jar</packaging>
<description>A bytecode writer that creates .class files at runtime</description>
@@ -39,7 +39,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>4.12</version>
+ <version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
=====================================
src/main/java/org/jboss/classfilewriter/annotations/EnumAnnotationValue.java
=====================================
@@ -22,6 +22,7 @@ import java.io.IOException;
import org.jboss.classfilewriter.constpool.ConstPool;
import org.jboss.classfilewriter.util.ByteArrayDataOutputStream;
+import org.jboss.classfilewriter.util.DescriptorUtils;
/**
* An enum annotation value
@@ -38,7 +39,7 @@ public class EnumAnnotationValue extends AnnotationValue {
public EnumAnnotationValue(ConstPool constPool, String name, Enum<?> value) {
super(constPool, name);
this.valueIndex = constPool.addUtf8Entry(value.name());
- this.typeIndex = constPool.addUtf8Entry(value.getDeclaringClass().getName());
+ this.typeIndex = constPool.addUtf8Entry(DescriptorUtils.makeDescriptor(value.getDeclaringClass().getName()));
}
public EnumAnnotationValue(ConstPool constPool, String name, String enumType, String enumValue) {
View it on GitLab: https://salsa.debian.org/java-team/jboss-classfilewriter/-/compare/8983b3308ca3833bbdac1490a7a6444b19cfecf2...1b48b55e16ae54eab77b613a67ffbb9347174fff
--
View it on GitLab: https://salsa.debian.org/java-team/jboss-classfilewriter/-/compare/8983b3308ca3833bbdac1490a7a6444b19cfecf2...1b48b55e16ae54eab77b613a67ffbb9347174fff
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/20210908/57916d4c/attachment.htm>
More information about the pkg-java-commits
mailing list