124 lines
3.9 KiB
RPMSpec
124 lines
3.9 KiB
RPMSpec
#
|
|
# spec file for package perl-Parse-RecDescent (Version 1.94)
|
|
#
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
# This file and all modifications and additions to the pristine
|
|
# package are under the same license as the package itself.
|
|
#
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
Name: perl-Parse-RecDescent
|
|
Url: http://cpan.org/modules/by-module/Parse/
|
|
License: Artistic License
|
|
Group: Development/Libraries/Perl
|
|
Provides: ParseRecDescent perl_prd
|
|
Obsoletes: perl_prd
|
|
Requires: perl = %{perl_version}
|
|
AutoReqProv: on
|
|
Version: 1.94
|
|
Release: 1
|
|
Summary: Perl RecDescent Module
|
|
Source: Parse-RecDescent-%{version}.tar.bz2
|
|
Patch: Parse-RecDescent-%{version}.diff
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
RecDescent incrementally generates top-down recursive-descent text
|
|
parsers from simple yacc-like grammar specifications.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Damian Conway <damian@csse.monash.edu.au>
|
|
|
|
%prep
|
|
%setup -q -n Parse-RecDescent-%{version}
|
|
%patch
|
|
|
|
%build
|
|
find -type f | xargs chmod 644
|
|
perl Makefile.PL
|
|
make
|
|
|
|
%check
|
|
make test
|
|
|
|
%install
|
|
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
|
%perl_process_packlist
|
|
rm -f $RPM_BUILD_ROOT/%perl_vendorlib/Text/Balanced.pm
|
|
rm -f $RPM_BUILD_ROOT/%perl_vendorlib/Text/Balanced.pod
|
|
rm -f $RPM_BUILD_ROOT/%{_mandir}/man3/Text::Balanced.3pm*
|
|
|
|
%clean
|
|
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
/var/adm/perl-modules/perl-Parse-RecDescent
|
|
%dir %perl_vendorlib/Parse
|
|
%perl_vendorlib/Parse/RecDescent.*
|
|
%dir %{perl_vendorarch}/auto/Parse
|
|
%{perl_vendorarch}/auto/Parse/RecDescent
|
|
%{_mandir}/man3/Parse::RecDescent.3pm.gz
|
|
|
|
%changelog
|
|
* Fri Dec 14 2007 - anicka@suse.cz
|
|
- update to 1.94
|
|
* BACKWARDS INCOMPATIBLE CHANGE: The key of an %%item entry for
|
|
a repeated subrule now includes the repetition specifier.
|
|
* Changed argument passing behaviour. If no arguments specified
|
|
for subrule, it is now passed current rule's @arg instead. To
|
|
get old (no arguments) behaviour use: subrule[]
|
|
* Fixed bug in <reject> handling: failed to reject if $return
|
|
had been set.
|
|
* Added two useful demos of restructuring nested data
|
|
* Localized filehandles, like a good citizen should
|
|
* Misc doc bug fixes
|
|
* Fixed Text::Balance dependency in Makefile.PL
|
|
* Fixed bug that @itempos wasn't set up if referred to only in
|
|
an autoaction.
|
|
* Fixed truncation bug in tracing contexts
|
|
* Dramatically improved speed of line counting
|
|
* Made item(s) and item(s /,/) behave consistently wrt %%item
|
|
* Added prototype <autorule:...> handling
|
|
* Added outer block markers for <perl_codeblock>
|
|
* Fixed multi*grammar precompilation (thanks Dominique)
|
|
* Added nesting level information to traces
|
|
* Fixed resetting of $text after an <uncommit> rule.
|
|
* Removed Text::Balanced from distribution (now a prereq only)
|
|
* Fixed fatal error with $tracelevel (thanks everyone)
|
|
* Replaced 'our' with 'use vars' to reinstate 5.005 compatibility.
|
|
- enable tests
|
|
* Wed Jan 25 2006 - mls@suse.de
|
|
- converted neededforbuild to BuildRequires
|
|
* Mon May 10 2004 - ro@suse.de
|
|
- fix warning/error when used from yast2 (#39963)
|
|
* Sun Jan 11 2004 - adrian@suse.de
|
|
- build as user
|
|
* Fri Aug 22 2003 - mjancar@suse.cz
|
|
- require the perl version we build with
|
|
* Mon Jul 28 2003 - ro@suse.de
|
|
- install to vendor location
|
|
* Tue Jul 01 2003 - ro@suse.de
|
|
- use perl_process_packlist macro
|
|
* Tue May 13 2003 - ro@suse.de
|
|
- use defattr
|
|
* Thu Aug 08 2002 - mls@suse.de
|
|
- use sitearch macro
|
|
* Mon Jul 29 2002 - mls@suse.de
|
|
- update to version 1.80
|
|
- don't pack Text::Balanced, it's included in perl-5.8
|
|
* Mon Feb 25 2002 - ro@suse.de
|
|
- use defattr (-,root,root)
|
|
- remove x-bits from files before build
|
|
* Tue Nov 07 2000 - ro@suse.de
|
|
- renamed package perl_prd to perl-Parse-RecDescent
|
|
- added build root
|
|
* Tue Jun 06 2000 - ro@suse.de
|
|
- created package version 1.78
|