import opentest4j-1.2.0-9.el9
This commit is contained in:
commit
3c0e6ff237
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/r1.2.0.tar.gz
|
1
.opentest4j.metadata
Normal file
1
.opentest4j.metadata
Normal file
@ -0,0 +1 @@
|
||||
05f9dde376df2938ae78a17c2282211b749b2cf8 SOURCES/r1.2.0.tar.gz
|
49
SOURCES/opentest4j-1.2.0.pom
Normal file
49
SOURCES/opentest4j-1.2.0.pom
Normal file
@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.opentest4j</groupId>
|
||||
<artifactId>opentest4j</artifactId>
|
||||
<version>1.2.0</version>
|
||||
<name>org.opentest4j:opentest4j</name>
|
||||
<description>Open Test Alliance for the JVM</description>
|
||||
<url>https://github.com/ota4j-team/opentest4j</url>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
</license>
|
||||
</licenses>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>bechte</id>
|
||||
<name>Stefan Bechtold</name>
|
||||
<email>stefan.bechtold@me.com</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>jlink</id>
|
||||
<name>Johannes Link</name>
|
||||
<email>business@johanneslink.net</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>marcphilipp</id>
|
||||
<name>Marc Philipp</name>
|
||||
<email>mail@marcphilipp.de</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>mmerdes</id>
|
||||
<name>Matthias Merdes</name>
|
||||
<email>Matthias.Merdes@heidelberg-mobil.com</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>sbrannen</id>
|
||||
<name>Sam Brannen</name>
|
||||
<email>sam@sambrannen.com</email>
|
||||
</developer>
|
||||
</developers>
|
||||
<scm>
|
||||
<connection>scm:git:git://github.com/ota4j-team/opentest4j.git</connection>
|
||||
<developerConnection>scm:git:git://github.com/ota4j-team/opentest4j.git</developerConnection>
|
||||
<url>https://github.com/ota4j-team/opentest4j</url>
|
||||
</scm>
|
||||
</project>
|
148
SPECS/opentest4j.spec
Normal file
148
SPECS/opentest4j.spec
Normal file
@ -0,0 +1,148 @@
|
||||
%bcond_with bootstrap
|
||||
|
||||
Name: opentest4j
|
||||
Version: 1.2.0
|
||||
Release: 9%{?dist}
|
||||
Summary: Open Test Alliance for the JVM
|
||||
License: ASL 2.0
|
||||
URL: https://github.com/ota4j-team/opentest4j
|
||||
BuildArch: noarch
|
||||
|
||||
Source0: https://github.com/ota4j-team/opentest4j/archive/r%{version}.tar.gz
|
||||
Source100: https://repo1.maven.org/maven2/org/opentest4j/opentest4j/%{version}/opentest4j-%{version}.pom
|
||||
|
||||
BuildRequires: maven-local
|
||||
%if %{with bootstrap}
|
||||
BuildRequires: javapackages-bootstrap
|
||||
%else
|
||||
BuildRequires: mvn(junit:junit)
|
||||
%endif
|
||||
|
||||
%description
|
||||
Open Test Alliance for the JVM is a minimal common foundation for
|
||||
testing libraries on the JVM. The primary goal of the project is to
|
||||
enable testing frameworks like JUnit, TestNG, Spock, etc. and
|
||||
third-party assertion libraries like Hamcrest, AssertJ, etc. to use a
|
||||
common set of exceptions that IDEs and build tools can support in a
|
||||
consistent manner across all testing scenarios -- for example, for
|
||||
consistent handling of failed assertions and failed assumptions as
|
||||
well as visualization of test execution in IDEs and reports.
|
||||
|
||||
%package javadoc
|
||||
Summary: Javadoc for %{name}
|
||||
|
||||
%description javadoc
|
||||
API documentation for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n opentest4j-r%{version}
|
||||
find -name \*.jar -delete
|
||||
cp -p %{SOURCE100} pom.xml
|
||||
|
||||
%pom_add_dep junit:junit::test
|
||||
|
||||
%pom_xpath_inject pom:project "
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifestEntries>
|
||||
<Automatic-Module-Name>org.opentest4j</Automatic-Module-Name>
|
||||
<Implementation-Title>opentest4j</Implementation-Title>
|
||||
<Implementation-Vendor>opentest4j.org</Implementation-Vendor>
|
||||
<Implementation-Version>%{version}</Implementation-Version>
|
||||
<Specification-Title>opentest4j</Specification-Title>
|
||||
<Specification-Vendor>opentest4j.org</Specification-Vendor>
|
||||
<Specification-Version>%{version}</Specification-Version>
|
||||
<!-- OSGi metadata required by Eclipse -->
|
||||
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
|
||||
<Bundle-SymbolicName>org.opentest4j</Bundle-SymbolicName>
|
||||
<Bundle-Version>%{version}</Bundle-Version>
|
||||
<Export-Package>org.opentest4j;version=\"%{version}\"</Export-Package>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>"
|
||||
|
||||
# Fix unused reference to unused dependency
|
||||
# This is fixed upstream: https://github.com/ota4j-team/opentest4j/commit/70d3d54f2cd076a962e81d9510e6716f3cbf8060
|
||||
sed -i -e '/org\.apache\.commons\.codec/d' src/test/java/org/opentest4j/AssertionFailedErrorTests.java
|
||||
|
||||
%build
|
||||
%mvn_build
|
||||
|
||||
%install
|
||||
%mvn_install
|
||||
|
||||
%files -f .mfiles
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
|
||||
%files javadoc -f .mfiles-javadoc
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.0-9
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Wed Jun 09 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.2.0-8
|
||||
- Rebuild to workaround DistroBaker issue
|
||||
|
||||
* Tue Jun 08 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.2.0-7
|
||||
- Bootstrap Maven for CentOS Stream 9
|
||||
|
||||
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.2.0-6
|
||||
- Bootstrap build
|
||||
- Non-bootstrap build
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Nov 6 2020 Mat Booth <mat.booth@redhat.com> - 1.2.0-4
|
||||
- Build with release flag
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 1.2.0-2
|
||||
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||
|
||||
* Wed Mar 04 2020 Fabio Valentini <decathorpe@gmail.com> - 1.2.0-1
|
||||
- Update to version 1.2.0.
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.2.0-2
|
||||
- Mass rebuild for javapackages-tools 201902
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Jul 15 2019 Marian Koncek <mkoncek@redhat.com> - 1.2.0-1
|
||||
- Update to upstream version 1.2.0
|
||||
|
||||
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.1.1-2
|
||||
- Mass rebuild for javapackages-tools 201901
|
||||
|
||||
* Tue Mar 05 2019 Mat Booth <mat.booth@redhat.com> - 1.1.1-1
|
||||
- Update to latest upstream release
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Sep 14 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.0.0-1
|
||||
- Initial packaging
|
Loading…
Reference in New Issue
Block a user