3b3184
3b3184
Name:           velocity
3b3184
Version:        1.7
3b3184
Release:        26%{?dist}
3b3184
Summary:        Java-based template engine
3b3184
License:        ASL 2.0
3b3184
URL:            http://velocity.apache.org/
3b3184
BuildArch:      noarch
3b3184
3b3184
# ./generate-tarball.sh
3b3184
Source0:        %{name}-%{version}.tar.gz
3b3184
Source1:        http://repo1.maven.org/maven2/org/apache/%{name}/%{name}/%{version}/%{name}-%{version}.pom
3b3184
# Remove bundled binaries which cannot be easily verified for licensing
3b3184
Source2:        generate-tarball.sh
3b3184
3b3184
Patch0:         0001-Remove-avalon-logkit.patch
3b3184
Patch1:         0004-Use-log4j-1.2.17.patch
3b3184
Patch2:         0003-Use-system-jars.patch
3b3184
Patch3:         0004-JDBC-41-compat.patch
3b3184
Patch4:         0001-Don-t-use-Werken-XPath.patch
3b3184
Patch5:         0006-Skip-Java-8-incompatible-test.patch
3b3184
Patch6:         velocity-1.7-doclint.patch
3b3184
Patch7:         velocity-1.7-osgi.patch
3b3184
Patch8:         0001-Port-to-apache-commons-lang3.patch
3b3184
Patch9:         0002-Port-to-OpenJDK-11.patch
3b3184
3b3184
BuildRequires:  javapackages-local
3b3184
BuildRequires:  ant
3b3184
BuildRequires:  antlr
3b3184
BuildRequires:  junit
3b3184
BuildRequires:  ant-junit
3b3184
BuildRequires:  apache-commons-collections
3b3184
BuildRequires:  apache-commons-logging
3b3184
BuildRequires:  apache-commons-lang3
3b3184
BuildRequires:  glassfish-servlet-api
3b3184
BuildRequires:  jakarta-oro
3b3184
BuildRequires:  jaxen
3b3184
BuildRequires:  jdom
3b3184
BuildRequires:  bcel
3b3184
BuildRequires:  log4j12
3b3184
BuildRequires:  apache-parent
3b3184
3b3184
# It fails one of the arithmetic test cases with gcj
3b3184
BuildRequires:  java-devel >= 1:1.6.0
3b3184
3b3184
%description
3b3184
Velocity is a Java-based template engine. It permits anyone to use the
3b3184
simple yet powerful template language to reference objects defined in
3b3184
Java code.
3b3184
When Velocity is used for web development, Web designers can work in
3b3184
parallel with Java programmers to develop web sites according to the
3b3184
Model-View-Controller (MVC) model, meaning that web page designers can
3b3184
focus solely on creating a site that looks good, and programmers can
3b3184
focus solely on writing top-notch code. Velocity separates Java code
3b3184
from the web pages, making the web site more maintainable over the long
3b3184
run and providing a viable alternative to Java Server Pages (JSPs) or
3b3184
PHP.
3b3184
Velocity's capabilities reach well beyond the realm of web sites; for
3b3184
example, it can generate SQL and PostScript and XML (see Anakia for more
3b3184
information on XML transformations) from templates. It can be used
3b3184
either as a standalone utility for generating source code and reports,
3b3184
or as an integrated component of other systems. Velocity also provides
3b3184
template services for the Turbine web application framework.
3b3184
Velocity+Turbine provides a template service that will allow web
3b3184
applications to be developed according to a true MVC model.
3b3184
3b3184
%package        manual
3b3184
Summary:        Manual for %{name}
3b3184
3b3184
%description    manual
3b3184
Documentation for %{name}.
3b3184
3b3184
%package        javadoc
3b3184
Summary:        Javadoc for %{name}
3b3184
3b3184
%description    javadoc
3b3184
Javadoc for %{name}.
3b3184
3b3184
%package        demo
3b3184
Summary:        Demo for %{name}
3b3184
Requires:       %{name} = %{version}-%{release}
3b3184
3b3184
%description    demo
3b3184
Demonstrations and samples for %{name}.
3b3184
3b3184
# -----------------------------------------------------------------------------
3b3184
3b3184
%prep
3b3184
%setup -q
3b3184
3b3184
# remove bundled libs/classes (except those used for testing)
3b3184
find . -name '*.jar' ! -name 'test*.jar' -print -delete
3b3184
find . -name '*.class' ! -name 'Foo.class' -print -delete
3b3184
3b3184
# Remove dependency on avalon-logkit
3b3184
rm -f src/java/org/apache/velocity/runtime/log/AvalonLogChute.java
3b3184
rm -f src/java/org/apache/velocity/runtime/log/AvalonLogSystem.java
3b3184
rm -f src/java/org/apache/velocity/runtime/log/VelocityFormatter.java
3b3184
3b3184
# need porting to new servlet API. We would just add a lot of empty functions
3b3184
rm  src/test/org/apache/velocity/test/VelocityServletTestCase.java
3b3184
3b3184
# This test doesn't work with new hsqldb
3b3184
rm src/test/org/apache/velocity/test/sql/DataSourceResourceLoaderTestCase.java
3b3184
3b3184
cp %{SOURCE1} ./pom.xml
3b3184
3b3184
# remove rest of avalon logkit refences
3b3184
%patch0 -p1
3b3184
3b3184
# Use log4j 1.2.17
3b3184
%patch1 -p1
3b3184
3b3184
# Use system jar files instead of downloading from net
3b3184
%patch2 -p1
3b3184
3b3184
%patch3 -p1
3b3184
3b3184
# Use jdom instead of werken-xpath
3b3184
%patch4 -p1
3b3184
%pom_remove_dep werken-xpath:
3b3184
3b3184
# Skip Java 8 incompatible test
3b3184
%patch5 -p1
3b3184
3b3184
# Disable Java8 doclint
3b3184
%patch6 -p1
3b3184
3b3184
# Remove werken-xpath Import/Export refences in OSGi manifest file
3b3184
%patch7 -p1
3b3184
3b3184
# Port to apache-commons-lang3
3b3184
%patch8 -p1
3b3184
3b3184
# Tests compare the string content of thrown exceptions which changed with jdk 11
3b3184
%patch9 -p1
3b3184
3b3184
rm -r src/test/org/apache/velocity/test/sql
3b3184
3b3184
# -----------------------------------------------------------------------------
3b3184
3b3184
%build
3b3184
3b3184
export CLASSPATH=$(build-classpath \
3b3184
antlr \
3b3184
apache-commons-collections \
3b3184
commons-lang3 \
3b3184
commons-logging \
3b3184
glassfish-servlet-api \
3b3184
junit \
3b3184
jakarta-oro \
3b3184
log4j:log4j:1.2.17 \
3b3184
jaxen \
3b3184
jdom \
3b3184
bcel \
3b3184
hsqldb \
3b3184
junit)
3b3184
ant \
3b3184
  -buildfile build/build.xml \
3b3184
  -Dbuild.sysclasspath=first \
3b3184
  -Djavac.target=1.6 \
3b3184
  -Djavac.source=1.6 \
3b3184
  jar javadocs test
3b3184
3b3184
# fix line-endings in generated files
3b3184
sed -i 's/\r//' docs/api/stylesheet.css docs/api/package-list
3b3184
3b3184
# -----------------------------------------------------------------------------
3b3184
3b3184
%install
3b3184
%mvn_file : %{name}
3b3184
%mvn_alias : %{name}:%{name}
3b3184
%mvn_artifact pom.xml bin/%{name}-%{version}.jar
3b3184
%mvn_install -J docs/api
3b3184
3b3184
# zero-length file
3b3184
rm -r test/issues/velocity-537/compare/velocity537.vm.cmp
3b3184
# data
3b3184
install -d -m 755 %{buildroot}%{_datadir}/%{name}
3b3184
cp -pr examples test %{buildroot}%{_datadir}/%{name}
3b3184
3b3184
3b3184
%files -f .mfiles
3b3184
%doc README.txt
3b3184
%license LICENSE NOTICE
3b3184
3b3184
%files manual
3b3184
%license LICENSE NOTICE
3b3184
%doc docs/*
3b3184
3b3184
%files javadoc -f .mfiles-javadoc
3b3184
%license LICENSE NOTICE
3b3184
3b3184
%files demo
3b3184
%license LICENSE NOTICE
3b3184
%{_datadir}/%{name}
3b3184
3b3184
%changelog
3b3184
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.7-26
3b3184
- Mass rebuild for javapackages-tools 201902
3b3184
3b3184
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.7-25
3b3184
- Mass rebuild for javapackages-tools 201901
3b3184
3b3184
* Tue Jul 31 2018 Michael Simacek <msimacek@redhat.com> - 0:1.7-24
3b3184
- Repack the tarball without binaries
3b3184
3b3184
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7-23
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
3b3184
3b3184
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7-22
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3b3184
3b3184
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7-21
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
3b3184
3b3184
* Tue Feb 07 2017 Michael Simacek <msimacek@redhat.com> - 0:1.7-20
3b3184
- Add hsqldb conditional
3b3184
- Switch to glassfish-servlet-api
3b3184
3b3184
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7-19
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
3b3184
3b3184
* Wed Jul 22 2015 gil cattaneo <puntogil@libero.it> 0:1.7-18
3b3184
- fix FTBFS rhbz#1240035
3b3184
- fix BR list, change log4j with log4j12
3b3184
- set javac source/target to 1.6
3b3184
- disable Java8doc doclint
3b3184
- remove werken-xpath Import/Export refences in manifest file
3b3184
- resolve some rpmlint problems
3b3184
- remove zero-length file
3b3184
- introduce license macro
3b3184
3b3184
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7-17
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
3b3184
3b3184
* Fri Nov 28 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7-16
3b3184
- Update to current packaging guidelines
3b3184
3b3184
* Thu Sep  4 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7-15
3b3184
- Require hsqldb-lib instead of hsqldb
3b3184
3b3184
* Wed Jun 18 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7-14
3b3184
- Apply patch for log4j 1.2.17
3b3184
3b3184
* Wed Jun 18 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7-13
3b3184
- Use log4j 1.2 compat package
3b3184
- Skip Java 8 incompatible test
3b3184
3b3184
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7-12
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3b3184
3b3184
* Wed May 21 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7-11
3b3184
- Use .mfiles generated during build
3b3184
3b3184
* Sat Sep 21 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7-10
3b3184
- Port from werken-xpath to jdom
3b3184
- Resolves: rhbz#875817
3b3184
3b3184
* Mon Aug 05 2013 Michal Srb <msrb@redhat.com> - 0:1.7-9
3b3184
- Fix FTBFS (Resolves: #992852)
3b3184
3b3184
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7-8
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3b3184
3b3184
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7-7
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
3b3184
3b3184
* Wed Nov 21 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7-6
3b3184
- Install NOTICE files
3b3184
- Resolves: rhbz#879021
3b3184
3b3184
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7-5
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3b3184
3b3184
* Tue Jun 05 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.7-4
3b3184
- Use new tomcat-servlet-api
3b3184
- Update to latest guidelines
3b3184
3b3184
* Fri Feb 17 2012 Deepak Bhole <dbhole@redhat.com> - 0:1.7-3
3b3184
- Resolved rhbz#791045
3b3184
- Added patch from Omaid Majid <omajid@redhat.com> to fix build with Java 7
3b3184
3b3184
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7-2
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3b3184
3b3184
* Mon Feb 21 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.7-1
3b3184
- Update to latest version
3b3184
- Drop old patches
3b3184
3b3184
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.6.4-3
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3b3184
3b3184
* Fri Dec 17 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.6.4-2
3b3184
- Add compatibility depmap
3b3184
3b3184
* Wed Nov  3 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.6.4-1
3b3184
- Rebase to latest upstream
3b3184
- Fix problems from bz#226525
3b3184
3b3184
* Thu Oct 14 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.6.3-5
3b3184
- Use apache-commons-collections instead of jakarta name
3b3184
- Use tomcat6 for dependency instead of tomcat5 (bz#640660)
3b3184
3b3184
* Mon Jun 7 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.6.3-4
3b3184
- Fix BR/R for jakarta-commons-rename.
3b3184
3b3184
* Sat Feb 13 2010 Mary Ellen Foster <mefoster at gmail.com> 0:1.6.3-3
3b3184
- Get (Build)Requires right
3b3184
3b3184
* Sat Feb 13 2010 Mary Ellen Foster <mefoster at gmail.com> 0:1.6.3-2
3b3184
- Require all of the packages in the POM
3b3184
- Add dist to version
3b3184
3b3184
* Fri Jan 15 2010 Mary Ellen Foster <mefoster at gmail.com> 0:1.6.3-1
3b3184
- Update to 1.6.3
3b3184
- Remove dependency on avalon-logkit
3b3184
- Add maven metadata and pom
3b3184
3b3184
* Sun Jan 10 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.4-10.5
3b3184
- Drop gcj_support.
3b3184
- Fix groups and url.
3b3184
- Use upstream tarball.
3b3184
3b3184
* Mon Aug 10 2009 Ville Skyttä <ville.skytta@iki.fi> - 0:1.4-10.4
3b3184
- Convert specfile to UTF-8.
3b3184
3b3184
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.4-9.4
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3b3184
3b3184
* Fri Apr 24 2009 Milos Jakubicek <xjakub@fi.muni.cz> - 0:1.4-8.4
3b3184
- Fix FTBFS: added velocity-enum.patch (enum is a reserved keyword in java >= 1.5)
3b3184
3b3184
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.4-8.3
3b3184
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3b3184
3b3184
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:1.4-7.3
3b3184
- drop repotag
3b3184
3b3184
* Thu May 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:1.4-7jpp.2
3b3184
- fix license tag
3b3184
3b3184
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0:1.4-7jpp.1
3b3184
- Autorebuild for GCC 4.3
3b3184
3b3184
* Tue Aug 08 2006 Vivek Lakshmanan <vivekl@redhat.com> - 0:1.4-6jpp.1
3b3184
- Resync with latest from JPP.
3b3184
- Partially adopt new naming convention.
3b3184
3b3184
* Sat Jul 22 2006 Vivek Lakshmanan <vivekl@redhat.com> - 0:1.4-5jpp_2fc
3b3184
- Rebuilt
3b3184
3b3184
* Sat Jul 22 2006 Vivek Lakshmanan <vivekl@redhat.com> - 0:1.4-5jpp_1fc
3b3184
- Merge with latest from JPP.
3b3184
- Remove fileversion and my_version macros.
3b3184
- Remove notexentests patch and replace with a patch to disable
3b3184
- failure on tests.
3b3184
3b3184
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> - 0:1.4-3jpp_8fc
3b3184
- Rebuilt
3b3184
3b3184
* Tue Jul 18 2006 Deepak Bhole <dbhole@redhat.com> - 0:1.4-3jpp_7fc
3b3184
- Build on all archs.
3b3184
3b3184
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0:1.4-3jpp_6fc
3b3184
- rebuild
3b3184
3b3184
* Wed Mar  8 2006 Rafael Schloming <rafaels@redhat.com> - 0:1.4-3jpp_5fc
3b3184
- excluded s390[x] and ppc64 due to eclipse
3b3184
3b3184
* Mon Mar  6 2006 Jeremy Katz <katzj@redhat.com> - 0:1.4-3jpp_4fc
3b3184
- stop scriptlet spew
3b3184
3b3184
* Wed Dec 21 2005 Jesse Keating <jkeating@redhat.com> - 0:1.4-3jpp_3fc
3b3184
- rebuilt again
3b3184
3b3184
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> - 0:1.4-3jpp_2fc
3b3184
- rebuilt
3b3184
3b3184
* Tue Nov  8 2005 Vadim Nasardinov <vadimn@redhat.com> - 0:1.4-3jpp_1fc
3b3184
- Converted from ISO-8859-1 to UTF-8
3b3184
3b3184
* Wed Jun 15 2005 Gary Benson <gbenson@redhat.com> 0:1.4-3jpp_1fc
3b3184
- Build into Fedora.
3b3184
3b3184
* Thu Jun  9 2005 Gary Benson <gbenson@redhat.com>
3b3184
- Remove jarfiles from the tarball.
3b3184
3b3184
* Mon Jun  6 2005 Gary Benson <gbenson@redhat.com>
3b3184
- Build with servletapi5.
3b3184
- Add NOTICE file as per Apache License version 2.0.
3b3184
- Skip some failing tests.
3b3184
3b3184
* Mon Oct 18 2004 Fernando Nasser <fnasser@redhat.com> 0:1.4-3jpp_1rh
3b3184
- First Red Hat build
3b3184
3b3184
* Thu Sep 23 2004 Ralph Apel <r.apel at r-apel.de> 0:1.4-3jpp
3b3184
- Adapt to jdom-1.0-1 replacing org.jdom.input.DefaultJDOMFactory
3b3184
  by org.jdom.DefaultJDOMFactory in AnakiaJDOMFactory.java
3b3184
  as well as using org.jdom.output.Format in AnakiaTask.java
3b3184
- Therefore require jdom >= 0:1.0-1
3b3184
3b3184
* Thu Sep 02 2004 Ralph Apel <r.apel at r-apel.de> 0:1.4-2jpp
3b3184
- Build with ant-1.6.2
3b3184
3b3184
* Mon Jun 07 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:1.4-1jpp
3b3184
- 1.4 final
3b3184
- Patch #0 is unnecessary (upstream)
3b3184
- We have to build velocity against servletapi3
3b3184
3b3184
* Wed Feb 18 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:1.4-0.rc1.2jpp
3b3184
- Fix a few jpackage related .spec typos, oops.
3b3184
3b3184
* Wed Feb 18 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:1.4-0.rc1.1jpp
3b3184
- Added Patch #0 (velocity-1.4-rc1-ServletTest.patch) from CVS which fixes
3b3184
  build problems.
3b3184
3b3184
* Sun May 25 2003 Ville Skyttä <ville.skytta@iki.fi> - 0:1.3.1-2jpp
3b3184
- Add Epochs to dependencies.
3b3184
- Add explicit defattrs.
3b3184
- Add non-versioned javadoc symlinks.
3b3184
- Use sed instead of bash 2 extension when symlinking jars during build.
3b3184
- Use full URL in Source.
3b3184
- Fix -javadoc Group tag.
3b3184
- Drop patch in favour of ant options.
3b3184
- BuildRequire jpackage-utils and antlr (latter needed for Anakia tests).
3b3184
3b3184
* Sat May 24 2003 Richard Bullington-McGuire <rbulling@pkrinternet.com> 1.3.1-1jpp
3b3184
- 1.3.1 stable release
3b3184
3b3184
* Fri May 23 2003 Richard Bullington-McGuire <rbulling@pkrinternet.com> 1.3-1jpp
3b3184
- 1.3 stable release
3b3184
- Updated for JPackage 1.5
3b3184
- Run JUnit regression tests as part of the build process
3b3184
- Added patch file to fix test case classpath for JUnit standard locations
3b3184
3b3184
* Mon May 06 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.3-0.rc1.1jpp
3b3184
- 1.3.0rc1
3b3184
- dropped patch
3b3184
- versioned dir for javadoc
3b3184
- no dependencies for manual and javadoc packages
3b3184
- stricter dependency for demo package
3b3184
3b3184
* Wed Dec 12 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.2-1jpp
3b3184
- 1.2
3b3184
- regenerated patch and corrected manifest
3b3184
- requires and buildrequires jdom >= 1.0-0.b7.1
3b3184
3b3184
* Wed Dec 5 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.1-4jpp
3b3184
- javadoc into javadoc package
3b3184
3b3184
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 1.1-3jpp
3b3184
- removed packager tag
3b3184
- new jpp extension
3b3184
3b3184
* Thu Nov 1 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.1-2jpp
3b3184
- first unified release
3b3184
- s/jPackage/JPackage
3b3184
3b3184
* Fri Sep 14 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.1-1jpp
3b3184
- first Mandrake release