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