a009d67842
Copy from Java:packages/antlr based on submit request 46995 from user mvyskocil OBS-URL: https://build.opensuse.org/request/show/46995 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/antlr?expand=0&rev=15
151 lines
3.9 KiB
RPMSpec
151 lines
3.9 KiB
RPMSpec
#
|
|
# spec file for package antlr-bootstrap (Version 2.7.7)
|
|
#
|
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
|
|
Name: antlr-bootstrap
|
|
%define non_bootstrap_name antlr
|
|
BuildRequires: fastjar gcc-gij gcc-java unzip zip
|
|
BuildRequires: ecj-bootstrap >= 0.570
|
|
%define real_name antlr
|
|
Summary: Antlr for bootstrapping purposes
|
|
Version: 2.7.7
|
|
Release: 79
|
|
Url: http://www.antlr.org
|
|
Group: Development/Libraries/Java
|
|
License: BSD3c ; Public Domain, Freeware
|
|
AutoReqProv: on
|
|
Source0: antlr-%{version}.tar.bz2
|
|
Source1: manifest.antlr
|
|
# files for the source package
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
This antlr package is used for bootstrapping purposes only.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
This antlr package is used for bootstrapping purposes only.
|
|
|
|
%prep
|
|
#<<< package descriptions end
|
|
#>>>
|
|
# antlr
|
|
%setup -n %{real_name}-%{version}
|
|
find | grep "\(ShowString.java$\|StreamConverter.java$\)" && exit 42
|
|
#<<<
|
|
#>>> %build
|
|
|
|
%build
|
|
#>>> some useful functions ... used throughout bootstrap packages
|
|
# variables:
|
|
TARGET_DIR=`pwd`
|
|
CLASSPATH_ORIG="$CLASSPATH"
|
|
LIB_GCJ="`ls %{_javadir}/libgcj-*.jar`"
|
|
#>>> delete binary file and files not needed
|
|
function delBinaryFiles() {
|
|
set +x
|
|
echo deleting binary files ...
|
|
for file in `find . -name "*.class" -o -name "*.jar" -o -name "*DELETED-BY-PACKAGER*"`
|
|
do
|
|
rm -rf $file
|
|
done
|
|
set -x
|
|
}
|
|
#<<<
|
|
#>>> make a string with all jar files found in target folder that can be used for a classpath string
|
|
# string is saved in JAR_CLASSPATH
|
|
function mkTargetClasspath() {
|
|
set +x
|
|
JAR_CLASSPATH=""
|
|
for file in `find %{_javadir} -name "*.jar"`
|
|
do
|
|
JAR_CLASSPATH=$file:$JAR_CLASSPATH
|
|
done
|
|
set -x
|
|
}
|
|
#<<<
|
|
#>>> compiles all *.java file in the current directory tree
|
|
# uses mkTargetClasspath for CLASSPATH variable
|
|
# uses LIB_GCJ for CLASSPATH
|
|
function compileFiles() {
|
|
mkTargetClasspath
|
|
set +x
|
|
COMPILE_CLASSPATH_PATH=.:${JAR_CLASSPATH}
|
|
echo using: $COMPILER_COMMAND $COMPILE_CLASSPATH_PATH $$file
|
|
for file in `find . -name "*.java"`
|
|
do
|
|
echo -e "$COMPILER_COMMAND $COMPILE_CLASSPATH_PATH $file ... \c"
|
|
$COMPILER_COMMAND $COMPILE_CLASSPATH_PATH $file
|
|
# check for errors
|
|
if [ $? != 0 ]
|
|
then
|
|
echo ERROR
|
|
exit 1;
|
|
fi
|
|
echo done
|
|
done
|
|
set -x
|
|
}
|
|
#<<<
|
|
#>>> make jar archive
|
|
# PARAM#1: name of jar archive (without .jar suffix)
|
|
# uses $TARGET_DIR to move created jar to
|
|
function mkJar() {
|
|
find -name "version.txt" -or -name "*.class" -or -name "*.properties" -or -name "*.rsc" -or -name "*manifest*" |\
|
|
xargs /usr/bin/fastjar -m manifest.* -cf ${1}.jar ;
|
|
mv ${1}.jar $TARGET_DIR
|
|
}
|
|
#<<<
|
|
COMPILER_COMMAND="gij -jar %{_javadir}/jdtcore.jar -cp "
|
|
#<<< end functions
|
|
delBinaryFiles
|
|
#>>> antlr
|
|
mkdir src
|
|
mv antlr src
|
|
cd src
|
|
cp %{SOURCE1} .
|
|
compileFiles
|
|
mkJar %{name}
|
|
delBinaryFiles
|
|
#<<< end antlr
|
|
#<<< end %build
|
|
#>>> %install
|
|
|
|
%install
|
|
%{__install} -d -m 0755 %{buildroot}%{_javadir}
|
|
%{__install} -m 0644 %{name}.jar %{buildroot}%{_javadir}/
|
|
%{__ln_s} -f %{_javadir}/%{name}.jar %{buildroot}/%{_javadir}/%{name}-%{version}.jar
|
|
#<<<
|
|
|
|
%clean
|
|
%{__rm} -rf %{buildroot}
|
|
#>>> files
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
#%dir %{_javadir}
|
|
%{_javadir}/%{name}*.jar
|
|
#<<<
|
|
# vim:fdm=marker:foldmarker=#>>>,#<<<:foldcolumn=6:
|
|
|
|
%changelog
|