Changeset 2498 in ProjectBuilder for devel/pb-modules


Ignore:
Timestamp:
Apr 1, 2020, 2:22:41 AM (4 years ago)
Author:
Bruno Cornec
Message:

Fix pb_version_init call

Location:
devel/pb-modules/lib/ProjectBuilder
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • devel/pb-modules/lib/ProjectBuilder/Base.pm

    r2489 r2498  
    2626# Inherit from the "Exporter" module which handles exporting functions.
    2727 
    28 use vars qw($VERSION $REVISION $PBCONFVER @ISA @EXPORT);
     28use vars qw(@ISA @EXPORT);
    2929use Exporter;
    3030 
     
    4141our @ISA = qw(Exporter);
    4242our @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();
    4443
    4544=pod
  • devel/pb-modules/lib/ProjectBuilder/Display.pm

    r2489 r2498  
    3535our @ISA = qw(Exporter);
    3636our @EXPORT = qw(pb_display pb_display_init $pbdisplaytype $pblocale);
    37 ($VERSION,$REVISION) = pb_version_init();
     37our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init();
    3838
    3939=pod
  • devel/pb-modules/lib/ProjectBuilder/Env.pm

    r2467 r2498  
    2929# Inherit from the "Exporter" module which handles exporting functions.
    3030 
    31 use vars qw($VERSION $REVISION @ISA @EXPORT);
     31use vars qw(@ISA @EXPORT);
    3232use Exporter;
    3333 
     
    3737our @ISA = qw(Exporter);
    3838our @EXPORT = qw(pb_env_init pb_env_init_pbrc);
    39 ($VERSION,$REVISION) = pb_version_init();
     39our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init();
    4040
    4141=pod
  • devel/pb-modules/lib/ProjectBuilder/VCS.pm

    r2434 r2498  
    2929# Inherit from the "Exporter" module which handles exporting functions.
    3030 
    31 use vars qw($VERSION $REVISION @ISA @EXPORT);
     31use vars qw(@ISA @EXPORT);
    3232use Exporter;
    3333 
     
    3737our @ISA = qw(Exporter);
    3838our @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();
     39our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init();
    4040
    4141=pod
  • devel/pb-modules/lib/ProjectBuilder/VE.pm

    r2488 r2498  
    3434our @EXPORT = qw(pb_ve_launch pb_ve_snap pb_ve_get_type pb_ve_docker_repo pb_ve_docker_get_image);
    3535
    36 ($VERSION,$REVISION) = pb_version_init();
     36our ($VERSION,$REVISION,$PBCONFVER) = pb_version_init();
    3737
    3838=pod
Note: See TracChangeset for help on using the changeset viewer.