Compare commits
No commits in common. "c10s" and "c8-stream-201902" have entirely different histories.
c10s
...
c8-stream-
@ -1 +0,0 @@
|
||||
1
|
||||
14
.gitignore
vendored
14
.gitignore
vendored
@ -1,13 +1 @@
|
||||
/osgi.annotation-6.0.0.pom
|
||||
/osgi.annotation-6.0.0-sources.jar
|
||||
/noarch
|
||||
/.build-*.log
|
||||
/*.src.rpm
|
||||
/osgi.annotation-7.0.0.jar
|
||||
/osgi.annotation-7.0.0.pom
|
||||
/osgi.annotation-8.0.0.jar
|
||||
/osgi.annotation-8.0.0.pom
|
||||
/osgi.annotation-8.0.1.jar
|
||||
/osgi.annotation-8.0.1.pom
|
||||
/osgi.annotation-8.1.0.jar
|
||||
/osgi.annotation-8.1.0.pom
|
||||
SOURCES/osgi.annotation-7.0.0.jar
|
||||
|
||||
1
.osgi-annotation.metadata
Normal file
1
.osgi-annotation.metadata
Normal file
@ -0,0 +1 @@
|
||||
c8c21fdf695aa93d8df0547c15fb6b52f3395787 SOURCES/osgi.annotation-7.0.0.jar
|
||||
37
SOURCES/osgi.annotation-7.0.0.pom
Normal file
37
SOURCES/osgi.annotation-7.0.0.pom
Normal file
@ -0,0 +1,37 @@
|
||||
<?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>org.osgi</groupId>
|
||||
<artifactId>osgi.annotation</artifactId>
|
||||
<version>7.0.0</version>
|
||||
<description>OSGi Annotation Release 7, Annotations for use in compiling bundles</description>
|
||||
<name>org.osgi:osgi.annotation</name>
|
||||
<url>https://www.osgi.org/</url>
|
||||
<organization>
|
||||
<name>OSGi Alliance</name>
|
||||
<url>https://www.osgi.org/</url>
|
||||
</organization>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache-2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||
<distribution>repo</distribution>
|
||||
<comments>Apache License, Version 2.0</comments>
|
||||
</license>
|
||||
</licenses>
|
||||
<scm>
|
||||
<url>https://osgi.org/gitweb/build.git</url>
|
||||
<connection>scm:git:https://osgi.org/git/build.git</connection>
|
||||
<developerConnection>scm:git:https://osgi.org/git/build.git</developerConnection>
|
||||
<tag>hudson-build.core-1432</tag>
|
||||
</scm>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>osgi</id>
|
||||
<email>info@osgi.org</email>
|
||||
<name>OSGi Alliance</name>
|
||||
<organization>OSGi Alliance</organization>
|
||||
<organizationUrl>https://www.osgi.org/</organizationUrl>
|
||||
</developer>
|
||||
</developers>
|
||||
</project>
|
||||
104
SPECS/osgi-annotation.spec
Normal file
104
SPECS/osgi-annotation.spec
Normal file
@ -0,0 +1,104 @@
|
||||
Name: osgi-annotation
|
||||
Version: 7.0.0
|
||||
Release: 3%{?dist}
|
||||
Summary: Annotations for use in compiling OSGi bundles
|
||||
|
||||
License: ASL 2.0
|
||||
URL: http://www.osgi.org/
|
||||
# Upstream project is behind an account registration system with no anonymous
|
||||
# read access, so we download the source from maven central instead
|
||||
Source0: http://repo1.maven.org/maven2/org/osgi/osgi.annotation/%{version}/osgi.annotation-%{version}.jar
|
||||
Source1: http://repo1.maven.org/maven2/org/osgi/osgi.annotation/%{version}/osgi.annotation-%{version}.pom
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: maven-local
|
||||
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
||||
|
||||
%description
|
||||
Annotations for use in compiling OSGi bundles. This package is not normally
|
||||
needed at run-time.
|
||||
|
||||
%package javadoc
|
||||
Summary: API documentation for %{name}
|
||||
|
||||
%description javadoc
|
||||
This package contains the API documentation for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -c -q
|
||||
|
||||
mkdir -p src/main/java && mv OSGI-OPT/src/org src/main/java
|
||||
|
||||
rm -r org OSGI-OPT
|
||||
|
||||
cp -p %{SOURCE1} pom.xml
|
||||
|
||||
# Ensure OSGi metadata is generated
|
||||
%pom_xpath_inject pom:project "
|
||||
<packaging>bundle</packaging>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Bundle-Name>\${project.artifactId}</Bundle-Name>
|
||||
<Bundle-SymbolicName>\${project.artifactId}</Bundle-SymbolicName>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>"
|
||||
|
||||
# Known by two names in maven central, so add an alias for the older name
|
||||
%mvn_alias org.osgi:osgi.annotation org.osgi:org.osgi.annotation
|
||||
|
||||
%build
|
||||
%mvn_build
|
||||
|
||||
%install
|
||||
%mvn_install
|
||||
|
||||
%files -f .mfiles
|
||||
%license LICENSE
|
||||
%doc about.html
|
||||
|
||||
%files javadoc -f .mfiles-javadoc
|
||||
%doc LICENSE
|
||||
|
||||
%changelog
|
||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 7.0.0-3
|
||||
- Mass rebuild for javapackages-tools 201902
|
||||
|
||||
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 7.0.0-2
|
||||
- Mass rebuild for javapackages-tools 201901
|
||||
|
||||
* Tue Nov 20 2018 Marian Koncek <mkoncek@redhat.com> - 7.0.0-1
|
||||
- Update to upstream version 7.0.0
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sun Oct 9 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.0.0-4
|
||||
- Add missing build-requirement on maven-plugin-bundle
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Jan 26 2015 Mat Booth <mat.booth@redhat.com> - 6.0.0-1
|
||||
- Initial package
|
||||
@ -1,7 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_contexts:
|
||||
- osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/javapackages.functional}
|
||||
@ -1,184 +0,0 @@
|
||||
%bcond_with bootstrap
|
||||
|
||||
Name: osgi-annotation
|
||||
Version: 8.1.0
|
||||
Release: 7%{?dist}
|
||||
Summary: Annotations for use in compiling OSGi bundles
|
||||
License: Apache-2.0
|
||||
URL: https://www.osgi.org
|
||||
BuildArch: noarch
|
||||
ExclusiveArch: %{java_arches} noarch
|
||||
|
||||
# Upstream project is behind an account registration system with no anonymous
|
||||
# read access, so we download the source from maven central instead
|
||||
Source0: https://repo1.maven.org/maven2/org/osgi/osgi.annotation/%{version}/osgi.annotation-%{version}.jar
|
||||
Source1: https://repo1.maven.org/maven2/org/osgi/osgi.annotation/%{version}/osgi.annotation-%{version}.pom
|
||||
|
||||
%if %{with bootstrap}
|
||||
BuildRequires: javapackages-bootstrap
|
||||
%else
|
||||
BuildRequires: maven-local
|
||||
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
||||
%endif
|
||||
|
||||
%description
|
||||
Annotations for use in compiling OSGi bundles. This package is not normally
|
||||
needed at run-time.
|
||||
|
||||
%package javadoc
|
||||
Summary: API documentation for %{name}
|
||||
|
||||
%description javadoc
|
||||
This package contains the API documentation for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -c -q
|
||||
|
||||
mkdir -p src/main/java && mv OSGI-OPT/src/org src/main/java
|
||||
|
||||
rm -r org OSGI-OPT
|
||||
|
||||
cp -p %{SOURCE1} pom.xml
|
||||
|
||||
# Ensure OSGi metadata is generated
|
||||
%pom_xpath_inject pom:project "
|
||||
<packaging>bundle</packaging>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Bundle-Name>\${project.artifactId}</Bundle-Name>
|
||||
<Bundle-SymbolicName>\${project.artifactId}</Bundle-SymbolicName>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>"
|
||||
|
||||
# Known by two names in maven central, so add an alias for the older name
|
||||
%mvn_alias org.osgi:osgi.annotation org.osgi:org.osgi.annotation
|
||||
|
||||
%build
|
||||
%mvn_build -- -Dmaven.compiler.source=1.8 -Dmaven.compiler.target=1.8
|
||||
|
||||
%install
|
||||
%mvn_install
|
||||
|
||||
%files -f .mfiles
|
||||
%license META-INF/LICENSE META-INF/NOTICE
|
||||
|
||||
%files javadoc -f .mfiles-javadoc
|
||||
%license META-INF/LICENSE META-INF/NOTICE
|
||||
|
||||
%changelog
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 8.1.0-7
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Mon Aug 05 2024 Mikolaj Izdebski <mizdebsk@redhat.com> - 8.1.0-6
|
||||
- Switch Java compiler source/target to 1.8
|
||||
- Resolves: RHEL-52702
|
||||
|
||||
* Thu Aug 01 2024 Troy Dawson <tdawson@redhat.com> - 8.1.0-6
|
||||
- Bump release for Aug 2024 java mass rebuild
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 8.1.0-5
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 8.1.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 8.1.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Sep 01 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 8.1.0-2
|
||||
- Convert License tag to SPDX format
|
||||
|
||||
* Thu Aug 17 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 8.1.0-1
|
||||
- Update to upstream version 8.1.0
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.1-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 8.0.1-4
|
||||
- Rebuilt for java-17-openjdk as system jdk
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Tue Nov 02 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 8.0.1-2
|
||||
- Set explicit Java compiler source/target levels to 1.7
|
||||
|
||||
* Wed Oct 13 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 8.0.1-1
|
||||
- Update to upstream version 8.0.1
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 8.0.0-2
|
||||
- Bootstrap build
|
||||
- Non-bootstrap build
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Jan 15 2021 Marian Koncek <mkoncek@redhat.com> - 8.0.0-1
|
||||
- Update to upstream version 8.0.0
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 7.0.0-5
|
||||
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 7.0.0-3
|
||||
- Mass rebuild for javapackages-tools 201902
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 7.0.0-2
|
||||
- Mass rebuild for javapackages-tools 201901
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Tue Nov 20 2018 Marian Koncek <mkoncek@redhat.com> - 7.0.0-1
|
||||
- Update to upstream version 7.0.0
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sun Oct 9 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 6.0.0-4
|
||||
- Add missing build-requirement on maven-plugin-bundle
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Jan 26 2015 Mat Booth <mat.booth@redhat.com> - 6.0.0-1
|
||||
- Initial package
|
||||
@ -1,7 +0,0 @@
|
||||
summary: Run javapackages-specific tests
|
||||
discover:
|
||||
how: fmf
|
||||
url: https://gitlab.com/redhat/centos-stream/tests/javapackages.git
|
||||
ref: c10s
|
||||
execute:
|
||||
how: tmt
|
||||
2
sources
2
sources
@ -1,2 +0,0 @@
|
||||
SHA512 (osgi.annotation-8.1.0.jar) = a190fa888fd22c2c31455d672b3e50ca79fa9f02269b9d45f6e6fc189dc8f90d20663e290f151a851e010b52ce87e62dc5079253c3e59caa72f11ea6248ffb26
|
||||
SHA512 (osgi.annotation-8.1.0.pom) = 3d3dfc6da433527dbc80493a613d3e76d914db6da13b73ff8bd6b91343d32d752eb45f4809cbf96ffe57df144e933230d4d4f1f8bb01ce548652bcaff0d4b1ea
|
||||
Loading…
Reference in New Issue
Block a user