%define with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} Name: jsr-305 Version: 0 Release: 0.4.20090319svn%{?dist} Summary: Correctness annotations for Java code Group: Development/Libraries/Java 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 19 Mar 2009. Use the following commands to generate the # tarball: # svn export -r 49 http://jsr-305.googlecode.com/svn/trunk jsr-305 # tar -cvf jsr-305-0.4.20090319.tar jsr-305 # xz jsr-305-0.4.20090319.tar Source0: jsr-305-0.4.20090319.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # We need the OpenJDK javadoc because sinjdoc doesn't grok annotations. BuildRequires: java-1.6.0-openjdk-devel BuildRequires: 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, tomcat5 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,-) %doc ri/LICENSE sampleUses %{_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 * Thu Jan 14 2010 Jerry James - 0-0.4.20090319svn - Update to 19 Mar 2009 snapshot - Compress with xz instead of bzip2 - BR tomcat5, a horrible workaround to solve bz 538868 * Fri Jul 24 2009 Fedora Release Engineering - 0-0.4.20090203svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Wed Mar 4 2009 Jerry James - 0-0.3.20090203svn - Explicitly require OpenJDK to build * Sat Feb 28 2009 Jerry James - 0-0.2.20090203svn - Update to 03 Feb 2009 snapshot * Wed Feb 25 2009 Fedora Release Engineering - 0-0.2.20080824svn.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Mon Nov 24 2008 Jerry James - 0-0.1.20080824svn.1 - Cleaned up summary * Mon Sep 8 2008 Jerry James - 0-0.1.20080824svn - Update to 24 Aug 2008 snapshot * 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