Corrected copyright line.

CVS patchset: 3894
CVS date: 2000/06/22 08:42:00
This commit is contained in:
rjray 2000-06-22 08:42:00 +00:00
parent e0629ae58f
commit 3cd625281f
3 changed files with 9 additions and 9 deletions

View File

@ -1,11 +1,11 @@
###############################################################################
#
# (c) Copyright @ 2000, Red Hat Software, Inc.,
# (c) Copyright @ 2000, Randy J. Ray <rjray@blackperl.com>
# All Rights Reserved
#
###############################################################################
#
# $Id: Constants.pm,v 1.2 2000/06/05 08:10:32 rjray Exp $
# $Id: Constants.pm,v 1.3 2000/06/22 08:42:00 rjray Exp $
#
# Description: Constants for the RPM package
#
@ -27,7 +27,7 @@ use RPM;
@ISA = qw(Exporter);
$VERSION = $RPM::VERSION;
$revision = do { my @r=(q$Revision: 1.2 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
$revision = do { my @r=(q$Revision: 1.3 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
@EXPORT_OK = qw(
ADD_SIGNATURE

View File

@ -1,11 +1,11 @@
###############################################################################
#
# (c) Copyright @ 2000, Red Hat Software, Inc.,
# (c) Copyright @ 2000, Randy J. Ray <rjray@blackperl.com>
# All Rights Reserved
#
###############################################################################
#
# $Id: Database.pm,v 1.2 2000/05/30 01:03:13 rjray Exp $
# $Id: Database.pm,v 1.3 2000/06/22 08:42:00 rjray Exp $
#
# Description: The RPM::Database class provides access to the RPM database
# as a tied hash, whose keys are taken as the names of
@ -37,7 +37,7 @@ require RPM;
require RPM::Header;
$VERSION = $RPM::VERSION;
$revision = do { my @r=(q$Revision: 1.2 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
$revision = do { my @r=(q$Revision: 1.3 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
1;

View File

@ -1,11 +1,11 @@
###############################################################################
#
# (c) Copyright @ 2000, Red Hat Software, Inc.,
# (c) Copyright @ 2000, Randy J. Ray <rjray@blackperl.com>
# All Rights Reserved
#
###############################################################################
#
# $Id: Header.pm,v 1.5 2000/06/17 08:10:05 rjray Exp $
# $Id: Header.pm,v 1.6 2000/06/22 08:42:00 rjray Exp $
#
# Description: The RPM::Header class provides access to the RPM Header
# structure as a tied hash, allowing direct access to the
@ -35,7 +35,7 @@ use RPM::Error;
use RPM::Constants ':rpmerr';
$VERSION = $RPM::VERSION;
$revision = do { my @r=(q$Revision: 1.5 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
$revision = do { my @r=(q$Revision: 1.6 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
1;