Blame SPECS/hamcrest.spec

362634
%global pkg_name hamcrest
362634
%{?scl:%scl_package %{pkg_name}}
362634
%{?java_common_find_provides_and_requires}
362634
362634
# Copyright (c) 2000-2008, JPackage Project
362634
# All rights reserved.
362634
#
362634
# Redistribution and use in source and binary forms, with or without
362634
# modification, are permitted provided that the following conditions
362634
# are met:
362634
#
362634
# 1. Redistributions of source code must retain the above copyright
362634
#    notice, this list of conditions and the following disclaimer.
362634
# 2. Redistributions in binary form must reproduce the above copyright
362634
#    notice, this list of conditions and the following disclaimer in the
362634
#    documentation and/or other materials provided with the
362634
#    distribution.
362634
# 3. Neither the name of the JPackage Project nor the names of its
362634
#    contributors may be used to endorse or promote products derived
362634
#    from this software without specific prior written permission.
362634
#
362634
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
362634
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
362634
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
362634
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
362634
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
362634
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
362634
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
362634
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
362634
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
362634
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
362634
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
362634
#
362634
362634
%define with()          %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}}
362634
%define without()       %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}}
362634
%define bcond_with()    %{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
362634
%define bcond_without() %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
362634
362634
# This option controls integration which requires easymock2 and jmock
362634
%bcond_without integration
362634
362634
# This option controls jarjar on qdox
362634
# Since bundling the qdox classes prevents upgrades, we disable it by default
362634
%bcond_with jarjar
362634
362634
# This option controls tests which requires ant-junit and testng
362634
%bcond_with tests
362634
362634
# If integration is disabled, then tests are disabled
362634
%if %without integration
362634
%bcond_with tests
362634
%endif
362634
362634
Name:           %{?scl_prefix}%{pkg_name}
362634
Version:        1.3
c51d95
Release:        6.14%{?dist}
362634
Epoch:          0
362634
Summary:        Library of matchers for building test expressions
362634
License:        BSD
362634
URL:            http://code.google.com/p/hamcrest/
362634
Source0:        http://%{pkg_name}.googlecode.com/files/%{pkg_name}-1.3.tgz
362634
Source1:        http://repo1.maven.org/maven2/org/%{pkg_name}/%{pkg_name}-parent/%{version}/%{pkg_name}-parent-%{version}.pom
362634
Source2:        http://repo1.maven.org/maven2/org/%{pkg_name}/%{pkg_name}-library/%{version}/%{pkg_name}-library-%{version}.pom
362634
Source3:        http://repo1.maven.org/maven2/org/%{pkg_name}/%{pkg_name}-integration/%{version}/%{pkg_name}-integration-%{version}.pom
362634
Source4:        http://repo1.maven.org/maven2/org/%{pkg_name}/%{pkg_name}-generator/%{version}/%{pkg_name}-generator-%{version}.pom
362634
Source5:        http://repo1.maven.org/maven2/org/%{pkg_name}/%{pkg_name}-core/%{version}/%{pkg_name}-core-%{version}.pom
362634
Source6:        http://repo1.maven.org/maven2/org/%{pkg_name}/%{pkg_name}-all/%{version}/%{pkg_name}-all-%{version}.pom
362634
362634
Source8:        hamcrest-core-MANIFEST.MF
362634
Source9:        hamcrest-library-MANIFEST.MF
362634
Source11:       hamcrest-integration-MANIFEST.MF
362634
Source12:       hamcrest-generator-MANIFEST.MF
362634
362634
Patch0:         %{pkg_name}-%{version}-build.patch
362634
Patch1:         %{pkg_name}-%{version}-no-jarjar.patch
362634
Patch2:         %{pkg_name}-%{version}-no-integration.patch
362634
Patch3:         %{pkg_name}-%{version}-javadoc.patch
362634
362634
Requires:       %{?scl_prefix}qdox
362634
%if %with integration
362634
Requires:       %{?scl_prefix}easymock2
362634
#Requires:       %{?scl_prefix_maven}jmock
362634
%endif
362634
362634
BuildRequires:  %{?scl_prefix}javapackages-tools
362634
BuildRequires:  %{?scl_prefix}ant >= 0:1.6.5
362634
BuildRequires:  %{?scl_prefix}ant-junit
362634
BuildRequires:  zip
362634
%if %with integration
362634
BuildRequires:  %{?scl_prefix}easymock2
362634
%endif
362634
%if %with jarjar
362634
BuildRequires:  %{?scl_prefix_maven}jarjar
362634
%endif
362634
BuildRequires:  %{?scl_prefix}junit
362634
BuildRequires:  %{?scl_prefix}qdox
362634
%if %with tests
362634
BuildRequires:  %{?scl_prefix_maven}testng
362634
%endif
362634
362634
BuildArch:      noarch
362634
362634
%description
362634
Provides a library of matcher objects (also known as constraints or predicates)
362634
allowing 'match' rules to be defined declaratively, to be used in other
362634
frameworks. Typical scenarios include testing frameworks, mocking libraries and
362634
UI validation rules.
362634
362634
%package javadoc
362634
Summary:        Javadoc for %{pkg_name}
362634
BuildArch:      noarch
362634
362634
%description javadoc
362634
Javadoc for %{pkg_name}.
362634
362634
%package demo
362634
Summary:        Demos for %{pkg_name}
362634
Requires:       %{name} = %{epoch}:%{version}-%{release}
362634
Requires:       %{?scl_prefix}junit
362634
%if %with tests
362634
Requires:       %{?scl_prefix_maven}testng
362634
%endif
362634
362634
%description demo
362634
Demonstrations and samples for %{pkg_name}.
362634
362634
%prep
362634
%setup -q -n %{pkg_name}-%{version}
362634
%{?scl:scl enable %{scl_maven} %{scl} - <<"EOF"}
362634
set -e -x
362634
find . -type f -name "*.jar" | xargs -t rm
362634
rm -fr hamcrest-integration/src/main/java/org/hamcrest/integration/JMock1Adapter.java
362634
rm -fr hamcrest-integration/src/main/java/org/hamcrest/JMock1Matchers.java
362634
rm -fr hamcrest-unit-test/src/main/java/org/hamcrest/integration/JMock1AdapterTest.java
362634
# BUILD/hamcrest-%{version}/lib/generator/jarjar-1.0rc3.jar.no
362634
%if %with jarjar
362634
ln -sf $(build-classpath jarjar) lib/generator/
362634
%endif
362634
# BUILD/hamcrest-1.1/lib/generator/qdox-1.6.1.jar.no
362634
ln -sf $(build-classpath qdox) lib/generator/
362634
# BUILD/hamcrest-1.1/lib/integration/easymock-2.2.jar.no
362634
%if %with integration
362634
# easymock2 is now compat package
362634
ln -sf $(build-classpath easymock2-2.4) lib/integration/
362634
# BUILD/hamcrest-1.1/lib/integration/jmock-1.10RC1.jar.no
362634
ln -sf $(build-classpath jmock) lib/integration/
362634
%endif
362634
# BUILD/hamcrest-1.1/lib/integration/testng-4.6-jdk15.jar.no
362634
%if %with tests
362634
ln -sf $(build-classpath testng-jdk15) lib/integration/
362634
%endif
362634
%patch0 -p1
362634
%if %without jarjar
362634
%patch1 -p1
362634
%endif
362634
%if %without integration
362634
%patch2 -p1
362634
%endif
362634
%patch3 -p1
362634
362634
perl -pi -e 's/\r$//g' LICENSE.txt
362634
%{?scl:EOF}
362634
362634
%build
362634
%{?scl:scl enable %{scl_maven} %{scl} - <<"EOF"}
362634
set -e -x
362634
export CLASSPATH=$(build-classpath qdox)
362634
export OPT_JAR_LIST="junit ant/ant-junit"
362634
# The unit-test goal is switched off as some tests fail with JDK 7
362634
# see https://github.com/hamcrest/JavaHamcrest/issues/30
362634
ant -Dant.build.javac.source=1.5 -Dversion=%{version} -Dbuild.sysclasspath=last clean core generator library bigjar javadoc
362634
362634
# inject OSGi manifests
362634
mkdir -p META-INF
362634
cp -p %{SOURCE8} META-INF/MANIFEST.MF
362634
touch META-INF/MANIFEST.MF
362634
zip -u build/%{pkg_name}-core-%{version}.jar META-INF/MANIFEST.MF
362634
362634
rm -fr META-INF
362634
mkdir -p META-INF
362634
cp -p %{SOURCE9} META-INF/MANIFEST.MF
362634
touch META-INF/MANIFEST.MF
362634
zip -u build/%{pkg_name}-library-%{version}.jar META-INF/MANIFEST.MF
362634
362634
rm -fr META-INF
362634
mkdir -p META-INF
362634
cp -p %{SOURCE11} META-INF/MANIFEST.MF
362634
touch META-INF/MANIFEST.MF
362634
zip -u build/%{pkg_name}-integration-%{version}.jar META-INF/MANIFEST.MF
362634
362634
rm -fr META-INF
362634
mkdir -p META-INF
362634
cp -p %{SOURCE12} META-INF/MANIFEST.MF
362634
touch META-INF/MANIFEST.MF
362634
zip -u build/%{pkg_name}-generator-%{version}.jar META-INF/MANIFEST.MF
362634
%{?scl:EOF}
362634
362634
%install
362634
%{?scl:scl enable %{scl_maven} %{scl} - <<"EOF"}
362634
set -e -x
362634
# jars
362634
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}/%{pkg_name}
362634
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
362634
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.%{pkg_name}-parent.pom
362634
%add_maven_depmap JPP.%{pkg_name}-parent.pom
362634
362634
install -m 644 build/%{pkg_name}-all-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{pkg_name}/all.jar
362634
install -m 644 %{SOURCE6} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.%{pkg_name}-all.pom
362634
%add_maven_depmap JPP.%{pkg_name}-all.pom %{pkg_name}/all.jar
362634
362634
install -m 644 build/%{pkg_name}-core-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{pkg_name}/core.jar
362634
install -m 644 %{SOURCE5} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.%{pkg_name}-core.pom
362634
%add_maven_depmap JPP.%{pkg_name}-core.pom %{pkg_name}/core.jar
362634
362634
install -m 644 build/%{pkg_name}-generator-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{pkg_name}/generator.jar
362634
install -m 644 %{SOURCE4} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.%{pkg_name}-generator.pom
362634
%add_maven_depmap JPP.%{pkg_name}-generator.pom %{pkg_name}/generator.jar
362634
362634
install -m 644 build/%{pkg_name}-library-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{pkg_name}/library.jar
362634
install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.%{pkg_name}-library.pom
362634
%add_maven_depmap JPP.%{pkg_name}-library.pom %{pkg_name}/library.jar
362634
362634
%if %with integration
362634
install -m 644 build/%{pkg_name}-integration-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{pkg_name}/integration.jar
362634
install -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.%{pkg_name}-integration.pom
362634
%add_maven_depmap JPP.%{pkg_name}-integration.pom %{pkg_name}/integration.jar
362634
%endif
362634
362634
%if %with tests
362634
install -m 644 build/%{pkg_name}-unit-test-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{pkg_name}/unit-test.jar
362634
%endif
362634
362634
# javadoc
362634
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}
362634
cp -pr build/temp/hamcrest-all-1.3-javadoc.jar.contents/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
362634
362634
# demo
362634
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/%{pkg_name}
362634
cp -pr %{pkg_name}-examples $RPM_BUILD_ROOT%{_datadir}/%{pkg_name}/
362634
%{?scl:EOF}
362634
362634
%files -f .mfiles
362634
%doc LICENSE.txt
362634
%dir %{_javadir}/%{pkg_name}
362634
362634
%files javadoc
362634
%{_javadocdir}/%{name}
362634
362634
%files demo
362634
%{_datadir}/%{pkg_name}
362634
362634
%changelog
c51d95
* Thu Jul 02 2015 Michael Simacek <msimacek@redhat.com> - 0:1.3-6.14
c51d95
- Fix OSGi manifest metadata (rhbz#1238346)
c51d95
362634
* Tue Jan 13 2015 Michael Simacek <msimacek@redhat.com> - 0:1.3-6.13
362634
- Mass rebuild 2015-01-13
362634
362634
* Fri Jan 09 2015 Michal Srb <msrb@redhat.com> - 0:1.3-6.12
362634
- Mass rebuild 2015-01-09
362634
362634
* Wed Jan 07 2015 Michal Srb <msrb@redhat.com> - 1.3-6.11
362634
- Migrate to .mfiles
362634
362634
* Tue Dec 16 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-6.10
362634
- Migrate requires and build-requires to rh-java-common
362634
362634
* Mon Dec 15 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-6.9
362634
- Mass rebuild 2014-12-15
362634
362634
* Mon Dec 15 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-6.8
362634
- Rebuild for rh-java-common collection
362634
362634
* Mon May 26 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-6.7
362634
- Mass rebuild 2014-05-26
362634
362634
* Wed Feb 19 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-6.6
362634
- Mass rebuild 2014-02-19
362634
362634
* Tue Feb 18 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-6.5
362634
- Mass rebuild 2014-02-18
362634
362634
* Tue Feb 18 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-6.4
362634
- Remove requires on java
362634
362634
* Mon Feb 17 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-6.3
362634
- SCL-ize build-requires
362634
362634
* Thu Feb 13 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-6.2
362634
- Rebuild to regenerate auto-requires
362634
362634
* Tue Feb 11 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-6.1
362634
- First maven30 software collection build
362634
362634
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 01.3-6
362634
- Mass rebuild 2013-12-27
362634
362634
* Wed Jul 31 2013 Michal Srb <msrb@redhat.com> - 0:1.3-5
362634
- Fix R: easymock3 -> easymock2
362634
362634
* Wed Jul 31 2013 Michal Srb <msrb@redhat.com> - 0:1.3-4
362634
- Remove org.hamcrest:hamcrest-text artifact (it's no longer available in 1.3)
362634
362634
* Wed Jul 03 2013 Michal Srb <msrb@redhat.com> - 0:1.3-2
362634
- Add easymock2 to classpath (Resolves: #979501)
362634
362634
* Fri Jun 28 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-2
362634
- Rebuild to regenerate API documentation
362634
- Resolves: CVE-2013-1571
362634
362634
* Thu Mar 21 2013 Tomas Radej <tradej@redhat.com> - 0:1.3-1
362634
- Updated to latest upstream version
362634
362634
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-22
362634
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
362634
362634
* Mon Nov 26 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.1-21
362634
- Fix core manifest typo ";" -> ","
362634
362634
* Tue Aug 14 2012 Severin Gehwolf <sgehwolf@redhat.com> 0:1.1-20
362634
- Remove attributes in Export-Package header of hamcrest-core
362634
  manifest.
362634
362634
* Wed Aug 1 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-19
362634
- Add OSGi metadata to hamcrest-generator.
362634
362634
* Tue Jul 31 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-18
362634
- Actually build integration.
362634
362634
* Tue Jul 31 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-17
362634
- Add OSGi metadata to hamcrest-integration.
362634
362634
* Tue Jul 31 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-16
362634
- Remove checksums from manifest.
362634
362634
* Tue Jul 31 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-15
362634
- Add OSGi metadata to hamcrest-text.
362634
362634
* Tue Jul 31 2012 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-14
362634
- Add OSGi metadata for hamcrest-library.
362634
362634
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-13
362634
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
362634
362634
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-12
362634
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
362634
362634
* Thu Aug 25 2011 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-11
362634
- Do not BR/R openjdk6 but java >= 1:1.6.0
362634
- Adapt to current guidelines.
362634
362634
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-10.4
362634
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
362634
362634
* Sun Dec 12 2010 Mat Booth <fedora@matbooth.co.uk> 0:1.1-9.4
362634
- Fix FTBFS due to zip BR - RHBZ #661011.
362634
362634
* Thu Oct 7 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-9.3
362634
- Drop gcj support.
362634
362634
* Tue Aug 18 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-9.2
362634
- Add OSGi manifest for hamcrest-core.
362634
- Make javadoc package noarch.
362634
362634
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-9.1
362634
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
362634
362634
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-8.1
362634
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
362634
362634
* Mon Nov 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-7.1
362634
- Fedora-specific: enable GCJ support
362634
- Fedora-specific: build with java 1.6.0
362634
- Fedora-specific: disable integration and tests
362634
362634
* Mon Nov 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-7
362634
- update summary and description
362634
362634
* Tue Oct 28 2008 David Walluck <dwalluck@redhat.com> 0:1.1-6
362634
- make demo dependency on testng conditional
362634
362634
* Fri Oct 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-5
362634
- fix GCJ file list
362634
- simplify build by always setting OPT_JAR_LIST
362634
362634
* Fri Oct 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-4
362634
- add epoch to demo Requires
362634
362634
* Fri Oct 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-3
362634
- set -Dant.build.javac.source=1.5
362634
362634
* Fri Oct 24 2008 David Walluck <dwalluck@redhat.com> 0:1.1-2
362634
- add options to build without integration, jarjar, and tests
362634
- allow build with java-devel >= 1.5.0
362634
- remove javadoc scriptlets
362634
- use more strict file list
362634
- fix maven directory ownership
362634
- add non-versioned symlink for demo
362634
- fix GCJ requires
362634
- fix eol in LICENSE.txt
362634
- remove Vendor and Distribution
362634
362634
* Tue Feb 19 2008 Ralph Apel <r.apel@r-apel.de> - 0:1.1-1jpp
362634
- 1.1
362634
362634
* Mon Feb 11 2008 Ralph Apel <r.apel@r-apel.de> - 0:4.3.1-4jpp
362634
- Fix versioned jar name, was junit-4.3.1
362634
- Restore Epoch
362634
362634
* Fri Jan 25 2008 Ralph Apel <r.apel@r-apel.de> - 0:4.3.1-3jpp
362634
- build and upload noarch packages
362634
- Add pom and depmap frag
362634
- BR java-devel = 1.5.0
362634
- Restore Vendor, Distribution from macros
362634
362634
* Tue Aug 07 2007 Ben Konrath <bkonrath@redhat.com> - 4.3.1-2jpp
362634
- Set gcj_support to 0 to work around problems with GCJ.
362634
- Fix buglet with the gcj post/postun if statement.
362634
- Fix tab / space problems.
362634
- Fix buildroot.
362634
- Update Summary.
362634
- Convert html files to Unix file endings.
362634
- Disable aot-compile-rpm because it's not working ATM.
362634
362634
* Mon Jul 09 2007 Ben Konrath <bkonrath@redhat.com> - 4.3.1-1jpp
362634
- 4.3.1.
362634
362634
* Mon Feb 12 2007 Thomas Fitzsimmons <fitzsim@redhat.com> - 3.8.2-3jpp.1.fc7
362634
- Add dist tag
362634
362634
* Mon Feb 12 2007 Thomas Fitzsimmons <fitzsim@redhat.com> - 3.8.2-3jpp.1
362634
- Committed on behalf of Tania Bento <tbento@redhat.com>
362634
- Update per Fedora review process
362634
- Resolves rhbz#225954
362634
362634
* Thu Aug 10 2006 Deepak Bhole <dbhole@redhat.com> -  0:3.8.2-3jpp.1
362634
- Added missing requirements.
362634
362634
* Thu Aug 10 2006 Karsten Hopp <karsten@redhat.de> 0:3.8.2-2jpp_3fc
362634
- Require(post/postun): coreutils
362634
362634
* Fri Jun 23 2006 Deepak Bhole <dbhole@redhat.com> -  0:3.8.2-2jpp_2fc
362634
- Rebuilt.
362634
362634
* Thu Jun 22 2006 Deepak Bhole <dbhole@redhat.com> -  0:3.8.2-2jpp_1fc
362634
- Upgrade to 3.8.2
362634
- Added conditional native compilation.
362634
- Fix path where demo is located.
362634
362634
* Fri Mar 03 2006 Ralph Apel <r.apel at r-apel.de> - 0:3.8.2-1jpp
362634
- First JPP-1.7 release
362634
362634
* Mon Aug 23 2004 Randy Watler <rwatler at finali.com> - 0:3.8.1-4jpp
362634
- Rebuild with ant-1.6.2
362634
* Fri May 09 2003 David Walluck <david@anti-microsoft.org> 0:3.8.1-3jpp
362634
- update for JPackage 1.5
362634
362634
* Fri Mar 21 2003 Nicolas Mailhot <Nicolas.Mailhot (at) JPackage.org> 3.8.1-2jpp
362634
- For jpackage-utils 1.5
362634
362634
* Fri Sep 06 2002 Henri Gomez <hgomez@users.sourceforge.net> 3.8.1-1jpp
362634
- 3.8.1
362634
362634
* Sun Sep 01 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.8-2jpp
362634
- used original zip file
362634
362634
* Thu Aug 29 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.8-1jpp
362634
- 3.8
362634
- group, vendor and distribution tags
362634
362634
* Sat Jan 19 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-6jpp
362634
- versioned dir for javadoc
362634
- no dependencies for manual and javadoc packages
362634
- stricter dependency for demo package
362634
- additional sources in individual archives
362634
- section macro
362634
362634
* Sat Dec 1 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-5jpp
362634
- javadoc in javadoc package
362634
362634
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 3.7-4jpp
362634
- fixed previous releases ...grrr
362634
362634
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 3.7-3jpp
362634
- added jpp extension
362634
- removed packager tag
362634
362634
* Sun Sep 30 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-2jpp
362634
- first unified release
362634
- s/jPackage/JPackage
362634
362634
* Mon Sep 17 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-1mdk
362634
- 3.7
362634
- vendor tag
362634
- packager tag
362634
- s/Copyright/License/
362634
- truncated description to 72 columns in spec
362634
- spec cleanup
362634
- used versioned jar
362634
- moved demo files to %%{_datadir}/%%{name}
362634
362634
* Sat Feb 17 2001 Guillaume Rousse <g.rousse@linux-mandrake.com> 3.5-1mdk
362634
- first Mandrake release