From 8da4ab46c8fe9328a9c15757c66b355699a8de8c Mon Sep 17 00:00:00 2001 From: spike Date: Oct 19 2010 15:44:11 +0000 Subject: Initial import --- diff --git a/.gitignore b/.gitignore index e69de29..3aaf74e 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/commons-pool-1.5.5-src.tar.gz diff --git a/apache-commons-pool.spec b/apache-commons-pool.spec new file mode 100644 index 0000000..0c7657d --- /dev/null +++ b/apache-commons-pool.spec @@ -0,0 +1,117 @@ +%global base_name pool +%global short_name commons-%{base_name} + +Name: apache-%{short_name} +Version: 1.5.5 +Release: 3%{?dist} +Summary: Apache Commons Pool Package +Group: Development/Libraries +License: ASL 2.0 +URL: http://commons.apache.org/%{base_name}/ +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) +BuildArch: noarch + +BuildRequires: java-devel >= 1:1.6.0 +BuildRequires: jpackage-utils +BuildRequires: maven2 +BuildRequires: maven-antrun-plugin +BuildRequires: maven-assembly-plugin +BuildRequires: maven-compiler-plugin +BuildRequires: maven-idea-plugin +BuildRequires: maven-install-plugin +BuildRequires: maven-jar-plugin +BuildRequires: maven-javadoc-plugin +BuildRequires: maven-plugin-bundle +BuildRequires: maven-resources-plugin +BuildRequires: maven-source-plugin +BuildRequires: maven-surefire-plugin + +Requires: java >= 1:1.6.0 +Requires: jpackage-utils +Requires(post): jpackage-utils +Requires(postun): jpackage-utils + +# This should go away with F-17 +Provides: jakarta-%{short_name} = 0:%{version}-%{release} +Obsoletes: jakarta-%{short_name} < 0:1.3-14 +Obsoletes: jakarta-%{short_name}-tomcat5 < 0:1.3-14 +Obsoletes: jakarta-%{short_name}-manual < 0:1.3-14 + +%description +The goal of Pool package is it to create and maintain an object (instance) +pooling package to be distributed under the ASF license. The package should +support a variety of pool implementations, but encourage support of an +interface that makes these implementations interchangeable. + +%package javadoc +Summary: Javadoc for %{name} +Group: Documentation +Requires: jpackage-utils +# This should go away with F-17 +Obsoletes: jakarta-%{short_name}-javadoc < 0:1.3-14 + +%description javadoc +This package contains the API documentation for %{name}. + +%prep +%setup -q -n %{short_name}-%{version}-src + +%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 -pm 644 target/%{short_name}-%{version}.jar %{buildroot}%{_javadir}/%{name}-%{version}.jar +(cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} `echo $jar| sed "s|apache-||g"`; done) +(cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done) + +# pom +install -d -m 755 %{buildroot}%{_mavenpomdir} +install -pm 644 pom.xml %{buildroot}%{_mavenpomdir}/JPP-%{short_name}.pom +%add_to_maven_depmap org.apache.commons %{short_name} %{version} JPP %{short_name} + +# 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} + +%post +%update_maven_depmap + +%postun +%update_maven_depmap + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc README.txt LICENSE.txt NOTICE.txt RELEASE-NOTES.txt +%{_javadir}/* +%{_mavenpomdir}/* +%{_mavendepmapfragdir}/* + +%files javadoc +%defattr(-,root,root,-) +%doc LICENSE.txt +%{_javadocdir}/%{name}-%{version} +%{_javadocdir}/%{name} + +%changelog +* Mon Oct 18 2010 Chris Spike 1.5.5-3 +- Removed Epoch + +* Tue Oct 5 2010 Chris Spike 1.5.5-2 +- Consistently using 'buildroot' macro instead of 'RPM_BUILD_ROOT' now + +* Fri Oct 1 2010 Chris Spike 1.5.5-1 +- Rename and rebase from jakarta-commons-pool diff --git a/sources b/sources index e69de29..2e750ea 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +1a71f00c8ab265efae3724295636f2e0 commons-pool-1.5.5-src.tar.gz