IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 42758


Ignore:
Timestamp:
Dec 6, 2024, 1:32:02 PM (20 months ago)
Author:
eugene
Message:

merge from trunk

Location:
branches/eam_branches/ipp-20230313/psconfig
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20230313/psconfig

  • branches/eam_branches/ipp-20230313/psconfig/pscheckmods

    r41583 r42758  
    33$DEBUG = 0;
    44$VERBOSE = 0;
     5if (@ARGV > 2 && $ARGV[0] eq "-v") {
     6    $VERBOSE = 1;
     7    shift @ARGV;
     8}
     9if (@ARGV > 2 && $ARGV[0] eq "-debug") {
     10    $DEBUG = 1;
     11    shift @ARGV;
     12}
    513if (@ARGV > 2 && $ARGV[0] eq "-v") {
    614    $VERBOSE = 1;
     
    5563    my ($realfilename,$result);
    5664  ITER: {
     65      my $found = 0;
    5766      foreach $prefix (@INC) {
    5867          $realfilename = "$prefix/$filename";
    59           print "real: $realfilename\n" if $DEBUG;
     68          print "try: $realfilename\n" if $DEBUG;
    6069          if (-f $realfilename) {
    6170              $INC{$filename} = $realfilename;
     
    6372              $result = do $realfilename;
    6473              print "result: $result\n" if $DEBUG;
    65               last ITER;
     74              if (! $DEBUG) { last ITER; }
     75              $found = 1;
    6676          }
    6777      }
    68       die "Can't find $filename in \@INC";
     78      if (!$found) { die "Can't find $filename in \@INC"; }
    6979    }
    7080    if ($@) {
  • branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-gentoo.dist

    r42377 r42758  
    6464  YYYYY  pstamp                 ipp-2-9          -0
    6565  YYYYY  ippTools               ipp-2-9          -0
     66  YYYYY  ippconfig              ipp-2-9          -0
    6667  YYYYY  ippScripts             ipp-2-9          -0
    6768  YYYYY  ippTasks               ipp-2-9          -0
    6869# YNYYY  ippToPsps              ipp-2-9          -0 : moved to $svn/psps
    6970         
    70   YYYYY  ippconfig              ipp-2-9          -0
    7171  YNYYN  psconfig               ipp-2-9          -0
    7272  YNYYN  ippMonitor             ipp-2-9          -0
  • branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-ubuntu.dist

    r42686 r42758  
    6666  YYYYY  pstamp                 ipp-2-9          -0
    6767  YYYYY  ippTools               ipp-2-9          -0
     68  YYYYY  ippconfig              ipp-2-9          -0
    6869  YYYYY  ippScripts             ipp-2-9          -0
    6970  YYYYY  ippTasks               ipp-2-9          -0
    7071# YNYYY  ippToPsps              ipp-2-9          -0 : moved to $svn/psps
    7172         
    72   YYYYY  ippconfig              ipp-2-9          -0
    7373  YNYYN  psconfig               ipp-2-9          -0
    7474  YNYYN  ippMonitor             ipp-2-9          -0
  • branches/eam_branches/ipp-20230313/psconfig/tagsets/ipp-ubuntu.perl

    r42377 r42758  
    3434  01  Class::Prototyped             Class-Prototyped-1.13.tar.gz             0              NONE      NONE
    3535  01  Class::Singleton              Class-Singleton-1.5.tar.gz               0              NONE      NONE
     36  01  Encode::Locale                Encode-Locale-1.05.tar.gz                0              NONE      NONE
    3637  01  Data::Dump                    Data-Dump-1.23.tar.gz                    0              NONE      NONE
    3738  01  Data::Validate::Domain        Data-Validate-Domain-0.14.tar.gz         0              NONE      NONE
Note: See TracChangeset for help on using the changeset viewer.