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