diff options
author | jbj <devnull@localhost> | 2002-06-03 20:56:33 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-06-03 20:56:33 +0000 |
commit | 37426c66d793a8a287a506f49e2df2a753210254 (patch) | |
tree | fb3edad5e5145b02e76d5cfd7d68994e0fbd0e81 | |
parent | 9b2ac14866c7740e67e17d37392f2397cd1dcdd3 (diff) | |
download | librpm-tizen-37426c66d793a8a287a506f49e2df2a753210254.tar.gz librpm-tizen-37426c66d793a8a287a506f49e2df2a753210254.tar.bz2 librpm-tizen-37426c66d793a8a287a506f49e2df2a753210254.zip |
- python: include rpmdb module, renamed from bsddb3.
CVS patchset: 5460
CVS date: 2002/06/03 20:56:33
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | rpm.spec.in | 5 | ||||
-rwxr-xr-x | scripts/perl.req | 2 |
4 files changed, 7 insertions, 3 deletions
@@ -125,6 +125,7 @@ - fix: avoid sign extension, use only 16 bits, when verifying rdev. - python: separate {add,del}Macro methods, prepare for macro dictionary. - i18n: copy current production PO files to top-of-stack. + - python: include rpmdb module, renamed from bsddb3. 4.0.3 -> 4.0.4: - solaris: translate i86pc to i386 (#57182). diff --git a/configure.in b/configure.in index bfc9b660c..de1a4ff6e 100644 --- a/configure.in +++ b/configure.in @@ -1162,7 +1162,7 @@ AC_OUTPUT([ Doxyfile Makefile rpmrc macros platform rpmpopt rpm.spec misc/Makefile intl/Makefile po/Makefile.in doc/Makefile doc/manual/Makefile doc/ja/Makefile doc/pl/Makefile doc/ru/Makefile doc/sk/Makefile - python/Makefile ], + python/Makefile python/rpmdb/Makefile ], [ echo timestamp > popt/stamp-h.in echo timestamp > beecrypt/stamp-h.in echo timestamp > stamp-h.in diff --git a/rpm.spec.in b/rpm.spec.in index 37e5cf844..21c8ea15c 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -17,7 +17,7 @@ Name: rpm %define version @VERSION@ Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 0.20 +Release: 0.21 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Copyright: GPL @@ -515,6 +515,9 @@ fi %{__prefix}/include/popt.h %changelog +* Mon Jun 3 2002 Jeff Johnson <jbj@redhat.com> +- python: include rpmdb module, renamed from bsddb3. + * Sat Jun 1 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.20 - fix: use getgrnam, not getpwnam, to convert gid -> group. - fix: avoid sign extension, use only 16 bits, when verifying rdev. diff --git a/scripts/perl.req b/scripts/perl.req index 5ffe6e210..a0a077b3f 100755 --- a/scripts/perl.req +++ b/scripts/perl.req @@ -104,7 +104,7 @@ sub process_file { # if we need to print it print it now. if ( m/^\s*\$RPM_Requires\s*=\s*["'](.*)['"]/i) { - foreach $_ (spit(/\s+/, $1)) { + foreach $_ (split(/\s+/, $1)) { print "$_\n"; } } |