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