2 Commits

Author SHA256 Message Date
1ad9e830c6 Accepting request 1266402 from Java:packages
- Upgrade to version 9.8
  * new Opcodes.V25 constant for Java 25
  * bug fixes
    + Fix one more copy operation on DUP2
    + 318015: Valid bytecode for jvm, but failed to pass the
      CheckClassAdapter.
    + `ASMifier` should print calls to `valueOf` instead of
      deprecated constructors of primitive wrappers

OBS-URL: https://build.opensuse.org/request/show/1266402
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/objectweb-asm?expand=0&rev=30
2025-04-03 16:40:48 +00:00
1e3a90318b - Upgrade to version 9.8
* new Opcodes.V25 constant for Java 25
  * bug fixes
    + Fix one more copy operation on DUP2
    + 318015: Valid bytecode for jvm, but failed to pass the
      CheckClassAdapter.
    + `ASMifier` should print calls to `valueOf` instead of
      deprecated constructors of primitive wrappers

OBS-URL: https://build.opensuse.org/package/show/Java:packages/objectweb-asm?expand=0&rev=72
2025-04-02 06:12:00 +00:00
11 changed files with 33 additions and 21 deletions

View File

@@ -2,11 +2,11 @@
<service name="tar_scm" mode="disabled">
<param name="scm">git</param>
<param name="url">https://gitlab.ow2.org/asm/asm.git</param>
<param name="revision">ASM_9_7_1</param>
<param name="revision">ASM_9_8</param>
<param name="match-tag">ASM_*</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="versionrewrite-pattern">ASM_(\d+)_(\d+)_(\d+)</param>
<param name="versionrewrite-replacement">\1.\2.\3</param>
<param name="versionrewrite-pattern">ASM_(\d+)_(\d+)</param>
<param name="versionrewrite-replacement">\1.\2</param>
<param name="exclude">**/*.jar</param>
<param name="exclude">asm{,-analysis,-commons}/**/*.class</param>
<param name="exclude">gradle</param>

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<name>asm</name>
<description>ASM, a very small and fast Java bytecode manipulation framework</description>
<url>http://asm.ow2.io/</url>

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<name>asm-analysis</name>
<description>Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework</description>
<url>http://asm.ow2.io/</url>
@@ -71,7 +71,7 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<scope>compile</scope>
</dependency>
</dependencies>

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<name>asm-commons</name>
<description>Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework</description>
<url>http://asm.ow2.io/</url>
@@ -71,13 +71,13 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<scope>compile</scope>
</dependency>
</dependencies>

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-test</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<name>asm-test</name>
<description>Utilities for testing ASM, a very small and fast Java bytecode manipulation framework</description>
<url>http://asm.ow2.io/</url>

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<name>asm-tree</name>
<description>Tree API of ASM, a very small and fast Java bytecode manipulation framework</description>
<url>http://asm.ow2.io/</url>
@@ -71,7 +71,7 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<scope>compile</scope>
</dependency>
</dependencies>

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<name>asm-util</name>
<description>Utilities for ASM, a very small and fast Java bytecode manipulation framework</description>
<url>http://asm.ow2.io/</url>
@@ -71,19 +71,19 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
<version>9.7.1</version>
<version>9.8</version>
<scope>compile</scope>
</dependency>
</dependencies>

BIN
objectweb-asm-9.7.1.tar.xz (Stored with Git LFS)

Binary file not shown.

3
objectweb-asm-9.8.tar.xz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ee5a8b1972f8ecf6511efa92e718f8563aa2730a401f6f8e3c73e32ab4bec27b
size 618572

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 31 16:34:01 UTC 2025 - Anton Shvetz <shvetz.anton@gmail.com>
- Upgrade to version 9.8
* new Opcodes.V25 constant for Java 25
* bug fixes
+ Fix one more copy operation on DUP2
+ 318015: Valid bytecode for jvm, but failed to pass the
CheckClassAdapter.
+ `ASMifier` should print calls to `valueOf` instead of
deprecated constructors of primitive wrappers
-------------------------------------------------------------------
Wed Oct 9 21:24:18 UTC 2024 - Anton Shvetz <shvetz.anton@gmail.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package objectweb-asm
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%define __requires_exclude java-headless
Name: objectweb-asm
Version: 9.7.1
Version: 9.8
Release: 0
Summary: Java bytecode manipulation framework
License: BSD-3-Clause