2010-05-28 08:45:59 +00:00
|
|
|
Name: maven-antrun-plugin
|
2010-09-20 15:44:01 +00:00
|
|
|
Version: 1.5
|
|
|
|
Release: 1%{?dist}
|
2010-05-28 08:45:59 +00:00
|
|
|
Summary: Maven AntRun Plugin
|
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: ASL 2.0
|
|
|
|
URL: http://maven.apache.org/plugins/maven-antrun-plugin/
|
2010-09-20 15:44:01 +00:00
|
|
|
Source0: http://repo2.maven.org/maven2/org/apache/maven/plugins/%{name}/%{version}/%{name}-%{version}-source-release.zip
|
2010-08-31 03:41:48 +00:00
|
|
|
Patch0: fix-deps.patch
|
2010-05-28 08:45:59 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: java-devel >= 1:1.6.0
|
|
|
|
BuildRequires: plexus-utils
|
|
|
|
BuildRequires: ant-nodeps
|
|
|
|
BuildRequires: maven2
|
|
|
|
BuildRequires: maven-install-plugin
|
|
|
|
BuildRequires: maven-compiler-plugin
|
|
|
|
BuildRequires: maven-plugin-plugin
|
|
|
|
BuildRequires: maven-resources-plugin
|
2010-09-20 15:44:01 +00:00
|
|
|
BuildRequires: maven-surefire-plugin
|
2010-05-28 08:45:59 +00:00
|
|
|
BuildRequires: maven-surefire-provider-junit
|
|
|
|
BuildRequires: maven-jar-plugin
|
|
|
|
BuildRequires: maven-javadoc-plugin
|
|
|
|
Requires: ant-nodeps
|
|
|
|
Requires: maven2
|
|
|
|
Requires: jpackage-utils
|
|
|
|
Requires: java
|
|
|
|
Requires(post): jpackage-utils
|
|
|
|
Requires(postun): jpackage-utils
|
|
|
|
|
|
|
|
Obsoletes: maven2-plugin-antrun <= 0:2.0.8
|
|
|
|
Provides: maven2-plugin-antrun = 1:%{version}-%{release}
|
|
|
|
|
|
|
|
%description
|
|
|
|
Runs Ant scripts embedded in the POM
|
|
|
|
|
|
|
|
%package javadoc
|
|
|
|
Group: Documentation
|
|
|
|
Summary: Javadoc for %{name}
|
|
|
|
Requires: jpackage-utils
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
API documentation for %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2010-08-31 03:41:48 +00:00
|
|
|
%setup -q
|
|
|
|
%patch0
|
2010-05-28 08:45:59 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
export MAVEN_REPO_LOCAL=$(pwd)/.m2/repository
|
|
|
|
mvn-jpp \
|
|
|
|
-e \
|
|
|
|
-Dmaven2.jpp.mode=true \
|
|
|
|
-Dmaven.repo.local=$MAVEN_REPO_LOCAL \
|
|
|
|
install javadoc:javadoc
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
# jars
|
|
|
|
install -d -m 0755 %{buildroot}%{_javadir}
|
|
|
|
install -m 644 target/%{name}-%{version}.jar %{buildroot}%{_javadir}/%{name}-%{version}.jar
|
|
|
|
|
|
|
|
(cd %{buildroot}%{_javadir} && for jar in *-%{version}*; \
|
|
|
|
do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done)
|
|
|
|
|
|
|
|
%add_to_maven_depmap org.apache.maven.plugins maven-antrun-plugin %{version} JPP maven-antrun-plugin
|
|
|
|
|
|
|
|
# poms
|
|
|
|
install -d -m 755 %{buildroot}%{_mavenpomdir}
|
|
|
|
install -pm 644 pom.xml \
|
|
|
|
%{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
|
|
|
|
|
|
|
|
# javadoc
|
|
|
|
install -d -m 0755 %{buildroot}%{_javadocdir}/%{name}-%{version}
|
|
|
|
cp -pr target/site/api*/* %{buildroot}%{_javadocdir}/%{name}-%{version}/
|
|
|
|
ln -s %{name}-%{version} %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
rm -rf target/site/api*
|
|
|
|
|
|
|
|
%post
|
|
|
|
%update_maven_depmap
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%update_maven_depmap
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2010-09-20 15:44:01 +00:00
|
|
|
%doc LICENSE NOTICE
|
2010-05-28 08:45:59 +00:00
|
|
|
%{_javadir}/*
|
|
|
|
%{_mavenpomdir}/*
|
|
|
|
%{_mavendepmapfragdir}/*
|
|
|
|
|
|
|
|
%files javadoc
|
|
|
|
%defattr(-,root,root,-)
|
2010-09-20 15:44:01 +00:00
|
|
|
%doc LICENSE NOTICE
|
2010-05-28 08:45:59 +00:00
|
|
|
%{_javadocdir}/%{name}-%{version}
|
|
|
|
%{_javadocdir}/%{name}
|
|
|
|
|
|
|
|
%changelog
|
2010-09-20 15:44:01 +00:00
|
|
|
* Mon Sep 20 2010 Alexander Kurtakov <akurtako@redhat.com> 1.5-1
|
|
|
|
- Update to 1.5.
|
|
|
|
- Use upstream tarball.
|
|
|
|
- Add License and readme as doc.
|
|
|
|
|
2010-08-31 06:56:30 +00:00
|
|
|
* Tue Aug 31 2010 Alexander Kurtakov <akurtako@redhat.com> 1.4-4
|
|
|
|
- Fix runtime issue of not finding ant-launcher.
|
|
|
|
|
2010-08-31 03:41:48 +00:00
|
|
|
* Tue Aug 31 2010 Alexander Kurtakov <akurtako@redhat.com> 1.4-3
|
|
|
|
- Add patch to fix build.
|
|
|
|
|
2010-05-28 08:45:59 +00:00
|
|
|
* Fri May 28 2010 Alexander Kurtakov <akurtako@redhat.com> 1.4-2
|
|
|
|
- Add provides/obsoletes.
|
|
|
|
|
|
|
|
* Thu May 27 2010 Alexander Kurtakov <akurtako@redhat.com> 1.4-1
|
|
|
|
- Initial package.
|