92b6b352b4
- Add missing ghost for unversioned link - Add requires on java
288 lines
8.8 KiB
RPMSpec
288 lines
8.8 KiB
RPMSpec
# Copyright (c) 2000-2005, JPackage Project
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the
|
|
# distribution.
|
|
# 3. Neither the name of the JPackage Project nor the names of its
|
|
# contributors may be used to endorse or promote products derived
|
|
# from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
|
|
%define _with_gcj_support 1
|
|
|
|
%define gcj_support %{?_with_gcj_support:1}%{!?_with_gcj_support:%{?_without_gcj_support:0}%{!?_without_gcj_support:%{?_gcj_support:%{_gcj_support}}%{!?_gcj_support:0}}}
|
|
|
|
%define full_name jakarta-%{name}
|
|
|
|
Name: regexp
|
|
Version: 1.4
|
|
Release: 3jpp.1%{dist}
|
|
Epoch: 0
|
|
Summary: Simple regular expressions API
|
|
License: Apache Software License
|
|
Group: Development/Libraries/Java
|
|
Url: http://jakarta.apache.org/%{name}/
|
|
Source0: http://www.apache.org/dist/jakarta/regexp/jakarta-regexp-%{version}.tar.gz
|
|
BuildRequires: jpackage-utils >= 0:1.6
|
|
Requires(pre): jpackage-utils >= 0:1.6
|
|
Requires(postun): jpackage-utils >= 0:1.6
|
|
Requires: java
|
|
|
|
BuildRequires: ant >= 1.6
|
|
%if ! %{gcj_support}
|
|
Buildarch: noarch
|
|
%endif
|
|
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
%if %{gcj_support}
|
|
BuildRequires: java-gcj-compat-devel
|
|
Requires(post): java-gcj-compat
|
|
Requires(postun): java-gcj-compat
|
|
%endif
|
|
|
|
%description
|
|
Regexp is a 100% Pure Java Regular Expression package that was
|
|
graciously donated to the Apache Software Foundation by Jonathan Locke.
|
|
He originally wrote this software back in 1996 and it has stood up quite
|
|
well to the test of time.
|
|
It includes complete Javadoc documentation as well as a simple Applet
|
|
for visual debugging and testing suite for compatibility.
|
|
|
|
%package javadoc
|
|
Group: Development/Java
|
|
Summary: Javadoc for %{name}
|
|
Requires(post): %{__rm}
|
|
Requires(postun): %{__rm}
|
|
Requires(post): /bin/ln
|
|
|
|
%description javadoc
|
|
Javadoc for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n %{full_name}-%{version}
|
|
# remove all binary libs
|
|
find . -name "*.jar" -exec rm -f {} \;
|
|
|
|
%build
|
|
mkdir lib
|
|
ant -Djakarta-site2.dir=. jar javadocs
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
# jars
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
|
|
install -m 644 build/*.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
|
|
(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done)
|
|
# javadoc
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
|
cp -r docs/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
|
rm -rf docs/api
|
|
|
|
%if %{gcj_support}
|
|
%{_bindir}/aot-compile-rpm
|
|
%endif
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post javadoc
|
|
rm -f %{_javadocdir}/%{name}
|
|
ln -s %{name}-%{version} %{_javadocdir}/%{name}
|
|
|
|
%postun javadoc
|
|
if [ "$1" = "0" ]; then
|
|
rm -f %{_javadocdir}/%{name}
|
|
fi
|
|
|
|
%if %{gcj_support}
|
|
%post
|
|
if [ -x %{_bindir}/rebuild-gcj-db ]
|
|
then
|
|
%{_bindir}/rebuild-gcj-db
|
|
fi
|
|
%endif
|
|
|
|
%if %{gcj_support}
|
|
%postun
|
|
if [ -x %{_bindir}/rebuild-gcj-db ]
|
|
then
|
|
%{_bindir}/rebuild-gcj-db
|
|
fi
|
|
%endif
|
|
|
|
%files
|
|
%defattr(0644,root,root,0755)
|
|
%doc LICENSE
|
|
%{_javadir}/*.jar
|
|
|
|
%if %{gcj_support}
|
|
%attr(-,root,root) %{_libdir}/gcj/%{name}
|
|
%endif
|
|
|
|
%files javadoc
|
|
%defattr(0644,root,root,0755)
|
|
%{_javadocdir}/%{name}-%{version}
|
|
%ghost %doc %{_javadocdir}/%{name}
|
|
|
|
%changelog
|
|
* Thu Feb 8 2007 Vivek Lakshmanan <vivekl at redhat.com> 0:1.4-3jpp.1.fc7
|
|
- Resync with JPP
|
|
- Use the upstream tar ball as JPP does since they clean it off jars anyway
|
|
- Use JPackage exception compliant naming scheme
|
|
- Remove section definition
|
|
- Add missing ghost for unversioned link
|
|
- Add requires on java
|
|
|
|
* Fri Aug 4 2006 Vivek Lakshmanan <vivekl@redhat.com> 0:1.4-2jpp.2
|
|
- Rebuild.
|
|
|
|
* Fri Aug 4 2006 Vivek Lakshmanan <vivekl@redhat.com> 0:1.4-2jpp.1
|
|
- Merge with latest from JPP.
|
|
- Remove prebuilt jars from new source tar ball.
|
|
|
|
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> - 0:1.3-2jpp_9fc
|
|
- Rebuilt
|
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0:1.3-2jpp_8fc
|
|
- rebuild
|
|
|
|
* Mon Mar 6 2006 Jeremy Katz <katzj@redhat.com> - 0:1.3-2jpp_7fc
|
|
- stop scriptlet spew
|
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0:1.3-2jpp_6fc
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0:1.3-2jpp_5fc
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
* Wed Dec 21 2005 Jesse Keating <jkeating@redhat.com> 0:1.2-2jpp_4fc
|
|
- rebuilt again
|
|
|
|
* Tue Dec 13 2005 Jesse Keating <jkeating@redhat.com>
|
|
- rebuilt for new gcj
|
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
- rebuilt
|
|
|
|
* Fri Jul 15 2005 Gary Benson <gbenson@redhat.com> 0:1.3-2jpp_3fc
|
|
- Build on ia64, ppc64, s390 and s390x.
|
|
- Switch to aot-compile-rpm.
|
|
|
|
* Tue Jun 14 2005 Gary Benson <gbenson@redhat.com> 0:1.3-2jpp_2fc
|
|
- Remove jarfile from the tarball.
|
|
|
|
* Thu May 26 2005 Gary Benson <gbenson@redhat.com> 0:1.3-2jpp_1fc
|
|
- Upgrade to 1.3-2jpp.
|
|
- Rearrange how BC-compiled stuff is built and installed.
|
|
|
|
* Mon May 23 2005 Gary Benson <gbenson@redhat.com> 0:1.3-1jpp_6fc
|
|
- Add alpha to the list of build architectures (#157522).
|
|
- Use absolute paths for rebuild-gcj-db.
|
|
|
|
* Thu May 5 2005 Gary Benson <gbenson@redhat.com> 0:1.3-1jpp_5fc
|
|
- BC-compile.
|
|
|
|
* Tue Jan 11 2005 Gary Benson <gbenson@redhat.com> 0:1.3-1jpp_4fc
|
|
- Sync with RHAPS.
|
|
|
|
* Thu Nov 4 2004 Gary Benson <gbenson@redhat.com> 0:1.3-1jpp_3fc
|
|
- Build into Fedora.
|
|
|
|
* Fri Oct 1 2004 Andrew Overholt <overholt@redhat.com> 0:1.3-1jpp_3rh
|
|
- add coreutils BuildRequires
|
|
|
|
* Wed Aug 25 2004 Fernando Nasser <fnasser@redhat.com> 0:1.3-2jpp
|
|
- Require Ant > 1.6
|
|
- Rebuild with Ant 1.6.2
|
|
|
|
* Fri Mar 26 2004 Frank Ch. Eigler <fche@redhat.com> 0:1.3-1jpp_2rh
|
|
- add RHUG upgrade cleanup
|
|
|
|
* Thu Mar 3 2004 Frank Ch. Eigler <fche@redhat.com> 0:1.3-1jpp_1rh
|
|
- RH vacuuming
|
|
|
|
* Thu Oct 09 2003 Henri Gomez <hgomez at users.sourceforge.net> 0:1.3-1jpp
|
|
- regexp 1.3
|
|
|
|
* Fri May 09 2003 David Walluck <david@anti-microsoft.org> 0:1.2-14jpp
|
|
- update for JPackage 1.5
|
|
|
|
* Fri Mar 23 2003 Nicolas Mailhot <Nicolas.Mailhot (at) JPackage.org> 1.2-13jpp
|
|
- for jpackage-utils 1.5
|
|
|
|
* Tue Jul 02 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.2-11jpp
|
|
- section marcro
|
|
- removed additional symlink
|
|
|
|
* Mon Jun 24 2002 Henri Gomez <hgomez@slib.fr> 1.2-10jpp
|
|
- add official jakarta jarname (jakarta-regexp-1.2.jar) symlink to real
|
|
jarname
|
|
|
|
* Mon Jun 10 2002 Henri Gomez <hgomez@slib.fr> 1.2-9jpp
|
|
- use sed instead of bash 2.x extension in link area to make spec compatible
|
|
with distro using bash 1.1x
|
|
- use official tarball
|
|
|
|
* Fri Jan 18 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.2-8jpp
|
|
- versioned dir for javadoc
|
|
- no dependencies javadoc package
|
|
|
|
* Sat Dec 1 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.2-7jpp
|
|
- javadoc in javadoc package
|
|
- official summary
|
|
|
|
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 1.2-5jpp
|
|
- removed packager tag
|
|
- new jpp extension
|
|
|
|
* Sun Sep 30 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.2-5jpp
|
|
- first unified release
|
|
- s/jPackage/JPackage
|
|
|
|
* Sun Aug 26 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.2-4mdk
|
|
- vendor tag
|
|
- packager tag
|
|
- s/Copyright/License/
|
|
- truncated description to 72 columns in spec
|
|
- spec cleanup
|
|
- used versioned jar
|
|
- used new source packaging policy
|
|
|
|
* Sat Feb 17 2001 Guillaume Rousse <g.rousse@linux-mandrake.com> 1.2-3mdk
|
|
- spec cleanup
|
|
- changelog correction
|
|
|
|
* Sun Feb 04 2001 Guillaume Rousse <g.rousse@linux-mandrake.com> 1.2-2mdk
|
|
- merged with Henri Gomez <hgomez@slib.fr> specs:
|
|
- changed name to regexp
|
|
- changed javadir to /usr/share/java
|
|
- dropped jdk & jre requirement
|
|
- added Jikes support
|
|
- changed jar name to regexp.jar
|
|
- corrected doc
|
|
|
|
* Sun Jan 14 2001 Guillaume Rousse <g.rousse@linux-mandrake.com> 1.2-1mdk
|
|
- first Mandrake release
|