Initial import of apache-commons-beanutils
This commit is contained in:
parent
1994654c4f
commit
6c09b73261
@ -0,0 +1 @@
|
||||
commons-beanutils-1.8.3-src.tar.gz
|
282
apache-commons-beanutils.spec
Normal file
282
apache-commons-beanutils.spec
Normal file
@ -0,0 +1,282 @@
|
||||
|
||||
%global base_name beanutils
|
||||
%global short_name commons-%{base_name}
|
||||
|
||||
Name: apache-%{short_name}
|
||||
Version: 1.8.3
|
||||
Release: 2%{?dist}
|
||||
Summary: Java utility methods for accessing and modifying the properties of arbitrary JavaBeans
|
||||
License: ASL 2.0
|
||||
Group: Development/Libraries
|
||||
URL: http://commons.apache.org/%{base_name}
|
||||
BuildArch: noarch
|
||||
Source0: http://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
|
||||
# this will not be needed after commons-collections have proper pom
|
||||
Source1: %{short_name}.depmap
|
||||
|
||||
BuildRequires: apache-commons-logging >= 0:1.0
|
||||
BuildRequires: java >= 1:1.6.0
|
||||
BuildRequires: jpackage-utils > 0:1.7.2
|
||||
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
|
||||
BuildRequires: maven2-plugin-site
|
||||
#change to apache-commons-collections once transition is done
|
||||
BuildRequires: jakarta-commons-collections-testframework >= 0:2.0
|
||||
BuildRequires: jakarta-commons-collections >= 0:2.0
|
||||
Requires: jakarta-commons-collections >= 0:2.0
|
||||
Requires: apache-commons-logging >= 0:1.0
|
||||
Requires(post): jpackage-utils
|
||||
Requires(postun): jpackage-utils
|
||||
Requires: java >= 1:1.6.0
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
# This should go away with F-17
|
||||
Provides: jakarta-%{short_name} = 0:%{version}-%{release}
|
||||
Obsoletes: jakarta-%{short_name} <= 0:1.7.0
|
||||
|
||||
%description
|
||||
The scope of this package is to create a package of Java utility methods
|
||||
for accessing and modifying the properties of arbitrary JavaBeans. No
|
||||
dependencies outside of the JDK are required, so the use of this package
|
||||
is very lightweight.
|
||||
|
||||
%package javadoc
|
||||
Summary: Javadoc for %{name}
|
||||
Group: Documentation
|
||||
Requires: jpackage-utils
|
||||
|
||||
Provides: jakarta-%{short_name}-javadoc = 0:%{version}-%{release}
|
||||
Obsoletes: jakarta-%{short_name}-javadoc <= 0:1.7.0
|
||||
|
||||
%description javadoc
|
||||
%{summary}.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{short_name}-%{version}-src
|
||||
sed -i 's/\r//' *.txt
|
||||
|
||||
|
||||
%build
|
||||
|
||||
export MAVEN_REPO_LOCAL=$(pwd)/.m2/repository
|
||||
mkdir -p $MAVEN_REPO_LOCAL
|
||||
# test failures ignored because they are caused by mock
|
||||
mvn-jpp -Dmaven2.jpp.depmap.file="%{SOURCE1}" \
|
||||
-Dmaven.test.failure.ignore=true \
|
||||
-Dmaven.repo.local=$MAVEN_REPO_LOCAL \
|
||||
install javadoc:javadoc
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
# jars
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
|
||||
install -m 644 target/%{short_name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
|
||||
install -m 644 target/%{short_name}-bean-collections-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-bean-collections-%{version}.jar
|
||||
install -m 644 target/%{short_name}-core-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-core-%{version}.jar
|
||||
|
||||
pushd $RPM_BUILD_ROOT%{_javadir}
|
||||
for jar in *-%{version}*; do
|
||||
ln -sf ${jar} `echo $jar| sed "s|apache-||g"`
|
||||
ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`
|
||||
ln -sf ${jar} `echo $jar| sed "s|apache-\(.*\)-%{version}|\1|g"`
|
||||
done
|
||||
popd # come back from javadir
|
||||
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
|
||||
install -pm 644 pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{short_name}.pom
|
||||
|
||||
%add_to_maven_depmap org.apache.commons %{short_name} %{version} JPP %{short_name}
|
||||
%add_to_maven_depmap org.apache.commons %{short_name}-core %{version} JPP %{short_name}
|
||||
%add_to_maven_depmap org.apache.commons %{short_name}-bean-collections %{version} JPP %{short_name}
|
||||
|
||||
# following lines are only for backwards compatibility. New packages
|
||||
# should use proper groupid org.apache.commons and also artifactid
|
||||
%add_to_maven_depmap %{short_name} %{short_name} %{version} JPP %{short_name}
|
||||
%add_to_maven_depmap %{short_name} %{short_name}-core %{version} JPP %{short_name}
|
||||
%add_to_maven_depmap %{short_name} %{short_name}-bean-collections %{version} JPP %{short_name}
|
||||
|
||||
# javadoc
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
||||
cp -pr target/site/apidocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
||||
%{__ln_s} %{name}-%{version} %{buildroot}%{_javadocdir}/%{name}
|
||||
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post
|
||||
%update_maven_depmap
|
||||
|
||||
%postun
|
||||
%update_maven_depmap
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc *.txt
|
||||
%{_javadir}/*.jar
|
||||
%{_mavenpomdir}/*.pom
|
||||
%{_mavendepmapfragdir}/*
|
||||
|
||||
%files javadoc
|
||||
%defattr(-,root,root,-)
|
||||
%{_javadocdir}/%{name}-%{version}
|
||||
%{_javadocdir}/%{name}
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon May 24 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1.8.3-2
|
||||
- Added provides to javadoc subpackage
|
||||
|
||||
* Fri May 21 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1.8.3-1
|
||||
- Re-did whole spec file, dropped gcj support
|
||||
- Rename package (jakarta-commons-beanutils->apache-commons-beanutils)
|
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7.0-12.3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7.0-11.3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Thu Oct 23 2008 David Walluck <dwalluck@redhat.com> 0:1.7.0-10.3
|
||||
- Fedora-specific: enable GCJ support
|
||||
|
||||
* Thu Oct 23 2008 David Walluck <dwalluck@redhat.com> 0:1.7.0-10.2
|
||||
- Fedora-specific: BuildRequires: java-1.6.0-devel
|
||||
|
||||
* Thu Oct 23 2008 David Walluck <dwalluck@redhat.com> 0:1.7.0-10.1
|
||||
- Fedora-specific: remove repolib
|
||||
- Fedora-specific: enable JDK6 support
|
||||
|
||||
* Mon Oct 20 2008 David Walluck <dwalluck@redhat.com> 0:1.7.0-10
|
||||
- add flag to build with maven
|
||||
|
||||
* Fri Sep 19 2008 David Walluck <dwalluck@redhat.com> 0:1.7.0-9
|
||||
- add jdk6 patch
|
||||
- fix repolib
|
||||
|
||||
* Sun Jun 15 2008 David Walluck <dwalluck@redhat.com> 0:1.7.0-8.jpp5
|
||||
- fix duplicate files
|
||||
- correctly unpack sources
|
||||
- remove spurious gnu-crypto requirement
|
||||
- remove spurious javadoc package requirements
|
||||
- fix javadoc directory
|
||||
- fix build-classpath call
|
||||
- use macros
|
||||
|
||||
* Fri May 30 2008 Permaine Cheung <pcheung@redhat.com> - 0:1.7.0-7
|
||||
- First JPP5 build
|
||||
|
||||
* Tue Jul 24 2007 Ralph Apel <r.apel at r-apel.de> - 0:1.7.0-6jpp
|
||||
- Make Vendor, Distribution based on macro
|
||||
- Fix aot build
|
||||
- Add poms and depmap frags
|
||||
- Build with maven1 by default
|
||||
- Add manual subpackage when built with maven
|
||||
|
||||
* Tue Mar 13 2007 Vivek Lakshmanan <vivekl@redhat.com> - 0:1.7.0-2jpp.ep1.2
|
||||
- Fix repolib location
|
||||
|
||||
* Tue Mar 13 2007 Fernando Nasser <fnasser@redhat.com> - 0:1.7.0-2jpp.ep1.1
|
||||
- New repolib location
|
||||
|
||||
* Mon Mar 05 2007 Fernando Nasser <fnasser@redhat.com> - 0:1.7.0-2jpp.el4ep1.3
|
||||
- Remove pre section used for RHUG cleanup
|
||||
|
||||
* Tue Feb 20 2007 Vivek Lakshmanan <vivekl@redhat.com> - 0:1.7.0-2jpp.el4ep1.2
|
||||
- Add -brew suffix
|
||||
|
||||
* Fri Feb 17 2007 Vivek Lakshmanan <vivekl@redhat.com> - 0:1.7.0-2jpp.el4ep1.1
|
||||
- Add repolib support
|
||||
|
||||
* Thu Aug 17 2006 Fernando Nasser <fnasser@redhat.com> - 0:1.7.0-5jpp
|
||||
- Require what is used in post/postun for javadoc
|
||||
|
||||
* Fri Jul 14 2006 Fernando Nasser <fnasser@redhat.com> - 0:1.7.0-4jpp
|
||||
- Add AOT bits
|
||||
|
||||
* Thu May 11 2006 Fernando Nasser <fnasser@redhat.com> - 0:1.7.0-3jpp
|
||||
- Add header
|
||||
- Remove unecessary macro definitions
|
||||
|
||||
* Wed Feb 22 2006 Fernando Nasser <fnasser@redhat.com> - 0:1.7.0-2jpp_1rh
|
||||
- Merge with upstream
|
||||
|
||||
* Wed Apr 27 2005 Fernando Nasser <fnasser@redhat.com> - 0:1.7.0-1jpp_3rh
|
||||
- Fix build so that collections jar is created
|
||||
|
||||
* Sat Jan 29 2005 Ralph Apel <r.apel@r-apel.de> - 0:1.7.0-2jpp
|
||||
- Use the "dist" target to get a full build, including bean-collections
|
||||
|
||||
* Thu Oct 21 2004 Fernando Nasser <fnasser@redhat.com> - 0:1.7.0-1jpp_1rh
|
||||
- Import from upstream
|
||||
|
||||
* Thu Oct 21 2004 Fernando Nasser <fnasser@redhat.com> - 0:1.7.0-1jpp
|
||||
- Upgrade to 1.7.0
|
||||
|
||||
* Fri Oct 1 2004 Andrew Overholt <overholt@redhat.com> 0:1.6.1-4jpp_6rh
|
||||
- add coreutils BuildRequires
|
||||
|
||||
* Sun Aug 23 2004 Randy Watler <rwatler at finali.com> - 0:1.6.1-5jpp
|
||||
- Rebuild with ant-1.6.2
|
||||
|
||||
* Fri Jul 2 2004 Aizaz Ahmed <aahmed@redhat.com> 0:1.6.1-4jpp_5rh
|
||||
- Added trigger to restore symlinks that are removed if ugrading
|
||||
from a commons-beanutils rhug package
|
||||
|
||||
* Fri Apr 2 2004 Frank Ch. Eigler <fche@redhat.com> 0:1.6.1-4jpp_4rh
|
||||
- more of the same, for version-suffixed .jar files
|
||||
|
||||
* Fri Mar 26 2004 Frank Ch. Eigler <fche@redhat.com> 0:1.6.1-4jpp_3rh
|
||||
- add RHUG upgrade cleanup
|
||||
|
||||
* Fri Mar 5 2004 Frank Ch. Eigler <fche@redhat.com> 0:1.6.1-4jpp_2rh
|
||||
- RH vacuuming part II
|
||||
|
||||
* Thu Mar 4 2004 Frank Ch. Eigler <fche@redhat.com> 0:1.6.1-4jpp_1rh
|
||||
- RH vacuuming
|
||||
|
||||
* Fri May 09 2003 David Walluck <david@anti-microsoft.org> 0:1.6.1-4jpp
|
||||
- update for JPackage 1.5
|
||||
|
||||
* Thu Feb 27 2003 Henri Gomez <hgomez@users.sourceforge.net> 1.6.1-2jpp
|
||||
- fix ASF license and add packager name
|
||||
|
||||
* Wed Feb 19 2003 Henri Gomez <hgomez@users.sourceforge.net> 1.6.1-1jpp
|
||||
- 1.6.1
|
||||
|
||||
* Thu Feb 13 2003 Henri Gomez <hgomez@users.sourceforge.net> 1.6-1jpp
|
||||
- 1.6
|
||||
|
||||
* Thu Oct 24 2002 Henri Gomez <hgomez@users.sourceforge.net> 1.5-1jpp
|
||||
- 1.5
|
||||
|
||||
* Fri Aug 23 2002 Henri Gomez <hgomez@users.sourceforge.net> 1.4.1-1jpp
|
||||
- 1.4.1
|
||||
|
||||
* Tue Aug 20 2002 Henri Gomez <hgomez@users.sourceforge.net> 1.4-1jpp
|
||||
- 1.4
|
||||
|
||||
* Fri Jul 12 2002 Henri Gomez <hgomez@users.sourceforge.net> 1.3-3jpp
|
||||
- change to commons-xxx.jar instead of commons-xxx.home in ant parameters
|
||||
|
||||
* Mon Jun 10 2002 Henri Gomez <hgomez@users.sourceforge.net> 1.3-2jpp
|
||||
- use sed instead of bash 2.x extension in link area to make spec compatible
|
||||
with distro using bash 1.1x
|
||||
|
||||
* Fri Jun 07 2002 Henri Gomez <hgomez@users.sourceforge.net> 1.3-1jpp
|
||||
- 1.3
|
||||
- added short names in %%{_javadir}, as does jakarta developpers
|
||||
- first jPackage release
|
14
commons-beanutils.depmap
Normal file
14
commons-beanutils.depmap
Normal file
@ -0,0 +1,14 @@
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<maven>
|
||||
<groupId>commons-collections</groupId>
|
||||
<artifactId>commons-collections-testframework</artifactId>
|
||||
<version>3.2.1</version>
|
||||
</maven>
|
||||
<jpp>
|
||||
<groupId>JPP</groupId>
|
||||
<artifactId>commons-collections-testframework</artifactId>
|
||||
<version>3.2.1</version>
|
||||
</jpp>
|
||||
</dependency>
|
||||
</dependencies>
|
1
import.log
Normal file
1
import.log
Normal file
@ -0,0 +1 @@
|
||||
apache-commons-beanutils-1_8_3-2_fc12:HEAD:apache-commons-beanutils-1.8.3-2.fc12.src.rpm:1274861644
|
Loading…
Reference in New Issue
Block a user