- Update to 4.11
* Matchers: Upgrade to Hamcrest 1.3 no longer included junit jar * Parameterized Tests * Specify Test execution order * New maven artifact 'junit:junit' w/o builtin hamcrest * Number of improvements into Rules - Drop jdk7-testfailure.patch, fixed upstream - Add junit-no-hamcrest-src.patch, don't bundle hamcrest into junit.jar - Use SourceUrl for release tarball and pom - Don't inject OSGI manifest, it breaks junit.jar - Provide/obsolete package junit4 OBS-URL: https://build.opensuse.org/package/show/Java:packages/junit?expand=0&rev=6
This commit is contained in:
parent
0f3446bf0c
commit
b3e75b6615
68
junit-4.11.pom
Normal file
68
junit-4.11.pom
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd ">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.11</version>
|
||||||
|
<name>JUnit</name>
|
||||||
|
<url>http://junit.org</url>
|
||||||
|
<description>
|
||||||
|
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.
|
||||||
|
</description>
|
||||||
|
<organization>
|
||||||
|
<name>JUnit</name>
|
||||||
|
<url>http://www.junit.org</url>
|
||||||
|
</organization>
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>JUnit Mailing List</name>
|
||||||
|
<post>junit@yahoogroups.com</post>
|
||||||
|
<archive>
|
||||||
|
http://tech.groups.yahoo.com/group/junit/
|
||||||
|
</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Common Public License Version 1.0</name>
|
||||||
|
<url>http://www.opensource.org/licenses/cpl1.0.txt</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/KentBeck/junit.git</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:KentBeck/junit.git</developerConnection>
|
||||||
|
<url>http://github.com/KentBeck/junit/tree/master</url>
|
||||||
|
</scm>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>dsaff</id>
|
||||||
|
<name>David Saff</name>
|
||||||
|
<email>david@saff.net</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<encoding>ISO-8859-1</encoding>
|
||||||
|
<source>${jdk.version}</source>
|
||||||
|
<target>${jdk.version}</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.hamcrest</groupId>
|
||||||
|
<artifactId>hamcrest-core</artifactId>
|
||||||
|
<version>1.3</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<properties>
|
||||||
|
<jdk.version>1.5</jdk.version>
|
||||||
|
</properties>
|
||||||
|
</project>
|
40
junit-no-hamcrest-src.patch
Normal file
40
junit-no-hamcrest-src.patch
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
diff --git a/build.xml b/build.xml
|
||||||
|
index 0efaf87..2efa11c 100644
|
||||||
|
--- a/build.xml
|
||||||
|
+++ b/build.xml
|
||||||
|
@@ -30,7 +30,6 @@
|
||||||
|
<property name="javadoczip" location="${dist}-javadoc.zip" />
|
||||||
|
<property name="hamcrestlib" location="lib/hamcrest-core-1.3.jar" />
|
||||||
|
<property name="hamcrestlibsources" location="lib/hamcrest-core-1.3-sources.jar" />
|
||||||
|
- <property name="hamcrestsrc" location="${dist}/temp.hamcrest.source" />
|
||||||
|
|
||||||
|
<property name="maven.deploy.goal" value="org.apache.maven.plugins:maven-gpg-plugin:1.1:sign-and-deploy-file" />
|
||||||
|
|
||||||
|
@@ -125,10 +124,6 @@
|
||||||
|
</copy>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
- <target name="unjar.hamcrest">
|
||||||
|
- <unjar src="${hamcrestlibsources}" dest="${hamcrestsrc}" />
|
||||||
|
- </target>
|
||||||
|
-
|
||||||
|
<target name="release-notes">
|
||||||
|
<property name="basename" value="doc/ReleaseNotes${version-base}" />
|
||||||
|
<exec executable="perl" failonerror="true">
|
||||||
|
@@ -138,7 +133,7 @@
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
- <target name="javadoc" depends="unjar.hamcrest">
|
||||||
|
+ <target name="javadoc">
|
||||||
|
<javadoc destdir="${javadocdir}"
|
||||||
|
author="false"
|
||||||
|
version="false"
|
||||||
|
@@ -151,7 +146,6 @@
|
||||||
|
<excludepackage name="org.junit.experimental.theories.internal.*" />
|
||||||
|
|
||||||
|
<sourcepath location="${src}" />
|
||||||
|
- <sourcepath location="${hamcrestsrc}" />
|
||||||
|
<link href="http://java.sun.com/javase/6/docs/api/" />
|
||||||
|
</javadoc>
|
||||||
|
</target>
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 25 07:39:22 UTC 2013 - mvyskocil@suse.com
|
||||||
|
|
||||||
|
- Update to 4.11
|
||||||
|
* Matchers: Upgrade to Hamcrest 1.3
|
||||||
|
no longer included junit jar
|
||||||
|
* Parameterized Tests
|
||||||
|
* Specify Test execution order
|
||||||
|
* New maven artifact 'junit:junit' w/o builtin hamcrest
|
||||||
|
* Number of improvements into Rules
|
||||||
|
- Drop jdk7-testfailure.patch, fixed upstream
|
||||||
|
- Add junit-no-hamcrest-src.patch, don't bundle hamcrest into junit.jar
|
||||||
|
- Use SourceUrl for release tarball and pom
|
||||||
|
- Don't inject OSGI manifest, it breaks junit.jar
|
||||||
|
- Provide/obsolete package junit4
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 23 09:35:53 UTC 2013 - mvyskocil@suse.com
|
Fri Aug 23 09:35:53 UTC 2013 - mvyskocil@suse.com
|
||||||
|
|
||||||
|
153
junit.spec
Normal file
153
junit.spec
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
#
|
||||||
|
# spec file for package junit
|
||||||
|
#
|
||||||
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
Name: junit
|
||||||
|
Version: 4.11
|
||||||
|
Release: 0
|
||||||
|
Summary: Java regression test package
|
||||||
|
License: CPL-1.0
|
||||||
|
Group: Development/Libraries/Java
|
||||||
|
Url: http://www.junit.org/
|
||||||
|
Source0: https://github.com/junit-team/junit/archive/r%{version}.tar.gz
|
||||||
|
#Source1: http://search.maven.org/remotecontent?filepath=junit/junit/4.11/junit-4.11.pom
|
||||||
|
Source1: junit-4.11.pom
|
||||||
|
|
||||||
|
#PATCH-FIX-OPENSUSE: do not use bundled hamcrest sources, which btw fixes hamcrest build with junit4
|
||||||
|
Patch0: junit-no-hamcrest-src.patch
|
||||||
|
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
|
BuildRequires: ant
|
||||||
|
BuildRequires: hamcrest >= 1.3
|
||||||
|
BuildRequires: java-devel >= 1.6.0
|
||||||
|
BuildRequires: javapackages-tools
|
||||||
|
BuildRequires: perl(Digest::MD5)
|
||||||
|
|
||||||
|
Requires(post): javapackages-tools
|
||||||
|
Requires(postun): javapackages-tools
|
||||||
|
Requires: hamcrest
|
||||||
|
Requires: java >= 1.6.0
|
||||||
|
Provides: junit4 = %{version}
|
||||||
|
Obsoletes: junit4 <= 4.10
|
||||||
|
|
||||||
|
%description
|
||||||
|
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
|
||||||
|
hosted on GitHub.
|
||||||
|
|
||||||
|
%package manual
|
||||||
|
Summary: Manual for %{name}
|
||||||
|
Group: Documentation/Other
|
||||||
|
Provides: junit4-manual = %{version}
|
||||||
|
Obsoletes: junit4-manual <= 4.10
|
||||||
|
|
||||||
|
%description manual
|
||||||
|
Manual for %{name}.
|
||||||
|
|
||||||
|
%package javadoc
|
||||||
|
Summary: Javadoc for %{name}
|
||||||
|
Group: Documentation/HTML
|
||||||
|
Provides: junit4-javadoc = %{version}
|
||||||
|
Obsoletes: junit4-javadoc <= 4.10
|
||||||
|
|
||||||
|
%description javadoc
|
||||||
|
Javadoc for %{name}.
|
||||||
|
|
||||||
|
%package demo
|
||||||
|
Summary: Demos for %{name}
|
||||||
|
Group: Documentation/Other
|
||||||
|
Requires: %{name} = %{version}
|
||||||
|
Provides: junit4-demo = %{version}
|
||||||
|
Obsoletes: junit4-demo <= 4.10
|
||||||
|
|
||||||
|
%description demo
|
||||||
|
Demos for %{name}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n junit-r%{version}
|
||||||
|
%patch0 -p1
|
||||||
|
|
||||||
|
find . -type f -name "*.jar" -or -name "*.class" | xargs -t rm -rf
|
||||||
|
|
||||||
|
ln -s $(build-classpath hamcrest/core) lib/hamcrest-core-1.3.jar
|
||||||
|
|
||||||
|
%build
|
||||||
|
#export CLASSPATH=
|
||||||
|
#export OPT_JAR_LIST=:
|
||||||
|
#ant -Dant.build.javac.source=1.5 dist
|
||||||
|
ant dist -Dversion-status=
|
||||||
|
|
||||||
|
%install
|
||||||
|
# jars
|
||||||
|
install -d -m 755 %{buildroot}%{_javadir}
|
||||||
|
install -m 644 junit%{version}/junit-%{version}.jar %{buildroot}%{_javadir}/%{name}.jar
|
||||||
|
# compat symlink
|
||||||
|
ln -sf %{_javadir}/%{name}.jar %{buildroot}%{_javadir}/junit4.jar
|
||||||
|
|
||||||
|
# pom
|
||||||
|
install -d -m 755 %{buildroot}%{_mavenpomdir}
|
||||||
|
install -m 644 %{SOURCE1} %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
|
||||||
|
%add_maven_depmap
|
||||||
|
|
||||||
|
# javadoc
|
||||||
|
install -d -m 755 %{buildroot}%{_javadocdir}/%{name}
|
||||||
|
cp -pr junit%{version}/javadoc/* %{buildroot}%{_javadocdir}/%{name}
|
||||||
|
|
||||||
|
# demo
|
||||||
|
install -d -m 755 %{buildroot}%{_datadir}/%{name}/demo/junit # Not using % name for last part because it is
|
||||||
|
# part of package name
|
||||||
|
cp -pr junit%{version}/junit/* %{buildroot}%{_datadir}/%{name}/demo/junit
|
||||||
|
|
||||||
|
%check
|
||||||
|
|
||||||
|
cat > test.java <<EOF
|
||||||
|
import junit.framework.Assert;
|
||||||
|
class test {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
Assert.fail("Hello world from junit");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
javac -cp %{buildroot}/%{_javadir}/%{name}.jar test.java
|
||||||
|
java -cp %{buildroot}/%{_javadir}/%{name}.jar: test && exit 42
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(0644,root,root,0755)
|
||||||
|
%doc CODING_STYLE LICENSE README acknowledgements.txt
|
||||||
|
%{_javadir}/%{name}.jar
|
||||||
|
%{_javadir}/junit4.jar
|
||||||
|
%{_mavenpomdir}/*
|
||||||
|
%{_mavendepmapfragdir}/*
|
||||||
|
|
||||||
|
%files demo
|
||||||
|
%defattr(0644,root,root,0755)
|
||||||
|
%{_datadir}/%{name}
|
||||||
|
|
||||||
|
%files javadoc
|
||||||
|
%defattr(0644,root,root,0755)
|
||||||
|
%{_javadocdir}/%{name}
|
||||||
|
|
||||||
|
%files manual
|
||||||
|
%defattr(0644,root,root,0755)
|
||||||
|
%doc junit%{version}/doc/*
|
||||||
|
|
||||||
|
%changelog
|
3
r4.11.tar.gz
Normal file
3
r4.11.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7f427e18a21006ea5394fb71b268d2fa1d12a9f4575b5743ff093547c7ac7b37
|
||||||
|
size 1974196
|
Loading…
x
Reference in New Issue
Block a user