Changeset 1148 in ProjectBuilder
- Timestamp:
- Jan 11, 2011, 1:14:38 PM (14 years ago)
- Location:
- devel
- Files:
-
- 9 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
devel/pb-modules/lib/ProjectBuilder/Base.pm
r1137 r1148 21 21 use English; 22 22 use POSIX qw(locale_h); 23 use ProjectBuilder::Version; 23 24 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 … … 38 40 our @ISA = qw(Exporter); 39 41 our @EXPORT = qw(pb_mkdir_p pb_system pb_rm_rf pb_get_date pb_log pb_log_init pb_get_uri pb_get_content pb_set_content pb_display_file pb_syntax_init pb_syntax pb_temp_init pb_get_arch pb_check_requirements pb_check_req $pbdebug $pbLOG $pbdisplaytype $pblocale); 42 $VERSION = "$ProjectBuilder::Version::VERSION"; 40 43 41 44 =pod -
devel/pb-modules/lib/ProjectBuilder/Conf.pm
r1052 r1148 13 13 use Data::Dumper; 14 14 use ProjectBuilder::Base; 15 use ProjectBuilder::Version; 15 16 16 17 # Inherit from the "Exporter" module which handles exporting functions. 17 18 19 use vars qw($VERSION @ISA @EXPORT); 18 20 use Exporter; 19 21 … … 23 25 our @ISA = qw(Exporter); 24 26 our @EXPORT = qw(pb_conf_init pb_conf_add pb_conf_read pb_conf_read_if pb_conf_get pb_conf_get_if); 27 $VERSION = "$ProjectBuilder::Version::VERSION"; 25 28 26 29 # Global hash of conf files -
devel/pb-modules/lib/ProjectBuilder/Display.pm
r702 r1148 19 19 use POSIX qw(locale_h); 20 20 use ProjectBuilder::Base; 21 use ProjectBuilder::Version; 21 22 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 … … 33 35 our @ISA = qw(Exporter); 34 36 our @EXPORT = qw(pb_display pb_display_init $pbdisplaytype $pblocale); 37 $VERSION = "$ProjectBuilder::Version::VERSION"; 35 38 36 39 =pod -
devel/pb-modules/lib/ProjectBuilder/Distribution.pm
r1137 r1148 10 10 use strict; 11 11 use Data::Dumper; 12 use ProjectBuilder::Version; 12 13 use ProjectBuilder::Base; 13 14 use ProjectBuilder::Conf; … … 15 16 use File::Copy; 16 17 18 # Global vars 17 19 # Inherit from the "Exporter" module which handles exporting functions. 18 20 21 use vars qw($VERSION @ISA @EXPORT); 19 22 use Exporter; 20 23 … … 24 27 our @ISA = qw(Exporter); 25 28 our @EXPORT = qw(pb_distro_conffile pb_distro_init pb_distro_get pb_distro_getlsb pb_distro_installdeps pb_distro_getdeps pb_distro_only_deps_needed pb_distro_setuprepo pb_distro_setuposrepo pb_distro_get_param); 29 $VERSION = "$ProjectBuilder::Version::VERSION"; 26 30 27 31 =pod -
devel/pb-modules/lib/ProjectBuilder/Log.pm
r1109 r1148 5 5 6 6 use strict; 7 use ProjectBuilder::Version; 7 8 use ProjectBuilder::Base; 8 9 use ProjectBuilder::Log::Item; -
devel/pb-modules/lib/ProjectBuilder/Version.pm
r1146 r1148 11 11 # Inherit from the "Exporter" module which handles exporting functions. 12 12 13 use vars qw($VERSION @ISA @EXPORT); 13 14 use Exporter; 14 15 … … 17 18 our @ISA = qw(Exporter); 18 19 our @EXPORT = qw(pb_version_init); 20 21 $VERSION = 'PBVER'; 19 22 20 23 sub pb_version_init { -
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.