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