Blame SPECS/antlr.spec

a51f38
%global pkg_name antlr
a51f38
%{?scl:%scl_package %{pkg_name}}
a51f38
%{?java_common_find_provides_and_requires}
a51f38
a51f38
%global debug_package %{nil}
a51f38
# since we have only a static library
a51f38
a51f38
Summary:		ANother Tool for Language Recognition
a51f38
Name:			%{?scl_prefix}%{pkg_name}
a51f38
Version:		2.7.7
9541d7
Release:		29.18%{?dist}
a51f38
Epoch:			0
a51f38
License:		Public Domain
a51f38
URL:			http://www.antlr.org/
a51f38
Source0:		http://www.antlr2.org/download/antlr-%{version}.tar.gz
a51f38
Source1:		%{pkg_name}-build.xml
a51f38
Source2:		%{pkg_name}-script
a51f38
Source3:                http://repo2.maven.org/maven2/%{pkg_name}/%{pkg_name}/%{version}/%{pkg_name}-%{version}.pom
a51f38
Patch1:			%{pkg_name}-%{version}-newgcc.patch
a51f38
# see BZ#848662
a51f38
Patch2:			antlr-examples-license.patch
a51f38
a51f38
%ifarch %ix86 x86_64 ia64 armv4l sparcv9 alpha s390x ppc ppc64
a51f38
%if ! 0%{?rhel} >= 6
a51f38
BuildRequires:	mono-core
a51f38
BuildRequires:	mono-winforms
a51f38
%endif
a51f38
%endif
a51f38
BuildRequires:	%{?scl_prefix}ant
a51f38
BuildRequires:	%{?scl_prefix}javapackages-tools
a51f38
a51f38
a51f38
%description
a51f38
ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a
a51f38
language tool that provides a framework for constructing recognizers,
a51f38
compilers, and translators from grammatical descriptions containing
a51f38
C++ or Java actions [You can use PCCTS 1.xx to generate C-based
a51f38
parsers].
a51f38
a51f38
%package			tool
a51f38
Summary:			ANother Tool for Language Recognition
a51f38
BuildArch:			noarch
a51f38
a51f38
%description	tool
a51f38
ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a
a51f38
language tool that provides a framework for constructing recognizers,
a51f38
compilers, and translators from grammatical descriptions containing
a51f38
C++ or Java actions [You can use PCCTS 1.xx to generate C-based
a51f38
parsers].
a51f38
a51f38
%package		manual
a51f38
Summary:		Manual for %{pkg_name}
a51f38
BuildArch:		noarch
a51f38
Requires:       %{?scl_prefix}runtime
a51f38
a51f38
%description	manual
a51f38
Documentation for %{pkg_name}.
a51f38
a51f38
%package		javadoc
a51f38
Summary:		Javadoc for %{pkg_name}
a51f38
BuildArch:		noarch
a51f38
a51f38
%description	javadoc
a51f38
Javadoc for %{pkg_name}.
a51f38
a51f38
%package		C++
a51f38
Summary:		C++ bindings for antlr2 generated parsers
a51f38
Requires:       %{?scl_prefix}runtime
a51f38
a51f38
%description	C++
a51f38
This package provides a static C++ library for parsers generated by ANTLR2.
a51f38
a51f38
%package		C++-doc
a51f38
Summary:		Documentation for C++ bindings for antlr2 generated parsers
a51f38
BuildRequires:	doxygen
a51f38
BuildArch:		noarch
a51f38
Requires:       %{?scl_prefix}runtime
a51f38
a51f38
%description	C++-doc
a51f38
This package contains the documentation for the C++ bindings for parsers
a51f38
generated by ANTLR2.
a51f38
a51f38
%prep
a51f38
%setup -q -n %{pkg_name}-%{version}
a51f38
%{?scl:scl enable %{scl_maven} %{scl} - <<"EOF"}
a51f38
set -e -x
a51f38
# remove all binary libs
a51f38
find . -name "*.jar" -exec rm -f {} \;
a51f38
cp -p %{SOURCE1} build.xml
a51f38
%patch1
a51f38
%patch2 -p1
a51f38
# CRLF->LF
a51f38
sed -i 's/\r//' LICENSE.txt
a51f38
%{?scl:EOF}
a51f38
a51f38
%build
a51f38
%{?scl:scl enable %{scl_maven} %{scl} - <<"EOF"}
a51f38
set -e -x
a51f38
ant -Dj2se.apidoc=%{_javadocdir}/java
a51f38
cp work/lib/antlr.jar .  # make expects to find it here
a51f38
export CLASSPATH=.
a51f38
%configure --without-examples
a51f38
make CXXFLAGS="${CXXFLAGS} -fPIC" DEBUG=1 verbose=1
a51f38
rm antlr.jar			 # no longer needed
a51f38
a51f38
# fix doc permissions and remove Makefiles
a51f38
rm doc/{Makefile,Makefile.in}
a51f38
chmod 0644 doc/*
a51f38
a51f38
# generate doxygen docs for C++ bindings
a51f38
pushd lib/cpp
a51f38
	doxygen doxygen.cfg
a51f38
	find gen_doc -type f -exec chmod 0644 {} \;
a51f38
popd
a51f38
a51f38
# build python
a51f38
cd lib/python
a51f38
%{__python} setup.py build
a51f38
cd ../../
a51f38
%{?scl:EOF}
a51f38
a51f38
%install
a51f38
%{?scl:scl enable %{scl_maven} %{scl} - <<"EOF"}
a51f38
set -e -x
a51f38
mkdir -p $RPM_BUILD_ROOT{%{_includedir}/%{pkg_name},%{_libdir},%{_bindir}}
a51f38
a51f38
# jars
a51f38
mkdir -p $RPM_BUILD_ROOT%{_javadir}
a51f38
cp -p work/lib/%{pkg_name}.jar $RPM_BUILD_ROOT%{_javadir}/%{pkg_name}-%{version}.jar
a51f38
(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done)
a51f38
a51f38
# script
a51f38
install -p -m 755 %{SOURCE2} $RPM_BUILD_ROOT%{_bindir}/antlr
a51f38
a51f38
# C++ lib and headers, antlr-config
a51f38
a51f38
install -p -m 644 lib/cpp/antlr/*.hpp $RPM_BUILD_ROOT%{_includedir}/%{pkg_name}
a51f38
install -p -m 644 lib/cpp/src/libantlr.a $RPM_BUILD_ROOT%{_libdir}
a51f38
install -p -m 755 scripts/antlr-config $RPM_BUILD_ROOT%{_bindir}
a51f38
a51f38
# javadoc
a51f38
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
a51f38
cp -pr work/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
a51f38
a51f38
# POM and depmap
a51f38
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
a51f38
install -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{pkg_name}.pom
a51f38
%add_maven_depmap -a antlr:antlrall
a51f38
%{?scl:EOF}
a51f38
a51f38
%files tool -f .mfiles
a51f38
%defattr(-,root,root,-)
a51f38
%doc LICENSE.txt
a51f38
%{_javadir}/%{pkg_name}*.jar
a51f38
%{_bindir}/antlr
a51f38
a51f38
# this is actually a development package for the C++ target
a51f38
# as we ship only a static library, it doesn't make sense
a51f38
# to have a separate -devel package for the headers
a51f38
%files C++
a51f38
%defattr(-,root,root,-)
a51f38
%{_includedir}/%{pkg_name}
a51f38
%{_libdir}/libantlr.a
a51f38
%{_bindir}/antlr-config
a51f38
a51f38
%files C++-doc
a51f38
%defattr(-,root,root,-)
a51f38
%doc lib/cpp/gen_doc/html/
a51f38
a51f38
%files manual
a51f38
%defattr(-,root,root,-)
a51f38
%doc doc/*
a51f38
a51f38
%files javadoc
a51f38
%defattr(-,root,root,-)
a51f38
%doc %{_javadocdir}/%{name}
a51f38
a51f38
%changelog
9541d7
* Wed Jun 10 2015 Michal Srb <msrb@redhat.com> - 0:2.7.7-29.18
9541d7
- Build for ppc64
9541d7
a51f38
* Wed Jan 14 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.17
a51f38
- Add requires on SCL filesystem package
a51f38
a51f38
* Tue Jan 13 2015 Michael Simacek <msimacek@redhat.com> - 0:2.7.7-29.16
a51f38
- Mass rebuild 2015-01-13
a51f38
a51f38
* Fri Jan 09 2015 Michal Srb <msrb@redhat.com> - 0:2.7.7-29.15
a51f38
- Mass rebuild 2015-01-09
a51f38
a51f38
* Wed Jan 07 2015 Michal Srb <msrb@redhat.com> - 0:2.7.7-29.14
a51f38
- Fix FTBFS
a51f38
a51f38
* Wed Jan 07 2015 Michal Srb <msrb@redhat.com> - 0:2.7.7-29.13
a51f38
- Migrate to .mfiles
a51f38
a51f38
* Tue Dec 16 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.12
a51f38
- Migrate requires and build-requires to rh-java-common
a51f38
a51f38
* Mon Dec 15 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.11
a51f38
- Mass rebuild 2014-12-15
a51f38
a51f38
* Mon Dec 15 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.10
a51f38
- Rebuild for rh-java-common collection
a51f38
a51f38
* Mon Jun  2 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.9
a51f38
- Install javadocs to unversioned directory
a51f38
a51f38
* Mon May 26 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.8
a51f38
- Mass rebuild 2014-05-26
a51f38
a51f38
* Wed Feb 19 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.7
a51f38
- Mass rebuild 2014-02-19
a51f38
a51f38
* Tue Feb 18 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.6
a51f38
- Mass rebuild 2014-02-18
a51f38
a51f38
* Tue Feb 18 2014 Michal Srb <msrb@redhat.com> - 0:2.7.7-29.5
a51f38
- Remove python binding
a51f38
a51f38
* Tue Feb 18 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.4
a51f38
- Remove requires on java
a51f38
a51f38
* Mon Feb 17 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.3
a51f38
- SCL-ize build-requires
a51f38
a51f38
* Thu Feb 13 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.2
a51f38
- Rebuild to regenerate auto-requires
a51f38
a51f38
* Tue Feb 11 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-29.1
a51f38
- First maven30 software collection build
a51f38
a51f38
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 02.7.7-29
a51f38
- Mass rebuild 2014-01-24
a51f38
a51f38
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 02.7.7-28
a51f38
- Mass rebuild 2013-12-27
a51f38
a51f38
* Fri Jun 28 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-27
a51f38
- Rebuild to regenerate API documentation
a51f38
- Resolves: CVE-2013-1571
a51f38
a51f38
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-26
a51f38
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
a51f38
a51f38
* Sun Nov 25 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-25
a51f38
- Move maven files from C++ to tool subpackage, resolves: rhbz#879885
a51f38
a51f38
* Thu Nov  1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-24
a51f38
- Add maven POM
a51f38
a51f38
* Sat Aug 18 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-23
a51f38
- Add patch updating license on ShowString.java and StreamConverter.java
a51f38
  examples (thanks to Tom Callaway, see BZ#848662)
a51f38
a51f38
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-22
a51f38
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a51f38
a51f38
* Wed Feb 01 2012 Jaroslav Reznik <jreznik@redhat.com> 0:2.7.7-21
a51f38
- wrong version for jpackage-utils
a51f38
a51f38
* Wed Feb 01 2012 Jaroslav Reznik <jreznik@redhat.com> 0:2.7.7-20
a51f38
- Versioned Java (build)/requires for -tool too
a51f38
a51f38
* Mon Jan 30 2012 Jaroslav Reznik <jreznik@redhat.com> 0:2.7.7-19
a51f38
- Versioned Java (build)/requires
a51f38
a51f38
* Fri Jan 27 2012 Alexander Kurtakov <akurtako@redhat.com> 0:2.7.7-18
a51f38
- Disable c# part for rhel builds.
a51f38
a51f38
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-17
a51f38
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
a51f38
a51f38
* Fri Mar 25 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-16
a51f38
- Fixed wrong Obsoletes: antlr on antlr-tool (fix #689703)
a51f38
a51f38
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-15
a51f38
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a51f38
a51f38
* Mon Feb 07 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-14
a51f38
- Remove INSTALL.txt (fix BZ#661626)
a51f38
- add python subpackage (fix BZ#505312)
a51f38
a51f38
* Mon Feb 07 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-13
a51f38
- Added missing Obsoletes: antlr on antlr-tool (fix BZ#603466)
a51f38
a51f38
* Mon Dec 13 2010 Dan Horák <dan[at]danny.cz> - 0:2.7.7-12
a51f38
- sync the architecture list in BR with the mono package
a51f38
a51f38
* Tue Nov 23 2010 Rex Dieter <rdieter@fedoraproject.org> - 0:2.7.7-11
a51f38
- -tool: +Requires: java jpackage-utils (#595504)
a51f38
a51f38
* Thu Apr 29 2010 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-10
a51f38
- Use original upstream tarball, prebuilt jars are anyway removed in %%prep
a51f38
- Don't overuse macros
a51f38
- Added explanation about headers in the C++ subpackage
a51f38
- Remove unnecessary Makefile and Makefile.in from %%docs, permissions fixed
a51f38
- Added doxygen docs for C++ as a -C++-doc subpackage
a51f38
- antlr-config moved into the C++ subpackage
a51f38
- Removed %%post and %%postun javadoc relicts from JPackage
a51f38
a51f38
* Tue Apr 27 2010 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-9
a51f38
- Drop native build, alternatives, jedit, gcj bits and other jpackage crap
a51f38
- Disable debuginfo since we have only a static library.
a51f38
- Use %%global everywhere
a51f38
- Split the C++ bindings into a separate -C++ subpackage
a51f38
- Use -tool subpackage with Provide: antlr to make it possible to be noarch
a51f38
- Use sed instead of perl => drop BR: perl
a51f38
a51f38
* Tue Apr 20 2010 Orion Poplawski <orion@cora.nwra.com> 0:2.7.7-8
a51f38
- Cannot be noarch
a51f38
a51f38
* Wed Apr 7 2010 Alexander Kurtakov <akurtako@redhat.com> 0:2.7.7-7
a51f38
- Disable gcj.
a51f38
- Use %%global.
a51f38
a51f38
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-6
a51f38
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
a51f38
a51f38
* Fri Mar 20 2009 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-5
a51f38
- Include cstdio in CharScanner.hpp (needed to build with GCC 4.4)
a51f38
- Merge changes from includestrings patch into the above one
a51f38
a51f38
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-4
a51f38
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
a51f38
a51f38
* Fri Jan 09 2009 Dennis Gilmore <dennis@ausil.us> 2.7.7-3
a51f38
- exlcude using mono on sparc64
a51f38
a51f38
* Wed Jul  9 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.7-2
a51f38
- drop repotag
a51f38
a51f38
* Wed Feb 27 2008 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-1jpp.7
a51f38
- Add strings inclusion (for GCC 4.3)
a51f38
a51f38
* Mon Sep 24 2007 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-1jpp.6
a51f38
- Resolve bz# 242305: Remove libantlr-pic.a, and compile libantlr.a with fPIC
a51f38
a51f38
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.7.7-1jpp.5
a51f38
- Rebuild for selinux ppc32 issue.
a51f38
a51f38
* Tue Jun 12 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.4.fc8
a51f38
- Added a PIC compiled archive (bz# 242305)
a51f38
a51f38
* Thu Jun 07 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.3
a51f38
- Applied patch to fix conditionals (from skasal at redhat dot com)
a51f38
a51f38
* Mon Mar 26 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.2
a51f38
- Added unowned dir to files list
a51f38
a51f38
* Fri Jan 19 2007 Deepak Bhole <dbhole@redhat.com> 0:2.7.7-1jpp.1
a51f38
- Upgrade to 2.7.7
a51f38
- Resolve 172456 with patches from Vadim Nasardinov and Radu Greab
a51f38
a51f38
* Thu Aug 03 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-4jpp.2
a51f38
- Add missing postun for javadoc.
a51f38
a51f38
* Thu Aug 03 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-4jpp.1
a51f38
- Add missing requirements.
a51f38
a51f38
* Sat Jul 22 2006 Thomas Fitzsimmons <fitzsim@redhat.com> - 0:2.7.6-3jpp_5fc
a51f38
- Unstub docs.
a51f38
a51f38
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> - 0:2.7.6-3jpp_4fc
a51f38
- Remove hack-libgcj requirement.
a51f38
a51f38
* Fri Jul 21 2006 Thomas Fitzsimmons <fitzsim@redhat.com> - 0:2.7.6-3jpp_3fc
a51f38
- Stub docs. (dist-fc6-java)
a51f38
- Require hack-libgcj for build. (dist-fc6-java)
a51f38
- Bump release number.
a51f38
a51f38
* Wed Jul 19 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-3jpp_2fc
a51f38
- From gbenson@redhat:
a51f38
- Omit the jedit subpackage to fix dependencies. 
a51f38
a51f38
* Wed Jul 19 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-3jpp_1fc
a51f38
- Added conditional native compilation.
a51f38
a51f38
* Fri Jan 13 2006 Fernando Nasser <fnasser@redhat.com> - 0:2.7.6-2jpp
a51f38
- First JPP 1.7 build
a51f38
a51f38
* Fri Jan 13 2006 Fernando Nasser <fnasser@redhat.com> - 0:2.7.6-1jpp
a51f38
- Update to 2.7.6.
a51f38
a51f38
* Fri Aug 20 2004 Ralph Apel <r.apel at r-apel.de> - 0:2.7.4-2jpp
a51f38
- Build with ant-1.6.2.
a51f38
- Made native scripts conditional
a51f38
a51f38
* Tue May 18 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.4-1jpp
a51f38
- Update to 2.7.4.
a51f38
a51f38
* Fri Apr  2 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.3-2jpp
a51f38
- Create alternatives also on upgrades.
a51f38
a51f38
* Wed Mar 31 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.3-1jpp
a51f38
- Update to 2.7.3.
a51f38
- Include gcj build option and a native subpackage, build using
a51f38
  "--with native" to get that.
a51f38
- Add %%{_bindir}/antlr alternative.
a51f38
a51f38
* Mon Dec 15 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.2-3jpp
a51f38
- Add non-versioned javadoc dir symlink.
a51f38
- Crosslink with local J2SE javadocs.
a51f38
- Spec cleanups, change to UTF-8.
a51f38
a51f38
* Sun Mar 30 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.2-2jpp
a51f38
- Rebuild for JPackage 1.5.
a51f38
a51f38
* Sat Mar  1 2003 Ville Skyttä <ville.skytta at iki.fi> - 2.7.2-1jpp
a51f38
- Update to 2.7.2.
a51f38
- Include antlr script and jEdit mode (see antlr-jedit RPM description).
a51f38
- Use sed instead of bash 2 extension when symlinking jars during build.
a51f38
a51f38
* Tue May 07 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-8jpp
a51f38
- really section macro
a51f38
- hardcoded distribution and vendor tag
a51f38
- group tag again
a51f38
a51f38
* Thu May 2 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-7jpp
a51f38
- distribution tag
a51f38
- group tag
a51f38
- section macro
a51f38
a51f38
* Fri Jan 18 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-6jpp
a51f38
- versioned dir for javadoc
a51f38
- no dependencies for manual and javadoc packages
a51f38
- additional sources in individual archives
a51f38
a51f38
* Sat Dec 1 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-5jpp
a51f38
- javadoc in javadoc package
a51f38
a51f38
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 2.7.1-4jpp
a51f38
- removed packager tag
a51f38
- new jpp extension
a51f38
a51f38
* Sat Oct 6 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-3jpp
a51f38
- used a build file instead of makefile
a51f38
- build classes instead of blindly jared them !
a51f38
- used original tarball
a51f38
- corrected license spelling
a51f38
a51f38
* Sun Sep 30 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-2jpp
a51f38
- first unified release
a51f38
- s/jPackage/JPackage
a51f38
a51f38
* Tue Aug 28 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-1mdk
a51f38
- first Mandrake release