Blame SPECS/antlr.spec

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