Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 158447 Details for
Bug 246452
Missing BuildReqs perl(Test::More)?
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch to go from perl-XML-LibXML 1.62001 to 1.63
XML-LibXML-1.63.patch (text/plain), 4.08 KB, created by
Robin Norwood
on 2007-07-03 14:14:29 UTC
(
hide
)
Description:
patch to go from perl-XML-LibXML 1.62001 to 1.63
Filename:
MIME Type:
Creator:
Robin Norwood
Created:
2007-07-03 14:14:29 UTC
Size:
4.08 KB
patch
obsolete
>? .build--.log >? .build-1.63-1.fc8.log >? XML-LibXML-1.63 >? XML-LibXML-1.63.tar.gz >Index: perl-XML-LibXML.spec >=================================================================== >RCS file: /cvs/pkgs/rpms/perl-XML-LibXML/devel/perl-XML-LibXML.spec,v >retrieving revision 1.17 >diff -u -r1.17 perl-XML-LibXML.spec >--- perl-XML-LibXML.spec 7 Dec 2006 21:05:10 -0000 1.17 >+++ perl-XML-LibXML.spec 3 Jul 2007 14:09:18 -0000 >@@ -1,40 +1,41 @@ >-%{!?perl_vendorarch: %define perl_vendorarch %(eval "`perl -V:installvendorarch`"; echo $installvendorarch)} >- >-Summary: XML-LibXML Perl module >-Name: perl-XML-LibXML >-Version: 1.62001 >-Release: 2%{?dist} >-License: GPL or Artistic >-Group: Development/Libraries >-URL: http://search.cpan.org/dist/XML-LibXML/ >-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root >-BuildRequires: perl >= 2:5.8.0 >-Requires: %(perl -MConfig -le 'if (defined $Config{useithreads}) { print "perl(:WITH_ITHREADS)" } else { print "perl(:WITHOUT_ITHREADS)" }') >-Requires: %(perl -MConfig -le 'if (defined $Config{usethreads}) { print "perl(:WITH_THREADS)" } else { print "perl(:WITHOUT_THREADS)" }') >-Requires: %(perl -MConfig -le 'if (defined $Config{uselargefiles}) { print "perl(:WITH_LARGEFILES)" } else { print "perl(:WITHOUT_LARGEFILES)" }') >-Requires: perl(:MODULE_COMPAT_%(perl -MConfig -e 'print $Config{version}')) >-Source0: http://www.cpan.org/authors/id/P/PA/PAJAS/XML-LibXML-1.62001.tar.gz >-BuildRequires: perl-XML-LibXML-Common perl-XML-SAX perl-XML-NamespaceSupport >-BuildRequires: libxml2-devel >-Requires: perl-XML-LibXML-Common perl-XML-SAX perl-XML-NamespaceSupport >+Name: perl-XML-LibXML >+Version: 1.63 >+Release: 1%{?dist} >+Summary: Perl interface to the libxml2 library >+ >+Group: Development/Libraries >+License: GPL or Artistic >+URL: http://search.cpan.org/dist/XML-LibXML/ >+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) >+ >+BuildRequires: perl >= 2:5.8.0 >+Requires: %(perl -MConfig -le 'if (defined $Config{useithreads}) { print "perl(:WITH_ITHREADS)" } else { print "perl(:WITHOUT_ITHREADS)" }') >+Requires: %(perl -MConfig -le 'if (defined $Config{usethreads}) { print "perl(:WITH_THREADS)" } else { print "perl(:WITHOUT_THREADS)" }') >+Requires: %(perl -MConfig -le 'if (defined $Config{uselargefiles}) { print "perl(:WITH_LARGEFILES)" } else { print "perl(:WITHOUT_LARGEFILES)" }') >+Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) >+Source0: http://www.cpan.org/authors/id/P/PA/PAJAS/XML-LibXML-%{version}.tar.gz >+BuildRequires: perl(XML::LibXML::Common), perl(XML::SAX), perl(XML::NamespaceSupport) >+BuildRequires: perl(ExtUtils::MakeMaker), perl(Test::More) >+BuildRequires: libxml2-devel > > %description >-%{summary}. >- >-%prep >+This module implements a Perl interface to the Gnome libxml2 library >+which provides interfaces for parsing and manipulating XML files. This >+module allows Perl programmers to make use of the highly capable >+validating XML parser and the high performance DOM implementation. > >-#Note hardcoded version # here, because XML-LibXML-1.62001.tar.gz >-#contains a dir called XML-LibXML-1.62 > >-%setup -q -n XML-LibXML-1.62 >+%prep >+%setup -q -n XML-LibXML-%{version} > > %build >-CFLAGS="$RPM_OPT_FLAGS" SKIP_SAX_INSTALL=1 perl Makefile.PL INSTALLDIRS=vendor >-make OPTIMIZE="$RPM_OPT_FLAGS" >+%{__perl} Makefile.PL SKIP_SAX_INSTALL=1 INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" >+make %{?_smp_mflags} >+ > > %install > rm -rf $RPM_BUILD_ROOT >-make install \ >+make pure_install \ > PERL_INSTALL_ROOT=$RPM_BUILD_ROOT \ > INSTALLARCHLIB=$RPM_BUILD_ROOT%{perl_archlib} > find $RPM_BUILD_ROOT -type f -a \( -name perllocal.pod -o -name .packlist \ >@@ -42,9 +43,11 @@ > find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';' > chmod -R u+w $RPM_BUILD_ROOT/* > >-%check || : >+ >+%check > make test > >+ > %clean > rm -rf $RPM_BUILD_ROOT > >@@ -69,6 +72,9 @@ > %{_mandir}/man3/*.3* > > %changelog >+* Fri Jun 08 2007 Robin Norwood <rnorwood@redhat.com> - 1.63-1 >+- Update to latest CPAN release: 1.63 >+ > * Thu Dec 07 2006 Robin Norwood <rnorwood@redhat.com> - 1.62001-2 > - Rebuild >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 246452
: 158447