Compare commits

...

10 Commits

Author SHA1 Message Date
Fedora Release Engineering
e573c8b722 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-24 23:05:40 +00:00
Fedora Release Engineering
9bd9b6fc0e Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-20 23:25:46 +00:00
Mikolaj Izdebski
f789a2bbf8 Update javapackages test plan to f40 2023-10-26 07:33:08 +02:00
Mikolaj Izdebski
0e33df61d1 Convert License tag to SPDX format
Related: https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_2
2023-09-01 14:47:53 +02:00
Mikolaj Izdebski
b126df23bd Implement bootstrap mode 2023-08-22 09:30:58 +02:00
Mikolaj Izdebski
1fd3e28963 Update to upstream version 2.1.2 2023-08-18 09:25:12 +02:00
Chris Kelley
8e6d0ee105 Set ExclusiveArch on any OS with java_arches
This change allows downstream distros such as CentOS Stream/RHEL 9
to re-use this spec file without having to patch out the undefined
java_arches macro.
2023-07-26 20:01:07 +01:00
Fedora Release Engineering
788c04c49c Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-20 07:47:29 +00:00
Marian Koncek
828c6b803e Add smoke tests 2023-03-17 14:56:13 +01:00
Marian Koncek
2ceee22365 Change license, reduce dependencies 2023-02-08 11:05:17 +01:00
7 changed files with 70 additions and 10 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@
/jaf-1.2.2.tar.gz
/jaf-2.1.0.tar.gz
/jaf-2.1.1.tar.gz
/jaf-2.1.2.tar.gz

View File

@ -5,4 +5,5 @@ decision_contexts:
- bodhi_update_push_testing
- bodhi_update_push_stable
rules:
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build./plans/smoke.functional}
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build./plans/javapackages.functional}

View File

@ -1,21 +1,28 @@
%bcond_with bootstrap
Name: jakarta-activation
Version: 2.1.1
Release: 2%{?dist}
Version: 2.1.2
Release: 4%{?dist}
Summary: Jakarta Activation API
# spec is licensed under (EPL-2.0 and GPLv2 with exceptions) but is not shipped
License: BSD
# the whole project is licensed under (EPL-2.0 or BSD)
# the source code additionally can be licensed under GPLv2 with exceptions
# we only ship built source code
License: EPL-2.0 OR BSD-3-Clause OR GPL-2.0-only WITH Classpath-exception-2.0
URL: https://jakartaee.github.io/jaf-api/
BuildArch: noarch
%if 0%{?java_arches:1}
ExclusiveArch: %{java_arches} noarch
%endif
Source0: https://github.com/eclipse-ee4j/jaf/archive/%{version}/jaf-%{version}.tar.gz
%if %{with bootstrap}
BuildRequires: javapackages-bootstrap
%else
BuildRequires: maven-local
BuildRequires: mvn(junit:junit)
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
BuildRequires: mvn(org.apache.maven.plugins:maven-dependency-plugin)
BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin)
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
%endif
%description
Jakarta Activation lets you take advantage of standard services to:
@ -38,7 +45,8 @@ pushd api
# remove custom doclet configuration
%pom_remove_plugin :maven-javadoc-plugin
%pom_remove_plugin :buildnumber-maven-plugin
%pom_remove_plugin -r :buildnumber-maven-plugin
%pom_remove_plugin -r :maven-enforcer-plugin
popd
%build
@ -59,6 +67,24 @@ popd
%license LICENSE.md NOTICE.md
%changelog
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sat Jan 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Fri Sep 01 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1.2-2
- Convert License tag to SPDX format
* Fri Aug 18 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1.2-1
- Update to upstream version 2.1.2
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Wed Feb 08 2023 Marian Koncek <mkoncek@redhat.com> - 2.1.1-3
- Change license, reduce dependencies
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild

15
plans/Smoke.java Normal file
View File

@ -0,0 +1,15 @@
import jakarta.activation.DataHandler;
import jakarta.activation.DataSource;
import jakarta.activation.MimeType;
import jakarta.activation.MimeTypeParseException;
public class Smoke
{
public static void main(String[] args)
{
System.out.println(DataHandler.class.getCanonicalName());
System.out.println(DataSource.class.getCanonicalName());
System.out.println(MimeType.class.getCanonicalName());
System.out.println(MimeTypeParseException.class.getCanonicalName());
}
}

View File

@ -2,6 +2,6 @@ summary: Run javapackages-specific tests
discover:
how: fmf
url: https://src.fedoraproject.org/tests/javapackages
ref: f38
ref: f40
execute:
how: tmt

17
plans/smoke.fmf Normal file
View File

@ -0,0 +1,17 @@
summary: Basic smoke test
prepare:
how: install
package:
- java-1.8.0-openjdk-devel
- xmvn-tools
discover:
how: shell
tests:
- name: /smoke/classpath-import
test: |
CLASSPATH+=":$(xmvn-resolve jakarta.activation:jakarta.activation-api)"
export CLASSPATH
/usr/lib/jvm/java-1.8.0-openjdk/bin/javac plans/Smoke.java
/usr/lib/jvm/java-1.8.0-openjdk/bin/java -cp "${CLASSPATH}:plans" Smoke
execute:
how: tmt

View File

@ -1 +1 @@
SHA512 (jaf-2.1.1.tar.gz) = 23bb5fa6e1b6ee40686e6ea85a4d0a380a2f2ecf3132274b2ad827da3e5466e279f85c5953d97555cf7f75f03623a967c9a45b23e60230bec85a8a856f21a427
SHA512 (jaf-2.1.2.tar.gz) = cb4b9e56bfef7455b5f126bcde2c27756202843548c710afd3882b07f05b42a8eb816d0820d00eb67f79a53e396e71f53ec806fddc692f50b18e1c37deea72bc