From 28ae43e7769ae5657ae0a610ddca376c34532c63 Mon Sep 17 00:00:00 2001 From: Jerry James Date: Mon, 11 Aug 2008 17:59:28 +0000 Subject: [PATCH] Initial import for jsr-305. --- .cvsignore | 1 + import.log | 1 + jsr-305.spec | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 136 insertions(+) create mode 100644 import.log create mode 100644 jsr-305.spec diff --git a/.cvsignore b/.cvsignore index e69de29..9592963 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +jsr-305-0.1.20080721.tar.bz2 diff --git a/import.log b/import.log new file mode 100644 index 0000000..99c80a1 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +jsr-305-0-0_1_20080721svn_fc9:HEAD:jsr-305-0-0.1.20080721svn.src.rpm:1218477393 diff --git a/jsr-305.spec b/jsr-305.spec new file mode 100644 index 0000000..d664a21 --- /dev/null +++ b/jsr-305.spec @@ -0,0 +1,133 @@ +%define with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} + +Name: jsr-305 +Version: 0 +Release: 0.1.20080721svn%{?dist} +Summary: Reference implementations and tests for JSR-305 + +Group: Development/Libraries/Java +# The license was determined by examining the web page +# http://code.google.com/p/jsr-305/, most recently viewed on 4 Aug 2008. +# Upstream has promised to add a license file sometime in the future; see +# http://groups.google.com/group/jsr-305/msg/e6d62dc6cd7fe361 +License: BSD +URL: http://jsr-305.googlecode.com/ +# There has been no official release yet. This is a snapshot of the Subversion +# repository as of 21 Jul 2008. Use the following commands to generate the +# tarball: +# svn export -r 42 http://jsr-305.googlecode.com/svn/trunk jsr-305 +# tar -cjvf jsr-305-0.1.20080721.tar.bz2 jsr-305 +Source0: jsr-305-0.1.20080721.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: java-devel >= 1.5, jpackage-utils, maven2 +BuildRequires: maven2-plugin-compiler, maven2-plugin-install +BuildRequires: maven2-plugin-jar, maven2-plugin-javadoc +BuildRequires: maven2-plugin-resources, maven2-plugin-site +BuildRequires: maven2-plugin-surefire +Requires: java >= 1.5, jpackage-utils + +%if %{with_gcj} +BuildRequires: java-gcj-compat-devel >= 1.0.31 +Requires(post): java-gcj-compat >= 1.0.31 +Requires(postun): java-gcj-compat >= 1.0.31 +%else +BuildArch: noarch +%endif + +%package javadoc +Summary: Javadoc documentation for %{name} +Group: Development/Documentation +Requires: %{name} = %{version}-%{release}, jpackage-utils + +%description +This package contains reference implementations, test cases, and other +documents for Java Specification Request 305: Annotations for Software Defect +Detection. + +%description javadoc +This package contains the API documentation for %{name}. + +%prep +%setup -q -n %{name} + +%build +export MAVEN_REPO_LOCAL=$(pwd)/.m2/repository +mkdir -p $MAVEN_REPO_LOCAL + +mvn-jpp -Dmaven.repo.local=$MAVEN_REPO_LOCAL install +cd ri +mvn-jpp -Dmaven.repo.local=$MAVEN_REPO_LOCAL javadoc:javadoc + +%install +rm -rf $RPM_BUILD_ROOT + +# JAR files +mkdir -p $RPM_BUILD_ROOT%{_javadir} +cp -p ri/target/ri-0.1-SNAPSHOT.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar +ln -s %{name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}.jar + +# Javadocs +mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version} +pushd ri/target/site/apidocs +cp -rp . $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version} +ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name} +popd + +# pom +mkdir -p $RPM_BUILD_ROOT%{_datadir}/maven2/poms +install -pm 644 ri/pom.xml $RPM_BUILD_ROOT/%{_datadir}/maven2/poms/JPP.%{name}.pom +%add_to_maven_depmap org.apache.maven %{name} %{version} JPP %{name} + +# Precompiled bits +%if %{with_gcj} +%{_bindir}/aot-compile-rpm +%endif + +%clean +rm -rf $RPM_BUILD_ROOT + +%post +%update_maven_depmap +%if %{with_gcj} +if [ -x %{_bindir}/rebuild-gcj-db ]; then + %{_bindir}/rebuild-gcj-db +fi +%endif + +%postun +%update_maven_depmap +%if %{with_gcj} +if [ -x %{_bindir}/rebuild-gcj-db ]; then + %{_bindir}/rebuild-gcj-db +fi +%endif + +%files +%defattr(-,root,root,-) +%{_datadir}/maven2/poms/JPP.jsr-305.pom +%{_javadir}/* +%{_mavendepmapfragdir}/jsr-305 +%if %{with_gcj} +%{_libdir}/gcj/%{name} +%endif + +%files javadoc +%defattr(-,root,root,-) +%{_javadocdir}/* + +%changelog +* Mon Aug 4 2008 Jerry James - 0-0.1.20080721svn +- Update to 21 Jul 2008 snapshot + +* Mon Jun 30 2008 Jerry James - 0-0.1.20080613svn +- Update to 13 Jun 2008 snapshot +- Fix broken URLs +- Include instructions on regenerating the tarball +- Conditionalize the gcj bits + +* Mon Jun 2 2008 Jerry James - 0-0.1.20080527svn +- Update to 27 May 2008 snapshot + +* Mon May 12 2008 Jerry James - 0-0.1.20071105svn +- Initial RPM diff --git a/sources b/sources index e69de29..bbe8660 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +49a8419ff7064dd1f814ea78096dcfba jsr-305-0.1.20080721.tar.bz2