Changeset 2498 in ProjectBuilder
- Timestamp:
- Apr 1, 2020, 2:22:41 AM (5 years ago)
- Location:
- devel
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb-modules/lib/ProjectBuilder/Base.pm
r2489 r2498 26 26 # Inherit from the "Exporter" module which handles exporting functions. 27 27 28 use vars qw( $VERSION $REVISION $PBCONFVER@ISA @EXPORT);28 use vars qw(@ISA @EXPORT); 29 29 use Exporter; 30 30 … … 41 41 our @ISA = qw(Exporter); 42 42 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_get_osrelease pb_check_requirements pb_check_req pb_path_expand pb_exit $pbdebug $pbLOG $pbdisplaytype $pblocale); 43 ($VERSION,$REVISION,$PBCONFVER) = pb_version_init();44 43 45 44 =pod -
devel/pb-modules/lib/ProjectBuilder/Display.pm
r2489 r2498 35 35 our @ISA = qw(Exporter); 36 36 our @EXPORT = qw(pb_display pb_display_init $pbdisplaytype $pblocale); 37 ($VERSION,$REVISION) = pb_version_init();37 our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init(); 38 38 39 39 =pod -
devel/pb-modules/lib/ProjectBuilder/Env.pm
r2467 r2498 29 29 # Inherit from the "Exporter" module which handles exporting functions. 30 30 31 use vars qw( $VERSION $REVISION@ISA @EXPORT);31 use vars qw(@ISA @EXPORT); 32 32 use Exporter; 33 33 … … 37 37 our @ISA = qw(Exporter); 38 38 our @EXPORT = qw(pb_env_init pb_env_init_pbrc); 39 ($VERSION,$REVISION) = pb_version_init();39 our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init(); 40 40 41 41 =pod -
devel/pb-modules/lib/ProjectBuilder/VCS.pm
r2434 r2498 29 29 # Inherit from the "Exporter" module which handles exporting functions. 30 30 31 use vars qw( $VERSION $REVISION@ISA @EXPORT);31 use vars qw(@ISA @EXPORT); 32 32 use Exporter; 33 33 … … 37 37 our @ISA = qw(Exporter); 38 38 our @EXPORT = qw(pb_vcs_init pb_vcs_export pb_vcs_get_uri pb_vcs_copy pb_vcs_checkout pb_vcs_up pb_vcs_checkin pb_vcs_isdiff pb_vcs_add pb_vcs_add_if_not_in pb_vcs_cmd pb_vcs_compliant pb_vcs_conf_update_v0); 39 ($VERSION,$REVISION) = pb_version_init();39 our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init(); 40 40 41 41 =pod -
devel/pb-modules/lib/ProjectBuilder/VE.pm
r2488 r2498 34 34 our @EXPORT = qw(pb_ve_launch pb_ve_snap pb_ve_get_type pb_ve_docker_repo pb_ve_docker_get_image); 35 35 36 ($VERSION,$REVISION) = pb_version_init();36 our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init(); 37 37 38 38 =pod -
devel/pb/lib/ProjectBuilder/CMS.pm
r2489 r2498 28 28 # Inherit from the "Exporter" module which handles exporting functions. 29 29 30 use vars qw( $VERSION $REVISION@ISA @EXPORT);30 use vars qw(@ISA @EXPORT); 31 31 use Exporter; 32 32 … … 36 36 our @ISA = qw(Exporter); 37 37 our @EXPORT = qw(pb_cms_get_pkg pb_cms_get_real_pkg pb_cms_log); 38 ($VERSION,$REVISION) = pb_version_init();38 our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init(); 39 39 40 40 =pod -
devel/pb/lib/ProjectBuilder/Changelog.pm
r2491 r2498 32 32 our @ISA = qw(Exporter); 33 33 our @EXPORT = qw(pb_changelog); 34 ($VERSION,$REVISION) = pb_version_init();34 our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init(); 35 35 36 36 =pod -
devel/pb/lib/ProjectBuilder/Filter.pm
r2491 r2498 36 36 our @ISA = qw(Exporter); 37 37 our @EXPORT = qw(pb_get_filters pb_filter_file_pb pb_filter_file_inplace pb_filter_file pb_filter_var_print); 38 ($VERSION,$REVISION) = pb_version_init();38 our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init(); 39 39 40 40 =pod
Note:
See TracChangeset
for help on using the changeset viewer.