|
|
4a8f1f |
%global debug_package %{nil}
|
|
|
4a8f1f |
# since we have only a static library
|
|
|
4a8f1f |
|
|
|
4a8f1f |
Summary: ANother Tool for Language Recognition
|
|
|
4a8f1f |
Name: antlr
|
|
|
4a8f1f |
Version: 2.7.7
|
|
|
4a8f1f |
Release: 68%{?dist}
|
|
|
4a8f1f |
License: ANTLR-PD
|
|
|
4a8f1f |
URL: http://www.antlr2.org/
|
|
|
4a8f1f |
# ./generate-tarball.sh
|
|
|
4a8f1f |
Source0: antlr-%{version}.tar.gz
|
|
|
4a8f1f |
Source1: %{name}-build.xml
|
|
|
4a8f1f |
Source2: %{name}-script
|
|
|
4a8f1f |
Source3: http://repo2.maven.org/maven2/antlr/antlr/%{version}/%{name}-%{version}.pom
|
|
|
4a8f1f |
# Repack the tarball without prebuilt binaries of unknown origin
|
|
|
4a8f1f |
Source4: generate-tarball.sh
|
|
|
4a8f1f |
Patch1: %{name}-%{version}-newgcc.patch
|
|
|
4a8f1f |
|
|
|
4a8f1f |
BuildRequires: gcc-c++
|
|
|
4a8f1f |
BuildRequires: make
|
|
|
4a8f1f |
BuildRequires: ant
|
|
|
4a8f1f |
BuildRequires: java-devel
|
|
|
4a8f1f |
BuildRequires: javapackages-local
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%description
|
|
|
4a8f1f |
ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a
|
|
|
4a8f1f |
language tool that provides a framework for constructing recognizers,
|
|
|
4a8f1f |
compilers, and translators from grammatical descriptions containing
|
|
|
4a8f1f |
C++ or Java actions [You can use PCCTS 1.xx to generate C-based
|
|
|
4a8f1f |
parsers].
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%package tool
|
|
|
4a8f1f |
Summary: ANother Tool for Language Recognition
|
|
|
4a8f1f |
Provides: %{name} = %{version}-%{release}
|
|
|
4a8f1f |
# Explicit requires for javapackages-tools since antlr-script
|
|
|
4a8f1f |
# uses /usr/share/java-utils/java-functions
|
|
|
4a8f1f |
Requires: javapackages-tools
|
|
|
4a8f1f |
BuildArch: noarch
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%description tool
|
|
|
4a8f1f |
ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a
|
|
|
4a8f1f |
language tool that provides a framework for constructing recognizers,
|
|
|
4a8f1f |
compilers, and translators from grammatical descriptions containing
|
|
|
4a8f1f |
C++ or Java actions [You can use PCCTS 1.xx to generate C-based
|
|
|
4a8f1f |
parsers].
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%package manual
|
|
|
4a8f1f |
Summary: Manual for %{name}
|
|
|
4a8f1f |
BuildArch: noarch
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%description manual
|
|
|
4a8f1f |
Documentation for %{name}.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%package javadoc
|
|
|
4a8f1f |
Summary: Javadoc for %{name}
|
|
|
4a8f1f |
BuildArch: noarch
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%description javadoc
|
|
|
4a8f1f |
Javadoc for %{name}.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%package C++
|
|
|
4a8f1f |
Summary: C++ bindings for antlr2 generated parsers
|
|
|
4a8f1f |
Provides: antlr-static = %{version}-%{release}
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%description C++
|
|
|
4a8f1f |
This package provides a static C++ library for parsers generated by ANTLR2.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%prep
|
|
|
4a8f1f |
%setup -q
|
|
|
4a8f1f |
# remove all binary libs
|
|
|
4a8f1f |
find . -name "*.jar" -exec rm -f {} \;
|
|
|
4a8f1f |
cp -p %{SOURCE1} build.xml
|
|
|
4a8f1f |
%patch1
|
|
|
4a8f1f |
# CRLF->LF
|
|
|
4a8f1f |
sed -i 's/\r//' LICENSE.txt
|
|
|
4a8f1f |
|
|
|
4a8f1f |
# set jar location
|
|
|
4a8f1f |
%mvn_file %{name}:%{name} %{name}
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%build
|
|
|
4a8f1f |
ant -Dj2se.apidoc=%{_javadocdir}/java
|
|
|
4a8f1f |
# make expects to find it here
|
|
|
4a8f1f |
cp work/lib/antlr.jar .
|
|
|
4a8f1f |
export CLASSPATH=.
|
|
|
4a8f1f |
%configure --without-examples
|
|
|
4a8f1f |
make CXXFLAGS="${CXXFLAGS} -fPIC" DEBUG=1 verbose=1
|
|
|
4a8f1f |
# no longer needed
|
|
|
4a8f1f |
rm antlr.jar
|
|
|
4a8f1f |
|
|
|
4a8f1f |
# fix doc permissions and remove Makefiles
|
|
|
4a8f1f |
rm doc/{Makefile,Makefile.in}
|
|
|
4a8f1f |
chmod 0644 doc/*
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%install
|
|
|
4a8f1f |
# jars, POM and depmap
|
|
|
4a8f1f |
%mvn_artifact %{SOURCE3} work/lib/%{name}.jar
|
|
|
4a8f1f |
%mvn_alias %{name}:%{name} %{name}:%{name}all
|
|
|
4a8f1f |
%mvn_install -J work/api
|
|
|
4a8f1f |
|
|
|
4a8f1f |
mkdir -p $RPM_BUILD_ROOT{%{_includedir}/%{name},%{_libdir},%{_bindir}}
|
|
|
4a8f1f |
# script
|
|
|
4a8f1f |
install -p -m 755 %{SOURCE2} $RPM_BUILD_ROOT%{_bindir}/antlr
|
|
|
4a8f1f |
|
|
|
4a8f1f |
# C++ lib and headers, antlr-config
|
|
|
4a8f1f |
install -p -m 644 lib/cpp/antlr/*.hpp $RPM_BUILD_ROOT%{_includedir}/%{name}
|
|
|
4a8f1f |
install -p -m 644 lib/cpp/src/libantlr.a $RPM_BUILD_ROOT%{_libdir}
|
|
|
4a8f1f |
install -p -m 755 scripts/antlr-config $RPM_BUILD_ROOT%{_bindir}
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%files tool -f .mfiles
|
|
|
4a8f1f |
%license LICENSE.txt
|
|
|
4a8f1f |
%{_bindir}/antlr
|
|
|
4a8f1f |
|
|
|
4a8f1f |
# this is actually a development package for the C++ target
|
|
|
4a8f1f |
# as we ship only a static library, it doesn't make sense
|
|
|
4a8f1f |
# to have a separate -devel package for the headers
|
|
|
4a8f1f |
%files C++
|
|
|
4a8f1f |
%license LICENSE.txt
|
|
|
4a8f1f |
%{_includedir}/%{name}
|
|
|
4a8f1f |
%{_libdir}/libantlr.a
|
|
|
4a8f1f |
%{_bindir}/antlr-config
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%files manual
|
|
|
4a8f1f |
%license LICENSE.txt
|
|
|
4a8f1f |
%doc doc/*
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%files javadoc -f .mfiles-javadoc
|
|
|
4a8f1f |
%license LICENSE.txt
|
|
|
4a8f1f |
|
|
|
4a8f1f |
%changelog
|
|
|
4a8f1f |
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.7.7-68
|
|
|
4a8f1f |
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
4a8f1f |
Related: rhbz#1991688
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Jul 29 2021 Marian Koncek <mkoncek@redhat.com> - 2.7.7-67
|
|
|
4a8f1f |
- Remove files with proprietary license headers
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Jun 28 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.7.7-66
|
|
|
4a8f1f |
- Remove Python runtime
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 0:2.7.7-65
|
|
|
4a8f1f |
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-64
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-63
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Jul 21 2020 Fabio Valentini <decathorpe@gmail.com> - 0:2.7.7-62
|
|
|
4a8f1f |
- Set javac source / target version to 1.8 to fix issues with Java 11.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 0:2.7.7-61
|
|
|
4a8f1f |
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-60
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.7.7-58
|
|
|
4a8f1f |
- Mass rebuild for javapackages-tools 201902
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-59
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.7.7-57
|
|
|
4a8f1f |
- Mass rebuild for javapackages-tools 201901
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Mar 27 2019 Miro Hrončok <mhroncok@redhat.com> - 0:2.7.7-58
|
|
|
4a8f1f |
- Subpackage python2-antlr was removed
|
|
|
4a8f1f |
https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-57
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Jul 30 2018 Severin Gehwolf <sgehwolf@redhat.com> - 0:2.7.7-56
|
|
|
4a8f1f |
- Add explicit requirement of javapackages-tools.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Jul 24 2018 Michael Simacek <msimacek@redhat.com> - 0:2.7.7-55
|
|
|
4a8f1f |
- Repack the tarball without binaries
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-54
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-53
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Nov 7 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-52
|
|
|
4a8f1f |
- Switch to new license tag: ANTLR-PD
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sat Sep 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-51
|
|
|
4a8f1f |
- Conditionally allow building without C++ docs
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-50
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-49
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Jul 12 2017 Miro Hrončok <mhroncok@redhat.com> - 0:2.7.7-48
|
|
|
4a8f1f |
- Proper python2 subpackage name
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Feb 16 2017 Michael Simacek <msimacek@redhat.com> - 0:2.7.7-47
|
|
|
4a8f1f |
- Add conditional for python
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Feb 15 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-46
|
|
|
4a8f1f |
- Generalize requires on python2 packages
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-45
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Jan 31 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-44
|
|
|
4a8f1f |
- Add missing build-requires on GCC
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-43
|
|
|
4a8f1f |
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Mar 01 2016 gil cattaneo <puntogil@libero.it> 0:2.7.7-42
|
|
|
4a8f1f |
- fix URL field (rhbz#1313275)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Feb 29 2016 gil cattaneo <puntogil@libero.it> 0:2.7.7-41
|
|
|
4a8f1f |
- use python macros
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.7.7-40
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Oct 02 2015 gil cattaneo <puntogil@libero.it> 0:2.7.7-39
|
|
|
4a8f1f |
- adapt to current guideline
|
|
|
4a8f1f |
- remove some rpmlint problems
|
|
|
4a8f1f |
- disable javadoc doclint
|
|
|
4a8f1f |
- introduce license macro
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Aug 21 2015 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 0:2.7.7-38
|
|
|
4a8f1f |
- use %%{mono_archs} instead of hardcoding list (rhbz#1255726)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-37
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Apr 24 2015 Orion Poplawski <orion@cora.nwra.com> - 0:2.7.7-36
|
|
|
4a8f1f |
- Rebuild for gcc 5 C++11 ABI again
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sun Feb 22 2015 Orion Poplawski <orion@cora.nwra.com> - 0:2.7.7-35
|
|
|
4a8f1f |
- Rebuild for gcc 5 C++11 ABI
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-34
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.7.7-33
|
|
|
4a8f1f |
- Change python-setuptools-devel BR into python-setuptools.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-32
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed May 21 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-31
|
|
|
4a8f1f |
- Use .mfiles generated during build
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.7.7-30
|
|
|
4a8f1f |
- Use Requires: java-headless rebuild (#1067528)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Nov 11 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.7.7-29
|
|
|
4a8f1f |
- Do not install versioned jar (#1022080)
|
|
|
4a8f1f |
- Install LICENSE files in each independent subpackage
|
|
|
4a8f1f |
- Minor spec cleanups
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Nov 08 2013 Marek Goldmann <mgoldman@redhat.com> - 0:2.7.7-28
|
|
|
4a8f1f |
- Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-27
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-26
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sun Nov 25 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-25
|
|
|
4a8f1f |
- Move maven files from C++ to tool subpackage, resolves: rhbz#879885
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Nov 1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-24
|
|
|
4a8f1f |
- Add maven POM
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sat Aug 18 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-23
|
|
|
4a8f1f |
- Add patch updating license on ShowString.java and StreamConverter.java
|
|
|
4a8f1f |
examples (thanks to Tom Callaway, see BZ#848662)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-22
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Feb 01 2012 Jaroslav Reznik <jreznik@redhat.com> 0:2.7.7-21
|
|
|
4a8f1f |
- wrong version for jpackage-utils
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Feb 01 2012 Jaroslav Reznik <jreznik@redhat.com> 0:2.7.7-20
|
|
|
4a8f1f |
- Versioned Java (build)/requires for -tool too
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Jan 30 2012 Jaroslav Reznik <jreznik@redhat.com> 0:2.7.7-19
|
|
|
4a8f1f |
- Versioned Java (build)/requires
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Jan 27 2012 Alexander Kurtakov <akurtako@redhat.com> 0:2.7.7-18
|
|
|
4a8f1f |
- Disable c# part for rhel builds.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-17
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Mar 25 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-16
|
|
|
4a8f1f |
- Fixed wrong Obsoletes: antlr on antlr-tool (fix #689703)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-15
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Feb 07 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-14
|
|
|
4a8f1f |
- Remove INSTALL.txt (fix BZ#661626)
|
|
|
4a8f1f |
- add python subpackage (fix BZ#505312)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Feb 07 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-13
|
|
|
4a8f1f |
- Added missing Obsoletes: antlr on antlr-tool (fix BZ#603466)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Dec 13 2010 Dan Horák <dan[at]danny.cz> - 0:2.7.7-12
|
|
|
4a8f1f |
- sync the architecture list in BR with the mono package
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Nov 23 2010 Rex Dieter <rdieter@fedoraproject.org> - 0:2.7.7-11
|
|
|
4a8f1f |
- -tool: +Requires: java jpackage-utils (#595504)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Apr 29 2010 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-10
|
|
|
4a8f1f |
- Use original upstream tarball, prebuilt jars are anyway removed in %%prep
|
|
|
4a8f1f |
- Don't overuse macros
|
|
|
4a8f1f |
- Added explanation about headers in the C++ subpackage
|
|
|
4a8f1f |
- Remove unnecessary Makefile and Makefile.in from %%docs, permissions fixed
|
|
|
4a8f1f |
- Added doxygen docs for C++ as a -C++-doc subpackage
|
|
|
4a8f1f |
- antlr-config moved into the C++ subpackage
|
|
|
4a8f1f |
- Removed %%post and %%postun javadoc relicts from JPackage
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Apr 27 2010 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-9
|
|
|
4a8f1f |
- Drop native build, alternatives, jedit, gcj bits and other jpackage crap
|
|
|
4a8f1f |
- Disable debuginfo since we have only a static library.
|
|
|
4a8f1f |
- Use %%global everywhere
|
|
|
4a8f1f |
- Split the C++ bindings into a separate -C++ subpackage
|
|
|
4a8f1f |
- Use -tool subpackage with Provide: antlr to make it possible to be noarch
|
|
|
4a8f1f |
- Use sed instead of perl => drop BR: perl
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Apr 20 2010 Orion Poplawski <orion@cora.nwra.com> 0:2.7.7-8
|
|
|
4a8f1f |
- Cannot be noarch
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Apr 7 2010 Alexander Kurtakov <akurtako@redhat.com> 0:2.7.7-7
|
|
|
4a8f1f |
- Disable gcj.
|
|
|
4a8f1f |
- Use %%global.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-6
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Mar 20 2009 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-5
|
|
|
4a8f1f |
- Include cstdio in CharScanner.hpp (needed to build with GCC 4.4)
|
|
|
4a8f1f |
- Merge changes from includestrings patch into the above one
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-4
|
|
|
4a8f1f |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Jan 09 2009 Dennis Gilmore <dennis@ausil.us> 2.7.7-3
|
|
|
4a8f1f |
- exlcude using mono on sparc64
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Jul 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.7-2
|
|
|
4a8f1f |
- drop repotag
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Feb 27 2008 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-1jpp.7
|
|
|
4a8f1f |
- Add strings inclusion (for GCC 4.3)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Sep 24 2007 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-1jpp.6
|
|
|
4a8f1f |
- Resolve bz# 242305: Remove libantlr-pic.a, and compile libantlr.a with fPIC
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.7.7-1jpp.5
|
|
|
4a8f1f |
- Rebuild for selinux ppc32 issue.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Jun 12 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.4.fc8
|
|
|
4a8f1f |
- Added a PIC compiled archive (bz# 242305)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Jun 07 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.3
|
|
|
4a8f1f |
- Applied patch to fix conditionals (from skasal at redhat dot com)
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Mar 26 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.2
|
|
|
4a8f1f |
- Added unowned dir to files list
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Jan 19 2007 Deepak Bhole <dbhole@redhat.com> 0:2.7.7-1jpp.1
|
|
|
4a8f1f |
- Upgrade to 2.7.7
|
|
|
4a8f1f |
- Resolve 172456 with patches from Vadim Nasardinov and Radu Greab
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Aug 03 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-4jpp.2
|
|
|
4a8f1f |
- Add missing postun for javadoc.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu Aug 03 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-4jpp.1
|
|
|
4a8f1f |
- Add missing requirements.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sat Jul 22 2006 Thomas Fitzsimmons <fitzsim@redhat.com> - 0:2.7.6-3jpp_5fc
|
|
|
4a8f1f |
- Unstub docs.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> - 0:2.7.6-3jpp_4fc
|
|
|
4a8f1f |
- Remove hack-libgcj requirement.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Jul 21 2006 Thomas Fitzsimmons <fitzsim@redhat.com> - 0:2.7.6-3jpp_3fc
|
|
|
4a8f1f |
- Stub docs. (dist-fc6-java)
|
|
|
4a8f1f |
- Require hack-libgcj for build. (dist-fc6-java)
|
|
|
4a8f1f |
- Bump release number.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Jul 19 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-3jpp_2fc
|
|
|
4a8f1f |
- From gbenson@redhat:
|
|
|
4a8f1f |
- Omit the jedit subpackage to fix dependencies.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Jul 19 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-3jpp_1fc
|
|
|
4a8f1f |
- Added conditional native compilation.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Jan 13 2006 Fernando Nasser <fnasser@redhat.com> - 0:2.7.6-2jpp
|
|
|
4a8f1f |
- First JPP 1.7 build
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Jan 13 2006 Fernando Nasser <fnasser@redhat.com> - 0:2.7.6-1jpp
|
|
|
4a8f1f |
- Update to 2.7.6.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Aug 20 2004 Ralph Apel <r.apel at r-apel.de> - 0:2.7.4-2jpp
|
|
|
4a8f1f |
- Build with ant-1.6.2.
|
|
|
4a8f1f |
- Made native scripts conditional
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue May 18 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.4-1jpp
|
|
|
4a8f1f |
- Update to 2.7.4.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Apr 2 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.3-2jpp
|
|
|
4a8f1f |
- Create alternatives also on upgrades.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Mar 31 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.3-1jpp
|
|
|
4a8f1f |
- Update to 2.7.3.
|
|
|
4a8f1f |
- Include gcj build option and a native subpackage, build using
|
|
|
4a8f1f |
"--with native" to get that.
|
|
|
4a8f1f |
- Add %%{_bindir}/antlr alternative.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Mon Dec 15 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.2-3jpp
|
|
|
4a8f1f |
- Add non-versioned javadoc dir symlink.
|
|
|
4a8f1f |
- Crosslink with local J2SE javadocs.
|
|
|
4a8f1f |
- Spec cleanups, change to UTF-8.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sun Mar 30 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.2-2jpp
|
|
|
4a8f1f |
- Rebuild for JPackage 1.5.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sat Mar 1 2003 Ville Skyttä <ville.skytta at iki.fi> - 2.7.2-1jpp
|
|
|
4a8f1f |
- Update to 2.7.2.
|
|
|
4a8f1f |
- Include antlr script and jEdit mode (see antlr-jedit RPM description).
|
|
|
4a8f1f |
- Use sed instead of bash 2 extension when symlinking jars during build.
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue May 07 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-8jpp
|
|
|
4a8f1f |
- really section macro
|
|
|
4a8f1f |
- hardcoded distribution and vendor tag
|
|
|
4a8f1f |
- group tag again
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Thu May 2 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-7jpp
|
|
|
4a8f1f |
- distribution tag
|
|
|
4a8f1f |
- group tag
|
|
|
4a8f1f |
- section macro
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Fri Jan 18 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-6jpp
|
|
|
4a8f1f |
- versioned dir for javadoc
|
|
|
4a8f1f |
- no dependencies for manual and javadoc packages
|
|
|
4a8f1f |
- additional sources in individual archives
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sat Dec 1 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-5jpp
|
|
|
4a8f1f |
- javadoc in javadoc package
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 2.7.1-4jpp
|
|
|
4a8f1f |
- removed packager tag
|
|
|
4a8f1f |
- new jpp extension
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sat Oct 6 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-3jpp
|
|
|
4a8f1f |
- used a build file instead of makefile
|
|
|
4a8f1f |
- build classes instead of blindly jared them !
|
|
|
4a8f1f |
- used original tarball
|
|
|
4a8f1f |
- corrected license spelling
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Sun Sep 30 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-2jpp
|
|
|
4a8f1f |
- first unified release
|
|
|
4a8f1f |
- s/jPackage/JPackage
|
|
|
4a8f1f |
|
|
|
4a8f1f |
* Tue Aug 28 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-1mdk
|
|
|
4a8f1f |
- first Mandrake release
|