Initial version of package
This commit is contained in:
parent
40c1a672ce
commit
cba8ea6672
3 changed files with 127 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -0,0 +1 @@
|
|||
/sonatype-sonatype-aether-aether-1.7-0-g6ef7c04.tar.gz
|
||||
125
aether.spec
Normal file
125
aether.spec
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
%global full_name sonatype-aether
|
||||
%global githash g6ef7c04
|
||||
|
||||
Name: aether
|
||||
Version: 1.7
|
||||
Release: 2%{?dist}
|
||||
Summary: Sonatype library to resolve, install and deploy artifacts the Maven way
|
||||
|
||||
Group: Development/Libraries
|
||||
License: ASL 2.0
|
||||
URL: https://docs.sonatype.org/display/AETHER/Home
|
||||
# it seems github has redirects plus it generates tarball on the fly
|
||||
# to get tarball go to http://github.com/sonatype/sonatype-aether/tree/aether-1.7
|
||||
# click "downloads" in upper right corner
|
||||
# click "download .tar.gz"
|
||||
Source0: sonatype-%{full_name}-%{name}-%{version}-0-%{githash}.tar.gz
|
||||
|
||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: maven2
|
||||
BuildRequires: maven-compiler-plugin
|
||||
BuildRequires: maven-install-plugin
|
||||
BuildRequires: maven-jar-plugin
|
||||
BuildRequires: maven-javadoc-plugin
|
||||
BuildRequires: maven-resources-plugin
|
||||
BuildRequires: maven-site-plugin
|
||||
BuildRequires: maven-surefire-plugin
|
||||
BuildRequires: maven-surefire-provider-junit4
|
||||
BuildRequires: plexus-containers-component-metadata >= 1.5.4-4
|
||||
BuildRequires: animal-sniffer >= 1.6-5
|
||||
BuildRequires: mojo-parent
|
||||
|
||||
|
||||
Requires: maven2
|
||||
Requires: java >= 1:1.6.0
|
||||
Requires(post): jpackage-utils
|
||||
Requires(postun): jpackage-utils
|
||||
|
||||
|
||||
%description
|
||||
Aether is standalone library to resolve, install and deploy artifacts
|
||||
the Maven way developed by Sonatype
|
||||
|
||||
%package javadoc
|
||||
Summary: API documentation for %{name}
|
||||
Group: Documentation
|
||||
Requires: jpackage-utils
|
||||
|
||||
%description javadoc
|
||||
%{summary}.
|
||||
|
||||
%prep
|
||||
# last part will have to change every time
|
||||
%setup -q -n sonatype-%{full_name}-074c2fb
|
||||
|
||||
|
||||
%build
|
||||
export MAVEN_REPO_LOCAL=$(pwd)/.m2/repository
|
||||
mkdir -p $MAVEN_REPO_LOCAL
|
||||
|
||||
mvn-jpp -e \
|
||||
-Dmaven.repo.local=$MAVEN_REPO_LOCAL \
|
||||
install javadoc:aggregate
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}/%{name}
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
|
||||
|
||||
for module in aether-api aether-connector-file aether-connector-wagon \
|
||||
aether-impl aether-spi aether-test-util aether-util;do
|
||||
pushd $module
|
||||
jarname=`echo $module | sed s:aether-::`
|
||||
install -m 644 target/$module-*.jar $RPM_BUILD_ROOT%{_javadir}/%{name}/$jarname-%{version}.jar
|
||||
|
||||
install -pm 644 pom.xml $RPM_BUILD_ROOT/%{_mavenpomdir}/JPP.%{name}-$jarname.pom
|
||||
%add_to_maven_depmap org.sonatype.aether $module %{version} JPP/%{name} $jarname
|
||||
popd
|
||||
done
|
||||
|
||||
(cd $RPM_BUILD_ROOT%{_javadir}/%{name} && for jar in *-%{version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done)
|
||||
|
||||
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
||||
cp -pr target/site/apidocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
||||
(cd $RPM_BUILD_ROOT%{_javadocdir} && ln -sf %{name}-%{version} %{name})
|
||||
|
||||
install -pm 644 pom.xml $RPM_BUILD_ROOT/%{_mavenpomdir}/JPP.%{name}-parent.pom
|
||||
%add_to_maven_depmap org.sonatype.aether %{name}-parent %{version} JPP/%{name} parent
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post
|
||||
%update_maven_depmap
|
||||
|
||||
%postun
|
||||
%update_maven_depmap
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.md
|
||||
%{_javadir}/%{name}
|
||||
%{_mavendepmapfragdir}/%{name}
|
||||
%{_mavenpomdir}/*.pom
|
||||
|
||||
%files javadoc
|
||||
%defattr(-,root,root,-)
|
||||
%{_javadocdir}/%{name}-%{version}
|
||||
%{_javadocdir}/%{name}
|
||||
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Oct 13 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1.7-2
|
||||
- Explained how to get tarball properly
|
||||
- Removed noreplace on depmap fragment
|
||||
|
||||
* Mon Oct 11 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1.7-1
|
||||
- Initial Package
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
fa9697f1d2e8d9086fb7f287b02cc00d sonatype-sonatype-aether-aether-1.7-0-g6ef7c04.tar.gz
|
||||
Reference in a new issue