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