Changeset 1148 in ProjectBuilder for devel/pb


Ignore:
Timestamp:
Jan 11, 2011, 1:14:38 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Most modules now have a VERSION declared
  • Moulde Version.pm move to pb-modules due to that
Location:
devel/pb/lib/ProjectBuilder
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • devel/pb/lib/ProjectBuilder/CMS.pm

    r1134 r1148  
    1919use POSIX qw(strftime);
    2020use lib qw (lib);
     21use ProjectBuilder::Version;
    2122use ProjectBuilder::Base;
    2223use ProjectBuilder::Conf;
     
    2425# Inherit from the "Exporter" module which handles exporting functions.
    2526 
     27use vars qw($VERSION @ISA @EXPORT);
    2628use Exporter;
    2729 
     
    3133our @ISA = qw(Exporter);
    3234our @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";
    3336
    3437=pod
  • devel/pb/lib/ProjectBuilder/Changelog.pm

    r916 r1148  
    1717use POSIX qw(strftime);
    1818use lib qw (lib);
     19use ProjectBuilder::Version;
    1920use ProjectBuilder::Base;
    2021use ProjectBuilder::Conf;
     
    2223# Inherit from the "Exporter" module which handles exporting functions.
    2324 
     25use vars qw($VERSION @ISA @EXPORT);
    2426use Exporter;
    2527 
     
    2931our @ISA = qw(Exporter);
    3032our @EXPORT = qw(pb_changelog);
     33$VERSION = "$ProjectBuilder::Version::VERSION";
    3134
    3235=pod
  • devel/pb/lib/ProjectBuilder/Env.pm

    r1136 r1148  
    1919use POSIX qw(strftime);
    2020use lib qw (lib);
     21use ProjectBuilder::Version;
    2122use ProjectBuilder::Base;
    2223use ProjectBuilder::Conf;
     
    2526# Inherit from the "Exporter" module which handles exporting functions.
    2627 
     28use vars qw($VERSION @ISA @EXPORT);
    2729use Exporter;
    2830 
     
    3234our @ISA = qw(Exporter);
    3335our @EXPORT = qw(pb_env_init pb_env_init_pbrc);
     36$VERSION = "$ProjectBuilder::Version::VERSION";
    3437
    3538=pod
  • devel/pb/lib/ProjectBuilder/Filter.pm

    r1130 r1148  
    1818use File::Copy;
    1919use lib qw (lib);
     20use ProjectBuilder::Version;
    2021use ProjectBuilder::Base;
    2122use ProjectBuilder::Changelog;
     
    2324# Inherit from the "Exporter" module which handles exporting functions.
    2425 
     26use vars qw($VERSION @ISA @EXPORT);
    2527use Exporter;
    2628 
     
    3032our @ISA = qw(Exporter);
    3133our @EXPORT = qw(pb_get_filters pb_filter_file_pb pb_filter_file_inplace pb_filter_file);
     34$VERSION = "$ProjectBuilder::Version::VERSION";
    3235
    3336=pod
Note: See TracChangeset for help on using the changeset viewer.