aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog20
-rw-r--r--URPM.pm2
-rw-r--r--perl-URPM.spec12
3 files changed, 31 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index ef52b6b..1066086 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+2004-12-09 16:16 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * URPM/Build.pm: trust packdrake's defaults
+
+2004-12-09 16:10 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * URPM/Build.pm: Remove external call to packdrake.
+
+2004-12-09 15:27 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * t/parse.t: Silence warnings
+
+2004-12-09 15:24 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * t/parse.t: Adjust test count
+
+2004-11-26 08:45 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * URPM.pm, perl-URPM.spec: 1.05-1mdk
+
2004-11-25 20:18 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
* URPM.pm, URPM/Build.pm: Inspired changes on top of Olivier's
diff --git a/URPM.pm b/URPM.pm
index fa1b4a1..f658c2a 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -10,7 +10,7 @@ use URPM::Resolve;
use URPM::Signature;
our @ISA = qw(DynaLoader);
-our $VERSION = '1.05';
+our $VERSION = '1.06';
URPM->bootstrap($VERSION);
diff --git a/perl-URPM.spec b/perl-URPM.spec
index fe5eb9b..1ab05ad 100644
--- a/perl-URPM.spec
+++ b/perl-URPM.spec
@@ -6,7 +6,7 @@
%define name perl-URPM
%define real_name URPM
-%define version 1.05
+%define version 1.06
%define release 1mdk
%define group %(perl -e 'printf "%%s\\n", "%_vendor" =~ /mandrake/i ? "Development/Perl" : "Applications/CPAN"')
@@ -29,11 +29,14 @@ Source: %{real_name}-%{version}.tar.bz2
URL: http://cvs.mandrakesoft.com/cgi-bin/cvsweb.cgi/soft/perl-URPM
BuildRequires: %{buildreq_perl_devel} rpm-devel >= 4.0.3 bzip2-devel
Requires: rpm >= %{rpm_version}, bzip2 >= 1.0
+Requires: rpmtools >= 5.0.0
Provides: perl(URPM::Build) = %{version}-%{release}
Provides: perl(URPM::Resolve) = %{version}-%{release}
Provides: perl(URPM::Signature) = %{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
+%define _requires_exceptions perl(URPM::DB)\\|perl(URPM::Package)\\|perl(URPM::Transaction)
+
%description
The URPM module allows you to manipulate rpm files, rpm header files and
hdlist files and manage them in memory.
@@ -54,7 +57,7 @@ hdlist files and manage them in memory.
%files
%defattr(-,root,root)
-%doc README
+%doc README ChangeLog
%{_mandir}/man3/*
%{compat_perl_vendorarch}/URPM.pm
%{compat_perl_vendorarch}/URPM
@@ -62,6 +65,11 @@ hdlist files and manage them in memory.
%{compat_perl_vendorarch}/auto/URPM/URPM.so
%changelog
+* Thu Dec 09 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 1.06-1mdk
+- Don't fork a packdrake to build hdlists anymore, use Packdrakeng.pm instead.
+- Remove unused requires.
+- Add ChangeLog in documentation.
+
* Thu Nov 25 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 1.05-1mdk
- Allow to use non-contiguous selection ranges (Olivier Thauvin)