Initial import from Fedora
Related: rhbz#2064785
This commit is contained in:
parent
a02887aa36
commit
7ef96b7ed4
87
.gitignore
vendored
87
.gitignore
vendored
@ -0,0 +1,87 @@
|
||||
/LICENSE-2.0.txt
|
||||
/.project
|
||||
/.build-*.log
|
||||
/*.src.rpm
|
||||
/noarch
|
||||
/objectweb-asm-*.tar.gz
|
||||
/objectweb-asm-*/
|
||||
/archive.tar.gz
|
||||
/asm-6.2.pom
|
||||
/asm-analysis-6.2.pom
|
||||
/asm-commons-6.2.pom
|
||||
/asm-test-6.2.pom
|
||||
/asm-tree-6.2.pom
|
||||
/asm-util-6.2.pom
|
||||
/asm-xml-6.2.pom
|
||||
/objectweb-asm-6.2.tar.gz
|
||||
/objectweb-asm-6.2.1.tar.gz
|
||||
/asm-6.2.1.pom
|
||||
/asm-analysis-6.2.1.pom
|
||||
/asm-commons-6.2.1.pom
|
||||
/asm-test-6.2.1.pom
|
||||
/asm-tree-6.2.1.pom
|
||||
/asm-util-6.2.1.pom
|
||||
/asm-xml-6.2.1.pom
|
||||
/objectweb-asm-7.0.tar.gz
|
||||
/objectweb-asm-7.0/
|
||||
/asm-7.0.pom
|
||||
/asm-analysis-7.0.pom
|
||||
/asm-commons-7.0.pom
|
||||
/asm-test-7.0.pom
|
||||
/asm-tree-7.0.pom
|
||||
/asm-util-7.0.pom
|
||||
/objectweb-asm-7.1.tar.gz
|
||||
/asm-7.1.pom
|
||||
/asm-analysis-7.1.pom
|
||||
/asm-commons-7.1.pom
|
||||
/asm-test-7.1.pom
|
||||
/asm-tree-7.1.pom
|
||||
/asm-util-7.1.pom
|
||||
/objectweb-asm-7.1/
|
||||
/objectweb-asm-7.2.tar.gz
|
||||
/asm-7.2.pom
|
||||
/asm-analysis-7.2.pom
|
||||
/asm-commons-7.2.pom
|
||||
/asm-test-7.2.pom
|
||||
/asm-tree-7.2.pom
|
||||
/asm-util-7.2.pom
|
||||
/objectweb-asm-7.3.1.tar.gz
|
||||
/asm-7.3.1.pom
|
||||
/asm-analysis-7.3.1.pom
|
||||
/asm-commons-7.3.1.pom
|
||||
/asm-test-7.3.1.pom
|
||||
/asm-tree-7.3.1.pom
|
||||
/asm-util-7.3.1.pom
|
||||
/objectweb-asm-8.0.1.tar.gz
|
||||
/asm-8.0.1.pom
|
||||
/asm-analysis-8.0.1.pom
|
||||
/asm-commons-8.0.1.pom
|
||||
/asm-test-8.0.1.pom
|
||||
/asm-tree-8.0.1.pom
|
||||
/asm-util-8.0.1.pom
|
||||
/objectweb-asm-9.0.tar.gz
|
||||
/asm-9.0.pom
|
||||
/asm-analysis-9.0.pom
|
||||
/asm-commons-9.0.pom
|
||||
/asm-test-9.0.pom
|
||||
/asm-tree-9.0.pom
|
||||
/asm-util-9.0.pom
|
||||
/objectweb-asm-9.1.tar.gz
|
||||
/asm-9.1.pom
|
||||
/asm-analysis-9.1.pom
|
||||
/asm-commons-9.1.pom
|
||||
/asm-test-9.1.pom
|
||||
/asm-tree-9.1.pom
|
||||
/asm-util-9.1.pom
|
||||
/asm-9.2.pom
|
||||
/asm-analysis-9.2.pom
|
||||
/asm-commons-9.2.pom
|
||||
/asm-test-9.2.pom
|
||||
/asm-tree-9.2.pom
|
||||
/asm-util-9.2.pom
|
||||
/asm-9.3.pom
|
||||
/asm-analysis-9.3.pom
|
||||
/asm-commons-9.3.pom
|
||||
/asm-test-9.3.pom
|
||||
/asm-tree-9.3.pom
|
||||
/asm-util-9.3.pom
|
28
generate-tarball.sh
Executable file
28
generate-tarball.sh
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
name=objectweb-asm
|
||||
version="$(sed -n 's/Version:\s*//p' *.spec)"
|
||||
gittag="ASM_${version//./_}"
|
||||
|
||||
# RETRIEVE
|
||||
wget "https://gitlab.ow2.org/asm/asm/-/archive/${gittag}/asm-${gittag}.tar.gz" -O "${name}-${version}.orig.tar.gz"
|
||||
|
||||
rm -rf tarball-tmp
|
||||
mkdir tarball-tmp
|
||||
pushd tarball-tmp
|
||||
tar -xzf "../${name}-${version}.orig.tar.gz"
|
||||
|
||||
# Rename dir not to contain commit
|
||||
mv asm-${gittag} ${name}-${version}
|
||||
|
||||
# CLEAN TARBALL
|
||||
# Remove all jar files
|
||||
find -name '*.jar' -delete
|
||||
# Remove all class files except those in asm-test, which are shipped alongside appropriately licensed source
|
||||
find */asm{,-analysis,-commons} -name '*.class' -delete
|
||||
rm -r */gradle
|
||||
|
||||
tar -czf "../${name}-${version}.tar.gz" *
|
||||
popd
|
||||
rm -r tarball-tmp "${name}-${version}.orig.tar.gz"
|
348
objectweb-asm.spec
Normal file
348
objectweb-asm.spec
Normal file
@ -0,0 +1,348 @@
|
||||
%bcond_with bootstrap
|
||||
|
||||
Name: objectweb-asm
|
||||
Version: 9.3
|
||||
Release: 2%{?dist}
|
||||
Summary: Java bytecode manipulation and analysis framework
|
||||
License: BSD
|
||||
URL: https://asm.ow2.org/
|
||||
BuildArch: noarch
|
||||
ExclusiveArch: %{java_arches} noarch
|
||||
|
||||
# ./generate-tarball.sh
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
Source1: parent.pom
|
||||
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
|
||||
# The source contains binary jars that cannot be verified for licensing and could be proprietary
|
||||
Source9: generate-tarball.sh
|
||||
|
||||
%if %{with bootstrap}
|
||||
BuildRequires: javapackages-bootstrap
|
||||
%else
|
||||
BuildRequires: maven-local
|
||||
%endif
|
||||
|
||||
# Explicit javapackages-tools requires since asm-processor script uses
|
||||
# /usr/share/java-utils/java-functions
|
||||
Requires: javapackages-tools
|
||||
|
||||
%description
|
||||
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.
|
||||
|
||||
%package javadoc
|
||||
Summary: API documentation for %{name}
|
||||
|
||||
%description javadoc
|
||||
This package provides %{summary}.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
# A custom parent pom to aggregate the build
|
||||
cp -p %{SOURCE1} pom.xml
|
||||
|
||||
# Insert poms into modules
|
||||
for pom in asm asm-analysis asm-commons asm-test asm-tree asm-util; do
|
||||
cp -p $RPM_SOURCE_DIR/${pom}-%{version}.pom $pom/pom.xml
|
||||
%pom_remove_parent $pom
|
||||
done
|
||||
|
||||
# No need to ship the custom parent pom
|
||||
%mvn_package :asm-aggregator __noinstall
|
||||
# Don't ship the test framework to avoid runtime dep on junit
|
||||
%mvn_package :asm-test __noinstall
|
||||
|
||||
%build
|
||||
%mvn_build -f -- -Dmaven.compiler.source=1.8 -Dmaven.compiler.target=1.8
|
||||
|
||||
%install
|
||||
%mvn_install
|
||||
|
||||
%jpackage_script org.objectweb.asm.xml.Processor "" "" %{name}/asm:%{name}/asm-attrs:%{name}/asm-util %{name}-processor true
|
||||
|
||||
%files -f .mfiles
|
||||
%license LICENSE.txt
|
||||
%{_bindir}/%{name}-processor
|
||||
|
||||
%files javadoc -f .mfiles-javadoc
|
||||
%license LICENSE.txt
|
||||
|
||||
%changelog
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 9.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Mon May 09 2022 Mikolaj Izdebski <mizdebsk@redhat.com> - 9.3-1
|
||||
- Update to upstream version 9.3
|
||||
|
||||
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 9.2-3
|
||||
- Rebuilt for java-17-openjdk as system jdk
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 9.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Tue Nov 02 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 9.2-1
|
||||
- Update to upstream version 9.2
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 9.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 9.1-2
|
||||
- Bootstrap build
|
||||
- Non-bootstrap build
|
||||
|
||||
* Fri May 14 2021 Marian Koncek <mkoncek@redhat.com> - 9.1-1
|
||||
- Update to upstream version 9.1
|
||||
|
||||
* Fri Feb 19 2021 Mat Booth <mat.booth@redhat.com> - 9.1-1
|
||||
- Update to latest upstream release
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Sep 25 2020 Marian Koncek <mkoncek@redhat.com> - 9.0-1
|
||||
- Update to upstream version 9.0
|
||||
|
||||
* 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
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 7.3.1-3
|
||||
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||
|
||||
* Mon Jun 22 2020 Marian Koncek <mkoncek@redhat.com> - 8.0.1-1
|
||||
- Update to upstream version 8.0.1
|
||||
|
||||
* Wed May 06 2020 Mat Booth <mat.booth@redhat.com> - 7.3.1-2
|
||||
- Revert an upstream change to prevent breaking API change
|
||||
|
||||
* Thu Feb 27 2020 Jayashree Huttanagoudat <jhuttana@redhat.com> - 7.3.1-1
|
||||
- Upgraded to upstream version 7.3.1.
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Jan 21 2020 Marian Koncek <mkoncek@redhat.com> - 7.3.1-1
|
||||
- Update to upstream version 7.3.1
|
||||
|
||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 7.2-2
|
||||
- Mass rebuild for javapackages-tools 201902
|
||||
|
||||
* Thu Oct 17 2019 Marian Koncek <mkoncek@redhat.com> - 7.2-1
|
||||
- Update to upstream version 7.2
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 7.1-2
|
||||
- Mass rebuild for javapackages-tools 201901
|
||||
|
||||
* Mon May 06 2019 Severin Gehwolf <sgehwolf@redhat.com> - 7.1-1
|
||||
- Update to latest upstream 7.1 release.
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* 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).
|
||||
|
||||
* Tue Sep 11 2018 Mat Booth <mat.booth@redhat.com> - 6.2.1-1
|
||||
- Update to latest upstream release
|
||||
- Fix test suite execution
|
||||
|
||||
* Fri Aug 03 2018 Michael Simacek <msimacek@redhat.com> - 6.2-5
|
||||
- Repack the tarball without binaries
|
||||
|
||||
* Wed Aug 01 2018 Severin Gehwolf <sgehwolf@redhat.com> - 6.2-4
|
||||
- Explicitly require javapackages-tools for asm-processor script
|
||||
which uses java-functions.
|
||||
|
||||
* Wed Aug 01 2018 Severin Gehwolf <sgehwolf@redhat.com> - 6.2-3
|
||||
- Allow conditionally building without OSGi
|
||||
metadata.
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Mon Jul 02 2018 Michael Simacek <msimacek@redhat.com> - 6.2-1
|
||||
- Update to upstream version 6.2
|
||||
|
||||
* Sat Jun 30 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.1.1-4
|
||||
- Relax versioned self-build-requirement a bit
|
||||
|
||||
* Fri Jun 29 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.1.1-3
|
||||
- Add objectweb-asm to BND pluginpath
|
||||
|
||||
* Thu Jun 28 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.1.1-2
|
||||
- Allow conditionally building without junit5
|
||||
|
||||
* 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
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Mon Sep 25 2017 Michael Simacek <msimacek@redhat.com> - 6.0-1
|
||||
- Update to upstream version 6.0
|
||||
|
||||
* Tue Sep 12 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.0-0.2.beta
|
||||
- Fix invalid OSGi metadata
|
||||
- Resolves: rhbz#1490817
|
||||
|
||||
* Mon Sep 11 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.0-0.1.beta
|
||||
- Update to upstream version 6.0 beta
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Mon Oct 10 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-6
|
||||
- Use OSGi API JARs to run BND classpath, instead of Eclipse
|
||||
|
||||
* Sat Sep 24 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-5
|
||||
- Update to current packaging guidelines
|
||||
- Remove obsoletes and provides for objectweb-asm4
|
||||
|
||||
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-4
|
||||
- Add missing build-requires
|
||||
|
||||
* Wed Jun 1 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-3
|
||||
- Avoid calling XMvn from build-classpath
|
||||
|
||||
* Tue May 31 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-2
|
||||
- Add missing JARs to BND classpath
|
||||
|
||||
* Thu Mar 24 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1-1
|
||||
- Update to upstream version 5.1
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Aug 06 2015 Michael Simacek <msimacek@redhat.com> - 5.0.4-1
|
||||
- Update to upstream version 5.0.4
|
||||
|
||||
* 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
|
||||
|
||||
* Sun Jul 20 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0.3-1
|
||||
- Update to upstream version 5.0.3
|
||||
|
||||
* 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
|
||||
|
||||
* Mon May 5 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0.2-1
|
||||
- Update to upstream version 5.0.2
|
||||
|
||||
* Mon Apr 14 2014 Mat Booth <mat.booth@redhat.com> - 5.0.1-2
|
||||
- SCL-ize package.
|
||||
- Fix bogus dates in changelog.
|
||||
|
||||
* Mon Mar 24 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0.1-1
|
||||
- Update to upstream version 5.0.1
|
||||
|
||||
* Wed Mar 19 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0-0.3.beta
|
||||
- Enable asm-debug-all module
|
||||
|
||||
* Mon Jan 20 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0-0.2.beta
|
||||
- Remove Eclipse Orbit alias
|
||||
|
||||
* Tue Dec 3 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0-0.1.beta
|
||||
- Update to 5.0 beta
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* Mon Mar 4 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.3.1-6
|
||||
- Add depmap for org.eclipse.jetty.orbit
|
||||
- Resolves: rhbz#917625
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* 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.
|
||||
|
||||
* Mon Apr 04 2011 Chris Aniszczyk <zx@redhat.com> 0:3.3.1
|
||||
- Upgrade to 3.3.1
|
||||
|
||||
* 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
|
||||
|
||||
* Tue Jul 13 2010 Orion Poplawski <orion@cora.nwra.com> 0:3.2.1-2
|
||||
- Change depmap parent id to asm (bug #606659)
|
||||
|
||||
* Thu Apr 15 2010 Fernando Nasser <fnasser@redhat.com> 0:3.2.1
|
||||
- Upgrade to 3.2
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* Thu Oct 23 2008 David Walluck <dwalluck@redhat.com> 0:3.1-5.1
|
||||
- build for Fedora
|
||||
|
||||
* Thu Oct 23 2008 David Walluck <dwalluck@redhat.com> 0:3.1-5
|
||||
- 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
|
||||
|
||||
* 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.
|
19
parent.pom
Normal file
19
parent.pom
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
|
||||
xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd'>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm-aggregator</artifactId>
|
||||
<version>1</version>
|
||||
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>asm</module>
|
||||
<module>asm-analysis</module>
|
||||
<module>asm-commons</module>
|
||||
<module>asm-tree</module>
|
||||
<module>asm-util</module>
|
||||
</modules>
|
||||
</project>
|
7
sources
Normal file
7
sources
Normal file
@ -0,0 +1,7 @@
|
||||
SHA512 (objectweb-asm-9.3.tar.gz) = ec23e717f17789fee264a6a08b3d52c2ec46d39270b38e0804ea18f1abebdddc738c7ff788d2ab348af8345b41c827021dec4e843b18ede04965eac77697e72b
|
||||
SHA512 (asm-9.3.pom) = a354aaa4a45f6e6c3d24e28b8a9e4490bd0a5e43a33a45dd712daefaab33a65f45cd9ae11d57e38c45082053efbe03e6ab7d5c3882d50f1e6a5d6984f477ce86
|
||||
SHA512 (asm-analysis-9.3.pom) = e32fd3696ac4770f109a4abaf38e56cb4c8ad4f5131f8d24ff54505798279593c602402363c18b580f5453717a35fc7820fbe18e3b34ed780aa0c7025087d8cd
|
||||
SHA512 (asm-commons-9.3.pom) = 1446c1528e07110c5a5894365c5c84063d264ec833532d894e3238bdb027f98a72398bc763fb89785a6f757e1d195f2934505ab63f75eb4538532fbed1ef0af9
|
||||
SHA512 (asm-test-9.3.pom) = 6c99662ac0701653dc76619e651ed3969c20ccd92a3f61eda9f785cceae446e6a4cf74e67f90835125719ce220d0639887f3047525c697203f3804e27dae8ff0
|
||||
SHA512 (asm-tree-9.3.pom) = f066513d4dba672edc85e9b457d827c16d55a321cb02f4f5faf6e02f59594c44fe3eae23006e6a7310151ff88ea53e654e27fdced6b0af85dcb24ab276279ca2
|
||||
SHA512 (asm-util-9.3.pom) = 283675d07165cd635d0417eed078be18aae09ec8960e370d5d56b5b7845d74e150330f21e4610c0c4ca391843d7dd21bcd341604763924f102d65875df8ff927
|
Loading…
Reference in New Issue
Block a user