First import
This commit is contained in:
parent
f511ab638a
commit
181746626e
@ -0,0 +1 @@
|
|||||||
|
commons-exec-1.0.1-src.tar.gz
|
114
apache-commons-exec.spec
Normal file
114
apache-commons-exec.spec
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
%global base_name exec
|
||||||
|
%global short_name commons-%{base_name}
|
||||||
|
|
||||||
|
Name: apache-commons-exec
|
||||||
|
Version: 1.0.1
|
||||||
|
Release: 2%{?dist}
|
||||||
|
Summary: Java library to reliably execute external processes from within the JVM
|
||||||
|
|
||||||
|
Group: Development/Libraries
|
||||||
|
License: ASL 2.0
|
||||||
|
URL: http://commons.apache.org/exec/
|
||||||
|
Source0: http://www.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
BuildRequires: java-devel >= 1:1.6.0
|
||||||
|
BuildRequires: jpackage-utils
|
||||||
|
BuildRequires: maven-doxia-sitetools
|
||||||
|
BuildRequires: maven-plugin-bundle
|
||||||
|
BuildRequires: maven-surefire-maven-plugin
|
||||||
|
BuildRequires: maven-surefire-provider-junit
|
||||||
|
BuildRequires: maven2-plugin-antrun
|
||||||
|
BuildRequires: maven2-plugin-assembly
|
||||||
|
BuildRequires: maven2-plugin-compiler
|
||||||
|
BuildRequires: maven2-plugin-idea
|
||||||
|
BuildRequires: maven2-plugin-install
|
||||||
|
BuildRequires: maven2-plugin-jar
|
||||||
|
BuildRequires: maven2-plugin-javadoc
|
||||||
|
BuildRequires: maven2-plugin-resources
|
||||||
|
Requires: java >= 1:1.6.0
|
||||||
|
Requires: jpackage-utils
|
||||||
|
Requires(post): jpackage-utils
|
||||||
|
Requires(postun):jpackage-utils
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description
|
||||||
|
Commons Exec is a library for dealing with external process execution and
|
||||||
|
environment management in Java.
|
||||||
|
|
||||||
|
|
||||||
|
%package javadoc
|
||||||
|
Summary: Javadocs for %{name}
|
||||||
|
Group: Documentation
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Requires: jpackage-utils
|
||||||
|
|
||||||
|
%description javadoc
|
||||||
|
This package contains the API documentation for %{name}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{short_name}-%{version}-src
|
||||||
|
|
||||||
|
# Shell scripts used for unit tests must be executable (see
|
||||||
|
# http://commons.apache.org/exec/faq.html#environment-testing)
|
||||||
|
chmod a+x src/test/scripts/*.sh
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
export MAVEN_REPO_LOCAL=$(pwd)/.m2/repository
|
||||||
|
mkdir -p $MAVEN_REPO_LOCAL
|
||||||
|
mvn-jpp \
|
||||||
|
-Dmaven.repo.local=$MAVEN_REPO_LOCAL \
|
||||||
|
install javadoc:javadoc
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
mkdir -p $RPM_BUILD_ROOT%{_javadir}
|
||||||
|
cp -p target/%{short_name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}
|
||||||
|
ln -s %{short_name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{short_name}.jar
|
||||||
|
|
||||||
|
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
||||||
|
cp -rp target/site/apidocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
||||||
|
|
||||||
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/maven2/poms
|
||||||
|
cp -p pom.xml $RPM_BUILD_ROOT/%{_datadir}/maven2/poms/JPP-%{name}.pom
|
||||||
|
|
||||||
|
%add_to_maven_depmap org.apache.maven %{name} %{version} JPP %{name}
|
||||||
|
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
%update_maven_depmap
|
||||||
|
|
||||||
|
|
||||||
|
%postun
|
||||||
|
%update_maven_depmap
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc LICENSE.txt NOTICE.txt STATUS
|
||||||
|
%{_mavenpomdir}/*
|
||||||
|
%{_javadir}/*.jar
|
||||||
|
%{_mavendepmapfragdir}/*
|
||||||
|
|
||||||
|
|
||||||
|
%files javadoc
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_javadocdir}/%{name}
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Feb 3 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.0.1-2
|
||||||
|
- Add missing %%post/%%postun Requires
|
||||||
|
- Use macro %%{_mavendepmapfragdir} instead of %%{_datadir}/maven2/pom
|
||||||
|
- Unown directories %%{_mavenpomdir} and %%{_mavendepmapfragdir}
|
||||||
|
|
||||||
|
* Mon Jan 18 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.0.1-1
|
||||||
|
- Initial RPM release
|
1
import.log
Normal file
1
import.log
Normal file
@ -0,0 +1 @@
|
|||||||
|
apache-commons-exec-1_0_1-2_fc12:HEAD:apache-commons-exec-1.0.1-2.fc12.src.rpm:1265252630
|
Loading…
Reference in New Issue
Block a user