i8c-stream-201902
changed/i8c-stream-201902/apiguardian-1.1.0-2.module_el8.2.0+363+9996591c
commit
81257485b8
@ -0,0 +1 @@
|
|||||||
|
05a77f3d63c0e08546b907fde3df532598462ac5 SOURCES/r1.1.0.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
SOURCES/r1.1.0.tar.gz
|
@ -0,0 +1,29 @@
|
|||||||
|
<?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.apiguardian</groupId>
|
||||||
|
<artifactId>apiguardian-api</artifactId>
|
||||||
|
<version>1.1.0</version>
|
||||||
|
<name>org.apiguardian:apiguardian-api</name>
|
||||||
|
<description>@API Guardian</description>
|
||||||
|
<url>https://github.com/apiguardian-team/apiguardian</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>apiguardian</id>
|
||||||
|
<name>@API Guardian Team</name>
|
||||||
|
<email>team@apiguardian.org</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/apiguardian-team/apiguardian.git</connection>
|
||||||
|
<developerConnection>scm:git:git://github.com/apiguardian-team/apiguardian.git</developerConnection>
|
||||||
|
<url>https://github.com/apiguardian-team/apiguardian</url>
|
||||||
|
</scm>
|
||||||
|
</project>
|
@ -0,0 +1,98 @@
|
|||||||
|
Name: apiguardian
|
||||||
|
Version: 1.1.0
|
||||||
|
Release: 2%{?dist}
|
||||||
|
Summary: API Guardian Java annotation
|
||||||
|
License: ASL 2.0
|
||||||
|
URL: https://github.com/apiguardian-team/apiguardian
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
Source0: https://github.com/apiguardian-team/apiguardian/archive/r%{version}.tar.gz
|
||||||
|
|
||||||
|
Source100: https://repo1.maven.org/maven2/org/apiguardian/apiguardian-api/%{version}/apiguardian-api-%{version}.pom
|
||||||
|
|
||||||
|
BuildRequires: maven-local
|
||||||
|
|
||||||
|
%description
|
||||||
|
API Guardian indicates the status of an API element and therefore its
|
||||||
|
level of stability as well. It is used to annotate public types,
|
||||||
|
methods, constructors, and fields within a framework or application in
|
||||||
|
order to publish their API status and level of stability and to
|
||||||
|
indicate how they are intended to be used by consumers of the API.
|
||||||
|
|
||||||
|
%package javadoc
|
||||||
|
Summary: Javadoc for %{name}
|
||||||
|
|
||||||
|
%description javadoc
|
||||||
|
API documentation for %{name}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n apiguardian-r%{version}
|
||||||
|
find -name \*.jar -delete
|
||||||
|
cp -p %{SOURCE100} pom.xml
|
||||||
|
|
||||||
|
# Inject OSGi manifest required by Eclipse
|
||||||
|
%pom_xpath_inject pom:project "
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<manifestEntries>
|
||||||
|
<Automatic-Module-Name>org.apiguardian.api</Automatic-Module-Name>
|
||||||
|
<Implementation-Title>apiguardian-api</Implementation-Title>
|
||||||
|
<Implementation-Vendor>apiguardian.org</Implementation-Vendor>
|
||||||
|
<Implementation-Version>%{version}</Implementation-Version>
|
||||||
|
<Specification-Title>apiguardian-api</Specification-Title>
|
||||||
|
<Specification-Vendor>apiguardian.org</Specification-Vendor>
|
||||||
|
<Specification-Version>%{version}</Specification-Version>
|
||||||
|
<!-- OSGi metadata required by Eclipse -->
|
||||||
|
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
|
||||||
|
<Bundle-SymbolicName>org.apiguardian</Bundle-SymbolicName>
|
||||||
|
<Bundle-Version>%{version}</Bundle-Version>
|
||||||
|
<Export-Package>org.apiguardian.api;version=\"%{version}\"</Export-Package>
|
||||||
|
</manifestEntries>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>"
|
||||||
|
|
||||||
|
%build
|
||||||
|
%mvn_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%mvn_install
|
||||||
|
|
||||||
|
%files -f .mfiles
|
||||||
|
%license LICENSE
|
||||||
|
|
||||||
|
%files javadoc -f .mfiles-javadoc
|
||||||
|
%license LICENSE
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue May 07 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 1.1.0-2
|
||||||
|
- Rebuilt for MSVSphere 8.9
|
||||||
|
|
||||||
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.1.0-2
|
||||||
|
- Mass rebuild for javapackages-tools 201902
|
||||||
|
|
||||||
|
* Wed Jul 17 2019 Marian Koncek <mkoncek@redhat.com> - 1.1.0-1
|
||||||
|
- Update to upstream version 1.1.0
|
||||||
|
|
||||||
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.0.0-5
|
||||||
|
- Mass rebuild for javapackages-tools 201901
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 07 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