2012-01-24 09:24:57 +00:00
|
|
|
# Copyright (c) 2000-2008, JPackage Project
|
2006-07-23 02:14:22 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name of the JPackage Project nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
|
2007-02-12 23:53:11 +00:00
|
|
|
Name: junit
|
2012-01-24 09:24:57 +00:00
|
|
|
Version: 4.10
|
2013-02-14 03:04:46 +00:00
|
|
|
Release: 8%{?dist}
|
2012-01-24 09:24:57 +00:00
|
|
|
Epoch: 0
|
2007-02-12 23:53:11 +00:00
|
|
|
Summary: Java regression test package
|
|
|
|
License: CPL
|
2010-10-06 21:33:41 +00:00
|
|
|
URL: http://www.junit.org/
|
2007-02-12 23:53:11 +00:00
|
|
|
Group: Development/Tools
|
2012-01-24 09:24:57 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
# git clone --bare git://github.com/KentBeck/junit.git junit.git
|
|
|
|
# mkdir junit-4.10
|
|
|
|
# git --git-dir=junit.git --work-tree=junit-4.10 checkout r4.10
|
|
|
|
# tar cjf junit-4.10.tar.xz junit-4.10/
|
|
|
|
Source0: %{name}-%{version}.tar.xz
|
|
|
|
Source1: http://search.maven.org/remotecontent?filepath=%{name}/%{name}/%{version}/%{name}-%{version}.pom
|
2012-01-31 13:44:25 +00:00
|
|
|
Source2: junit-OSGi-MANIFEST.MF
|
2012-01-24 09:24:57 +00:00
|
|
|
Patch0: %{name}-removed-test.patch
|
|
|
|
|
2007-02-12 23:53:11 +00:00
|
|
|
BuildRequires: ant
|
2012-01-24 09:24:57 +00:00
|
|
|
BuildRequires: ant-contrib
|
|
|
|
BuildRequires: jpackage-utils >= 0:1.7.4
|
|
|
|
BuildRequires: java-devel >= 1:1.6.0
|
|
|
|
BuildRequires: hamcrest
|
2012-12-18 16:23:17 +00:00
|
|
|
BuildRequires: perl(Digest::MD5)
|
2012-01-24 09:24:57 +00:00
|
|
|
|
|
|
|
Requires: hamcrest
|
|
|
|
Requires: java >= 1:1.6.0
|
|
|
|
|
2012-01-26 15:36:32 +00:00
|
|
|
Provides: junit4 = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: junit4 < %{epoch}:%{version}-%{release}
|
2004-09-09 06:36:44 +00:00
|
|
|
|
|
|
|
%description
|
2012-01-24 09:24:57 +00:00
|
|
|
JUnit is a regression testing framework written by Erich Gamma and Kent Beck.
|
|
|
|
It is used by the developer who implements unit tests in Java. JUnit is Open
|
|
|
|
Source Software, released under the Common Public License Version 1.0 and
|
2012-12-18 16:23:17 +00:00
|
|
|
hosted on GitHub.
|
2004-09-09 06:36:44 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
%package manual
|
2007-02-12 23:53:11 +00:00
|
|
|
Group: Documentation
|
|
|
|
Summary: Manual for %{name}
|
2012-01-26 15:36:32 +00:00
|
|
|
Provides: junit4-manual = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: junit4-manual < %{epoch}:%{version}-%{release}
|
2004-09-09 06:36:44 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
%description manual
|
|
|
|
Documentation for %{name}.
|
2004-09-09 06:36:44 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
%package javadoc
|
2007-02-12 23:53:11 +00:00
|
|
|
Group: Documentation
|
|
|
|
Summary: Javadoc for %{name}
|
2012-01-24 09:24:57 +00:00
|
|
|
Requires: jpackage-utils
|
2012-01-26 15:36:32 +00:00
|
|
|
Provides: junit4-javadoc = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: junit4-javadoc < %{epoch}:%{version}-%{release}
|
2004-09-09 06:36:44 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
%description javadoc
|
|
|
|
Javadoc for %{name}.
|
2004-09-09 06:38:10 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
%package demo
|
2007-02-12 23:53:11 +00:00
|
|
|
Group: Development/Libraries
|
|
|
|
Summary: Demos for %{name}
|
2012-01-24 09:24:57 +00:00
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
2012-01-26 15:36:32 +00:00
|
|
|
Provides: junit4-demo = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: junit4-demo < %{epoch}:%{version}-%{release}
|
2004-09-09 06:38:10 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
%description demo
|
|
|
|
Demonstrations and samples for %{name}.
|
2004-09-09 06:36:44 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
%prep
|
2012-01-24 09:24:57 +00:00
|
|
|
%setup -q
|
|
|
|
%patch0 -p1
|
|
|
|
cp %{SOURCE1} pom.xml
|
|
|
|
find -iname '*.class' -o -iname '*.jar' -delete
|
|
|
|
ln -s $(build-classpath hamcrest/core) lib/hamcrest-core-1.1.jar
|
2004-09-09 06:36:44 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
%build
|
|
|
|
ant dist
|
2004-09-09 06:36:44 +00:00
|
|
|
|
2012-01-31 13:44:25 +00:00
|
|
|
# inject OSGi manifest
|
|
|
|
mkdir -p META-INF
|
|
|
|
cp -p %{SOURCE2} META-INF/MANIFEST.MF
|
|
|
|
touch META-INF/MANIFEST.MF
|
|
|
|
zip -u %{name}%{version}/%{name}-%{version}.jar META-INF/MANIFEST.MF
|
2012-01-24 09:24:57 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
%install
|
|
|
|
# jars
|
2012-01-24 09:24:57 +00:00
|
|
|
install -d -m 755 %{buildroot}%{_javadir}
|
|
|
|
install -m 644 %{name}%{version}/%{name}-%{version}.jar %{buildroot}%{_javadir}/%{name}.jar
|
|
|
|
# Many packages still use the junit4.jar directly
|
|
|
|
ln -s %{_javadir}/%{name}.jar %{buildroot}%{_javadir}/%{name}4.jar
|
|
|
|
|
|
|
|
# pom
|
|
|
|
install -d -m 755 %{buildroot}%{_mavenpomdir}
|
|
|
|
install -m 644 pom.xml %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
|
|
|
|
%add_maven_depmap JPP-%{name}.pom %{name}.jar
|
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
# javadoc
|
2012-01-24 09:24:57 +00:00
|
|
|
install -d -m 755 %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
cp -pr %{name}%{version}/javadoc/* %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
# demo
|
2012-01-24 09:24:57 +00:00
|
|
|
install -d -m 755 %{buildroot}%{_datadir}/%{name}/demo/%{name}
|
2006-07-23 02:14:22 +00:00
|
|
|
|
2012-01-24 09:24:57 +00:00
|
|
|
cp -pr %{name}%{version}/%{name}/* %{buildroot}%{_datadir}/%{name}/demo/%{name}
|
2007-02-12 23:53:11 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
|
2004-09-09 06:36:44 +00:00
|
|
|
%files
|
2012-01-24 09:24:57 +00:00
|
|
|
%doc cpl-v10.html README.html
|
|
|
|
%{_javadir}/%{name}.jar
|
|
|
|
%{_javadir}/%{name}4.jar
|
|
|
|
%{_mavenpomdir}/*
|
|
|
|
%{_mavendepmapfragdir}/*
|
2006-07-23 02:14:22 +00:00
|
|
|
|
2012-01-24 09:24:57 +00:00
|
|
|
%files demo
|
|
|
|
%doc cpl-v10.html
|
|
|
|
%{_datadir}/%{name}
|
2004-09-09 06:36:44 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
%files javadoc
|
2012-01-24 09:24:57 +00:00
|
|
|
%doc cpl-v10.html
|
2007-02-12 23:53:11 +00:00
|
|
|
%doc %{_javadocdir}/%{name}
|
2004-09-09 06:38:32 +00:00
|
|
|
|
2012-01-24 09:24:57 +00:00
|
|
|
%files manual
|
|
|
|
%doc cpl-v10.html
|
|
|
|
%doc junit%{version}/doc/*
|
2005-12-22 02:01:42 +00:00
|
|
|
|
2006-07-23 02:14:22 +00:00
|
|
|
%changelog
|
2013-02-14 03:04:46 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:4.10-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-18 16:23:17 +00:00
|
|
|
* Tue Dec 18 2012 Michal Srb <msrb@redhat.com> - 0:4.10-7
|
|
|
|
- Build-time dependency perl-MD5 replaced with perl(Digest::MD5)
|
|
|
|
- Description cleanup (Resolves: #888389)
|
|
|
|
|
2012-07-19 16:46:50 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:4.10-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-30 13:08:55 +00:00
|
|
|
* Mon Apr 30 2012 Krzysztof Daniel <kdaniel@redhat.com> 0:4.10-5
|
|
|
|
- Update OSGi metadata to match 4.10.0 release.
|
|
|
|
|
2012-02-09 08:27:42 +00:00
|
|
|
* Thu Feb 09 2012 Harald Hoyer <harald@redhat.com> 4.10-4
|
2012-02-09 08:26:52 +00:00
|
|
|
- removed Conflicts with itsself
|
|
|
|
|
2012-01-31 13:44:25 +00:00
|
|
|
* Thu Jan 26 2012 Roland Grunberg <rgrunber@redhat.com> 0:4.8.2-3
|
|
|
|
- Add OSGi metadata to junit.jar manifest.
|
|
|
|
|
2012-01-26 15:36:32 +00:00
|
|
|
* Thu Jan 26 2012 Tomas Radej <tradej@redhat.com> - 0:4.10-2
|
|
|
|
- Fixed versioning
|
|
|
|
|
2012-01-24 09:24:57 +00:00
|
|
|
* Wed Jan 25 2012 Tomas Radej <tradej@redhat.com> - 0:4.10-1
|
|
|
|
- Updated to upstream 4.10
|
|
|
|
- Obsoleted junit4
|
|
|
|
- Epoch added
|
|
|
|
|
2012-01-13 06:36:46 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.2-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-09 15:03:04 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.2-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-10-06 21:33:41 +00:00
|
|
|
* Thu Oct 7 2010 Alexander Kurtakov <akurtako@redhat.com> 3.8.2-7
|
|
|
|
- Drop gcj support.
|
|
|
|
|
2009-07-25 04:12:53 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.2-6.4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-25 09:54:20 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.2-5.4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-07-09 20:15:25 +00:00
|
|
|
* Wed Jul 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.8.2-4.4
|
|
|
|
- drop repotag
|
|
|
|
|
2008-02-19 00:43:52 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.8.2-4jpp.3
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-09-20 23:12:20 +00:00
|
|
|
* Thu Sep 20 2007 Deepak Bhole <dbhole@redhat.com> - 3.8.2-3jpp.3
|
|
|
|
- Fix location of stylesheet for javadocs
|
|
|
|
|
2007-09-20 22:10:41 +00:00
|
|
|
* Thu Sep 20 2007 Deepak Bhole <dbhole@redhat.com> - 3.8.2-3jpp.2
|
|
|
|
- Rebuild for ppc32 execmem issue and new build-id
|
|
|
|
|
2007-02-12 23:55:11 +00:00
|
|
|
* Mon Feb 12 2007 Thomas Fitzsimmons <fitzsim@redhat.com> - 3.8.2-3jpp.1.fc7
|
|
|
|
- Add dist tag
|
|
|
|
|
2007-02-12 23:53:11 +00:00
|
|
|
* Mon Feb 12 2007 Thomas Fitzsimmons <fitzsim@redhat.com> - 3.8.2-3jpp.1
|
|
|
|
- Committed on behalf of Tania Bento <tbento@redhat.com>
|
2007-02-12 23:53:43 +00:00
|
|
|
- Update per Fedora review process
|
|
|
|
- Resolves rhbz#225954
|
2007-02-12 23:53:11 +00:00
|
|
|
|
2006-08-10 22:35:41 +00:00
|
|
|
* Thu Aug 10 2006 Deepak Bhole <dbhole@redhat.com> - 0:3.8.2-3jpp.1
|
|
|
|
- Added missing requirements.
|
|
|
|
|
2006-08-10 09:09:12 +00:00
|
|
|
* Thu Aug 10 2006 Karsten Hopp <karsten@redhat.de> 0:3.8.2-2jpp_3fc
|
|
|
|
- Require(post/postun): coreutils
|
|
|
|
|
2006-07-24 04:10:46 +00:00
|
|
|
* Sun Jun 23 2006 Deepak Bhole <dbhole@redhat.com> - 0:3.8.2-2jpp_2fc
|
|
|
|
- Rebuilt.
|
|
|
|
|
2006-07-23 02:14:22 +00:00
|
|
|
* Sat Jun 22 2006 Deepak Bhole <dbhole@redhat.com> - 0:3.8.2-2jpp_1fc
|
2006-07-23 02:14:55 +00:00
|
|
|
- Upgrade to 3.8.2
|
2006-07-23 02:14:22 +00:00
|
|
|
- Added conditional native compilation.
|
|
|
|
- Fix path where demo is located.
|
2004-09-09 06:38:32 +00:00
|
|
|
|
2006-07-23 02:14:22 +00:00
|
|
|
* Mon Mar 03 2006 Ralph Apel <r.apel at r-apel.de> - 0:3.8.2-1jpp
|
|
|
|
- First JPP-1.7 release
|
2004-09-09 06:38:32 +00:00
|
|
|
|
2006-07-23 02:14:22 +00:00
|
|
|
* Sun Aug 23 2004 Randy Watler <rwatler at finali.com> - 0:3.8.1-4jpp
|
|
|
|
- Rebuild with ant-1.6.2
|
2004-09-09 06:38:32 +00:00
|
|
|
* Fri May 09 2003 David Walluck <david@anti-microsoft.org> 0:3.8.1-3jpp
|
|
|
|
- update for JPackage 1.5
|
|
|
|
|
|
|
|
* Fri Mar 21 2003 Nicolas Mailhot <Nicolas.Mailhot (at) JPackage.org> 3.8.1-2jpp
|
|
|
|
- For jpackage-utils 1.5
|
|
|
|
|
|
|
|
* Fri Sep 06 2002 Henri Gomez <hgomez@users.sourceforge.net> 3.8.1-1jpp
|
|
|
|
- 3.8.1
|
2004-09-09 06:38:10 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
* Sun Sep 01 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.8-2jpp
|
|
|
|
- used original zip file
|
2004-09-09 06:38:00 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
* Thu Aug 29 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.8-1jpp
|
|
|
|
- 3.8
|
|
|
|
- group, vendor and distribution tags
|
2004-09-09 06:38:00 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
* Sat Jan 19 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-6jpp
|
|
|
|
- versioned dir for javadoc
|
|
|
|
- no dependencies for manual and javadoc packages
|
|
|
|
- stricter dependency for demo package
|
|
|
|
- additional sources in individual archives
|
|
|
|
- section macro
|
2004-09-09 06:36:57 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
* Sat Dec 1 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-5jpp
|
|
|
|
- javadoc in javadoc package
|
2004-09-09 06:36:57 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 3.7-4jpp
|
|
|
|
- fixed previous releases ...grrr
|
2004-09-09 06:36:57 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 3.7-3jpp
|
|
|
|
- added jpp extension
|
|
|
|
- removed packager tag
|
2004-09-09 06:36:57 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
* Sun Sep 30 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-2jpp
|
|
|
|
- first unified release
|
|
|
|
- s/jPackage/JPackage
|
2004-09-09 06:36:44 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
* Mon Sep 17 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 3.7-1mdk
|
|
|
|
- 3.7
|
|
|
|
- vendor tag
|
|
|
|
- packager tag
|
|
|
|
- s/Copyright/License/
|
|
|
|
- truncated description to 72 columns in spec
|
|
|
|
- spec cleanup
|
|
|
|
- used versioned jar
|
2007-02-12 23:53:11 +00:00
|
|
|
- moved demo files to %%{_datadir}/%%{name}
|
2004-09-09 06:36:44 +00:00
|
|
|
|
2004-09-09 06:38:32 +00:00
|
|
|
* Sat Feb 17 2001 Guillaume Rousse <g.rousse@linux-mandrake.com> 3.5-1mdk
|
|
|
|
- first Mandrake release
|