- Timestamp:
- Jan 11, 2011, 1:14:38 PM (14 years ago)
- Location:
- devel/pb/lib/ProjectBuilder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb/lib/ProjectBuilder/CMS.pm
r1134 r1148 19 19 use POSIX qw(strftime); 20 20 use lib qw (lib); 21 use ProjectBuilder::Version; 21 22 use ProjectBuilder::Base; 22 23 use ProjectBuilder::Conf; … … 24 25 # Inherit from the "Exporter" module which handles exporting functions. 25 26 27 use vars qw($VERSION @ISA @EXPORT); 26 28 use Exporter; 27 29 … … 31 33 our @ISA = qw(Exporter); 32 34 our @EXPORT = qw(pb_cms_init pb_cms_export pb_cms_get_uri pb_cms_copy pb_cms_checkout pb_cms_up pb_cms_checkin pb_cms_isdiff pb_cms_get_pkg pb_cms_get_real_pkg pb_cms_compliant pb_cms_log pb_cms_add); 35 $VERSION = "$ProjectBuilder::Version::VERSION"; 33 36 34 37 =pod -
devel/pb/lib/ProjectBuilder/Changelog.pm
r916 r1148 17 17 use POSIX qw(strftime); 18 18 use lib qw (lib); 19 use ProjectBuilder::Version; 19 20 use ProjectBuilder::Base; 20 21 use ProjectBuilder::Conf; … … 22 23 # Inherit from the "Exporter" module which handles exporting functions. 23 24 25 use vars qw($VERSION @ISA @EXPORT); 24 26 use Exporter; 25 27 … … 29 31 our @ISA = qw(Exporter); 30 32 our @EXPORT = qw(pb_changelog); 33 $VERSION = "$ProjectBuilder::Version::VERSION"; 31 34 32 35 =pod -
devel/pb/lib/ProjectBuilder/Env.pm
r1136 r1148 19 19 use POSIX qw(strftime); 20 20 use lib qw (lib); 21 use ProjectBuilder::Version; 21 22 use ProjectBuilder::Base; 22 23 use ProjectBuilder::Conf; … … 25 26 # Inherit from the "Exporter" module which handles exporting functions. 26 27 28 use vars qw($VERSION @ISA @EXPORT); 27 29 use Exporter; 28 30 … … 32 34 our @ISA = qw(Exporter); 33 35 our @EXPORT = qw(pb_env_init pb_env_init_pbrc); 36 $VERSION = "$ProjectBuilder::Version::VERSION"; 34 37 35 38 =pod -
devel/pb/lib/ProjectBuilder/Filter.pm
r1130 r1148 18 18 use File::Copy; 19 19 use lib qw (lib); 20 use ProjectBuilder::Version; 20 21 use ProjectBuilder::Base; 21 22 use ProjectBuilder::Changelog; … … 23 24 # Inherit from the "Exporter" module which handles exporting functions. 24 25 26 use vars qw($VERSION @ISA @EXPORT); 25 27 use Exporter; 26 28 … … 30 32 our @ISA = qw(Exporter); 31 33 our @EXPORT = qw(pb_get_filters pb_filter_file_pb pb_filter_file_inplace pb_filter_file); 34 $VERSION = "$ProjectBuilder::Version::VERSION"; 32 35 33 36 =pod
Note:
See TracChangeset
for help on using the changeset viewer.