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