548f49
# Copyright (c) 2000-2008, JPackage Project
548f49
# All rights reserved.
548f49
#
548f49
# Redistribution and use in source and binary forms, with or without
548f49
# modification, are permitted provided that the following conditions
548f49
# are met:
548f49
#
548f49
# 1. Redistributions of source code must retain the above copyright
548f49
#    notice, this list of conditions and the following disclaimer.
548f49
# 2. Redistributions in binary form must reproduce the above copyright
548f49
#    notice, this list of conditions and the following disclaimer in the
548f49
#    documentation and/or other materials provided with the
548f49
#    distribution.
548f49
# 3. Neither the name of the JPackage Project nor the names of its
548f49
#    contributors may be used to endorse or promote products derived
548f49
#    from this software without specific prior written permission.
548f49
#
548f49
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
548f49
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
548f49
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
548f49
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
548f49
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
548f49
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
548f49
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
548f49
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
548f49
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
548f49
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
548f49
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
548f49
#
548f49
548f49
Name:           hamcrest
548f49
Version:        1.3
548f49
Release:        28%{?dist}
548f49
Epoch:          0
548f49
Summary:        Library of matchers for building test expressions
548f49
License:        BSD
548f49
URL:            https://github.com/hamcrest/JavaHamcrest
548f49
Source0:        https://github.com/hamcrest/JavaHamcrest/archive/hamcrest-java-%{version}.tar.gz
548f49
548f49
Source8:        hamcrest-core-MANIFEST.MF
548f49
Source9:        hamcrest-library-MANIFEST.MF
548f49
Source11:       hamcrest-integration-MANIFEST.MF
548f49
Source12:       hamcrest-generator-MANIFEST.MF
548f49
548f49
Patch0:         %{name}-%{version}-build.patch
548f49
Patch1:         %{name}-%{version}-no-jarjar.patch
548f49
Patch3:         %{name}-%{version}-javadoc.patch
548f49
Patch4:         %{name}-%{version}-qdox-2.0.patch
548f49
Patch5:         %{name}-%{version}-fork-javac.patch
548f49
548f49
Requires:       %{name}-core = %{epoch}:%{version}-%{release}
548f49
548f49
BuildRequires:  javapackages-local
548f49
BuildRequires:  ant
548f49
BuildRequires:  ant-junit
548f49
BuildRequires:  easymock
548f49
BuildRequires:  junit
548f49
BuildRequires:  qdox
548f49
BuildRequires:  testng
548f49
548f49
BuildArch:      noarch
548f49
548f49
%description
548f49
Provides a library of matcher objects (also known as constraints or predicates)
548f49
allowing 'match' rules to be defined declaratively, to be used in other
548f49
frameworks. Typical scenarios include testing frameworks, mocking libraries and
548f49
UI validation rules.
548f49
548f49
%package core
548f49
Summary:        Core API of hamcrest matcher framework.
548f49
Obsoletes:      %{name} < 0:1.3-10
548f49
548f49
%description core
548f49
The core API of hamcrest matcher framework to be used by third-party framework providers. 
548f49
This includes the a foundation set of matcher implementations for common operations. 
548f49
548f49
%package javadoc
548f49
Summary:        Javadoc for %{name}
548f49
548f49
%description javadoc
548f49
Javadoc for %{name}.
548f49
548f49
%package demo
548f49
Summary:        Demos for %{name}
548f49
Requires:       %{name} = %{epoch}:%{version}-%{release}
548f49
Requires:       junit
548f49
Requires:       testng
548f49
548f49
%description demo
548f49
Demonstrations and samples for %{name}.
548f49
548f49
%prep
548f49
%setup -q -n JavaHamcrest-%{name}-java-%{version}
548f49
548f49
find . -type f -name "*.jar" | xargs -t rm
548f49
rm -fr hamcrest-integration/src/main/java/org/hamcrest/integration/JMock1Adapter.java
548f49
rm -fr hamcrest-integration/src/main/java/org/hamcrest/JMock1Matchers.java
548f49
rm -fr hamcrest-unit-test/src/main/java/org/hamcrest/integration/JMock1AdapterTest.java
548f49
# BUILD/hamcrest-1.1/lib/generator/qdox-1.6.1.jar.no
548f49
ln -sf $(build-classpath qdox) lib/generator/
548f49
# BUILD/hamcrest-1.1/lib/integration/easymock-2.2.jar.no
548f49
ln -sf $(build-classpath easymock3) lib/integration/
548f49
# BUILD/hamcrest-1.1/lib/integration/jmock-1.10RC1.jar.no
548f49
ln -sf $(build-classpath jmock) lib/integration/
548f49
# BUILD/hamcrest-1.1/lib/integration/testng-4.6-jdk15.jar.no
548f49
ln -sf $(build-classpath testng-jdk15) lib/integration/
548f49
548f49
%patch0 -p1
548f49
%patch1 -p1
548f49
%patch3 -p1
548f49
%patch4 -p1
548f49
%patch5 -p1
548f49
548f49
sed -i 's/\r//' LICENSE.txt
548f49
548f49
%build
548f49
export CLASSPATH=$(build-classpath qdox)
548f49
export OPT_JAR_LIST="junit ant/ant-junit"
548f49
# The unit-test goal is switched off as some tests fail with JDK 7
548f49
# see https://github.com/hamcrest/JavaHamcrest/issues/30
548f49
ant -Dant.build.javac.source=1.5 -Dversion=%{version} -Dbuild.sysclasspath=last clean core generator library bigjar javadoc
548f49
548f49
# inject OSGi manifests
548f49
jar ufm build/%{name}-core-%{version}.jar %{SOURCE8}
548f49
jar ufm build/%{name}-library-%{version}.jar %{SOURCE9}
548f49
jar ufm build/%{name}-integration-%{version}.jar %{SOURCE11}
548f49
jar ufm build/%{name}-generator-%{version}.jar %{SOURCE12}
548f49
548f49
%install
548f49
sed -i 's/@VERSION@/%{version}/g' pom/*.pom
548f49
548f49
%mvn_artifact pom/hamcrest-parent.pom
548f49
548f49
for mod in all core generator library integration; do
548f49
    %mvn_artifact pom/hamcrest-$mod.pom build/%{name}-$mod-%{version}.jar
548f49
done
548f49
548f49
%mvn_package :hamcrest-parent core
548f49
%mvn_package :hamcrest-core core
548f49
548f49
%mvn_file ':hamcrest-{*}' %{name}/@1
548f49
548f49
# demo
548f49
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}
548f49
cp -pr %{name}-examples $RPM_BUILD_ROOT%{_datadir}/%{name}/
548f49
548f49
%mvn_install -J build/temp/hamcrest-all-1.3-javadoc.jar.contents/
548f49
548f49
%files -f .mfiles
548f49
548f49
%files core -f .mfiles-core
548f49
%license LICENSE.txt
548f49
548f49
%files javadoc -f .mfiles-javadoc
548f49
%license LICENSE.txt
548f49
548f49
%files demo
548f49
%{_datadir}/%{name}
548f49
548f49
%changelog
548f49
* Thu May 21 2020 Mat Booth <mat.booth@redhat.com> - 0:1.3-28
548f49
- Avoid hard requirement on qdox/easymock
548f49
548f49
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.3-27
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
548f49
548f49
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.3-26
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
548f49
548f49
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.3-25
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
548f49
548f49
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.3-24
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
548f49
548f49
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.3-23
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
548f49
548f49
* Mon Sep 25 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-22
548f49
- Elimitate race condition when injecting JAR manifest
548f49
- Resolves: rhbz#1495234
548f49
- Remove bogus hamcrest-text JAR
548f49
548f49
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.3-21
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
548f49
548f49
* Wed Mar 22 2017 Michael Simacek <msimacek@redhat.com> - 0:1.3-20
548f49
- Fix mistake in mvn_artifact invocation
548f49
548f49
* Tue Mar 21 2017 Michael Simacek <msimacek@redhat.com> - 0:1.3-19
548f49
- Install with XMvn
548f49
- Update upstream URL
548f49
- Build from github source
548f49
- Specfile cleanup
548f49
548f49
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.3-18
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
548f49
548f49
* Wed Feb 01 2017 Michael Simacek <msimacek@redhat.com> - 0:1.3-17
548f49
- Port to current QDox
548f49
548f49
* Mon Jan 02 2017 Michael Simacek <msimacek@redhat.com> - 0:1.3-16
548f49
- Try to fix nondeterministic failures by forking javac
548f49
548f49
* Mon Oct  3 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-15
548f49
- Remove build-requires on perl
548f49
548f49
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.3-14
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
548f49
548f49
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3-13
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
548f49
548f49
* Thu May 14 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-12
548f49
- Disable javadoc doclint
548f49
548f49
* Tue Feb 24 2015 Alexander Kurtakov <akurtako@redhat.com> 0:1.3-11
548f49
- Add obsoletes in core to the main package to ease updates.
548f49
548f49
* Mon Feb 23 2015 Alexander Kurtakov <akurtako@redhat.com> 0:1.3-10
548f49
- Split hamcrest-core subpackage to allow other frameworks to reduce deps.
548f49
548f49
* Wed Feb  4 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-9
548f49
- Port to QDox 2.0
548f49
- Resolves: rhbz#1166700
548f49
548f49
* Wed Jul 30 2014 Mat Booth <mat.booth@redhat.com> - 0:1.3-8
548f49
- Fix FTBFS
548f49
- Always build integration jar (removes some complexity from the spec)
548f49
- Drop unused patch
548f49
548f49
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3-7
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
548f49
548f49
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.3-6
548f49
- Use Requires: java-headless rebuild (#1067528)
548f49
548f49
* Mon Aug 12 2013 Alexander Kurtakov <akurtako@redhat.com> 0:1.3-5
548f49
- Update osgi manifests.
548f49
548f49
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3-4
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
548f49
548f49
* Wed Jul 24 2013 Alexander Kurtakov <akurtako@redhat.com> 0:1.3-3
548f49
- Build against easymock3.
548f49
548f49
* Wed Jul 03 2013 Michal Srb <msrb@redhat.com> - 0:1.3-2
548f49
- Add easymock2 to classpath (Resolves: #979501)
548f49
548f49
* Thu Mar 21 2013 Tomas Radej <tradej@redhat.com> - 0:1.3-1
548f49
- Updated to latest upstream version
548f49
548f49
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-22
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
548f49
548f49
* Mon Nov 26 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.1-21
548f49
- Fix core manifest typo ";" -> ","
548f49
548f49
* Tue Aug 14 2012 Severin Gehwolf <sgehwolf@redhat.com> 0:1.1-20
548f49
- Remove attributes in Export-Package header of hamcrest-core
548f49
  manifest.
548f49
548f49
* Wed Aug 1 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-19
548f49
- Add OSGi metadata to hamcrest-generator.
548f49
548f49
* Tue Jul 31 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-18
548f49
- Actually build integration.
548f49
548f49
* Tue Jul 31 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-17
548f49
- Add OSGi metadata to hamcrest-integration.
548f49
548f49
* Tue Jul 31 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-16
548f49
- Remove checksums from manifest.
548f49
548f49
* Tue Jul 31 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-15
548f49
- Add OSGi metadata to hamcrest-text.
548f49
548f49
* Tue Jul 31 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-14
548f49
- Add OSGi metadata for hamcrest-library.
548f49
548f49
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-13
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
548f49
548f49
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-12
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
548f49
548f49
* Thu Aug 25 2011 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-11
548f49
- Do not BR/R openjdk6 but java >= 1:1.6.0
548f49
- Adapt to current guidelines.
548f49
548f49
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-10.4
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
548f49
548f49
* Sun Dec 12 2010 Mat Booth <fedora@matbooth.co.uk> 0:1.1-9.4
548f49
- Fix FTBFS due to zip BR - RHBZ #661011.
548f49
548f49
* Thu Oct 7 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-9.3
548f49
- Drop gcj support.
548f49
548f49
* Tue Aug 18 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-9.2
548f49
- Add OSGi manifest for hamcrest-core.
548f49
- Make javadoc package noarch.
548f49
548f49
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-9.1
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
548f49
548f49
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-8.1
548f49
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
548f49
548f49
* Mon Nov 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-7.1
548f49
- Fedora-specific: enable GCJ support
548f49
- Fedora-specific: build with java 1.6.0
548f49
- Fedora-specific: disable integration and tests
548f49
548f49
* Mon Nov 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-7
548f49
- update summary and description
548f49
548f49
* Tue Oct 28 2008 David Walluck <dwalluck@redhat.com> 0:1.1-6
548f49
- make demo dependency on testng conditional
548f49
548f49
* Fri Oct 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-5
548f49
- fix GCJ file list
548f49
- simplify build by always setting OPT_JAR_LIST
548f49
548f49
* Fri Oct 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-4
548f49
- add epoch to demo Requires
548f49
548f49
* Fri Oct 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-3
548f49
- set -Dant.build.javac.source=1.5
548f49
548f49
* Fri Oct 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-2
548f49
- add options to build without integration, jarjar, and tests
548f49
- allow build with java-devel >= 1.5.0
548f49
- remove javadoc scriptlets
548f49
- use more strict file list
548f49
- fix maven directory ownership
548f49
- add non-versioned symlink for demo
548f49
- fix GCJ requires
548f49
- fix eol in LICENSE.txt
548f49
- remove Vendor and Distribution
548f49
548f49
* Tue Feb 19 2008 Ralph Apel <r.apel@r-apel.de> - 0:1.1-1jpp
548f49
- 1.1
548f49
548f49
* Mon Feb 11 2008 Ralph Apel <r.apel@r-apel.de> - 0:4.3.1-4jpp
548f49
- Fix versioned jar name, was junit-4.3.1
548f49
- Restore Epoch
548f49
548f49
* Fri Jan 25 2008 Ralph Apel <r.apel@r-apel.de> - 0:4.3.1-3jpp
548f49
- build and upload noarch packages
548f49
- Add pom and depmap frag
548f49
- BR java-devel = 1.5.0
548f49
- Restore Vendor, Distribution from macros
548f49
548f49
* Tue Aug 07 2007 Ben Konrath <bkonrath@redhat.com> - 4.3.1-2jpp
548f49
- Set gcj_support to 0 to work around problems with GCJ.
548f49
- Fix buglet with the gcj post/postun if statement.
548f49
- Fix tab / space problems.
548f49
- Fix buildroot.
548f49
- Update Summary.
548f49
- Convert html files to Unix file endings.
548f49
- Disable aot-compile-rpm because it's not working ATM.
548f49
548f49
* Mon Jul 09 2007 Ben Konrath <bkonrath@redhat.com> - 4.3.1-1jpp
548f49
- 4.3.1.
548f49
548f49
* Mon Feb 12 2007 Thomas Fitzsimmons <fitzsim@redhat.com> - 3.8.2-3jpp.1.fc7
548f49
- Add dist tag
548f49
548f49
* Mon Feb 12 2007 Thomas Fitzsimmons <fitzsim@redhat.com> - 3.8.2-3jpp.1
548f49
- Committed on behalf of Tania Bento <tbento@redhat.com>
548f49
- Update per Fedora review process
548f49
- Resolves rhbz#225954
548f49
548f49
* Thu Aug 10 2006 Deepak Bhole <dbhole@redhat.com> -  0:3.8.2-3jpp.1
548f49
- Added missing requirements.
548f49
548f49
* Thu Aug 10 2006 Karsten Hopp <karsten@redhat.de> 0:3.8.2-2jpp_3fc
548f49
- Require(post/postun): coreutils
548f49
548f49
* Fri Jun 23 2006 Deepak Bhole <dbhole@redhat.com> -  0:3.8.2-2jpp_2fc
548f49
- Rebuilt.
548f49
548f49
* Thu Jun 22 2006 Deepak Bhole <dbhole@redhat.com> -  0:3.8.2-2jpp_1fc
548f49
- Upgrade to 3.8.2
548f49
- Added conditional native compilation.
548f49
- Fix path where demo is located.
548f49
548f49
* Fri Mar 03 2006 Ralph Apel <r.apel at r-apel.de> - 0:3.8.2-1jpp
548f49
- First JPP-1.7 release
548f49
548f49
* Mon Aug 23 2004 Randy Watler <rwatler at finali.com> - 0:3.8.1-4jpp
548f49
- Rebuild with ant-1.6.2
548f49
* Fri May 09 2003 David Walluck <david@anti-microsoft.org> 0:3.8.1-3jpp
548f49
- update for JPackage 1.5
548f49
548f49
* Fri Mar 21 2003 Nicolas Mailhot <Nicolas.Mailhot (at) JPackage.org> 3.8.1-2jpp
548f49
- For jpackage-utils 1.5
548f49
548f49
* Fri Sep 06 2002 Henri Gomez <hgomez@users.sourceforge.net> 3.8.1-1jpp
548f49
- 3.8.1
548f49
548f49
* Sun Sep 01 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.8-2jpp
548f49
- used original zip file
548f49
548f49
* Thu Aug 29 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.8-1jpp
548f49
- 3.8
548f49
- group, vendor and distribution tags
548f49
548f49
* Sat Jan 19 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-6jpp
548f49
- versioned dir for javadoc
548f49
- no dependencies for manual and javadoc packages
548f49
- stricter dependency for demo package
548f49
- additional sources in individual archives
548f49
- section macro
548f49
548f49
* Sat Dec 1 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-5jpp
548f49
- javadoc in javadoc package
548f49
548f49
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 3.7-4jpp
548f49
- fixed previous releases ...grrr
548f49
548f49
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 3.7-3jpp
548f49
- added jpp extension
548f49
- removed packager tag
548f49
548f49
* Sun Sep 30 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-2jpp
548f49
- first unified release
548f49
- s/jPackage/JPackage
548f49
548f49
* Mon Sep 17 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-1mdk
548f49
- 3.7
548f49
- vendor tag
548f49
- packager tag
548f49
- s/Copyright/License/
548f49
- truncated description to 72 columns in spec
548f49
- spec cleanup
548f49
- used versioned jar
548f49
- moved demo files to %%{_datadir}/%%{name}
548f49
548f49
* Sat Feb 17 2001 Guillaume Rousse <g.rousse@linux-mandrake.com> 3.5-1mdk
548f49
- first Mandrake release