2007-01-15 23:52:11 +01:00
|
|
|
#
|
2011-09-22 10:16:54 +02:00
|
|
|
# spec file for package bcel
|
2007-01-15 23:52:11 +01:00
|
|
|
#
|
2019-02-01 15:11:30 +01:00
|
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
2007-01-15 23:52:11 +01:00
|
|
|
#
|
2009-06-02 12:27:25 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2018-11-15 12:44:00 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2007-01-15 23:52:11 +01:00
|
|
|
#
|
|
|
|
|
2008-07-25 16:47:40 +02:00
|
|
|
|
2007-01-15 23:52:11 +01:00
|
|
|
Name: bcel
|
2013-08-29 13:46:24 +02:00
|
|
|
Version: 5.2
|
|
|
|
Release: 0
|
|
|
|
Summary: Byte Code Engineering Library
|
|
|
|
License: Apache-2.0
|
|
|
|
Group: Development/Libraries/Java
|
2018-11-15 12:44:00 +01:00
|
|
|
URL: http://commons.apache.org/proper/commons-bcel/
|
|
|
|
Source0: http://archive.apache.org/dist/commons/bcel/source/%{name}-%{version}-src.tar.gz
|
|
|
|
Source1: http://archive.apache.org/dist/commons/bcel/source/%{name}-%{version}-src.tar.gz.asc
|
|
|
|
Source2: http://repo.maven.apache.org/maven2/org/apache/%{name}/%{name}/%{version}/%{name}-%{version}.pom
|
|
|
|
Source3: bcel.keyring
|
2017-09-27 19:08:39 +02:00
|
|
|
Patch0: bcel-5.2-encoding.patch
|
2012-05-15 10:00:11 +02:00
|
|
|
BuildRequires: ant
|
2018-05-15 16:05:28 +02:00
|
|
|
BuildRequires: java-devel >= 1.8
|
2018-11-15 12:44:00 +01:00
|
|
|
BuildRequires: javapackages-local
|
2012-05-15 10:00:11 +02:00
|
|
|
BuildRequires: regexp
|
2019-02-01 15:11:30 +01:00
|
|
|
#BuildIgnore: xml-apis
|
2014-07-08 12:59:15 +02:00
|
|
|
Requires: regexp
|
|
|
|
BuildArch: noarch
|
2007-01-15 23:52:11 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
The Byte Code Engineering Library is intended to give users a
|
|
|
|
convenient way to analyze, create, and manipulate (binary) Java class
|
|
|
|
files (those ending with .class). Classes are represented by objects
|
|
|
|
that contain all the symbolic information of the given class: methods,
|
|
|
|
fields, and byte code instructions, in particular.
|
|
|
|
|
|
|
|
Such objects can be read from an existing file, transformed by a
|
|
|
|
program (such as a class loader at runtime), and dumped to a file
|
|
|
|
again. An even more interesting application is the creation of classes
|
|
|
|
from scratch at runtime. The Byte Code Engineering Library (BCEL) may
|
|
|
|
also be useful if you want to learn about the Java Virtual Machine
|
|
|
|
(JVM) and the format of Java .class files.
|
|
|
|
|
|
|
|
BCEL is already being used successfully in several projects, such as
|
|
|
|
compilers, optimizers, obfuscators, code generators, and analysis
|
|
|
|
tools.
|
|
|
|
|
|
|
|
It contains a byte code verifier named JustIce, which usually gives you
|
|
|
|
much better information about what is wrong with your code than the
|
|
|
|
standard JVM message.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2017-09-27 19:08:39 +02:00
|
|
|
%patch0 -p1
|
2007-01-15 23:52:11 +01:00
|
|
|
# remove all binary libs
|
|
|
|
find . -name "*.jar" -exec rm -f {} \;
|
|
|
|
# very broken build
|
|
|
|
perl -p -i -e 's| depends=\"examples\"||g;' build.xml
|
|
|
|
touch manifest.txt
|
|
|
|
|
|
|
|
%build
|
|
|
|
export CLASSPATH=%(build-classpath regexp)
|
2009-06-02 12:27:25 +02:00
|
|
|
export OPT_JAR_LIST="ant/ant-nodeps"
|
2017-09-27 19:08:39 +02:00
|
|
|
ant \
|
2018-05-15 16:05:28 +02:00
|
|
|
-Dant.build.javac.target=8 -Dant.build.javac.source=8 \
|
2017-09-27 19:08:39 +02:00
|
|
|
-Dbuild.dest=./build -Dbuild.dir=./build -Dname=%{name} \
|
|
|
|
compile
|
|
|
|
ant \
|
2018-05-15 16:05:28 +02:00
|
|
|
-Dant.build.javac.target=8 -Dant.build.javac.source=8 \
|
2017-09-27 19:08:39 +02:00
|
|
|
-Dbuild.dest=./build -Dbuild.dir=./build -Dname=%{name} \
|
|
|
|
jar
|
2007-01-15 23:52:11 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
# jars
|
2014-07-08 12:59:15 +02:00
|
|
|
mkdir -p %{buildroot}%{_javadir}
|
|
|
|
install -m 644 target/%{name}-%{version}.jar %{buildroot}%{_javadir}/%{name}-%{version}.jar
|
|
|
|
(cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do ln -s ${jar} `echo $jar| sed "s|-%{version}||g"`; done)
|
2007-01-15 23:52:11 +01:00
|
|
|
|
2018-11-15 12:44:00 +01:00
|
|
|
mkdir -p %{buildroot}%{_mavenpomdir}
|
|
|
|
install -m 644 %{SOURCE2} %{buildroot}%{_mavenpomdir}/%{name}-%{version}.pom
|
|
|
|
|
|
|
|
%add_maven_depmap %{name}-%{version}.pom %{name}-%{version}.jar -a "bcel:bcel"
|
|
|
|
|
2007-01-15 23:52:11 +01:00
|
|
|
%files
|
2018-11-15 12:44:00 +01:00
|
|
|
%license LICENSE.txt
|
2007-01-15 23:52:11 +01:00
|
|
|
%{_javadir}/*
|
2018-11-15 12:44:00 +01:00
|
|
|
%{_mavenpomdir}/*
|
|
|
|
%{_datadir}/maven-metadata/%{name}.xml*
|
2007-01-15 23:52:11 +01:00
|
|
|
|
2008-07-25 16:47:40 +02:00
|
|
|
%changelog
|