2022-11-02 09:52:40 +00:00
|
|
|
%bcond_with bootstrap
|
2018-06-28 00:12:13 +00:00
|
|
|
|
2016-09-24 16:48:41 +00:00
|
|
|
Name: objectweb-asm
|
2022-05-09 20:23:15 +00:00
|
|
|
Version: 9.3
|
2023-01-19 21:58:25 +00:00
|
|
|
Release: 5%{?dist}
|
2013-11-11 16:31:56 +00:00
|
|
|
Summary: Java bytecode manipulation and analysis framework
|
2007-12-04 20:43:37 +00:00
|
|
|
License: BSD
|
2020-06-22 14:45:15 +00:00
|
|
|
URL: https://asm.ow2.org/
|
2007-12-04 20:43:37 +00:00
|
|
|
BuildArch: noarch
|
2022-05-12 20:33:24 +00:00
|
|
|
ExclusiveArch: %{java_arches} noarch
|
2007-12-04 20:43:37 +00:00
|
|
|
|
2018-08-03 12:08:10 +00:00
|
|
|
# ./generate-tarball.sh
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
2018-04-25 14:17:18 +00:00
|
|
|
Source1: parent.pom
|
2020-02-27 11:27:23 +00:00
|
|
|
Source2: https://repo1.maven.org/maven2/org/ow2/asm/asm/%{version}/asm-%{version}.pom
|
|
|
|
Source3: https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/%{version}/asm-analysis-%{version}.pom
|
|
|
|
Source4: https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/%{version}/asm-commons-%{version}.pom
|
|
|
|
Source5: https://repo1.maven.org/maven2/org/ow2/asm/asm-test/%{version}/asm-test-%{version}.pom
|
|
|
|
Source6: https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/%{version}/asm-tree-%{version}.pom
|
|
|
|
Source7: https://repo1.maven.org/maven2/org/ow2/asm/asm-util/%{version}/asm-util-%{version}.pom
|
2018-08-03 12:08:10 +00:00
|
|
|
# The source contains binary jars that cannot be verified for licensing and could be proprietary
|
2020-06-22 14:45:15 +00:00
|
|
|
Source9: generate-tarball.sh
|
2022-07-22 13:26:28 +00:00
|
|
|
Source10: tools-retrofitter.pom
|
|
|
|
|
|
|
|
# This patch makes it possible to generate module-info.class files without
|
|
|
|
# needing to use bnd-maven-plugin during the build. The replacement is an added
|
|
|
|
# main method that has to be invoked manually.
|
|
|
|
# Patch already applied in upstream master
|
|
|
|
# https://gitlab.ow2.org/asm/asm/-/commit/5921eb2a141f0dcc83c6a5d7dcd5035a30c5edfc
|
|
|
|
Patch1: 0001-Generate-the-module-info-classes-without-Bnd.-Delete.patch
|
2020-08-15 03:45:55 +00:00
|
|
|
|
2022-09-02 09:26:10 +00:00
|
|
|
# Attempted fix for: https://gitlab.ow2.org/asm/asm/-/issues/317983
|
|
|
|
Patch2: 0002-Replace-slash-for-dot-in-generated-module-infos.patch
|
|
|
|
|
2021-04-16 13:33:12 +00:00
|
|
|
%if %{with bootstrap}
|
|
|
|
BuildRequires: javapackages-bootstrap
|
2022-06-14 06:03:17 +00:00
|
|
|
%else
|
|
|
|
BuildRequires: maven-local
|
2022-07-22 13:26:28 +00:00
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin)
|
|
|
|
BuildRequires: mvn(org.ow2.asm:asm)
|
2018-07-06 13:14:51 +00:00
|
|
|
%endif
|
2018-06-29 14:41:24 +00:00
|
|
|
|
2018-08-01 08:24:29 +00:00
|
|
|
# Explicit javapackages-tools requires since asm-processor script uses
|
|
|
|
# /usr/share/java-utils/java-functions
|
|
|
|
Requires: javapackages-tools
|
|
|
|
|
2007-12-04 20:43:37 +00:00
|
|
|
%description
|
2013-11-11 16:31:56 +00:00
|
|
|
ASM is an all purpose Java bytecode manipulation and analysis
|
|
|
|
framework. It can be used to modify existing classes or dynamically
|
|
|
|
generate classes, directly in binary form. Provided common
|
|
|
|
transformations and analysis algorithms allow to easily assemble
|
|
|
|
custom complex transformations and code analysis tools.
|
2007-12-04 20:43:37 +00:00
|
|
|
|
|
|
|
%package javadoc
|
2016-09-24 16:48:41 +00:00
|
|
|
Summary: API documentation for %{name}
|
2007-12-04 20:43:37 +00:00
|
|
|
|
|
|
|
%description javadoc
|
2013-11-11 16:31:56 +00:00
|
|
|
This package provides %{summary}.
|
2007-12-04 20:43:37 +00:00
|
|
|
|
|
|
|
%prep
|
2018-08-03 12:08:10 +00:00
|
|
|
%setup -q
|
2020-05-06 14:49:05 +00:00
|
|
|
|
2022-07-22 13:26:28 +00:00
|
|
|
%patch1 -p1
|
2022-09-02 09:26:10 +00:00
|
|
|
%patch2 -p1
|
2022-07-22 13:26:28 +00:00
|
|
|
|
2018-04-25 14:17:18 +00:00
|
|
|
# A custom parent pom to aggregate the build
|
|
|
|
cp -p %{SOURCE1} pom.xml
|
2022-07-22 13:26:28 +00:00
|
|
|
%pom_xpath_set pom:project/pom:version %{version}
|
|
|
|
|
|
|
|
cp -p %{SOURCE10} tools/retrofitter/pom.xml
|
2018-04-25 14:17:18 +00:00
|
|
|
|
|
|
|
# Insert poms into modules
|
2018-11-21 11:10:05 +00:00
|
|
|
for pom in asm asm-analysis asm-commons asm-test asm-tree asm-util; do
|
2022-07-22 13:26:28 +00:00
|
|
|
cp -p ${RPM_SOURCE_DIR}/${pom}-%{version}.pom ${pom}/pom.xml
|
|
|
|
%pom_add_dep org.ow2.asm:tools-retrofitter::provided ${pom}
|
|
|
|
%pom_add_plugin org.apache.maven.plugins:maven-antrun-plugin ${pom}
|
|
|
|
%pom_set_parent org.ow2.asm:asm-aggregator:%{version} ${pom}
|
|
|
|
%pom_xpath_inject pom:parent '<relativePath>..</relativePath>' ${pom}
|
2018-04-25 14:17:18 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
# Don't ship the test framework to avoid runtime dep on junit
|
|
|
|
%mvn_package :asm-test __noinstall
|
2007-12-04 20:43:37 +00:00
|
|
|
|
2022-07-22 13:26:28 +00:00
|
|
|
%mvn_package :tools-retrofitter __noinstall
|
|
|
|
|
2007-12-04 20:43:37 +00:00
|
|
|
%build
|
2018-06-28 00:12:13 +00:00
|
|
|
%mvn_build -f -- -Dmaven.compiler.source=1.8 -Dmaven.compiler.target=1.8
|
2007-12-04 20:43:37 +00:00
|
|
|
|
|
|
|
%install
|
2018-04-25 14:17:18 +00:00
|
|
|
%mvn_install
|
2007-12-04 20:43:37 +00:00
|
|
|
|
2018-11-21 11:10:05 +00:00
|
|
|
%jpackage_script org.objectweb.asm.xml.Processor "" "" %{name}/asm:%{name}/asm-attrs:%{name}/asm-util %{name}-processor true
|
2008-07-14 15:58:46 +00:00
|
|
|
|
2013-11-11 16:31:56 +00:00
|
|
|
%files -f .mfiles
|
2016-09-24 16:48:41 +00:00
|
|
|
%license LICENSE.txt
|
|
|
|
%{_bindir}/%{name}-processor
|
2007-12-04 20:43:37 +00:00
|
|
|
|
2013-11-11 16:31:56 +00:00
|
|
|
%files javadoc -f .mfiles-javadoc
|
2016-09-24 16:48:41 +00:00
|
|
|
%license LICENSE.txt
|
2007-12-04 20:43:37 +00:00
|
|
|
|
|
|
|
%changelog
|
2023-01-19 21:58:25 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 9.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-09-02 09:26:10 +00:00
|
|
|
* Fri Sep 02 2022 Marian Koncek <mkoncek@redhat.com> - 9.3-4
|
|
|
|
- Fix wrong generated module infos
|
|
|
|
|
2022-07-22 13:26:28 +00:00
|
|
|
* Mon Aug 29 2022 Marian Koncek <mkoncek@redhat.com> - 9.3-3
|
|
|
|
- Generate module-info without bnd-plugin
|
|
|
|
- Resolves: rhbz#2106272
|
|
|
|
|
2022-07-22 01:02:12 +00:00
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 9.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-05-09 20:23:15 +00:00
|
|
|
* Mon May 09 2022 Mikolaj Izdebski <mizdebsk@redhat.com> - 9.3-1
|
|
|
|
- Update to upstream version 9.3
|
|
|
|
|
2022-02-05 22:09:26 +00:00
|
|
|
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 9.2-3
|
|
|
|
- Rebuilt for java-17-openjdk as system jdk
|
|
|
|
|
2022-01-20 21:35:21 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 9.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-11-02 18:41:20 +00:00
|
|
|
* Tue Nov 02 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 9.2-1
|
|
|
|
- Update to upstream version 9.2
|
|
|
|
|
2021-07-22 16:29:25 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 9.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-05-17 13:50:28 +00:00
|
|
|
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 9.1-2
|
|
|
|
- Bootstrap build
|
2021-05-17 16:01:47 +00:00
|
|
|
- Non-bootstrap build
|
2021-05-17 13:50:28 +00:00
|
|
|
|
2021-05-14 15:21:12 +00:00
|
|
|
* Fri May 14 2021 Marian Koncek <mkoncek@redhat.com> - 9.1-1
|
|
|
|
- Update to upstream version 9.1
|
|
|
|
|
2021-02-19 15:59:24 +00:00
|
|
|
* Fri Feb 19 2021 Mat Booth <mat.booth@redhat.com> - 9.1-1
|
|
|
|
- Update to latest upstream release
|
|
|
|
|
2021-01-26 21:50:38 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-09-25 08:00:58 +00:00
|
|
|
* Fri Sep 25 2020 Marian Koncek <mkoncek@redhat.com> - 9.0-1
|
|
|
|
- Update to upstream version 9.0
|
|
|
|
|
2020-08-15 03:45:55 +00:00
|
|
|
* Fri Aug 14 2020 Jerry James <loganjerry@gmail.com> - 8.0.1-1
|
|
|
|
- Version 8.0.1
|
|
|
|
- Add 0002-Catch-CompileException-in-test.patch to fix compilation of a test
|
|
|
|
- Make generate-tarball.sh actually compress the tarball
|
|
|
|
|
2020-07-28 12:02:47 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-11 01:30:00 +00:00
|
|
|
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 7.3.1-3
|
|
|
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
|
|
|
2020-06-22 14:45:15 +00:00
|
|
|
* Mon Jun 22 2020 Marian Koncek <mkoncek@redhat.com> - 8.0.1-1
|
|
|
|
- Update to upstream version 8.0.1
|
|
|
|
|
2020-05-06 14:49:05 +00:00
|
|
|
* Wed May 06 2020 Mat Booth <mat.booth@redhat.com> - 7.3.1-2
|
|
|
|
- Revert an upstream change to prevent breaking API change
|
|
|
|
|
2020-02-27 11:27:23 +00:00
|
|
|
* Thu Feb 27 2020 Jayashree Huttanagoudat <jhuttana@redhat.com> - 7.3.1-1
|
|
|
|
- Upgraded to upstream version 7.3.1.
|
|
|
|
|
2020-01-29 19:26:01 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-21 10:40:06 +00:00
|
|
|
* Tue Jan 21 2020 Marian Koncek <mkoncek@redhat.com> - 7.3.1-1
|
|
|
|
- Update to upstream version 7.3.1
|
|
|
|
|
2019-11-05 16:29:28 +00:00
|
|
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 7.2-2
|
|
|
|
- Mass rebuild for javapackages-tools 201902
|
|
|
|
|
2019-10-17 12:29:11 +00:00
|
|
|
* Thu Oct 17 2019 Marian Koncek <mkoncek@redhat.com> - 7.2-1
|
|
|
|
- Update to upstream version 7.2
|
|
|
|
|
2019-07-25 22:45:35 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-24 15:01:22 +00:00
|
|
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 7.1-2
|
|
|
|
- Mass rebuild for javapackages-tools 201901
|
|
|
|
|
2019-05-06 10:15:41 +00:00
|
|
|
* Mon May 06 2019 Severin Gehwolf <sgehwolf@redhat.com> - 7.1-1
|
|
|
|
- Update to latest upstream 7.1 release.
|
|
|
|
|
2019-02-01 16:43:28 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-11-21 11:10:05 +00:00
|
|
|
* Wed Nov 21 2018 Severin Gehwolf <sgehwolf@redhat.com> - 7.0-1
|
|
|
|
- Update to latest upstream 7.0 release.
|
|
|
|
- Removes package asm-xml (deprecated since 6.1).
|
|
|
|
|
2018-09-12 10:43:35 +00:00
|
|
|
* Tue Sep 11 2018 Mat Booth <mat.booth@redhat.com> - 6.2.1-1
|
|
|
|
- Update to latest upstream release
|
|
|
|
- Fix test suite execution
|
|
|
|
|
2018-08-03 12:08:10 +00:00
|
|
|
* Fri Aug 03 2018 Michael Simacek <msimacek@redhat.com> - 6.2-5
|
|
|
|
- Repack the tarball without binaries
|
|
|
|
|
2018-08-01 08:24:29 +00:00
|
|
|
* Wed Aug 01 2018 Severin Gehwolf <sgehwolf@redhat.com> - 6.2-4
|
|
|
|
- Explicitly require javapackages-tools for asm-processor script
|
|
|
|
which uses java-functions.
|
|
|
|
|
2018-07-06 13:14:51 +00:00
|
|
|
* Wed Aug 01 2018 Severin Gehwolf <sgehwolf@redhat.com> - 6.2-3
|
|
|
|
- Allow conditionally building without OSGi
|
|
|
|
metadata.
|
|
|
|
|
2018-07-13 14:39:05 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-02 15:24:40 +00:00
|
|
|
* Mon Jul 02 2018 Michael Simacek <msimacek@redhat.com> - 6.2-1
|
|
|
|
- Update to upstream version 6.2
|
|
|
|
|
2018-06-30 02:34:27 +00:00
|
|
|
* Sat Jun 30 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.1.1-4
|
|
|
|
- Relax versioned self-build-requirement a bit
|
|
|
|
|
2018-06-29 14:41:24 +00:00
|
|
|
* Fri Jun 29 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.1.1-3
|
|
|
|
- Add objectweb-asm to BND pluginpath
|
|
|
|
|
2018-06-28 00:12:13 +00:00
|
|
|
* Thu Jun 28 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.1.1-2
|
|
|
|
- Allow conditionally building without junit5
|
|
|
|
|
2018-04-25 14:17:18 +00:00
|
|
|
* Wed Apr 25 2018 Mat Booth <mat.booth@redhat.com> - 6.1.1-1
|
|
|
|
- Update to latest upstream relase for Java 10 support
|
|
|
|
- Switch to maven build
|
|
|
|
- Now executing test suites
|
|
|
|
|
2018-02-08 08:42:37 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-10-02 08:37:05 +00:00
|
|
|
* Mon Sep 25 2017 Michael Simacek <msimacek@redhat.com> - 6.0-1
|
|
|
|
- Update to upstream version 6.0
|
|
|
|
|
2017-09-12 10:19:23 +00:00
|
|
|
* Tue Sep 12 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.0-0.2.beta
|
|
|
|
- Fix invalid OSGi metadata
|
|
|
|
- Resolves: rhbz#1490817
|
|
|
|
|
2017-09-11 11:04:14 +00:00
|
|
|
* Mon Sep 11 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.0-0.1.beta
|
|
|
|
- Update to upstream version 6.0 beta
|
|
|
|
|
2017-07-27 01:24:14 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-11 00:27:02 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-10-10 16:56:09 +00:00
|
|
|
* Mon Oct 10 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-6
|
|
|
|
- Use OSGi API JARs to run BND classpath, instead of Eclipse
|
|
|
|
|
2016-09-24 16:48:41 +00:00
|
|
|
* Sat Sep 24 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-5
|
|
|
|
- Update to current packaging guidelines
|
|
|
|
- Remove obsoletes and provides for objectweb-asm4
|
|
|
|
|
2016-06-15 09:57:41 +00:00
|
|
|
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-4
|
|
|
|
- Add missing build-requires
|
|
|
|
|
2016-06-01 08:47:13 +00:00
|
|
|
* Wed Jun 1 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-3
|
|
|
|
- Avoid calling XMvn from build-classpath
|
|
|
|
|
2016-05-31 08:30:01 +00:00
|
|
|
* Tue May 31 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-2
|
|
|
|
- Add missing JARs to BND classpath
|
|
|
|
|
2016-03-24 11:39:50 +00:00
|
|
|
* Thu Mar 24 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-1
|
|
|
|
- Update to upstream version 5.1
|
|
|
|
|
2016-02-04 11:02:52 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-08-06 19:05:42 +00:00
|
|
|
* Thu Aug 06 2015 Michael Simacek <msimacek@redhat.com> - 5.0.4-1
|
|
|
|
- Update to upstream version 5.0.4
|
|
|
|
|
2015-06-17 23:31:05 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-07-20 08:18:04 +00:00
|
|
|
* Sun Jul 20 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0.3-1
|
|
|
|
- Update to upstream version 5.0.3
|
|
|
|
|
2014-06-07 15:26:14 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-05 06:44:39 +00:00
|
|
|
* Mon May 5 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0.2-1
|
|
|
|
- Update to upstream version 5.0.2
|
|
|
|
|
2014-05-01 13:51:40 +00:00
|
|
|
* Mon Apr 14 2014 Mat Booth <mat.booth@redhat.com> - 5.0.1-2
|
|
|
|
- SCL-ize package.
|
|
|
|
- Fix bogus dates in changelog.
|
|
|
|
|
2014-03-24 11:06:06 +00:00
|
|
|
* Mon Mar 24 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0.1-1
|
|
|
|
- Update to upstream version 5.0.1
|
|
|
|
|
2014-03-19 12:01:50 +00:00
|
|
|
* Wed Mar 19 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0-0.3.beta
|
|
|
|
- Enable asm-debug-all module
|
|
|
|
|
2014-01-20 07:46:31 +00:00
|
|
|
* Mon Jan 20 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0-0.2.beta
|
|
|
|
- Remove Eclipse Orbit alias
|
|
|
|
|
2013-11-11 16:31:56 +00:00
|
|
|
* Tue Dec 3 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0-0.1.beta
|
|
|
|
- Update to 5.0 beta
|
|
|
|
|
2013-08-03 14:43:50 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.3.1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-03-06 16:17:34 +00:00
|
|
|
* Wed Mar 6 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.3.1-7
|
|
|
|
- Make jetty orbit depmap point to asm-all jar
|
|
|
|
- Resolves: rhbz#917625
|
|
|
|
|
2013-03-04 12:31:17 +00:00
|
|
|
* Mon Mar 4 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.3.1-6
|
|
|
|
- Add depmap for org.eclipse.jetty.orbit
|
|
|
|
- Resolves: rhbz#917625
|
|
|
|
|
2013-02-14 08:52:46 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.3.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-07-20 05:46:33 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.3.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-13 11:24:19 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.3.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-09-16 14:11:05 +00:00
|
|
|
* Fri Sep 16 2011 Alexander Kurtakov <akurtako@redhat.com> 0:3.3.1-2
|
|
|
|
- Use poms produced by the build not foreign ones.
|
|
|
|
- Adpat to current guidelines.
|
|
|
|
|
2011-04-04 19:18:06 +00:00
|
|
|
* Mon Apr 04 2011 Chris Aniszczyk <zx@redhat.com> 0:3.3.1
|
|
|
|
- Upgrade to 3.3.1
|
|
|
|
|
2011-02-09 01:32:53 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-07-13 16:21:32 +00:00
|
|
|
* Tue Jul 13 2010 Orion Poplawski <orion@cora.nwra.com> 0:3.2.1-2
|
|
|
|
- Change depmap parent id to asm (bug #606659)
|
|
|
|
|
2010-04-15 22:06:40 +00:00
|
|
|
* Thu Apr 15 2010 Fernando Nasser <fnasser@redhat.com> 0:3.2.1
|
|
|
|
- Upgrade to 3.2
|
|
|
|
|
2009-07-25 19:48:39 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.1-7.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-26 06:41:44 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:3.1-6.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2014-05-01 13:51:40 +00:00
|
|
|
* Thu Oct 23 2008 David Walluck <dwalluck@redhat.com> 0:3.1-5.1
|
2008-10-23 19:08:19 +00:00
|
|
|
- build for Fedora
|
|
|
|
|
2014-05-01 13:51:40 +00:00
|
|
|
* Thu Oct 23 2008 David Walluck <dwalluck@redhat.com> 0:3.1-5
|
2008-10-23 19:08:19 +00:00
|
|
|
- add OSGi manifest (Alexander Kurtakov)
|
|
|
|
|
|
|
|
* Mon Oct 20 2008 David Walluck <dwalluck@redhat.com> 0:3.1-4
|
|
|
|
- remove Class-Path from MANIFEST.MF
|
|
|
|
- add unversioned javadoc symlink
|
|
|
|
- remove javadoc scriptlets
|
|
|
|
- fix directory ownership
|
|
|
|
- remove build requirement on dos2unix
|
|
|
|
|
|
|
|
* Fri Feb 08 2008 Ralph Apel <r.apel@r-apel.de> - 0:3.1-3jpp
|
|
|
|
- Add poms and depmap frags with groupId of org.objectweb.asm !
|
|
|
|
- Add asm-all.jar
|
|
|
|
- Add -javadoc Requires post and postun
|
|
|
|
- Restore Vendor, Distribution
|
2007-12-04 20:48:22 +00:00
|
|
|
|
2007-12-04 20:43:37 +00:00
|
|
|
* Thu Nov 22 2007 Fernando Nasser <fnasser@redhat.com> - 0:3.1-2jpp
|
|
|
|
- Fix EOL of txt files
|
|
|
|
- Add dependency on jaxp
|
|
|
|
|
|
|
|
* Thu Nov 22 2007 Fernando Nasser <fnasser@redhat.com> - 0:3.1-1jpp
|
|
|
|
- Upgrade to 3.1
|
|
|
|
|
|
|
|
* Wed Aug 22 2007 Fernando Nasser <fnasser@redhat.com> - 0:3.0-1jpp
|
|
|
|
- Upgrade to 3.0
|
|
|
|
- Rename to include objectweb- prefix as requested by ObjectWeb
|
|
|
|
|
|
|
|
* Thu Jan 05 2006 Fernando Nasser <fnasser@redhat.com> - 0:2.1-2jpp
|
|
|
|
- First JPP 1.7 build
|
|
|
|
|
|
|
|
* Thu Oct 06 2005 Ralph Apel <r.apel at r-apel.de> 0:2.1-1jpp
|
|
|
|
- Upgrade to 2.1
|
|
|
|
|
|
|
|
* Fri Mar 11 2005 Sebastiano Vigna <vigna at acm.org> 0:2.0.RC1-1jpp
|
|
|
|
- First release of the 2.0 line.
|