Changeset 329 in ProjectBuilder
- Timestamp:
- Feb 22, 2008, 12:07:25 PM (17 years ago)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb/bin/pb
r328 r329 21 21 # Global variables 22 22 use lib qw (lib); 23 use ProjectBuilder::Distribution qw (pb_distro_init);24 use ProjectBuilder::Version qw (pb_version_init);23 use ProjectBuilder::Distribution; 24 use ProjectBuilder::Version; 25 25 use ProjectBuilder::Base; 26 26 -
devel/pb/lib/ProjectBuilder/Distribution.pm
r315 r329 6 6 # 7 7 8 package ProjectBuilder::Distribution; 9 8 10 use strict; 11 12 # Inherit from the "Exporter" module which handles exporting functions. 13 14 use Exporter; 15 16 # Export, by default, all the functions into the namespace of 17 # any code which uses this module. 18 19 our @ISA = qw(Exporter); 20 our @EXPORT = qw(pb_distro_init pb_get_distro); 9 21 10 22 sub pb_distro_init { -
devel/pb/lib/ProjectBuilder/Version.pm
r74 r329 5 5 # and have been isolated here to avoid unrelated effects 6 6 # 7 package ProjectBuilder::Version; 8 7 9 use strict; 10 11 # Inherit from the "Exporter" module which handles exporting functions. 12 13 use Exporter; 14 15 # Export, by default, all the functions into the namespace of 16 # any code which uses this module. 17 our @ISA = qw(Exporter); 18 our @EXPORT = qw(pb_version_init); 8 19 9 20 sub pb_version_init { -
pbconf/devel/project-builder/rpm/project-builder.spec
r297 r329 17 17 BuildArch: noarch 18 18 Requires: perl >= 5.8.4, perl-DateManip, PBDEP 19 Provides: perl(ProjectBuilder::Changelog), perl(ProjectBuilder::Base), perl(ProjectBuilder::Distribution), perl(ProjectBuilder::Version)20 19 21 20 %description
Note:
See TracChangeset
for help on using the changeset viewer.