summaryrefslogtreecommitdiff
path: root/Perl-RPM
diff options
context:
space:
mode:
authorrjray <devnull@localhost>2000-10-13 09:24:05 +0000
committerrjray <devnull@localhost>2000-10-13 09:24:05 +0000
commitec4738cfff4bf79d9a0fb972f6ed7f4ce72cbf08 (patch)
tree53b98955f79e81c4f3db5143dc404cee042d73f0 /Perl-RPM
parentfb6fce2b529e30881d1aff84c0e6706f9f9d1de7 (diff)
downloadlibrpm-tizen-ec4738cfff4bf79d9a0fb972f6ed7f4ce72cbf08.tar.gz
librpm-tizen-ec4738cfff4bf79d9a0fb972f6ed7f4ce72cbf08.tar.bz2
librpm-tizen-ec4738cfff4bf79d9a0fb972f6ed7f4ce72cbf08.zip
Removed references to Package
CVS patchset: 4217 CVS date: 2000/10/13 09:24:05
Diffstat (limited to 'Perl-RPM')
-rw-r--r--Perl-RPM/RPM.pm4
-rw-r--r--Perl-RPM/RPM.xs6
2 files changed, 5 insertions, 5 deletions
diff --git a/Perl-RPM/RPM.pm b/Perl-RPM/RPM.pm
index 02c9123a3..3a954bb1f 100644
--- a/Perl-RPM/RPM.pm
+++ b/Perl-RPM/RPM.pm
@@ -10,7 +10,7 @@ require Exporter;
@ISA = qw(Exporter DynaLoader);
$VERSION = '0.291';
-$revision = do { my @r=(q$Revision: 1.12 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
+$revision = do { my @r=(q$Revision: 1.13 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
@EXPORT = qw(rpm_osname rpm_archname);
@EXPORT_OK = (@EXPORT, 'vercmp');
@@ -22,7 +22,7 @@ bootstrap_Constants($VERSION);
bootstrap_Header($VERSION);
bootstrap_Database($VERSION);
bootstrap_Error($VERSION);
-bootstrap_Package($VERSION);
+#bootstrap_Package($VERSION);
1;
diff --git a/Perl-RPM/RPM.xs b/Perl-RPM/RPM.xs
index 84ca859b0..865560df6 100644
--- a/Perl-RPM/RPM.xs
+++ b/Perl-RPM/RPM.xs
@@ -4,13 +4,13 @@
#include "RPM.h"
-static char * const rcsid = "$Id: RPM.xs,v 1.7 2000/10/08 10:06:20 rjray Exp $";
+static char * const rcsid = "$Id: RPM.xs,v 1.8 2000/10/13 09:24:05 rjray Exp $";
extern XS(boot_RPM__Constants);
extern XS(boot_RPM__Header);
extern XS(boot_RPM__Database);
extern XS(boot_RPM__Error);
-extern XS(boot_RPM__Package);
+/*extern XS(boot_RPM__Package);*/
static HV* tag2num_priv;
static HV* num2tag_priv;
@@ -117,5 +117,5 @@ BOOT:
newXS("RPM::bootstrap_Header", boot_RPM__Header, file);
newXS("RPM::bootstrap_Database", boot_RPM__Database, file);
newXS("RPM::bootstrap_Error", boot_RPM__Error, file);
- newXS("RPM::bootstrap_Package", boot_RPM__Package, file);
+ /*newXS("RPM::bootstrap_Package", boot_RPM__Package, file);*/
}