Update to current packaging guidelines
This commit is contained in:
parent
2b8c24cc71
commit
09fb1c51e3
@ -2,56 +2,27 @@
|
|||||||
|
|
||||||
Name: maven-plugin-bundle
|
Name: maven-plugin-bundle
|
||||||
Version: 2.3.7
|
Version: 2.3.7
|
||||||
Release: 11%{?dist}
|
Release: 12%{?dist}
|
||||||
Summary: Maven Bundle Plugin
|
Summary: Maven Bundle Plugin
|
||||||
|
|
||||||
Group: Development/Tools
|
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: http://felix.apache.org
|
URL: http://felix.apache.org
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
Source0: http://archive.apache.org/dist/felix/%{site_name}-%{version}-source-release.tar.gz
|
Source0: http://archive.apache.org/dist/felix/%{site_name}-%{version}-source-release.tar.gz
|
||||||
|
|
||||||
Patch0: %{site_name}-dependency.patch
|
Patch0: %{site_name}-dependency.patch
|
||||||
Patch1: %{site_name}-unreported-exception.patch
|
Patch1: %{site_name}-unreported-exception.patch
|
||||||
|
|
||||||
BuildRequires: aqute-bndlib >= 1.50.0
|
BuildRequires: maven-local
|
||||||
BuildRequires: plexus-utils >= 1.4.5
|
BuildRequires: mvn(biz.aQute:bndlib)
|
||||||
BuildRequires: felix-osgi-obr
|
BuildRequires: mvn(net.sf.kxml:kxml2)
|
||||||
BuildRequires: kxml
|
BuildRequires: mvn(org.apache.felix:felix-parent:pom:)
|
||||||
BuildRequires: maven-local
|
BuildRequires: mvn(org.apache.felix:org.apache.felix.bundlerepository)
|
||||||
BuildRequires: maven-shared-dependency-tree >= 1.1-3
|
BuildRequires: mvn(org.apache.maven:maven-archiver)
|
||||||
BuildRequires: maven-compiler-plugin
|
BuildRequires: mvn(org.apache.maven:maven-core)
|
||||||
BuildRequires: maven-install-plugin
|
BuildRequires: mvn(org.apache.maven.shared:maven-dependency-tree)
|
||||||
BuildRequires: maven-jar-plugin
|
BuildRequires: mvn(org.apache.maven.shared:maven-plugin-testing-harness)
|
||||||
BuildRequires: maven-javadoc-plugin
|
BuildRequires: mvn(org.codehaus.plexus:plexus-utils)
|
||||||
BuildRequires: maven-plugin-plugin
|
|
||||||
BuildRequires: maven-resources-plugin
|
|
||||||
BuildRequires: maven-surefire-plugin >= 2.3
|
|
||||||
BuildRequires: maven-surefire-provider-junit4 >= 2.3
|
|
||||||
BuildRequires: maven-doxia-sitetools
|
|
||||||
BuildRequires: maven-shared-osgi
|
|
||||||
BuildRequires: maven-archiver
|
|
||||||
BuildRequires: maven-plugin-testing-harness
|
|
||||||
BuildRequires: mockito
|
|
||||||
BuildRequires: plexus-archiver
|
|
||||||
BuildRequires: plexus-containers-container-default
|
|
||||||
BuildRequires: felix-parent
|
|
||||||
BuildRequires: felix-bundlerepository
|
|
||||||
|
|
||||||
Requires: aqute-bndlib >= 1.50.0
|
|
||||||
Requires: plexus-utils >= 1.4.5
|
|
||||||
Requires: felix-osgi-obr
|
|
||||||
Requires: kxml
|
|
||||||
Requires: maven
|
|
||||||
Requires: maven-archiver
|
|
||||||
Requires: maven-shared-dependency-tree
|
|
||||||
Requires: maven-shared-osgi
|
|
||||||
Requires: plexus-archiver
|
|
||||||
Requires: plexus-containers-container-default
|
|
||||||
Requires: felix-parent
|
|
||||||
Requires: felix-bundlerepository
|
|
||||||
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Provides a maven plugin that supports creating an OSGi bundle
|
Provides a maven plugin that supports creating an OSGi bundle
|
||||||
@ -59,9 +30,7 @@ from the contents of the compilation classpath along with its
|
|||||||
resources and dependencies. Plus a zillion other features.
|
resources and dependencies. Plus a zillion other features.
|
||||||
|
|
||||||
%package javadoc
|
%package javadoc
|
||||||
Group: Documentation
|
|
||||||
Summary: Javadoc for %{name}
|
Summary: Javadoc for %{name}
|
||||||
Requires: jpackage-utils
|
|
||||||
|
|
||||||
%description javadoc
|
%description javadoc
|
||||||
API documentation for %{name}.
|
API documentation for %{name}.
|
||||||
@ -76,35 +45,21 @@ API documentation for %{name}.
|
|||||||
#rm -rf src/main/java/org/apache/maven
|
#rm -rf src/main/java/org/apache/maven
|
||||||
|
|
||||||
%build
|
%build
|
||||||
mvn-rpmbuild install javadoc:aggregate
|
%mvn_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
# jars
|
%mvn_install
|
||||||
install -d -m 0755 %{buildroot}%{_javadir}
|
|
||||||
install -m 644 target/maven-bundle-plugin-%{version}.jar %{buildroot}%{_javadir}/%{name}.jar
|
|
||||||
|
|
||||||
# poms
|
%files -f .mfiles
|
||||||
install -d -m 755 %{buildroot}%{_mavenpomdir}
|
|
||||||
install -pm 644 pom.xml %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
|
|
||||||
|
|
||||||
# javadoc
|
|
||||||
install -d -m 0755 %{buildroot}%{_javadocdir}/%{name}
|
|
||||||
cp -pr target/site/api*/* %{buildroot}%{_javadocdir}/%{name}/
|
|
||||||
rm -rf target/site/api*
|
|
||||||
|
|
||||||
%add_maven_depmap JPP-%{name}.pom %{name}.jar
|
|
||||||
|
|
||||||
%files
|
|
||||||
%doc LICENSE NOTICE DEPENDENCIES
|
%doc LICENSE NOTICE DEPENDENCIES
|
||||||
%{_javadir}/%{name}.jar
|
|
||||||
%{_mavenpomdir}/JPP-%{name}.pom
|
|
||||||
%{_mavendepmapfragdir}/%{name}
|
|
||||||
|
|
||||||
%files javadoc
|
%files javadoc -f .mfiles-javadoc
|
||||||
%doc LICENSE
|
%doc LICENSE NOTICE
|
||||||
%{_javadocdir}/%{name}
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed May 21 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.3.7-12
|
||||||
|
- Update to current packaging guidelines
|
||||||
|
|
||||||
* Thu Feb 20 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.3.7-11
|
* Thu Feb 20 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.3.7-11
|
||||||
- Remove unneeded R and BR: maven-wagon
|
- Remove unneeded R and BR: maven-wagon
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user