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
|
|
|
#
|
2015-03-25 10:23:24 +01:00
|
|
|
# Copyright (c) 2015 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.
|
|
|
|
|
2007-01-15 23:52:11 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
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
|
2014-07-08 12:59:15 +02:00
|
|
|
Url: http://commons.apache.org/proper/commons-bcel/
|
2013-08-29 13:46:24 +02:00
|
|
|
Source0: http://www.apache.org/dist/commons/bcel/source/%{name}-%{version}-src.tar.gz
|
|
|
|
Source1: http://www.apache.org/dist/commons/bcel/source/%{name}-%{version}-src.tar.gz.asc
|
|
|
|
Source2: bcel.keyring
|
2012-05-15 10:00:11 +02:00
|
|
|
BuildRequires: ant
|
|
|
|
BuildRequires: java-1_5_0-gcj-compat-devel
|
|
|
|
BuildRequires: regexp
|
2013-01-07 13:16:59 +01:00
|
|
|
#BuildRequires: xerces-j2-bootstrap
|
2008-07-28 01:10:13 +02:00
|
|
|
#!BuildIgnore: xml-commons-apis xml-commons-resolver xml-commons xerces-j2
|
2010-11-15 17:45:19 +01:00
|
|
|
#!BuildIgnore: xml-commons-jaxp-1.3-apis
|
2012-05-15 10:00:11 +02:00
|
|
|
#!BuildIgnore: java-1_6_0-openjdk-devel
|
|
|
|
#!BuildIgnore: java-1_7_0-openjdk-devel
|
2014-07-08 12:59:15 +02:00
|
|
|
#!BuildIgnore: xerces-j2-bootstrap
|
|
|
|
BuildRequires: xml-commons-apis-bootstrap
|
|
|
|
Requires: regexp
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
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
|
|
|
|
# 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"
|
2015-03-25 10:23:24 +01:00
|
|
|
ant -Dbuild.dest=./build -Dbuild.dir=./build -Dname=%{name} compile
|
|
|
|
ant -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
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(0644,root,root,0755)
|
2014-07-08 12:59:15 +02:00
|
|
|
%doc LICENSE.txt
|
2007-01-15 23:52:11 +01:00
|
|
|
%{_javadir}/*
|
|
|
|
|
2008-07-25 16:47:40 +02:00
|
|
|
%changelog
|