Index: /branches/ccl_branches/ipponly-20191108/psconfig/INSTALL
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/INSTALL	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/INSTALL	(revision 41109)
@@ -0,0 +1,193 @@
+
+The psconfig system allows the user to build and install the IPP
+software suite into a location which is flexibly defined by the user.
+The tools here also set up the user's environment variables (PATH,
+PERL5LIB, LIBRARY_PATH, etc) to make use of the installed software.
+With the psconfig tools, it is easy to switch between different
+installed versions or to recompile subsets of the IPP tree.
+
+1. Set up the psconfig system.
+
+If you have not previously installed the IPP suite, and do not the
+psconfig scripts installed, you need to generate the scripts for your
+install directory.  Run the following command in this directory
+(ipp/psconfig):
+
+psbuild -bootstrap INSTALL_PATH
+
+where INSTALL_PATH is the top-level directory for all binary
+installations.  Then, follow the instructions supplied by that
+command:
+
+** if you use csh, tcsh or equivalent as your shell, add the following to your .cshrc
+    if (-e /home/kiawe/eugene/psconfig/psconfig.csh) then
+      alias  psconfig        "source /home/kiawe/eugene/psconfig/psconfig.csh"
+    else
+      alias  psconfig        "echo psconfig not available"
+    endif
+    psconfig default
+
+** if you use sh, bash or equivalent as your shell, add the following to your .bashrc
+    if [ -f /home/kiawe/eugene/psconfig/psconfig.csh ]; then
+      alias psconfig='source /home/kiawe/eugene/psconfig/psconfig.bash'
+      # In bash, can't use an alias in the same file that defines it, so need to
+      # expand it here explicitly to make 'controller host add' work in pantasks
+      source /home/kiawe/eugene/psconfig/psconfig.bash default
+    else
+      alias psconfig='echo psconfig not available'
+    fi
+    
+
+Though, in your case, "/home/kiawe/eugene/psconfig/" will be replaced
+by the value of INSTALL_PATH.  After you have set up this alias, you
+will need to source the .cshrc / .bashrc, or open a new shell, to have
+these aliases available.
+
+2. Using psconfig to set / examine your install system:
+
+Before running or compiling the IPP, it is necessary to use psconfig
+to set the installation version:
+
+psconfig (version)
+
+This command sets aliases and environment variables for the current
+shell to point at the IPP installation labeled with the given version
+name and hardware architecture.  For example:
+
+psconfig default
+
+will set the PATH to include ~/psconfig/default.linux/bin on a 32-bit
+linux system, and the other paths to point at the corresponding
+installation directories.
+
+3. Building (full build in one pass)
+
+It should be possible to build the full IPP installation by issuing
+the single command in this directory (ipp/psconfig):
+
+psbuild -extbuild
+
+If you have checked the IPP tree out of our svn repository, certain
+steps are slightly modified.  In this case, it is necessary to add the
+option '-dev'.  For additional information on using psbuild, see the
+listing of options below (or type psbuild -help)
+
+psbuild -dev -extbuild
+
+3. Dependencies
+
+NOTE: It is possible to use the tools discussed below to manually
+check on the external dependencies.  However, the psbuild system
+allows you to build the full suite including dependencies in a single
+pass.  To use this method, skip to section 4.
+
+3.1. External C libraries
+
+The program 'pschecklibs' in this directory will check for required
+system libraries and headers.  It examines the system libraries,
+libraries defined by LD_LIBRARY_PATH, and the installation library
+defined by psconfig.  Any missing dependencies will be listed.
+Tarballs for these libraries are included in the IPP software
+distribution in the directory 'extlibs'.  The command pschecklibs
+-build can be used to install these libraries in the psconfig
+location.  Note that:
+
+'psautogen' replaces autogen.sh
+'psconfigure' replaces configure
+
+3.2 External Perl Modules
+
+The program 'pscheckperl' in this directory will check for required
+Perl modules, and can be used to install them in the appropriate user
+location in the psconfig system.  The command defaults to the latest
+perl installation table (eg, tagsets/ipp-2.9.perl).
+
+pscheckperl
+
+will test for the perl modules specified for the latest IPP release.
+The (known) IPP-required Perl modules are included in the IPP software
+distribution in 'extperl', and can be built by supplying the -build
+flag to pscheckperl:
+
+pscheckperl -build
+
+4. Building (just IPP tools)
+
+To build the full IPP tree using the psconfig system, run 'psbuild' in
+this directory:
+
+psbuild
+
+If you have checked the IPP tree out of our svn repository, certain
+steps are slightly modified.  In this case, it is necessary to add the
+option '-dev'.  For additional information on using psbuild, see the
+listing of options below (or type psbuild -help)
+
+5. Building Magic.
+
+The Magic software, required for processing of PS1/GPC1 data before it
+can be released to the community, is not generally available for
+distribution.  For those without access to this software, the psbuild
+will simply skip the step of building the magic software.  For those
+who have access to this software, it is necessary to install the magic
+source code in the IPP tree before building.  The magic and
+ssa-core-cpp tarballs must be placed in the home directory.  Go to the
+magic directory (cd ../magic) and run the command 'make update'.  This
+will untar the magic code into the local magic directory and install
+an appropriately modified makefile.  Return to this directory and
+follow the build instructions as above.  (NOTE: this step is only
+necessary for a new IPP checkout or a new magic tarball).
+
+------
+
+More options for psbuild:
+
+USAGE: psbuild [options] (distribution)
+     : -version (version) : specify alternate psconfig installation version
+     : -verbose           : give additional information
+     : -extlibs (tarball) : specify the location of the extlibs tarball
+     : -extperl (tarball) : specify the location of the extlibs tarball
+     : -extcheck          : check (but do not build) the external dependencies
+     : -extbuild          : check and build (if needed) the external dependencies
+     : -clean             : clean the source directories before building
+     : -rebuild           : run 'configure (and autogen for developer)' (C code)
+     : -optimize          : set flags for optimized code
+     : -only (module)     : only build the specified module
+     : -start (module)    : begin build at specified module
+     : -stop (module)     : stop build after specified module
+
+     : -dev               : build modules not distributed in tarball
+
+     : psbuild -bootstrap : generate the psconfig scripts
+     : psbuild -list      : list the available distributions
+     : psbuild -h         : this help listing
+     : psbuild -help      : this help listing
+     : psbuild --help     : this help listing
+
+Summary of psconfig operations:
+
+psdist -tag        : tag CVS tree
+psdist -dist       : build tarball from tagged tree
+psdist -dist -head : build tarball from head
+psbuild            : build and install software in tree
+pschecklibs        : check for needed external software
+pscheckperl        : check for needed perl modules
+pscheckperl -build : build and install external modules
+
+----
+0. Choose a target installation directory.
+
+> Choose a location to store the installed software and configuration
+> files.  The psconfig system places the installed binary files by
+> default in directories below ~/psconfig.  There will be one directory
+> for each version of the installation for a given hardware
+> architecture.  To use a different location, place the following line
+> in ~/.psconfigrc (otherwise, this is not needed):
+> 
+> set PSCONFDIR = INSTALL_PATH
+> 
+> where INSTALL_PATH is the top-level directory for all binary
+> installations. 
+
+** the steps above are probably not actually needed.  When is PSCONFDIR needed?
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/README
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/README	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/README	(revision 41109)
@@ -0,0 +1,21 @@
+
+Welcome to the IPP Software Tree.  To build the full IPP suite, you
+must be in the directory ipp/psconfig.  Follow the instructions in
+'ipp/psconfig/INSTALL'.
+
+The directory 'ipp/psconfig' contains tools for building the IPP, for
+testing the build environment, for building external C libraries and
+Perl modules, for setting up the user's environment, and for building
+a tarball to be distributed to the end users.
+
+Developer Build vs User Build
+
+Within the IPP code base, there are a few modules which are not
+distributed as part of the tarball.  These include 'glueforge', which
+is used to generate code for interacting with the database;
+'dbconfig', which defines a database layout; and 'ippdb.src', which is
+the raw auto-generated code.  The tarball is instead packaged with a
+version of ippdb for which autogen has been run, and for which there
+is a valid 'configure' script.  As a developer, it is necessary to
+build these packages.  There is a '-dev' option for psbuild which
+builds these packages.
Index: /branches/ccl_branches/ipponly-20191108/psconfig/TODO
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/TODO	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/TODO	(revision 41109)
@@ -0,0 +1,40 @@
+
+2007.02.02 : IPP release 1.0 : Known Outstanding Issues
+
+This release of the IPP software is missing a number of major features
+defined in the IPP System Concept Definition.  There are also a number
+of missing minor features, bells and whistles which have been
+identified.
+
+Major Missing Features:
+
+* Phase 4 Tools.  This release does not include the Phase 4 programs
+pswarp, ppStac, and poisub, and the related infrastructure support in
+ippTools and ippScripts.
+
+* Static Sky tools.  This release does not include a number of elements
+related to the static sky definition: the definition of the static sky
+cells and tools to manipulate them; the static sky surface brightness
+modelling tool; and photometry analysis operations for large, extended
+objects.
+
+* relastro.  The global astrometry analysis software is unimplemented.
+
+* flat-field corrections.  The DVO flat-field correction analysis is
+not integrated with the rest of the IPP detrend creation system.
+
+Minor Missing Features:
+
+* full set of columns in output object tables from Phase 2.
+* ippMonitor user interface missing a variety of options
+* output plots from psphot and pspastro are not exported to ippMonitor
+* this list is incomplete.
+* ETC...
+
+In addition, there are 
+
+* incomplete documentation
+
+* incomplete testing on:
+  - Nebulous integration
+  - DVO integration
Index: /branches/ccl_branches/ipponly-20191108/psconfig/build.timing.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/build.timing.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/build.timing.txt	(revision 41109)
@@ -0,0 +1,11 @@
+
+Use this file to track the IPP build times on various platforms
+
+Optimized
+
+Unoptimized
+
+ ulili  : Intel Atom        : unthreaded : 64 min
+ pikake : Intel Core 2 Quad : 4 threads  : 12 min
+ ipp053 : Intel Xeon 2xQuad : 4 threads  :  9 min
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Astro-FITS-CFITSIO-1.12.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Astro-FITS-CFITSIO-1.12.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Astro-FITS-CFITSIO-1.12.mods.txt	(revision 41109)
@@ -0,0 +1,4 @@
+      7 Astro::FITS::CFITSIO
+      1 Carp
+      1 strict
+      1 vars
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Cache-2.11.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Cache-2.11.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Cache-2.11.mods.txt	(revision 41109)
@@ -0,0 +1,38 @@
+      9 base
+      1 Cache
+      3 Cache::File
+      1 Cache::File::Entry
+      2 Cache::File::Heap
+      1 Cache::IOString
+      2 Cache::Memory
+      1 Cache::Memory::Entry
+      1 Cache::Memory::HeapElem
+      1 Cache::Null
+      1 Cache::Null::Entry
+      1 Cache::Tester
+      8 Carp
+      1 Date::Parse
+      2 DB_File
+      2 Devel::AssertOS
+     32 Devel::CheckOS
+      1 Digest::SHA
+      2 Exporter
+      2 Fcntl
+     11 fields
+      1 File::Find::Rule
+      2 File::NFSLock
+      2 File::Path
+      3 File::Spec
+      1 File::Temp
+      1 Heap::Elem
+      1 Heap::Fibonacci
+      1 IO::File
+      1 IO::String
+      1 Module::Build
+      3 Storable
+     19 strict
+      2 Symbol
+      1 Test::More
+      4 vars
+     17 warnings
+      1 warnings::register
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Config-YAML-1.42.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Config-YAML-1.42.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Config-YAML-1.42.mods.txt	(revision 41109)
@@ -0,0 +1,5 @@
+      1 Config::YAML
+      1 strict
+      1 vars
+      1 warnings
+      1 YAML
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DBI-1.642.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DBI-1.642.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DBI-1.642.mods.txt	(revision 41109)
@@ -0,0 +1,66 @@
+      3 a
+      1 AnyEvent
+     21 base
+      1 BerkeleyDB
+      1 by
+     43 Carp
+      1 Carp()
+      1 C<f_file>
+      2 Config
+     89 constant
+      1 Coro
+      1 Coro::Handle
+      1 Coro::Select
+      1 Cwd
+      2 Data::Dumper
+      1 DBD::${driver}
+      1 DBD::Mem
+     31 DBI
+      2 DBI::Const::GetInfo::ANSI
+      2 DBI::Const::GetInfo::ODBC
+      3 DBI::Const::GetInfoType
+      3 DBI::Gofer::Execute
+      1 DBI::Gofer::Request
+      1 DBI::Gofer::Response
+      1 DBI::Gofer::Serializer::DataDumper
+      1 DBI::Gofer::Serializer::Storable
+      3 DBI::Profile
+      3 DBI::ProfileDumper
+      1 DBI::ProxyServer
+      1 DBI::SQL::Nano
+      1 DBI::W32ODBC
+      1 DynaLoader
+      1 Errno
+      1 Exception
+      6 Exporter
+      1 ExtUtils::MakeMaker
+      4 Fcntl
+      2 File::Spec
+      1 func()
+      1 IO::Dir
+      1 IO::Select
+      1 IPC::Open3
+      1 it
+      1 lowercase
+      1 MLDBM
+      1 MLDBM,
+      4 of
+      2 one
+      1 PerlIO::via::MyFancyLogLayer
+      1 placeholders
+      1 POSIX
+      1 RPC::PlClient
+      1 RPC::PlServer
+      2 Scalar::Util
+      1 Storable
+     89 strict
+      4 Symbol
+      2 the
+      1 them
+      1 Time::HiRes
+      2 Try::Tiny
+      1 UNIVERSAL
+     25 vars
+     41 warnings
+      2 Win32::DBIODBC
+      2 Win32::ODBC
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Data-Validate-URI-0.07.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Data-Validate-URI-0.07.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Data-Validate-URI-0.07.mods.txt	(revision 41109)
@@ -0,0 +1,10 @@
+      1 AutoLoader
+      1 Data::Validate::Domain
+      1 Data::Validate::IP
+      1 Data::Validate::URI
+      1 ExtUtils::TBone
+      1 File::Basename
+      1 FileHandle
+      1 lib
+      2 strict
+      2 vars
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DataStore.perlbin.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DataStore.perlbin.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DataStore.perlbin.txt	(revision 41109)
@@ -0,0 +1,11 @@
+      6 DataStore
+      2 File::Basename
+      1 File::Path
+      1 File::Spec
+      1 File::Temp
+      6 Getopt::Long
+      6 Pod::Usage
+      6 strict
+      6 vars
+      6 warnings
+      1 YAML
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DataStore.perllib.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DataStore.perllib.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DataStore.perllib.txt	(revision 41109)
@@ -0,0 +1,25 @@
+     11 base
+      9 Carp
+      2 DataStore
+      1 DataStore::file
+      3 DataStore::File
+      4 DataStore::File::Parser
+      4 DataStore::FileSet
+      4 DataStore::FileSet::Parser
+      4 DataStore::Product
+      3 DataStore::Product::Parser
+      2 DataStore::Record
+      7 DataStore::Response
+      2 DataStore::Root
+     10 DataStore::Utils
+      5 Data::Validate::URI
+      1 Digest::MD5::File
+      1 File::Basename
+      1 File::stat
+      1 File::Temp
+      1 IPC::Cmd
+      3 LWP::UserAgent
+      9 Params::Validate
+     12 strict
+     18 vars
+     12 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DataStoreServer.perlbin.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DataStoreServer.perlbin.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DataStoreServer.perlbin.txt	(revision 41109)
@@ -0,0 +1,15 @@
+      1 Carp
+      5 DBI
+      1 Digest::MD5::File
+      3 dsdbh
+      1 File::Basename
+      2 File::Copy
+      3 Getopt::Long
+      3 Pod::Usage
+      2 PS::IPP::Config
+      2 PS::IPP::Metadata::Config
+      1 PS::IPP::Metadata::List
+      1 PS::IPP::Metadata::Stats
+      6 strict
+      1 Term::ReadKey
+      6 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DateTime-1.50.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DateTime-1.50.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DateTime-1.50.mods.txt	(revision 41109)
@@ -0,0 +1,31 @@
+      1 5.008004
+      1 autodie
+      3 base
+      2 Carp
+      5 DateTime
+      2 DateTime::Duration
+      2 DateTime::Helpers
+      2 DateTime::LeapSecond
+      2 DateTime::Locale
+      2 DateTime::TimeZone
+      2 DateTime::Types
+      1 Dist::CheckConflicts
+      1 Dist::Zilla::File::InMemory
+      7 integer
+      1 Moose
+      5 namespace::autoclean
+      2 overload
+      2 Params::ValidationCompiler
+      1 parent
+      1 POSIX
+      3 Scalar::Util
+      1 Specio
+      1 Specio::Declare
+      1 Specio::Library::Builtins
+      1 Specio::Library::Numeric
+      1 Specio::Library::String
+     13 strict
+      2 the
+      1 Try::Tiny
+     13 warnings
+      1 warnings::register
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DateTime-Format-Strptime-1.76.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DateTime-Format-Strptime-1.76.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/DateTime-Format-Strptime-1.76.mods.txt	(revision 41109)
@@ -0,0 +1,25 @@
+      1 Carp
+      1 constant
+      3 DateTime
+      3 DateTime::Format::Strptime
+      1 DateTime::Format::Strptime::Types
+      3 DateTime::Locale
+      1 DateTime::Locale::Base
+      1 DateTime::Locale::FromData
+      2 DateTime::TimeZone
+      1 Dist::Zilla::File::InMemory
+      2 Exporter
+      1 Moose
+      1 namespace::autoclean
+      1 Params::ValidationCompiler
+      1 parent
+      1 Specio
+      1 Specio::Declare
+      1 Specio::Library::Builtins
+      1 Specio::Library::String
+      5 strict
+      1 Test::Builder
+      2 Test::Fatal
+      2 Test::More
+      1 Try::Tiny
+      5 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Digest-MD5-2.55.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Digest-MD5-2.55.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Digest-MD5-2.55.mods.txt	(revision 41109)
@@ -0,0 +1,4 @@
+      8 Digest::MD5
+      1 Encode
+      1 strict
+      1 vars
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Digest-MD5-File-0.08.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Digest-MD5-File-0.08.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Digest-MD5-File-0.08.mods.txt	(revision 41109)
@@ -0,0 +1,6 @@
+      1 Carp
+      1 Digest::MD5
+      5 Digest::MD5::File
+      1 LWP::UserAgent
+      1 strict
+      1 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/IPC-Run-20180523.0.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/IPC-Run-20180523.0.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/IPC-Run-20180523.0.mods.txt	(revision 41109)
@@ -0,0 +1,32 @@
+      1 anonymous
+      1 base
+      1 bytes
+      5 Carp
+      2 constant
+      1 Errno
+      5 Exporter
+      5 Fcntl
+      1 File::Spec
+      4 IO::Handle
+      1 IO::Pty
+      1 IO::Pty's
+      7 IPC::Run
+      5 IPC::Run::Debug
+      1 IPC::Run::IO
+      2 IPC::Run::Win32Helper
+      1 IPC::Run::Win32IO
+      2 POSIX
+      1 Scalar::Util
+      2 select()
+      2 Socket
+      9 strict
+      3 Symbol
+      1 temporary
+      1 Test::More
+      2 Text::ParseWords
+      1 that
+      1 threads
+      1 Time::HiRes
+     14 vars
+      3 Win32API::File
+      2 Win32::Process
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Log-Log4perl-1.49.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Log-Log4perl-1.49.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Log-Log4perl-1.49.mods.txt	(revision 41109)
@@ -0,0 +1,81 @@
+     15 5.006
+     10 base
+     16 Carp
+      1 Class::Prototyped
+      1 C<$logger-E<gt>category()>
+     28 constant
+      1 Data::Dumper
+      1 DBI
+      1 Fcntl
+      1 File::Basename
+      1 File::Path
+      4 File::Spec
+      1 File::Spec::Functions
+      2 File::Temp
+      3 Foobar
+      1 Getopt::Std
+      1 HTTP::Request::Common
+      1 if
+      1 in
+      2 IO::Socket::INET
+      1 IPC::Semaphore
+      1 IPC::SysV
+      1 Log::Dispatch::File
+      1 Log::Dispatch::FileRotate
+      1 Log::Dispatch::Screen
+      1 Log::Dispatch::Syslog
+     80 Log::Log4perl
+      2 Log::Log4perl::Appender
+      2 Log::Log4perl::Appender::File
+      2 Log::Log4perl::Appender::Screen
+      1 Log::Log4perl::Appender::Socket
+      2 Log::Log4perl::Appender::String
+      1 Log::Log4perl::Appender::TestArrayBuffer
+      2 Log::Log4perl::Appender::TestBuffer
+      1 Log::Log4perl::Appender::TestFileCreeper
+      1 Log::Log4perl::Catalyst
+      8 Log::Log4perl::Config
+      2 Log::Log4perl::Config::BaseConfigurator
+      2 Log::Log4perl::Config::PropertyConfigurator
+      3 Log::Log4perl::Config::Watch
+      3 Log::Log4perl::DateFormat
+      2 Log::Log4perl::Filter
+      1 Log::Log4perl::Filter::Boolean
+      1 Log::Log4perl::Internal::Test
+      1 Log::Log4perl::JavaMap
+      2 Log::Log4perl::Layout
+      1 Log::Log4perl::Layout::NoopLayout
+      4 Log::Log4perl::Layout::PatternLayout
+      2 Log::Log4perl::Layout::PatternLayout::Multiline
+      2 Log::Log4perl::Layout::SimpleLayout
+      1 Log::Log4perl::Layout::XMLLayout
+     20 Log::Log4perl::Level
+      3 Log::Log4perl::Logger
+      1 Log::Log4perl::MDC
+      1 Log::Log4perl::NDC
+      2 Log::Log4perl::Resurrector
+      7 Log::Log4perl::Util
+      2 Log::Log4perl::Util::Semaphore
+      2 Log::Log4perl::Util::TimeTracker
+      2 LWP::UserAgent
+      1 Module
+      2 MyL4pWrapper
+      1 MyMode
+      1 Nested
+      1 of
+      1 POE
+      1 POSIX
+      2 RRDs
+      1 Scalar::Util
+      1 Socket
+      1 Storable
+     47 strict
+      1 Sys::Hostname
+      2 Term::ANSIColor
+      6 the
+      1 this
+      1 Time::HiRes
+      2 vars
+     33 warnings
+      1 Win32::Console::ANSI
+      1 XML::DOM
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Module-Build-0.4224.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Module-Build-0.4224.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Module-Build-0.4224.mods.txt	(revision 41109)
@@ -0,0 +1,49 @@
+      1 5.005_04
+      3 5.006
+      1 $build_package
+      3 Carp
+      1 C<CPAN.pm>
+      1 C<ExtUtils::MakeMaker>
+      6 Config
+      2 constant
+      4 Cwd
+      4 Data::Dumper
+      1 DistGen
+      1 Exporter
+      1 ExtUtils::Install
+      1 ExtUtils::MakeMaker
+      6 File::Basename
+      1 File::Compare
+      1 File::Copy
+      3 File::Find
+      4 File::Path
+      8 File::Spec
+      1 File::Temp
+      1 inc::latest
+      1 locale
+      1 MBTest
+      9 Module::Build
+      7 Module::Build::Base
+      1 Module::Build::Compat
+      1 Module::Build::Config
+      2 Module::Build::Dumper
+      1 Module::Build::Notes
+      4 Module::Build::Platform::Unix
+      2 Module::Metadata
+      1 NOTES_NAME
+      1 only
+      2 overload
+      1 $pack
+      2 Perl::OSType
+      1 POSIX
+      2 $self->{name}
+      1 Software::License
+     38 strict
+      3 Test::More
+      1 Text::ParseWords
+      2 the
+      1 this
+      1 Tie::CPHash
+      8 vars
+      4 version
+     23 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous-Server.perlbin.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous-Server.perlbin.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous-Server.perlbin.txt	(revision 41109)
@@ -0,0 +1,16 @@
+      1 Config::YAML
+     11 DBI
+      1 Digest::MD5
+      1 File::Spec
+     11 Getopt::Long
+      1 Log::Log4perl
+      2 Nebulous::Client
+      9 Nebulous::Server::SQL
+      3 Net::Server::Daemonize
+     11 Pod::Usage
+      2 SQL::Interp
+     11 strict
+      9 URI
+      6 URI::file
+     11 vars
+     11 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous-Server.perllib.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous-Server.perllib.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous-Server.perllib.txt	(revision 41109)
@@ -0,0 +1,28 @@
+      1 Apache2::Const
+      6 base
+      2 Cache::Memcached
+      1 Carp
+      4 constant
+      2 DBI
+      1 Digest::SHA1
+      1 Fcntl
+      1 File::Basename
+      1 File::ExtAttr
+      2 File::Path
+      2 File::Spec
+      1 File::Temp
+      3 Log::Log4perl
+      1 Nebulous::Key
+      1 Nebulous::Server
+      2 Nebulous::Server::Config
+      1 Nebulous::Server::Log
+      1 Nebulous::Server::SOAP
+      2 Nebulous::Server::SQL
+      1 overload
+      2 Params::Validate
+      1 SOAP::Lite
+      1 SOAP::Transport::HTTP
+     10 strict
+      1 URI
+      2 URI::file
+     11 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous.perlbin.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous.perlbin.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous.perlbin.txt	(revision 41109)
@@ -0,0 +1,15 @@
+      1 constant
+      1 DBI
+      2 Digest::MD5
+      1 File::Basename
+      1 File::Copy
+     19 Getopt::Long
+     18 Nebulous::Client
+      1 Nebulous::Key
+      3 Nebulous::Util
+     19 Pod::Usage
+      1 PS::IPP::Config
+     20 strict
+      2 URI
+     18 vars
+     19 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous.perllib.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous.perllib.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Nebulous.perllib.txt	(revision 41109)
@@ -0,0 +1,17 @@
+      2 base
+      2 constant
+      1 Digest::MD5
+      1 File::Copy
+      1 File::Spec
+      1 File::Spec::Functions
+      3 Log::Log4perl
+      1 Nebulous::Client::Log
+      1 Nebulous::Util
+      1 Params::Validate
+      1 SOAP::Lite
+      4 strict
+      1 Sys::Hostname
+      1 Time::HiRes
+      2 URI
+      1 URI::file
+      4 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-Config.perllib.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-Config.perllib.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-Config.perllib.txt	(revision 41109)
@@ -0,0 +1,15 @@
+      3 base
+      3 Carp
+      1 Data::Dumper
+      1 DBI
+      1 File::Basename
+      1 File::Spec
+      1 File::Temp
+      1 Getopt::Long
+      1 IPC::Cmd
+      1 POSIX
+      1 PS::IPP::Config
+      1 PS::IPP::Metadata::Config
+      1 Statistics::Descriptive
+      3 strict
+      3 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-MetaDB.perllib.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-MetaDB.perllib.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-MetaDB.perllib.txt	(revision 41109)
@@ -0,0 +1,5 @@
+      6 base
+      1 Carp
+      1 strict
+      1 vars
+      1 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-Metadata-Config.perllib.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-Metadata-Config.perllib.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-Metadata-Config.perllib.txt	(revision 41109)
@@ -0,0 +1,5 @@
+      1 base
+      1 Carp
+      1 PS::IPP::Metadata::Parser
+      1 strict
+      1 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-PSFTP.perllib.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-PSFTP.perllib.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-PSFTP.perllib.txt	(revision 41109)
@@ -0,0 +1,15 @@
+      2 base
+      2 Carp
+      1 CGI
+      1 Data::Validate::URI
+      1 Digest::MD5::File
+      1 File::stat
+      1 LWP::UserAgent
+      2 Params::Validate
+      1 POSIX
+      1 PS::IPP::PSFTP::Parser
+      1 PS::IPP::PSFTP::Server
+      1 Regexp::Common
+      4 strict
+      5 vars
+      3 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-PStamp.perllib.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-PStamp.perllib.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/PS-IPP-PStamp.perllib.txt	(revision 41109)
@@ -0,0 +1,18 @@
+      2 base
+      1 Carp
+      1 File::Basename
+      1 File::Temp
+      1 IO::Handle
+      2 IPC::Cmd
+      1 POSIX
+      2 PS::IPP::Config
+      2 PS::IPP::Metadata::List
+      1 PS::IPP::PStamp::RequestFile
+      1 PStamp
+      1 PStamp::Job
+      1 Pstamp::RequestFile
+      1 PStamp::RequestFile
+      3 strict
+      1 Time::HiRes
+      1 vars
+      3 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Params-Validate-1.29.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Params-Validate-1.29.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Params-Validate-1.29.mods.txt	(revision 41109)
@@ -0,0 +1,15 @@
+      1 5.008001
+      1 Carp
+      1 Exporter
+      1 feature
+      1 Module::Implementation
+      1 Moose
+     12 Params::Validate
+      2 Params::Validate::Constants
+      5 PVTests
+      1 Scalar::Util
+     11 strict
+      6 Test::More
+      1 vars
+     11 warnings
+      1 XSLoader
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/SOAP-Lite-1.27.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/SOAP-Lite-1.27.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/SOAP-Lite-1.27.mods.txt	(revision 41109)
@@ -0,0 +1,35 @@
+      1 5.006
+     13 Carp
+      2 Class::Inspector
+     16 constant
+      2 Exporter
+      1 IO::File
+      1 IO::Select
+      1 IO::SessionData
+      1 IO::SessionSet
+      1 IO::Socket
+     11 MIME::Entity
+      1 MIME::Lite
+      2 MODULE
+      1 My::Examples
+      1 Net::POP3
+      1 of
+      3 overload
+      2 Scalar::Util
+      1 SOAP::Constants
+     29 SOAP::Lite
+      1 SOAP::Lite::Deserializer::XMLSchema1999
+      3 SOAP::Lite::Deserializer::XMLSchemaSOAP1_1
+      2 SOAP::Lite::Deserializer::XMLSchemaSOAP1_2
+      5 SOAP::Lite::Utils
+      2 SOAP::Packager
+      1 SOAP::Test
+      9 SOAP::Transport::HTTP
+      1 SOAP::Transport::POP3
+      1 Some::Module
+     28 strict
+      1 Test
+      4 URI
+      1 URI::Escape
+     49 vars
+      1 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/SQL-Interp-1.24.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/SQL-Interp-1.24.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/SQL-Interp-1.24.mods.txt	(revision 41109)
@@ -0,0 +1,13 @@
+      2 base
+      6 Carp
+      1 DBD::Mock
+      3 DBI
+      1 DBIx::Interp
+      1 DBIx::Simple
+      1 overload
+      1 Scalar::Util
+      2 SQL::Interp
+     14 strict
+      2 Sub::Exporter
+      1 the
+     12 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Statistics-Descriptive-3.0702.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Statistics-Descriptive-3.0702.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Statistics-Descriptive-3.0702.mods.txt	(revision 41109)
@@ -0,0 +1,16 @@
+      1 5.006
+      2 base
+      4 Carp
+      1 List::MoreUtils
+      1 List::Util
+      1 Module::Build
+      1 parent
+      1 POSIX
+      3 Statistics::Descriptive
+      1 Statistics::Descriptive::Full
+      5 Statistics::Descriptive::Smoother
+      1 Statistics::Descriptive::Sparse
+      8 strict
+      1 Test::More
+      4 vars
+      8 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Template-Toolkit-2.28.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Template-Toolkit-2.28.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/Template-Toolkit-2.28.mods.txt	(revision 41109)
@@ -0,0 +1,54 @@
+      1 5.006
+     49 base
+      1 bytes
+      1 CGI
+      1 Config
+     53 constant
+      2 Cwd
+      1 Data::Dumper
+      2 Exporter
+      3 File::Basename
+      1 File::Path
+      4 File::Spec
+      1 locale
+      1 LWP::Simple
+      1 MyModule
+      1 MyOrg::Template::Grammar
+      1 MyOrg::Template::Service
+      2 overload
+      1 Pod::POM
+      1 POSIX
+     10 Scalar::Util
+     44 strict
+     16 Template
+      1 Template::Base
+      7 Template::Config
+     22 Template::Constants
+      2 Template::Context
+      2 Template::Directive
+      2 Template::Document
+     11 Template::Exception
+      4 Template::Filters
+      1 Template::Grammar
+      1 Template::Iterator
+      1 Template::Namespace::Constants
+      1 Template::Parser
+      3 Template::Plugin
+      1 Template::Plugin::File
+      3 Template::Plugin::Filter
+      1 Template::Plugin::Procedural
+      1 Template::Plugin::ProcFoo
+      1 Template::Plugins
+      1 Template::Provider
+      3 Template::Service
+      2 Template::Stash
+      1 Template::Stash::Context
+      2 Template::Stash::XS
+      2 Template::Test
+      1 Template::View
+      1 Template::VMethods
+      1 Text::Wrap
+      4 the
+      1 this
+      5 vars
+     44 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/URI-1.76.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/URI-1.76.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/URI-1.76.mods.txt	(revision 41109)
@@ -0,0 +1,20 @@
+      7 Carp
+      7 constant
+      5 Exporter
+      1 integer
+      1 MIME::Base64
+      1 one
+      4 overload
+     39 parent
+      1 Scalar::Util
+     54 strict
+      1 the
+      7 URI
+     20 URI::Escape
+      1 URI::file
+      1 URI::Heuristic
+      2 URI::_punycode
+      1 URI::QueryParam
+      1 URI::Split
+      1 utf8
+     54 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/YAML-1.27.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/YAML-1.27.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/YAML-1.27.mods.txt	(revision 41109)
@@ -0,0 +1,15 @@
+      1 B
+      1 Carp
+     10 constant
+      3 Exporter
+      1 lib
+      1 overload
+      2 Scalar::Util
+      4 strict
+      1 Test::YAML
+      1 YAML::Dumper::Base
+      1 YAML::Loader::Base
+      8 YAML::Mo
+      6 YAML::Node
+      1 YAML::Tag
+      2 YAML::Types
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/all.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/all.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/all.mods.txt	(revision 41109)
@@ -0,0 +1,107 @@
+EXT | Apache2::Const
+EXT | Astro::FITS::CFITSIO
+EXT | Cache::File
+EXT | Cache::Memcached
+EXT | Carp
+EXT | CGI
+EXT | CGI::Pretty
+EXT | Config::YAML
+EXT | Cwd
+EXT | Data::Dumper
+EXT | Data::Validate::URI
+EXT | DateTime
+EXT | DateTime::Duration
+EXT | DateTime::Format::Strptime
+EXT | DBI
+EXT | Digest::MD5
+EXT | Digest::MD5::File
+EXT | Digest::SHA1
+EXT | Fcntl
+EXT | File::Basename
+EXT | File::Copy
+EXT | File::ExtAttr
+EXT | File::Path
+EXT | File::Spec
+EXT | File::Spec::Functions
+EXT | File::stat
+EXT | File::Temp
+EXT | Getopt::Long
+EXT | Getopt::Std
+EXT | IO::Handle
+EXT | IPC::Cmd
+EXT | IPC::Run
+EXT | Log::Log4perl
+EXT | LWP::UserAgent
+EXT | Math::Trig
+EXT | Module::Build
+EXT | Net::Server::Daemonize
+EXT | Params::Validate
+EXT | Pod::Usage
+EXT | POSIX
+EXT | Regexp::Common
+EXT | SOAP::Lite
+EXT | SOAP::Transport::HTTP
+EXT | SQL::Interp
+EXT | Statistics::Descriptive
+EXT | Storable
+EXT | Sys::Hostname
+EXT | Template
+EXT | Term::ReadKey
+EXT | Time::HiRes
+EXT | Time::Local
+EXT | URI
+EXT | URI::file
+EXT | YAML
+IPP | Console
+IPP | czartool::Burntool
+IPP | czartool::Config
+IPP | czartool::CzarDb
+IPP | czartool::DayMetrics
+IPP | czartool::Gpc1Db
+IPP | czartool::MetricsIndex
+IPP | czartool::MultiDayMetrics
+IPP | czartool::Nebulous
+IPP | czartool::Pantasks
+IPP | czartool::Plotter
+IPP | czartool::StageMetrics
+IPP | DataStore
+IPP | DataStore::file
+IPP | DataStore::File
+IPP | DataStore::File::Parser
+IPP | DataStore::FileSet
+IPP | DataStore::FileSet::Parser
+IPP | DataStore::Product
+IPP | DataStore::Product::Parser
+IPP | DataStore::Record
+IPP | DataStore::Response
+IPP | DataStore::Root
+IPP | DataStore::Utils
+IPP | dsdbh
+IPP | Nebulous::Client
+IPP | Nebulous::Client::Log
+IPP | Nebulous::Key
+IPP | Nebulous::Server
+IPP | Nebulous::Server::Config
+IPP | Nebulous::Server::Log
+IPP | Nebulous::Server::SOAP
+IPP | Nebulous::Server::SQL
+IPP | Nebulous::Util
+IPP | PS::IPP::Config
+IPP | PS::IPP::Metadata::Config
+IPP | PS::IPP::Metadata::List
+IPP | PS::IPP::Metadata::Parser
+IPP | PS::IPP::Metadata::Stats
+IPP | PS::IPP::PSFTP::Parser
+IPP | PS::IPP::PSFTP::Server
+IPP | PS::IPP::PStamp::Job
+IPP | PS::IPP::PStamp::RequestFile
+IPP | PStamp
+IPP | PStamp::Job
+IPP | Pstamp::RequestFile
+IPP | PStamp::RequestFile
+NOT | base
+NOT | constant
+NOT | overload
+NOT | strict
+NOT | vars
+NOT | warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/checkmodmods.sh
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/checkmodmods.sh	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/checkmodmods.sh	(revision 41109)
@@ -0,0 +1,23 @@
+#!/bin/csh -f
+
+# extract a complete list
+cat `ls *.mods.txt | grep -v all.mods.txt` | grep -v uncommon.mods.txt | awk '{print $2}' | sort | uniq > modmods.txt
+exit 0
+
+# now identify non-modules (e.g., strict), IPP modules, and external modules
+# e.g. NOT | constant, IPP | DataStore, EXT | IPC-Run
+
+# find the total number of refs to each EXT module
+
+rm -f ext.mods.cnt
+foreach mod (`grep "^EXT |" all.mods.txt | awk '{print $3}'`)
+  set Nmod = `grep $mod *.perllib.txt *.perlbin.txt | awk '{n+=$2}END{print n}'`
+  echo $mod $Nmod >> ext.mods.cnt
+end
+
+# find where uncommon modules are used (do we really need them?)
+rm -f uncommon.mods.txt
+foreach mod (`awk '($2 < 3){print $1}' ext.mods.cnt`)
+  grep $mod *.perllib.txt *.perlbin.txt >> uncommon.mods.txt
+end
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/checkperlmods.sh
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/checkperlmods.sh	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/checkperlmods.sh	(revision 41109)
@@ -0,0 +1,22 @@
+#!/bin/csh -f
+
+# extract a complete list
+# cat *.perllib.txt *.perlbin.txt | awk '{print $2}' | sort | uniq > all.mods.txt
+
+# now identify non-modules (e.g., strict), IPP modules, and external modules
+# e.g. NOT | constant, IPP | DataStore, EXT | IPC-Run
+
+# find the total number of refs to each EXT module
+
+rm -f ext.mods.cnt
+foreach mod (`grep "^EXT |" all.mods.txt | awk '{print $3}'`)
+  set Nmod = `grep $mod *.perllib.txt *.perlbin.txt | awk '{n+=$2}END{print n}'`
+  echo $mod $Nmod >> ext.mods.cnt
+end
+
+# find where uncommon modules are used (do we really need them?)
+rm -f uncommon.mods.txt
+foreach mod (`awk '($2 < 3){print $1}' ext.mods.cnt`)
+  grep $mod *.perllib.txt *.perlbin.txt >> uncommon.mods.txt
+end
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/console.perllib.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/console.perllib.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/console.perllib.txt	(revision 41109)
@@ -0,0 +1,6 @@
+      1 Config::YAML
+      1 Console
+      1 Params::Validate
+      1 strict
+      1 vars
+      1 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ext.mods.cnt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ext.mods.cnt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ext.mods.cnt	(revision 41109)
@@ -0,0 +1,54 @@
+Apache2::Const 1
+Astro::FITS::CFITSIO 19
+Cache::File 2
+Cache::Memcached 2
+Carp 136
+CGI 2
+CGI::Pretty 1
+Config::YAML 2
+Cwd 4
+Data::Dumper 34
+Data::Validate::URI 6
+DateTime 50
+DateTime::Duration 2
+DateTime::Format::Strptime 2
+DBI 37
+Digest::MD5 24
+Digest::MD5::File 17
+Digest::SHA1 1
+Fcntl 1
+File::Basename 84
+File::Copy 32
+File::ExtAttr 1
+File::Path 3
+File::Spec 22
+File::Spec::Functions 1
+File::stat 2
+File::Temp 88
+Getopt::Long 234
+Getopt::Std 1
+IO::Handle 3
+IPC::Cmd 172
+IPC::Run 4
+Log::Log4perl 7
+LWP::UserAgent 4
+Math::Trig 10
+Module::Build 1
+Net::Server::Daemonize 3
+Params::Validate 15
+Pod::Usage 205
+POSIX 25
+Regexp::Common 1
+SOAP::Lite 2
+SOAP::Transport::HTTP 1
+SQL::Interp 2
+Statistics::Descriptive 3
+Storable 5
+Sys::Hostname 106
+Template 1
+Term::ReadKey 1
+Time::HiRes 4
+Time::Local 5
+URI 32
+URI::file 9
+YAML 3
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/get.allperl.sh
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/get.allperl.sh	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/get.allperl.sh	(revision 41109)
@@ -0,0 +1,31 @@
+#!/bin/csh -f
+
+set liblist = ""
+set liblist = "$liblist Nebulous"
+set liblist = "$liblist Nebulous-Server"
+set liblist = "$liblist DataStore"
+set liblist = "$liblist DataStoreServer"
+set liblist = "$liblist console "
+set liblist = "$liblist PS-IPP-Config"
+set liblist = "$liblist PS-IPP-Metadata-Config"
+set liblist = "$liblist PS-IPP-MetaDB"
+set liblist = "$liblist PS-IPP-PSFTP"
+set liblist = "$liblist PS-IPP-PStamp"
+foreach lib ($liblist)
+  get.perlmods.sh lib ../$lib > perllibs/$lib.perllib.txt
+end  
+
+set binlist = ""
+set binlist = "$binlist Nebulous/bin"
+set binlist = "$binlist Nebulous-Server/bin"
+set binlist = "$binlist DataStore/scripts"
+set binlist = "$binlist DataStoreServer/scripts"
+set binlist = "$binlist ippMonitor"
+set binlist = "$binlist ippScripts"
+set binlist = "$binlist pstamp/scripts"
+foreach bin ($binlist) 
+  set base = `echo $bin | awk -F/ '{print $1}'`
+  get.perlmods.sh bin ../$bin > perllibs/$base.perlbin.txt
+end  
+
+get.perlmods.sh file ../glueforge/glueforge.in > perllibs/glueforge.perlbin.txt
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/get.modmods.sh
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/get.modmods.sh	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/get.modmods.sh	(revision 41109)
@@ -0,0 +1,7 @@
+#!/bin/csh -f
+
+foreach ball (`grep -v "^#" ipp-test.perl | prcol 3`)
+  tar xvzf $ball
+  set topdir = `echo $ball | sed s/.tar.gz//`
+  get.perlmods.sh lib $topdir > $topdir.mods.txt
+end
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/get.perlmods.sh
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/get.perlmods.sh	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/get.perlmods.sh	(revision 41109)
@@ -0,0 +1,49 @@
+#!/bin/csh -f
+
+if ($#argv != 2) then
+   echo "USAGE: get.perlmods.sh (mode) (topdir)"
+   exit 2
+endif
+
+# mode = bin, lib, file
+
+# find the perl module files (*.pm) below the topdir
+
+set mode = $1
+set topdir = $2
+
+if ("$mode" == "lib") then
+  set tmpout = `mktemp`
+  set list = `find $topdir -name "*.pm"`
+  foreach file ($list)
+    grep "^\s*use " $file | tr ';' ' ' | awk '{print $2}' >> $tmpout
+  end
+
+  sort $tmpout | uniq -c
+  exit 0
+endif
+
+if ("$mode" == "bin") then
+  set tmpout = `mktemp`
+  foreach file ($topdir/*)
+    grep "^\s*use " $file | tr ';' ' ' | awk '{print $2}' >> $tmpout
+  end
+  set list = `find $topdir -name "*.pl"`
+  foreach file ($list)
+    grep "^\s*use " $file | tr ';' ' ' | awk '{print $2}' >> $tmpout
+  end
+
+  sort $tmpout | uniq -c
+  exit 0
+endif
+
+if ("$mode" == "file") then
+  set tmpout = `mktemp`
+  grep "^\s*use " $topdir | tr ';' ' ' | awk '{print $2}' >> $tmpout
+
+  sort $tmpout | uniq -c
+  exit 0
+endif
+
+echo "unknown mode $mode"
+exit 2
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/glueforge.perlbin.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/glueforge.perlbin.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/glueforge.perlbin.txt	(revision 41109)
@@ -0,0 +1,7 @@
+      1 Getopt::Long
+      1 Pod::Usage
+      1 PS::IPP::Metadata::Config
+      1 strict
+      1 Template
+      1 vars
+      1 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-3.3-test.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-3.3-test.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-3.3-test.perl	(revision 41109)
@@ -0,0 +1,242 @@
+
+## these are Level 3 modules: those required by the modules required by modules required by IPP code
+  00  Module::Build                 Module-Build-0.4224.tar.gz               0              NONE      NONE - needed by Class::Inspector, probably others
+
+## these are Level 2 modules: those required by the modules required by IPP code
+  01  AnyEvent                      AnyEvent-7.15.tar.gz                     0              NONE      NONE
+  01  Authen::NTLM                  NTLM-1.09.tar.gz			     0              NONE      NONE
+  01  AutoLoader                    AutoLoader-5.74.tar.gz		     0              NONE      NONE
+  01  Class::Inspector              Class-Inspector-1.34.tar.gz		     1.34           NONE      NONE
+  01  Class::Prototyped             Class-Prototyped-1.13.tar.gz	     0              NONE      NONE
+  01  Data::Dump                    Data-Dump-1.23.tar.gz		     0              NONE      NONE
+  01  Data::Validate::Domain        Data-Validate-Domain-0.14.tar.gz	     0              NONE      NONE
+  01  Date::Parse                   TimeDate-2.30.tar.gz		     0              NONE      NONE
+  01  Devel::CheckOS                Devel-CheckOS-1.81.tar.gz		     0              NONE      NONE
+  01  Dist::CheckConflicts          Dist-CheckConflicts-0.11.tar.gz	     0              NONE      NONE
+  01  ExtUtils::TBone               ExtUtils-TBone-1.124.tar.gz		     0              NONE      NONE
+  01  File::Listing                 File-Listing-6.04.tar.gz		     0              NONE      NONE
+  01  File::NFSLock                 File-NFSLock-1.29.tar.gz		     0              NONE      NONE
+  01  Heap::Elem                    Heap-0.80.tar.gz			     0              NONE      NONE
+  01  HTTP::Date                    HTTP-Date-6.02.tar.gz		     0              NONE      NONE
+  01  HTTP::Negotiate               HTTP-Negotiate-6.01.tar.gz		     6.01           NONE      NONE
+  01  HTTP::Request                 HTTP-Message-6.18.tar.gz		     6.18           NONE      NONE
+  01  IO::Pty                       IO-Tty-1.12.tar.gz			     1.12           NONE      NONE
+  01  IO::String                    IO-String-1.08.tar.gz		     1.08           NONE      NONE
+  01  List::MoreUtils               List-MoreUtils-0.428.tar.gz		     0.428          NONE      NONE
+  01  MIME::Entity                  MIME-tools-5.509.tar.gz		     0              NONE      NONE
+  01  MLDBM                         MLDBM-2.05.tar.gz			     0              NONE      NONE
+  01  Module::Implementation        Module-Implementation-0.09.tar.gz	     0              NONE      NONE
+  01  Module::Metadata              Module-Metadata-1.000033.tar.gz	     0              NONE      NONE
+  01  Perl::OSType                  Perl-OSType-1.010.tar.gz		     0              NONE      NONE
+  01  Pod::POM                      Pod-POM-2.01.tar.gz			     0              NONE      NONE
+  01  Specio                        Specio-0.43.tar.gz			     0              NONE      NONE
+  01  Test::Fatal                   Test-Fatal-0.014.tar.gz		     0              NONE      NONE
+  01  Tie::CPHash                   Tie-CPHash-2.000.tar.gz		     0              NONE      NONE
+  01  Try::Tiny                     Try-Tiny-0.30.tar.gz		     0              NONE      NONE
+
+  02  Class::Singleton              Class-Singleton-1.5.tar.gz		     0              NONE      NONE
+  02  Date::Manip                   Date-Manip-6.76.tar.gz		     0              NONE      NONE
+  02  Eval::Closure                 Eval-Closure-0.14.tar.gz		     0              NONE      NONE
+  02  File::ShareDir::Install       File-ShareDir-Install-0.13.tar.gz	     0              NONE      NONE
+  02  IO::Pipely                    IO-Pipely-0.005.tar.gz		     0              NONE      NONE
+  02  IPC::Run3                     IPC-Run3-0.048.tar.gz		     0              NONE      NONE
+  02  MIME::Types                   MIME-Types-2.17.tar.gz		     0              NONE      NONE
+  02  NetAddr::IP                   NetAddr-IP-4.079.tar.gz		     0              NONE      NONE
+  02  Number::Compare               Number-Compare-0.03.tar.gz		     0              NONE      NONE
+  02  POE::Test::Loops              POE-Test-Loops-1.360.tar.gz		     0              NONE      NONE
+  02  Params::Util                  Params-Util-1.07.tar.gz		     0              NONE      NONE
+  02  Path::Tiny                    Path-Tiny-0.108.tar.gz		     0              NONE      NONE
+  02  Sub::Identify                 Sub-Identify-0.14.tar.gz		     0              NONE      NONE
+  02  Sub::Install                  Sub-Install-0.928.tar.gz		     0              NONE      NONE
+  02  Test2::Plugin::NoWarnings     Test2-Plugin-NoWarnings-0.06.tar.gz	     0              NONE      NONE
+  02  Test2::Require::Module        Test2-Suite-0.000119.tar.gz		     0              NONE      NONE
+  02  Test::Needs                   Test-Needs-0.002006.tar.gz		     0              NONE      NONE
+  02  Test::Requires                Test-Requires-0.10.tar.gz		     0              NONE      NONE
+  02  Test::Without::Module         Test-Without-Module-0.20.tar.gz	     0              NONE      NONE
+  02  Text::Glob                    Text-Glob-0.11.tar.gz		     0              NONE      NONE
+  02  Text::Template                Text-Template-1.55.tar.gz		     0              NONE      NONE
+  02  XML::Parser::PerlSAX          libxml-perl-0.08.tar.gz 		     0              NONE      NONE
+  02  XML::RegExp                   XML-RegExp-0.04.tar.gz		     0              NONE      NONE
+
+  03  CPAN::Meta::Check             CPAN-Meta-Check-0.014.tar.gz             0              NONE      NONE
+  03  Class::Data::Inheritable      Class-Data-Inheritable-0.08.tar.gz	     0              NONE      NONE
+  03  Devel::StackTrace             Devel-StackTrace-2.03.tar.gz	     0              NONE      NONE
+  03  MRO::Compat                   MRO-Compat-0.13.tar.gz		     0              NONE      NONE
+  03  Package::Stash                Package-Stash-0.38.tar.gz		     0              NONE      NONE
+  03  Role::Tiny                    Role-Tiny-2.000006.tar.gz                0              NONE      NONE
+  03  Spiffy                        Spiffy-0.46.tar.gz			     0              NONE      NONE
+  03  Sub::Exporter::Progressive    Sub-Exporter-Progressive-0.001013.tar.gz 0              NONE      NONE
+  03  Sub::Uplevel                  Sub-Uplevel-0.2800.tar.gz		     0              NONE      NONE
+  03  Test::FailWarnings            Test-FailWarnings-0.008.tar.gz	     0              NONE      NONE
+  03  Test::File::ShareDir          Test-File-ShareDir-1.001002.tar.gz       0              NONE      NONE
+  03  Test::Warnings                Test-Warnings-0.026.tar.gz		     0              NONE      NONE
+  03  Text::Diff                    Text-Diff-1.45.tar.gz		     0              NONE      NONE
+  03  Variable::Magic               Variable-Magic-0.62.tar.gz               0              NONE      NONE
+
+  03a Data::OptList                 Data-OptList-0.110.tar.gz		     0              NONE      NONE -- Sub::Install
+  03b Sub::Exporter                 Sub-Exporter-0.987.tar.gz		     0              NONE      NONE -- Data::OptList, Params::Util, Sub::Install
+
+# 04  Data::Section                 Data-Section-0.200007.tar.gz	     0              NONE      NONE -- MRO::Compat Test::FailWarnings, Sub::Exporter [needed?]
+  04  Devel::GlobalDestruction      Devel-GlobalDestruction-0.14.tar.gz	     0              NONE      NONE -- Sub::Exporter::Progressive
+  04  Exception::Class              Exception-Class-1.44.tar.gz		     0              NONE      NONE -- Class::Data::Inheritable, Devel::StackTrace
+  04  Test::Base                    Test-Base-0.89.tar.gz		     0              NONE      NONE -- Spiffy, Text::Diff
+  04  Test::Warn                    Test-Warn-0.36.tar.gz		     0              NONE      NONE -- Sub::Uplevel
+  04  B::Hooks::EndOfScope          B-Hooks-EndOfScope-0.24.tar.gz           0              NONE      NONE -- Sub::Exporter::Progressive, Variable::Magic
+
+
+  # this sequence is important, and must folow 04
+  04  namespace::clean              namespace-clean-0.27.tar.gz              0              NONE      NONE -- B::Hooks::EndOfScope, Package::Stash
+  08  namespace::autoclean          namespace-autoclean-0.28.tar.gz	     0              NONE      NONE -- B::Hooks::EndOfScope, Sub::Identify, Test::Requires, namespace::clean
+  08  Params::ValidationCompiler    Params-ValidationCompiler-0.30.tar.gz    0              NONE      NONE -- Eval::Closure, Exception::Class, Specio, Test2::Plugin::NoWarnings, Test2::Require::Module, Test2::V0, Test::Without::Module
+  04  DateTime::Locale              DateTime-Locale-1.24.tar.gz		     0              NONE      NONE -- Role::Tiny, namespace::autoclean, Params::ValidationCompiler
+
+## this order matters:
+  09  DateTime::TimeZone            DateTime-TimeZone-2.34.tar.gz	     0              NONE      NONE -- Class::Singleton, Params::ValidationCompiler, Specio::Library::Builtins, Specio::Library::String, Test::Fatal, Test::Requires, namespace::autoclean,
+  06  DateTime                      DateTime-1.50.tar.gz                     0              NONE      NONE -- CPAN::Meta::Check, DateTime::Locale, Test::Warnings
+  05  DateTime::Format::Strptime    DateTime-Format-Strptime-1.76.tar.gz     1.76           NONE      NONE -- DateTime::Locale, Test::Warnings
+## DateTime complains about DateTime::Format::Strptime with unknown format but succeeds
+## DateTime::Format::Strptime requires DateTime
+
+  08  Data::Validate::IP            Data-Validate-IP-0.27.tar.gz	     0              NONE      NONE -- NetAddr::IP, Test::Requires
+  06  Data::Validate::URI           Data-Validate-URI-0.07.tar.gz            0              NONE      NONE -- Data::Validate::IP
+
+# these modules are required by IPP and do NOT depend on modules above (REALLY? NONE?)
+  07  Astro::FITS::CFITSIO          Astro-FITS-CFITSIO-1.12.tar.gz           0              NONE      NONE -- libcfitsio
+  07  Cache                         Cache-2.11.tar.gz                        0              NONE      NONE
+  07  YAML                          YAML-1.27.tar.gz                         0              NONE      NONE -- y [verify these] (not needed)
+  07  Config::YAML                  Config-YAML-1.42.tar.gz                  0              NONE      NONE
+  07  DBI                           DBI-1.642.tar.gz                         0              NONE      NONE
+  07  Digest::MD5::File             Digest-MD5-File-0.08.tar.gz              0              NONE      NONE
+  07  IPC::Run                      IPC-Run-20180523.0.tar.gz                20180523       NONE      NONE
+  07  LWP                           libwww-perl-6.38.tar.gz                  6.38           NONE      NONE
+  07  Log::Log4perl                 Log-Log4perl-1.49.tar.gz                 0              NONE      NONE
+  07  Params::Validate              Params-Validate-1.29.tar.gz              0              NONE      NONE
+  07  SOAP::Lite                    SOAP-Lite-1.27.tar.gz                    0              NONE      NONE -- yes,yes,no [verify these] (not needed)
+  07  Statistics::Descriptive       Statistics-Descriptive-3.0702.tar.gz     0              NONE      NONE
+  07  Template                      Template-Toolkit-2.28.tar.gz             0              NONE      y,y  -- (build XStash, use XStash) : was n,n
+## a response is needed: (n,n) or (y,y) : (build XStash, use XStash)
+  07  URI                           URI-1.76.tar.gz                          1.76           NONE      NONE
+
+# these modules depend on modules in groups 00 - 03
+  08  DBD::Mock                     DBD-Mock-1.45.tar.gz		     0              NONE      NONE -- DBI
+  08  DBIx::Interp                  SQL-Interp-1.24.tar.gz		     0              NONE      NONE -- DBI
+  08  DBIx::Simple                  DBIx-Simple-1.37.tar.gz		     0              NONE      NONE -- DBI
+  08  File::Find::Rule              File-Find-Rule-0.34.tar.gz		     0              NONE      NONE -- Number::Compare, Text::Glob
+
+  09  Log::Dispatch::File           Log-Dispatch-2.68.tar.gz		     0              NONE      NONE -- Devel::GlobalDestruction, IPC::Run3, Params::ValidationCompiler, Specio, Test::Fatal, Test::Needs, namespace::autoclean
+  08  Log::Dispatch::FileRotate     Log-Dispatch-FileRotate-1.36.tar.gz	     0              NONE      NONE -- Date::Manip, Path::Tiny, Test::Warn, Log::Dispatch::File
+
+  08  MIME::Lite                    MIME-Lite-3.030.tar.gz		     0              NONE      NONE -- MIME::Types
+  08  POE                           POE-1.367.tar.gz			     0              NONE      n    -- IO::Pipely, POE::Test::Loops
+## the response (n) says that we do not want to skip network tests
+  08  Test::YAML                    Test-YAML-1.07.tar.gz		     0              NONE      NONE -- Test::Base
+  08  XML::DOM                      XML-DOM-1.46.tar.gz                      0              NONE      NONE -- XML::Parser::PerlSAX, XML::RegExp
+
+# modules not actually needed:
+# 08  Software::License             Software-License-0.103014.tar.gz	     0              NONE      NONE -- Data::Section, Text::Template [needed?]
+# 08  Canary::Stability             Canary-Stability-2012.tar.gz	     0              NONE      NONE -- Class::Singleton [needed?]
+
+# build failures, not needed?
+# 04  Dist::Zilla::File::InMemory   Dist-Zilla-6.012.tar.gz		     0              NONE      NONE -- File::ShareDir::Install
+# 04  Coro                          Coro-6.54.tar.gz			     0              NONE      NONE -- Canary/Stability.pm -- complaining about perl version being too advanced
+# 00  BerkeleyDB                    BerkeleyDB-0.61.tar.gz		     0              NONE      NONE -- build failure
+# 00  Moose                         Moose-2.2011.tar.gz			     0              NONE      NONE -- build failure
+# 00  PlRPC                         PlRPC-0.2020.tar.gz			     0              NONE      NONE -- build failure
+
+# not needed on linux
+# 00  Win32API::File                Win32API-File-0.1203.tar.gz		     0              NONE      NONE
+# 00  Win32::Console::ANSI          Win32-Console-ANSI-1.11.tar.gz	     0              NONE      NONE
+# 00  Win32::ODBC                   Win32-ODBC-0.035.tar.gz		     0              NONE      NONE
+# 00  Win32::Process                Win32-Process-0.16.tar.gz		     0              NONE      NONE
+
+#GOT https://cpan.metacpan.org/authors/id/E/ET/ETHER/B-Hooks-EndOfScope-0.24.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/Canary-Stability-2012.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/S/SH/SHAY/Class-Singleton-1.5.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Data-OptList-0.110.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Data-Section-0.200007.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/S/SB/SBECK/Date-Manip-6.76.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/H/HA/HAARG/Devel-GlobalDestruction-0.14.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/D/DO/DOY/Eval-Closure-0.14.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Exception-Class-1.44.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/E/ET/ETHER/File-ShareDir-Install-0.13.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RC/RCAPUTO/IO-Pipely-0.005.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RJ/RJBS/IPC-Run3-0.048.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/M/MA/MARKOV/MIME-Types-2.17.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/M/MI/MIKER/NetAddr-IP-4.079.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/Number-Compare-0.03.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RC/RCAPUTO/POE-Test-Loops-1.360.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/A/AD/ADAMK/Params-Util-1.07.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Path-Tiny-0.108.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RG/RGARCIA/Sub-Identify-0.14.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Sub-Install-0.928.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Test2-Plugin-NoWarnings-0.06.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test2-Suite-0.000119.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/I/IN/INGY/Test-Base-0.89.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Test-Fatal-0.014.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/H/HA/HAARG/Test-Needs-0.002006.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/T/TO/TOKUHIROM/Test-Requires-0.10.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/B/BI/BIGJ/Test-Warn-0.36.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/C/CO/CORION/Test-Without-Module-0.20.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/Text-Glob-0.11.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/M/MS/MSCHOUT/Text-Template-1.55.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/K/KM/KMACLEOD/libxml-perl-0.08.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/XML-RegExp-0.04.tar.gz
+#GOT https://cpan.metacpan.org/authors/id/R/RI/RIBASUSHI/namespace-clean-0.27.tar.gz
+
+# prereq for Dist-Zilla (drop if we can)
+# App::Cmd::Command::version
+# App::Cmd::Setup
+# App::Cmd::Tester
+# App::Cmd::Tester::CaptureExternal
+# CPAN::Meta::Check
+# CPAN::Uploader
+# Class::Load
+# Config::INI::Reader
+# Config::MVP
+# Config::MVP::Assembler
+# Config::MVP::Assembler::WithBundles
+# Config::MVP::Reader
+# Config::MVP::Reader::Findable::ByExtension
+# Config::MVP::Reader::Finder
+# Config::MVP::Reader::INI
+# Config::MVP::Section
+# File::pushd
+# JSON::MaybeXS
+# Log::Dispatchouli
+# Mixin::Linewise::Readers
+# MooseX::LazyRequire
+# MooseX::Role::Parameterized
+# MooseX::SetOnce
+# MooseX::Types
+# MooseX::Types::Moose
+# MooseX::Types::Perl
+# PPI::Document
+# Perl::PrereqScanner
+# Pod::Eventual
+# String::Formatter
+# String::RewritePrefix
+# Sub::Exporter::ForMethods
+# Term::Encoding
+# Term::ReadKey
+# Test::Deep
+# Test::FailWarnings
+
+# Test::File::ShareDir
+#GOT https://cpan.metacpan.org/authors/id/K/KE/KENTNL/Test-File-ShareDir-1.001002.tar.gz  
+
+#GET https://cpan.metacpan.org/authors/id/L/LE/LEONT/CPAN-Meta-Check-0.014.tar.gz
+#GET https://cpan.metacpan.org/authors/id/T/TM/TMTM/Class-Data-Inheritable-0.08.tar.gz
+#GET https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Devel-StackTrace-2.03.tar.gz
+#GET https://cpan.metacpan.org/authors/id/H/HA/HAARG/MRO-Compat-0.13.tar.gz
+#GET https://cpan.metacpan.org/authors/id/E/ET/ETHER/Package-Stash-0.38.tar.gz
+#GET https://cpan.metacpan.org/authors/id/I/IN/INGY/Spiffy-0.46.tar.gz
+#GET https://cpan.metacpan.org/authors/id/F/FR/FREW/Sub-Exporter-Progressive-0.001013.tar.gz
+#GET https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.2800.tar.gz
+#GET https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Test-FailWarnings-0.008.tar.gz
+#GET https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Warnings-0.026.tar.gz
+#GET https://cpan.metacpan.org/authors/id/N/NE/NEILB/Text-Diff-1.45.tar.gz
+#GET https://cpan.metacpan.org/authors/id/V/VP/VPIT/Variable-Magic-0.62.tar.gz
+#GET https://cpan.metacpan.org/authors/id/H/HA/HAARG/Role-Tiny-2.000006.tar.gz
+
+#Class::Tiny
+#Scope::Guard
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-level1.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-level1.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-level1.txt	(revision 41109)
@@ -0,0 +1,57 @@
+# Here is a complete list of the EXTERNAL, NON-CORE Perl Modules used by IPP code
+#
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.12.tar.gz           0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/P/PR/PRATZLAFF/Astro-FITS-CFITSIO-1.12.tar.gz
+  56    Cache                          Cache-2.11.tar.gz                        0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/Cache-2.11.tar.gz
+  70    Config::YAML                   Config-YAML-1.42.tar.gz                  0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/M/MD/MDXI/Config-YAML-1.42.tar.gz [got it]
+  40    Data::Validate::URI            Data-Validate-URI-0.07.tar.gz            0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/S/SO/SONNEN/Data-Validate-URI-0.07.tar.gz
+  06    DateTime                       DateTime-1.50.tar.gz                     0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-1.50.tar.gz
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.76.tar.gz     0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-Format-Strptime-1.76.tar.gz
+  73    DBI                            DBI-1.642.tar.gz                         0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/T/TI/TIMB/DBI-1.642.tar.gz
+  27    Digest::MD5                    Digest-MD5-2.55.tar.gz                   0              NONE      NONE
+  CORE
+# https://cpan.metacpan.org/authors/id/G/GA/GAAS/Digest-MD5-2.55.tar.gz
+  38    Digest::MD5::File              Digest-MD5-File-0.08.tar.gz              0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/D/DM/DMUEY/Digest-MD5-File-0.08.tar.gz
+  55    IPC::Run                       IPC-Run-20180523.0.tar.gz                0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/T/TO/TODDR/IPC-Run-20180523.0.tar.gz
+  59    Log::Log4perl                  Log-Log4perl-1.49.tar.gz                 0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/M/MS/MSCHILLI/Log-Log4perl-1.49.tar.gz
+  37    LWP                            libwww-perl-6.38.tar.gz                  0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/O/OA/OALDERS/libwww-perl-6.38.tar.gz
+  00    Module::Build                  Module-Build-0.4224.tar.gz               0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-0.4224.tar.gz
+  02    Params::Validate               Params-Validate-1.29.tar.gz              0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Params-Validate-1.29.tar.gz
+  58    SOAP::Lite                     SOAP-Lite-1.27.tar.gz                    0              NONE      yes,yes,no [verify these]
+# https://cpan.metacpan.org/authors/id/P/PH/PHRED/SOAP-Lite-1.27.tar.gz
+  78    SQL::Interp                    SQL-Interp-1.24.tar.gz                   0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/M/MA/MARKSTOS/SQL-Interp-1.24.tar.gz 
+  46    Statistics::Descriptive        Statistics-Descriptive-3.0702.tar.gz     0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/Statistics-Descriptive-3.0702.tar.gz
+  45    Template                       Template-Toolkit-2.28.tar.gz             0              NONE      n,n [verify these]
+# https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/Template-Toolkit-2.28.tar.gz
+  21    URI                            URI-1.76.tar.gz                          0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/O/OA/OALDERS/URI-1.76.tar.gz
+  42    YAML                           YAML-1.27.tar.gz                         0              NONE      y   [verify these]
+# https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-1.27.tar.gz
+
+# these are only used by Nebulous-Server (do not include in standard build)
+# File::ExtAttr
+# Net::Server::Daemonize
+# SOAP::Transport::HTTP
+
+#  50    Digest::SHA1                   Digest-SHA1-2.13.tar.gz                  0              NONE      NONE
+# https://cpan.metacpan.org/authors/id/G/GA/GAAS/Digest-SHA1-2.13.tar.gz
+
+# NOTE: only used by DataStoreServer (do not include in standard build)
+# Term::ReadKey
+
+# NOTE: only used by ippMonitor (do not include in standard build)
+# CGI
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-level2.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-level2.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-level2.txt	(revision 41109)
@@ -0,0 +1,116 @@
+## these are Level 2 modules: those required by the modules required by IPP code
+## any modules marked 'HAVE' are already Level 1 modules
+
+  00   AnyEvent	      AnyEvent-7.15.tar.gz
+  00   Authen::NTLM   NTLM-1.09.tar.gz
+  00   AutoLoader     AutoLoader-5.74.tar.gz
+  00   BerkeleyDB     BerkeleyDB-0.61.tar.gz
+  00   Class::Inspector  Class-Inspector-1.34.tar.gz
+  00   Class::Prototyped  Class-Prototyped-1.13.tar.gz
+  00   Coro  Coro-6.54.tar.gz
+  00   Data::Dump   Data-Dump-1.23.tar.gz
+  00   Data::Validate::Domain  Data-Validate-Domain-0.14.tar.gz
+  00   Data::Validate::IP      Data-Validate-IP-0.27.tar.gz
+  00   Date::Parse             TimeDate-2.30.tar.gz
+  00   DateTime::Locale        DateTime-Locale-1.24.tar.gz
+  00   DateTime::TimeZone      DateTime-TimeZone-2.34.tar.gz
+  00   DBD::Mock               DBD-Mock-1.45.tar.gz
+  00   DBIx::Interp            SQL-Interp-1.24.tar.gz
+  00   DBIx::Simple            DBIx-Simple-1.37.tar.gz
+  00   Devel::CheckOS          Devel-CheckOS-1.81.tar.gz
+  00   Dist::CheckConflicts    Dist-CheckConflicts-0.11.tar.gz
+  00   Dist::Zilla::File::InMemory  Dist-Zilla-6.012.tar.gz
+  00   ExtUtils::TBone              ExtUtils-TBone-1.124.tar.gz
+  00   File::Find::Rule             File-Find-Rule-0.34.tar.gz
+  00   File::Listing                File-Listing-6.04.tar.gz
+  00   File::NFSLock                File-NFSLock-1.29.tar.gz
+  00   Heap::Elem                   Heap-0.80.tar.gz
+  00   HTTP::Date                   HTTP-Date-6.02.tar.gz
+  00   HTTP::Negotiate              HTTP-Negotiate-6.01.tar.gz
+  00   HTTP::Request                HTTP-Message-6.18.tar.gz
+  00   IO::Pty                      IO-Tty-1.12.tar.gz
+  00   IO::String                   IO-String-1.08.tar.gz
+  00   List::MoreUtils              List-MoreUtils-0.428.tar.gz
+  00   Log::Dispatch::File          Log-Dispatch-2.68.tar.gz
+  00   Log::Dispatch::FileRotate    Log-Dispatch-FileRotate-1.36.tar.gz
+  00   MIME::Entity                 MIME-tools-5.509.tar.gz
+  00   MIME::Lite                   MIME-Lite-3.030.tar.gz
+  00   MLDBM                        MLDBM-2.05.tar.gz
+  00   Module::Implementation       Module-Implementation-0.09.tar.gz
+  00   Module::Metadata             Module-Metadata-1.000033.tar.gz
+  00   Moose                        Moose-2.2011.tar.gz
+  00   namespace::autoclean         namespace-autoclean-0.28.tar.gz
+  00   Params::ValidationCompiler   Params-ValidationCompiler-0.30.tar.gz
+  00   Perl::OSType                 Perl-OSType-1.010.tar.gz
+  00   Pod::POM                     Pod-POM-2.01.tar.gz
+  00   POE                          POE-1.367.tar.gz
+  00  PlRPC                         PlRPC-0.2020.tar.gz
+  00  Software::License             Software-License-0.103014.tar.gz
+  00  Specio                        Specio-0.43.tar.gz
+  00  Sub::Exporter                 Sub-Exporter-0.987.tar.gz
+  00  Test::Fatal                   Test-Fatal-0.014.tar.gz
+  00  Test::YAML                    Test-YAML-1.07.tar.gz
+  00  Tie::CPHash                   Tie-CPHash-2.000.tar.gz
+  00  Try::Tiny                     Try-Tiny-0.30.tar.gz
+  00  Win32API::File                Win32API-File-0.1203.tar.gz
+  00  Win32::Console::ANSI          Win32-Console-ANSI-1.11.tar.gz
+  00  Win32::ODBC                   Win32-ODBC-0.035.tar.gz
+  00  Win32::Process                Win32-Process-0.16.tar.gz
+  00  XML::DOM                      XML-DOM-1.46.tar.gz
+
+# https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/AnyEvent-7.15.tar.gz 
+# https://cpan.metacpan.org/authors/id/N/NB/NBEBOUT/NTLM-1.09.tar.gz 
+# https://cpan.metacpan.org/authors/id/S/SM/SMUELLER/AutoLoader-5.74.tar.gz 
+# https://cpan.metacpan.org/authors/id/P/PM/PMQS/BerkeleyDB-0.61.tar.gz  
+# https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Class-Inspector-1.34.tar.gz 
+# https://cpan.metacpan.org/authors/id/T/TE/TEVERETT/Class-Prototyped-1.13.tar.gz 
+# https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/Coro-6.54.tar.gz  
+# https://cpan.metacpan.org/authors/id/G/GA/GAAS/Data-Dump-1.23.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Data-Validate-Domain-0.14.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Data-Validate-IP-0.27.tar.gz  
+# https://cpan.metacpan.org/authors/id/G/GB/GBARR/TimeDate-2.30.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-1.24.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-TimeZone-2.34.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DI/DICHI/DBD-Mock/DBD-Mock-1.45.tar.gz  
+# https://cpan.metacpan.org/authors/id/M/MA/MARKSTOS/SQL-Interp-1.24.tar.gz  
+# https://cpan.metacpan.org/authors/id/J/JU/JUERD/DBIx-Simple-1.37.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DC/DCANTRELL/Devel-CheckOS-1.81.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DO/DOY/Dist-CheckConflicts-0.11.tar.gz    
+# https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Dist-Zilla-6.012.tar.gz  
+# https://cpan.metacpan.org/authors/id/E/ER/ERYQ/ExtUtils-TBone-1.124.tar.gz  
+# https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/File-Find-Rule-0.34.tar.gz  
+# https://cpan.metacpan.org/authors/id/G/GA/GAAS/File-Listing-6.04.tar.gz  
+# https://cpan.metacpan.org/authors/id/B/BB/BBB/File-NFSLock-1.29.tar.gz  
+# https://cpan.metacpan.org/authors/id/J/JM/JMM/Heap-0.80.tar.gz  
+# https://cpan.metacpan.org/authors/id/G/GA/GAAS/HTTP-Date-6.02.tar.gz  
+# https://cpan.metacpan.org/authors/id/G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz  
+# https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Message-6.18.tar.gz  
+# https://cpan.metacpan.org/authors/id/T/TO/TODDR/IO-Tty-1.12.tar.gz  
+# https://cpan.metacpan.org/authors/id/G/GA/GAAS/IO-String-1.08.tar.gz  
+# https://cpan.metacpan.org/authors/id/R/RE/REHSACK/List-MoreUtils-0.428.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Log-Dispatch-2.68.tar.gz  
+# https://cpan.metacpan.org/authors/id/M/MS/MSCHOUT/Log-Dispatch-FileRotate-1.36.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DS/DSKOLL/MIME-tools-5.509.tar.gz  
+# https://cpan.metacpan.org/authors/id/R/RJ/RJBS/MIME-Lite-3.030.tar.gz  
+# https://cpan.metacpan.org/authors/id/C/CH/CHORNY/MLDBM-2.05.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Module-Implementation-0.09.tar.gz  
+# https://cpan.metacpan.org/authors/id/E/ET/ETHER/Module-Metadata-1.000033.tar.gz  
+# https://cpan.metacpan.org/authors/id/E/ET/ETHER/Moose-2.2011.tar.gz  
+# https://cpan.metacpan.org/authors/id/E/ET/ETHER/namespace-autoclean-0.28.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Params-ValidationCompiler-0.30.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Perl-OSType-1.010.tar.gz  
+# https://cpan.metacpan.org/authors/id/N/NE/NEILB/Pod-POM-2.01.tar.gz  
+# https://cpan.metacpan.org/authors/id/R/RC/RCAPUTO/POE-1.367.tar.gz  
+# https://cpan.metacpan.org/authors/id/M/MN/MNOONING/PlRPC/PlRPC-0.2020.tar.gz  
+# https://cpan.metacpan.org/authors/id/L/LE/LEONT/Software-License-0.103014.tar.gz  
+# https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Specio-0.43.tar.gz  
+# https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Sub-Exporter-0.987.tar.gz  
+# https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Test-Fatal-0.014.tar.gz  
+# https://cpan.metacpan.org/authors/id/T/TI/TINITA/Test-YAML-1.07.tar.gz  
+# https://cpan.metacpan.org/authors/id/C/CJ/CJM/Tie-CPHash-2.000.tar.gz  
+# https://cpan.metacpan.org/authors/id/E/ET/ETHER/Try-Tiny-0.30.tar.gz  
+# https://cpan.metacpan.org/authors/id/C/CH/CHORNY/Win32API-File-0.1203.tar.gz  
+# https://cpan.metacpan.org/authors/id/J/JL/JLMOREL/Win32-Console-ANSI-1.11.tar.gz  
+# https://cpan.metacpan.org/authors/id/J/JD/JDB/Win32-ODBC-0.035.tar.gz  
+# https://cpan.metacpan.org/authors/id/J/JD/JDB/Win32-Process-0.16.tar.gz  
+# https://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/XML-DOM-1.46.tar.gz  
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-level3.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-level3.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ipp-level3.txt	(revision 41109)
@@ -0,0 +1,67 @@
+  00  B::Hooks::EndOfScope          B-Hooks-EndOfScope-0.24.tar.gz           0              NONE      NONE
+  00  Canary::Stability             Canary-Stability-2012.tar.gz	     0              NONE      NONE
+  00  Class::Singleton              Class-Singleton-1.5.tar.gz		     0              NONE      NONE
+  00  Data::OptList                 Data-OptList-0.110.tar.gz		     0              NONE      NONE
+  00  Data::Section                 Data-Section-0.200007.tar.gz	     0              NONE      NONE
+  00  Date::Manip                   Date-Manip-6.76.tar.gz		     0              NONE      NONE
+  00  Devel::GlobalDestruction      Devel-GlobalDestruction-0.14.tar.gz	     0              NONE      NONE
+  00  Eval::Closure                 Eval-Closure-0.14.tar.gz		     0              NONE      NONE
+  00  Exception::Class              Exception-Class-1.44.tar.gz		     0              NONE      NONE
+  00  File::ShareDir::Install       File-ShareDir-Install-0.13.tar.gz	     0              NONE      NONE
+  00  IO::Pipely                    IO-Pipely-0.005.tar.gz		     0              NONE      NONE
+  00  IPC::Run3                     IPC-Run3-0.048.tar.gz		     0              NONE      NONE
+  00  MIME::Types                   MIME-Types-2.17.tar.gz		     0              NONE      NONE
+  00  NetAddr::IP                   NetAddr-IP-4.079.tar.gz		     0              NONE      NONE
+  00  Number::Compare               Number-Compare-0.03.tar.gz		     0              NONE      NONE
+  00  POE::Test::Loops              POE-Test-Loops-1.360.tar.gz		     0              NONE      NONE
+  00  Params::Util                  Params-Util-1.07.tar.gz		     0              NONE      NONE
+  00  Path::Tiny                    Path-Tiny-0.108.tar.gz		     0              NONE      NONE
+  00  Sub::Identify                  Sub-Identify-0.14.tar.gz		     0              NONE      NONE
+  00  Sub::Install                  Sub-Install-0.928.tar.gz		     0              NONE      NONE
+  00  Test2::Plugin::NoWarnings     Test2-Plugin-NoWarnings-0.06.tar.gz	     0              NONE      NONE
+  00  Test2::Require::Module        Test2-Suite-0.000119.tar.gz		     0              NONE      NONE
+  00  Test::Base                    Test-Base-0.89.tar.gz		     0              NONE      NONE
+  00  Test::Fatal                   Test-Fatal-0.014.tar.gz		     0              NONE      NONE
+  00  Test::Needs                   Test-Needs-0.002006.tar.gz		     0              NONE      NONE
+  00 Test::Requires                 Test-Requires-0.10.tar.gz		     0              NONE      NONE
+  00 Test::Warn                     Test-Warn-0.36.tar.gz		     0              NONE      NONE
+  00 Test::Without::Module          Test-Without-Module-0.20.tar.gz	     0              NONE      NONE
+  00 Text::Glob                     Text-Glob-0.11.tar.gz		     0              NONE      NONE
+  00 Text::Template                 Text-Template-1.55.tar.gz		     0              NONE      NONE
+  00 XML::Parser::PerlSAX           libxml-perl-0.08.tar.gz 		     0              NONE      NONE
+  00 XML::RegExp                    XML-RegExp-0.04.tar.gz		     0              NONE      NONE
+  00 namespace::clean               namespace-clean-0.27.tar.gz              0              NONE      NONE
+
+#GET https://cpan.metacpan.org/authors/id/E/ET/ETHER/B-Hooks-EndOfScope-0.24.tar.gz
+#GET https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/Canary-Stability-2012.tar.gz
+#GET https://cpan.metacpan.org/authors/id/S/SH/SHAY/Class-Singleton-1.5.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Data-OptList-0.110.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Data-Section-0.200007.tar.gz
+#GET https://cpan.metacpan.org/authors/id/S/SB/SBECK/Date-Manip-6.76.tar.gz
+#GET https://cpan.metacpan.org/authors/id/H/HA/HAARG/Devel-GlobalDestruction-0.14.tar.gz
+#GET https://cpan.metacpan.org/authors/id/D/DO/DOY/Eval-Closure-0.14.tar.gz
+#GET https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Exception-Class-1.44.tar.gz
+#GET https://cpan.metacpan.org/authors/id/E/ET/ETHER/File-ShareDir-Install-0.13.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RC/RCAPUTO/IO-Pipely-0.005.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RJ/RJBS/IPC-Run3-0.048.tar.gz
+#GET https://cpan.metacpan.org/authors/id/M/MA/MARKOV/MIME-Types-2.17.tar.gz
+#GET https://cpan.metacpan.org/authors/id/M/MI/MIKER/NetAddr-IP-4.079.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/Number-Compare-0.03.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RC/RCAPUTO/POE-Test-Loops-1.360.tar.gz
+#GET https://cpan.metacpan.org/authors/id/A/AD/ADAMK/Params-Util-1.07.tar.gz
+#GET https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Path-Tiny-0.108.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RG/RGARCIA/Sub-Identify-0.14.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Sub-Install-0.928.tar.gz
+#GET https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Test2-Plugin-NoWarnings-0.06.tar.gz
+#GET https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test2-Suite-0.000119.tar.gz
+#GET https://cpan.metacpan.org/authors/id/I/IN/INGY/Test-Base-0.89.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Test-Fatal-0.014.tar.gz
+#GET https://cpan.metacpan.org/authors/id/H/HA/HAARG/Test-Needs-0.002006.tar.gz
+#GET https://cpan.metacpan.org/authors/id/T/TO/TOKUHIROM/Test-Requires-0.10.tar.gz
+#GET https://cpan.metacpan.org/authors/id/B/BI/BIGJ/Test-Warn-0.36.tar.gz
+#GET https://cpan.metacpan.org/authors/id/C/CO/CORION/Test-Without-Module-0.20.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/Text-Glob-0.11.tar.gz
+#GET https://cpan.metacpan.org/authors/id/M/MS/MSCHOUT/Text-Template-1.55.tar.gz
+#GET https://cpan.metacpan.org/authors/id/K/KM/KMACLEOD/libxml-perl-0.08.tar.gz
+#GET https://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/XML-RegExp-0.04.tar.gz
+#GET https://cpan.metacpan.org/authors/id/R/RI/RIBASUSHI/namespace-clean-0.27.tar.gz
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ippMonitor.perlbin.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ippMonitor.perlbin.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ippMonitor.perlbin.txt	(revision 41109)
@@ -0,0 +1,16 @@
+      1 CGI::Pretty
+      1 czartool::Burntool
+      6 czartool::Config
+      4 czartool::CzarDb
+      2 czartool::DayMetrics
+      3 czartool::Gpc1Db
+      2 czartool::MetricsIndex
+      1 czartool::MultiDayMetrics
+      2 czartool::Nebulous
+      3 czartool::Pantasks
+      3 czartool::Plotter
+      2 czartool::StageMetrics
+      9 Getopt::Long
+      4 POSIX
+      9 strict
+      9 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ippScripts.perlbin.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ippScripts.perlbin.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/ippScripts.perlbin.txt	(revision 41109)
@@ -0,0 +1,37 @@
+      4 Astro::FITS::CFITSIO
+      2 Cache::File
+     93 Carp
+     21 constant
+     27 Data::Dumper
+     46 DateTime
+      2 DateTime::Duration
+      2 DateTime::Format::Strptime
+     12 DBI
+      3 Digest::MD5
+     10 Digest::MD5::File
+     50 File::Basename
+      2 File::Copy
+     15 File::Spec
+     61 File::Temp
+    129 Getopt::Long
+      1 Getopt::Std
+      2 IO::Handle
+    122 IPC::Cmd
+      4 IPC::Run
+      4 Math::Trig
+      1 Module::Build
+      9 Nebulous::Client
+    128 Pod::Usage
+      1 POSIX
+    123 PS::IPP::Config
+     97 PS::IPP::Metadata::Config
+     94 PS::IPP::Metadata::List
+      2 PS::IPP::Metadata::Stats
+      2 Statistics::Descriptive
+      5 Storable
+    129 strict
+     71 Sys::Hostname
+      1 Time::Local
+      3 URI
+     78 vars
+    129 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/libwww-perl-6.38.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/libwww-perl-6.38.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/libwww-perl-6.38.mods.txt	(revision 41109)
@@ -0,0 +1,28 @@
+      1 an
+      1 Authen::NTLM
+     18 base
+      6 Carp
+      1 CGI
+      1 Data::Dump
+      1 Data::Dump::Trace
+      1 File::Listing
+      4 HTTP::Date
+      1 HTTP::Negotiate
+      2 HTTP::Request
+      1 HTTP::Request::Common
+      3 HTTP::Response
+      4 HTTP::Status
+      2 LWP
+      1 LWP::ConnCache
+      1 LWP::MediaTypes
+      1 LWP::Protocol
+      1 LWP::RobotUA
+      2 LWP::Simple
+      5 LWP::UserAgent
+      1 MIME::Base64
+      1 parent
+      1 Scalar::Util
+     21 strict
+      1 to
+      2 Try::Tiny
+      1 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modmods.note.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modmods.note.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modmods.note.txt	(revision 41109)
@@ -0,0 +1,11 @@
+
+DateTime has Moose, the,
+
+DBI has many odd options
+
+libwww : to, an?
+
+Log-Log4perl : C<$logger-E<gt>category?
+
+Module-Build
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modmods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modmods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modmods.txt	(revision 41109)
@@ -0,0 +1,407 @@
+## these are Level 2 modules: those required by the modules required by IPP code
+## any modules marked 'HAVE' are already Level 1 modules
+AnyEvent
+ https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/AnyEvent-7.15.tar.gz
+Astro::FITS::CFITSIO
+ HAVE
+Authen::NTLM
+ https://cpan.metacpan.org/authors/id/N/NB/NBEBOUT/NTLM-1.09.tar.gz
+AutoLoader
+ https://cpan.metacpan.org/authors/id/S/SM/SMUELLER/AutoLoader-5.74.tar.gz
+BerkeleyDB
+ https://cpan.metacpan.org/authors/id/P/PM/PMQS/BerkeleyDB-0.61.tar.gz 
+Cache
+ Cache::File
+ Cache::File::Entry
+ Cache::File::Heap
+ Cache::IOString
+ Cache::Memory
+ Cache::Memory::Entry
+ Cache::Memory::HeapElem
+ Cache::Null
+ Cache::Null::Entry
+ Cache::Tester
+ HAVE : Cache-2.11.tar.gz
+Carp
+ CORE
+CGI
+ HAVE
+Class::Inspector
+ https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Class-Inspector-1.34.tar.gz
+Class::Prototyped
+ https://cpan.metacpan.org/authors/id/T/TE/TEVERETT/Class-Prototyped-1.13.tar.gz
+Config
+ CORE
+Config::YAML
+ HAVE
+Coro
+ Coro::Handle
+ Coro::Select
+  https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/Coro-6.54.tar.gz
+Cwd
+ CORE
+Data::Dump
+  Data::Dump::Trace
+  https://cpan.metacpan.org/authors/id/G/GA/GAAS/Data-Dump-1.23.tar.gz
+Data::Dumper
+ CORE
+Data::Validate::Domain
+  https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Data-Validate-Domain-0.14.tar.gz
+Data::Validate::IP
+  https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Data-Validate-IP-0.27.tar.gz
+Data::Validate::URI
+  HAVE
+Date::Parse
+  https://cpan.metacpan.org/authors/id/G/GB/GBARR/TimeDate-2.30.tar.gz
+DateTime
+  DateTime::Duration
+  DateTime::Helpers
+  DateTime::LeapSecond
+  DateTime::Types
+  HAVE https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-1.50.tar.gz
+DateTime::Format::Strptime
+  DateTime::Format::Strptime::Types
+  HAVE
+DateTime::Locale
+  DateTime::Locale::Base
+  DateTime::Locale::FromData
+  https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-1.24.tar.gz
+DateTime::TimeZone
+  https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-TimeZone-2.34.tar.gz
+DBD::Mock
+  https://cpan.metacpan.org/authors/id/D/DI/DICHI/DBD-Mock/DBD-Mock-1.45.tar.gz
+DB_File
+  https://cpan.metacpan.org/authors/id/P/PM/PMQS/DB_File-1.851.tar.gz
+  CORE
+DBI
+  DBD::Mem
+  DBI::Const::GetInfo::ANSI
+  DBI::Const::GetInfo::ODBC
+  DBI::Const::GetInfoType
+  DBI::Gofer::Execute
+  DBI::Gofer::Request
+  DBI::Gofer::Response
+  DBI::Gofer::Serializer::DataDumper
+  DBI::Gofer::Serializer::Storable
+  DBI::Profile
+  DBI::ProfileDumper
+  DBI::ProxyServer
+  DBI::SQL::Nano
+  DBI::W32ODBC
+  Win32::DBIODBC
+  HAVE https://cpan.metacpan.org/authors/id/T/TI/TIMB/DBI-1.642.tar.gz
+DBIx::Interp
+  https://cpan.metacpan.org/authors/id/M/MA/MARKSTOS/SQL-Interp-1.24.tar.gz
+DBIx::Simple
+  https://cpan.metacpan.org/authors/id/J/JU/JUERD/DBIx-Simple-1.37.tar.gz
+Devel::CheckOS
+  Devel::AssertOS
+  https://cpan.metacpan.org/authors/id/D/DC/DCANTRELL/Devel-CheckOS-1.81.tar.gz
+Digest::MD5
+  CORE https://cpan.metacpan.org/authors/id/G/GA/GAAS/Digest-MD5-2.55.tar.gz
+Digest::MD5::File
+  HAVE https://cpan.metacpan.org/authors/id/D/DM/DMUEY/Digest-MD5-File-0.08.tar.gz
+Digest::SHA
+  CORE https://cpan.metacpan.org/authors/id/M/MS/MSHELOR/Digest-SHA-6.02.tar.gz  
+Dist::CheckConflicts
+  https://cpan.metacpan.org/authors/id/D/DO/DOY/Dist-CheckConflicts-0.11.tar.gz  
+DistGen -- ???
+Dist::Zilla::File::InMemory
+  https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Dist-Zilla-6.012.tar.gz
+DynaLoader
+  CORE
+Encode
+  CORE
+Errno
+  CORE
+Exception -- ??? maybe not needed?
+Exporter
+  CORE
+ExtUtils::Install
+  CORE
+ExtUtils::MakeMaker
+  CORE
+ExtUtils::TBone
+  https://cpan.metacpan.org/authors/id/E/ER/ERYQ/ExtUtils-TBone-1.124.tar.gz
+Fcntl
+  CORE
+File::Basename
+  CORE
+File::Compare
+  CORE
+File::Copy
+  CORE
+File::Find
+  CORE
+File::Find::Rule
+  https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/File-Find-Rule-0.34.tar.gz
+FileHandle
+  CORE
+File::Listing
+  https://cpan.metacpan.org/authors/id/G/GA/GAAS/File-Listing-6.04.tar.gz
+File::NFSLock
+  https://cpan.metacpan.org/authors/id/B/BB/BBB/File-NFSLock-1.29.tar.gz
+File::Path
+  CORE
+File::Spec
+  CORE
+File::Spec::Functions
+  CORE
+File::Temp
+  CORE
+Foobar -- ???
+Getopt::Std
+  CORE
+Heap::Elem
+  https://cpan.metacpan.org/authors/id/J/JM/JMM/Heap-0.80.tar.gz
+Heap::Fibonacci
+  https://cpan.metacpan.org/authors/id/J/JM/JMM/Heap-0.80.tar.gz
+HTTP::Date
+  https://cpan.metacpan.org/authors/id/G/GA/GAAS/HTTP-Date-6.02.tar.gz
+HTTP::Negotiate
+  https://cpan.metacpan.org/authors/id/G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz
+HTTP::Request
+  HTTP::Request::Common
+  HTTP::Response
+  HTTP::Status
+  https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Message-6.18.tar.gz
+  https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Message-6.18.tar.gz
+IO::Dir
+  CORE
+IO::File
+  CORE
+IO::Handle
+  CORE
+IO::Pty
+  https://cpan.metacpan.org/authors/id/T/TO/TODDR/IO-Tty-1.12.tar.gz
+IO::Pty's -- ???
+IO::Select
+  CORE https://cpan.metacpan.org/authors/id/T/TO/TODDR/IO-1.39.tar.gz
+IO::SessionData
+  IO::SessionSet
+  CHECK : does not have standard tarball?  
+IO::Socket
+  CORE
+IO::Socket::INET
+  CORE
+IO::String
+  https://cpan.metacpan.org/authors/id/G/GA/GAAS/IO-String-1.08.tar.gz
+IPC::Open3
+  CORE
+IPC::Run
+  IPC::Run::Debug
+  IPC::Run::IO
+  IPC::Run::Win32Helper
+  IPC::Run::Win32IO
+  HAVE
+IPC::SysV
+  IPC::Semaphore
+  CORE https://cpan.metacpan.org/authors/id/M/MH/MHX/IPC-SysV-2.07.tar.gz
+List::MoreUtils
+  https://cpan.metacpan.org/authors/id/R/RE/REHSACK/List-MoreUtils-0.428.tar.gz
+List::Util
+  CORE
+Log::Dispatch::File
+  Log::Dispatch::Screen
+  Log::Dispatch::Syslog
+  https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Log-Dispatch-2.68.tar.gz
+Log::Dispatch::FileRotate
+  https://cpan.metacpan.org/authors/id/M/MS/MSCHOUT/Log-Dispatch-FileRotate-1.36.tar.gz
+Log::Log4perl
+  Log::Log4perl::Appender
+  Log::Log4perl::Appender::File
+  Log::Log4perl::Appender::Screen
+  Log::Log4perl::Appender::Socket
+  Log::Log4perl::Appender::String
+  Log::Log4perl::Appender::TestArrayBuffer
+  Log::Log4perl::Appender::TestBuffer
+  Log::Log4perl::Appender::TestFileCreeper
+  Log::Log4perl::Catalyst
+  Log::Log4perl::Config
+  Log::Log4perl::Config::BaseConfigurator
+  Log::Log4perl::Config::PropertyConfigurator
+  Log::Log4perl::Config::Watch
+  Log::Log4perl::DateFormat
+  Log::Log4perl::Filter
+  Log::Log4perl::Filter::Boolean
+  Log::Log4perl::Internal::Test
+  Log::Log4perl::JavaMap
+  Log::Log4perl::Layout
+  Log::Log4perl::Layout::NoopLayout
+  Log::Log4perl::Layout::PatternLayout
+  Log::Log4perl::Layout::PatternLayout::Multiline
+  Log::Log4perl::Layout::SimpleLayout
+  Log::Log4perl::Layout::XMLLayout
+  Log::Log4perl::Level
+  Log::Log4perl::Logger
+  Log::Log4perl::MDC
+  Log::Log4perl::NDC
+  Log::Log4perl::Resurrector
+  Log::Log4perl::Util
+  Log::Log4perl::Util::Semaphore
+  Log::Log4perl::Util::TimeTracker
+  HAVE
+LWP
+  LWP::ConnCache
+  LWP::MediaTypes
+  LWP::Protocol
+  LWP::RobotUA
+  LWP::Simple
+  LWP::UserAgent
+  HAVE
+MIME::Base64
+  CORE
+MIME::Entity
+  https://cpan.metacpan.org/authors/id/D/DS/DSKOLL/MIME-tools-5.509.tar.gz
+MIME::Lite
+  https://cpan.metacpan.org/authors/id/R/RJ/RJBS/MIME-Lite-3.030.tar.gz
+MLDBM
+  https://cpan.metacpan.org/authors/id/C/CH/CHORNY/MLDBM-2.05.tar.gz
+Module::Build
+  Module::Build::Base
+  Module::Build::Compat
+  Module::Build::Config
+  Module::Build::Dumper
+  Module::Build::Notes
+  Module::Build::Platform::Unix
+  HAVE
+Module::Implementation
+  https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Module-Implementation-0.09.tar.gz
+Module::Metadata
+  https://cpan.metacpan.org/authors/id/E/ET/ETHER/Module-Metadata-1.000033.tar.gz
+Moose
+  https://cpan.metacpan.org/authors/id/E/ET/ETHER/Moose-2.2011.tar.gz
+namespace::autoclean
+  https://cpan.metacpan.org/authors/id/E/ET/ETHER/namespace-autoclean-0.28.tar.gz
+Net::POP3
+  CORE
+Params::Validate
+  Params::Validate::Constants
+  HAVE
+Params::ValidationCompiler
+  https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Params-ValidationCompiler-0.30.tar.gz
+Perl::OSType
+  https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Perl-OSType-1.010.tar.gz
+Pod::POM
+  https://cpan.metacpan.org/authors/id/N/NE/NEILB/Pod-POM-2.01.tar.gz
+POE
+  https://cpan.metacpan.org/authors/id/R/RC/RCAPUTO/POE-1.367.tar.gz
+RPC::PlClient
+  RPC::PlServer
+  https://cpan.metacpan.org/authors/id/M/MN/MNOONING/PlRPC/PlRPC-0.2020.tar.gz
+Scalar::Util
+  CORE
+SOAP::Lite
+  SOAP::Constants
+  SOAP::Lite::Deserializer::XMLSchema1999
+  SOAP::Lite::Deserializer::XMLSchemaSOAP1_1
+  SOAP::Lite::Deserializer::XMLSchemaSOAP1_2
+  SOAP::Lite::Utils
+  SOAP::Packager
+  SOAP::Test
+  SOAP::Transport::HTTP
+  SOAP::Transport::POP3
+  HAVE
+Socket
+  CORE
+Software::License
+  https://cpan.metacpan.org/authors/id/L/LE/LEONT/Software-License-0.103014.tar.gz
+Specio
+  Specio::Declare
+  Specio::Library::Builtins
+  Specio::Library::Numeric
+  Specio::Library::String
+  https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Specio-0.43.tar.gz
+SQL::Interp
+  HAVE
+Statistics::Descriptive
+  Statistics::Descriptive::Full
+  Statistics::Descriptive::Smoother
+  Statistics::Descriptive::Sparse
+  HAVE
+Storable
+  CORE https://cpan.metacpan.org/authors/id/X/XS/XSAWYERX/Storable-3.11.tar.gz
+Sub::Exporter
+  https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Sub-Exporter-0.987.tar.gz
+Symbol
+  CORE 
+Sys::Hostname
+  CORE 
+Template
+  Template::Base
+  Template::Config
+  Template::Constants
+  Template::Context
+  Template::Directive
+  Template::Document
+  Template::Exception
+  Template::Filters
+  Template::Grammar
+  Template::Iterator
+  Template::Namespace::Constants
+  Template::Parser
+  Template::Plugin
+  Template::Plugin::File
+  Template::Plugin::Filter
+  Template::Plugin::Procedural
+  Template::Plugin::ProcFoo
+  Template::Plugins
+  Template::Provider
+  Template::Service
+  Template::Stash
+  Template::Stash::Context
+  Template::Stash::XS
+  Template::Test
+  Template::View
+  Template::VMethods
+  HAVE
+Term::ANSIColor
+  CORE 
+Test
+  CORE 
+Test::Builder
+  CORE 
+Test::Fatal
+  https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Test-Fatal-0.014.tar.gz
+Test::More
+  CORE 
+Test::YAML
+  https://cpan.metacpan.org/authors/id/T/TI/TINITA/Test-YAML-1.07.tar.gz
+Text::ParseWords
+  CORE 
+Text::Wrap
+  CORE 
+Tie::CPHash
+  https://cpan.metacpan.org/authors/id/C/CJ/CJM/Tie-CPHash-2.000.tar.gz
+Time::HiRes
+  CORE https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/Time-HiRes-1.9760.tar.gz
+Try::Tiny
+  https://cpan.metacpan.org/authors/id/E/ET/ETHER/Try-Tiny-0.30.tar.gz
+URI
+  URI::Escape
+  URI::file
+  URI::Heuristic
+  URI::_punycode
+  URI::QueryParam
+  URI::Split
+  HAVE
+Win32API::File
+  https://cpan.metacpan.org/authors/id/C/CH/CHORNY/Win32API-File-0.1203.tar.gz
+Win32::Console::ANSI
+  https://cpan.metacpan.org/authors/id/J/JL/JLMOREL/Win32-Console-ANSI-1.11.tar.gz
+Win32::ODBC
+  https://cpan.metacpan.org/authors/id/J/JD/JDB/Win32-ODBC-0.035.tar.gz
+Win32::Process
+  https://cpan.metacpan.org/authors/id/J/JD/JDB/Win32-Process-0.16.tar.gz
+XML::DOM
+  https://cpan.metacpan.org/authors/id/T/TJ/TJMATHER/XML-DOM-1.46.tar.gz
+XSLoader
+  CORE
+YAML
+  YAML::Dumper::Base
+  YAML::Loader::Base
+  YAML::Mo
+  YAML::Node
+  YAML::Tag
+  YAML::Types
+  HAVE
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modules.req.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modules.req.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modules.req.txt	(revision 41109)
@@ -0,0 +1,102 @@
+
+Astro::FITS::CFITSIO
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0              NONE      NONE
+Cache::File
+Cache::Memcached
+  56    Cache                          Cache-2.04.tar.gz                        0              NONE      NONE
+Carp
+  CORE
+CGI::Pretty
+  34    CGI                            CGI-4.38.tar.gz                          4.38           NONE      NONE
+Config::YAML
+  70    Config::YAML                   Config-YAML-1.42.tar.gz                  0              NONE      NONE
+Cwd
+  CORE
+Data::Dumper
+  CORE
+Data::Validate::URI
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz            0.01           NONE      NONE
+DateTime
+DateTime::Duration
+  06    DateTime                       DateTime-1.49.tar.gz                     0              NONE      NONE
+DateTime::Format::Strptime
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.75.tar.gz     0              NONE      NONE
+DBI
+  73    DBI                            DBI-1.622.tar.gz                         1.622          NONE      NONE
+Digest::MD5
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                   0              NONE      NONE
+Digest::MD5::File
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz              0.03           NONE      NONE
+Digest::SHA1
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                  0              NONE      NONE
+Fcntl
+  CORE
+File::Basename
+  CORE
+File::Copy
+  CORE
+File::ExtAttr
+  NOTE: included only by Nebulous-Server/lib/Nebulous/Server.pm and commented out
+  https://cpan.metacpan.org/authors/id/R/RI/RICHDAWE/File-ExtAttr-1.09.tar.gz
+File::Path
+  CORE
+File::Spec
+  CORE
+File::Spec::Functions
+  CORE
+File::stat
+  CORE
+File::Temp
+  CORE
+Getopt::Long
+  CORE
+Getopt::Std
+  CORE
+IO::Handle
+  CORE
+IPC::Cmd
+  CORE
+IPC::Run
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                      0              NONE      NONE
+Log::Log4perl
+  59    Log::Log4perl                  Log-Log4perl-1.49.tar.gz                 0              NONE      NONE
+LWP::UserAgent
+  37    LWP                            libwww-perl-5.805.tar.gz                 0              NONE      NONE
+Math::Trig
+  CORE
+Module::Build
+  00    Module::Build                  Module-Build-0.3601.tar.gz               0.3601         NONE      NONE # special comment here
+Net::Server::Daemonize
+  NOTE : only used by Nebulous-Server :
+  https://cpan.metacpan.org/authors/id/R/RH/RHANDOM/Net-Server-2.009.tar.gz
+Params::Validate
+  02    Params::Validate               Params-Validate-0.96.tar.gz              0.96           NONE      NONE
+Pod::Usage
+  CORE
+POSIX
+  CORE
+SOAP::Lite
+  58    SOAP::Lite                     SOAP-Lite-0.69.v1.tar.gz                 0              NONE      yes,yes,no
+SOAP::Transport::HTTP
+  NOTE : only used by Nebulous-Server :
+SQL::Interp
+  78    SQL::Interp                     SQL-Interp-1.06.tar.gz                  0              NONE      NONE
+Statistics::Descriptive
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz        2.6            NONE      NONE
+Storable
+  CORE
+Sys::Hostname
+  CORE
+Template
+  45    Template                       Template-Toolkit-2.16.tar.gz             0              NONE      n,n
+Term::ReadKey
+  NOTE: only used by DataStoreServer
+Time::HiRes
+  CORE
+Time::Local
+  CORE
+URI
+URI::file
+  21    URI                            URI-1.35.tar.gz                          1.30           NONE      NONE
+YAML
+  42    YAML                           YAML-0.62.tar.gz                         0.58           NONE      y
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modules.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modules.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/modules.txt	(revision 41109)
@@ -0,0 +1,72 @@
+
+Examination of the modules use by the IPP code.
+
+Here is a list of all EXTERNAL modules and the number of times they are invoked in the IPP code:
+
+Astro::FITS::CFITSIO 19
+Cache::File 2
+Cache::Memcached 2
+Carp 136
+CGI 2
+CGI::Pretty 1
+Config::YAML 2
+Cwd 4
+Data::Dumper 34
+Data::Validate::URI 6
+DateTime 50
+DateTime::Duration 2
+DateTime::Format::Strptime 2
+DBI 37
+Digest::MD5 24
+Digest::MD5::File 17
+Digest::SHA1 1
+Fcntl 1
+File::Basename 84
+File::Copy 32
+File::ExtAttr 1
+File::Path 3
+File::Spec 22
+File::Spec::Functions 1
+File::stat 2
+File::Temp 88
+Getopt::Long 234
+Getopt::Std 1
+IO::Handle 3
+IPC::Cmd 172
+IPC::Run 4
+Log::Log4perl 7
+LWP::UserAgent 4
+Math::Trig 10
+Module::Build 1
+Net::Server::Daemonize 3
+Params::Validate 15
+Pod::Usage 205
+POSIX 25
+Regexp::Common 1
+SOAP::Lite 2
+SOAP::Transport::HTTP 1
+SQL::Interp 2
+Statistics::Descriptive 3
+Storable 5
+Sys::Hostname 106
+Template 1
+Term::ReadKey 1
+Time::HiRes 4
+Time::Local 5
+URI 32
+URI::file 9
+YAML 3
+
+--------------------
+
+Of these a few are only used 1 or 2 times.  Are any of these not actually needed?
+
+I have the count of modules by the packages they are used by in 'uncommon.mods.txt'
+
+These are used only by PS-IPP-PSFTP:
+* Regexp::Common
+* CGI
+(actually, ippMonitor/czartool uses CGI::Pretty containted in CGI)
+
+As far as I can tell, PS-IPP-PSFTP is NOT used by any package
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/pstamp.perlbin.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/pstamp.perlbin.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/pstamp.perlbin.txt	(revision 41109)
@@ -0,0 +1,26 @@
+     15 Astro::FITS::CFITSIO
+     24 Carp
+     16 constant
+      4 Cwd
+      6 Data::Dumper
+      5 DBI
+      4 Digest::MD5::File
+     26 File::Basename
+     26 File::Copy
+     22 File::Temp
+     55 Getopt::Long
+     46 IPC::Cmd
+      6 Math::Trig
+     37 Pod::Usage
+     17 POSIX
+     48 PS::IPP::Config
+     27 PS::IPP::Metadata::Config
+     35 PS::IPP::Metadata::List
+     24 PS::IPP::Metadata::Stats
+     15 PS::IPP::PStamp::Job
+     19 PS::IPP::PStamp::RequestFile
+     57 strict
+     34 Sys::Hostname
+      2 Time::HiRes
+      4 Time::Local
+     57 warnings
Index: /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/uncommon.mods.txt
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/uncommon.mods.txt	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/perlmods/uncommon.mods.txt	(revision 41109)
@@ -0,0 +1,25 @@
+Nebulous-Server.perllib.txt:      1 Apache2::Const
+ippScripts.perlbin.txt:      2 Cache::File
+Nebulous-Server.perllib.txt:      2 Cache::Memcached
+PS-IPP-PSFTP.perllib.txt:      1 CGI
+ippMonitor.perlbin.txt:      1 CGI::Pretty
+ippMonitor.perlbin.txt:      1 CGI::Pretty
+console.perllib.txt:      1 Config::YAML
+Nebulous-Server.perlbin.txt:      1 Config::YAML
+ippScripts.perlbin.txt:      2 DateTime::Duration
+ippScripts.perlbin.txt:      2 DateTime::Format::Strptime
+Nebulous-Server.perllib.txt:      1 Digest::SHA1
+Nebulous-Server.perllib.txt:      1 Fcntl
+Nebulous-Server.perllib.txt:      1 File::ExtAttr
+Nebulous.perllib.txt:      1 File::Spec::Functions
+DataStore.perllib.txt:      1 File::stat
+PS-IPP-PSFTP.perllib.txt:      1 File::stat
+ippScripts.perlbin.txt:      1 Getopt::Std
+ippScripts.perlbin.txt:      1 Module::Build
+PS-IPP-PSFTP.perllib.txt:      1 Regexp::Common
+Nebulous.perllib.txt:      1 SOAP::Lite
+Nebulous-Server.perllib.txt:      1 SOAP::Lite
+Nebulous-Server.perllib.txt:      1 SOAP::Transport::HTTP
+Nebulous-Server.perlbin.txt:      2 SQL::Interp
+glueforge.perlbin.txt:      1 Template
+DataStoreServer.perlbin.txt:      1 Term::ReadKey
Index: /branches/ccl_branches/ipponly-20191108/psconfig/psbuild
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/psbuild	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/psbuild	(revision 41109)
@@ -0,0 +1,538 @@
+#!/usr/bin/env perl
+
+$tagsets = "tagsets";
+if (!-d $tagsets || !-r $tagsets || !-x $tagsets) { die "missing the directory of distribution tables: $tagsets\n"; }
+
+print STDER "----- starting psbuild ----- : ";
+system ("date");
+
+$version = "";
+$clean = 0;
+$rebuild = 0;
+$optimize = 0;
+$profile = 0;
+$no_as_needed = 0;
+$debug_build = 0;
+$developer = 0;
+$magic = 0;
+$operations = 0;
+$start = "";
+$start_after = "";
+$stop = "";
+$verbose = 0;
+$svn_trunk = "";
+$offline = 0;
+
+$extlibs = "none";
+$extperl = "none";
+
+@tARGV = ();
+for (; @ARGV > 0; ) {
+    if ($ARGV[0] eq "-version") {
+        $version = $ARGV[1];
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-verbose") {
+        $verbose = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-extlibs") {
+        $extlibs = $ARGV[1];
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-extperl") {
+        $extperl = $ARGV[1];
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-trunk") {
+        $svn_trunk = $ARGV[1];
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-clean") {
+        $clean = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-extcheck") {
+        $extlibs = "check";
+        $extperl = "check";
+        shift; next;
+    }
+    if ($ARGV[0] eq "-extbuild") {
+        $extlibs = "build";
+        $extperl = "build";
+        shift; next;
+    }
+    if ($ARGV[0] eq "-rebuild") {
+        $rebuild = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-magic") {
+        $magic = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-optimize") {
+        $optimize = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-profile") {
+        $profile = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-no-as-needed") {
+        $no_as_needed = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-debug-build") {
+        $debug_build = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-dev") {
+        $developer = 1;
+        shift; next;
+    }
+    # basic settings for the operations installation
+    if ($ARGV[0] eq "-ops") {
+        $developer = 1;
+        $optimize = 1;
+        $magic = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-only") {
+	if ($start || $stop || $start_after) { die "do not mix -only (-start, -stop) or (-after, -stop)\n"; }
+        $start = $ARGV[1];
+        $stop = $ARGV[1];
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-start") {
+	if ($start || $start_after) { die "do not mix -only (-start, -stop) or (-after, -stop)\n"; }
+        $start = $ARGV[1];
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-after") {
+	if ($start || $start_after) { die "do not mix -only (-start, -stop) or (-after, -stop)\n"; }
+        $start_after = $ARGV[1];
+        $start = "INVALID_VALUE"; # need to have a value to skip earlier entries
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-stop") {
+	if ($stop) { die "do not mix -only (-start, -stop) or (-after, -stop)\n"; }
+        $stop = $ARGV[1];
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-list") {
+        &list_distributions ();
+    }
+    if ($ARGV[0] eq "-bootstrap") {
+        &bootstrap ();
+    }
+    if ($ARGV[0] eq "-offline") {
+        $offline = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-env") {
+        &show_environment ();
+    }
+    if ($ARGV[0] eq "-h")     { &usage (); }
+    if ($ARGV[0] eq "-help")  { &usage (); }
+    if ($ARGV[0] eq "--help") { &usage (); }
+    @tARGV = (@tARGV, $ARGV[0]);
+    shift;
+}
+@ARGV = @tARGV;
+
+if ( @ARGV == 0) {
+    die "a distribution name is now required by psbuild (e.g., ipp-3.3)\n";
+} else {
+    $distribution = "$tagsets/$ARGV[0].dist";
+    $distname = $ARGV[0];
+}
+
+# generate new psconfig.csh if needed
+if (! -e "psconfig.csh" || ! -e "psconfig.bash") {
+    $psconfdir = $ENV{'PSCONFDIR'};
+    if ($psconfdir eq "") { die "PSCONFDIR not found, run psbuild -bootstrap and follow instructions\n"; }
+    vsystem ("cat psconfig.csh.in | sed 's|\@PSCONFDIR@|$psconfdir|' > psconfig.csh");
+    vsystem ("cat psconfig.bash.in | sed 's|\@PSCONFDIR@|$psconfdir|' > psconfig.bash");
+}
+
+&load_distfile ();
+
+&build_distribution ();
+exit 0;
+
+sub show_environment {
+
+    # use psconfig.csh to set needed build aliases
+
+    # set the psconfig version:
+    if ("$version" eq "") {
+        $version = $ENV{'PSVERSION'};
+    }
+    if ("$version" eq "") {
+        $version = "default";
+    }
+
+    if (! -e psconfig.csh) {
+        $psconfdir = $ENV{'PSCONFDIR'};
+        if ($psconfdir eq "") { die "PSCONFDIR not found, run psbuild -bootstrap and follow instructions\n"; }
+        vsystem ("cat psconfig.csh.in | sed 's|\@PSCONFDIR@|$psconfdir|' > psconfig.csh");
+        vsystem ("cat psconfig.bash.in | sed 's|\@PSCONFDIR@|$psconfdir|' > psconfig.bash");
+    }
+
+    $psconfigure = `csh psconfig.csh --psconfigure $version`; chomp $psconfigure;
+    $psautogen   = `csh psconfig.csh --psautogen $version`;   chomp $psautogen;
+    $psperlbuild = `csh psconfig.csh --psperlbuild $version`; chomp $psperlbuild;
+
+    # print "psconfigure: $psconfigure\n";
+    # print "psautogen:   $psautogen\n";
+    # print "psperlbuild: $psperlbuild\n";
+
+    # set build environment variables
+    ps_setenv (1, "PATH",            "--path");
+    ps_setenv (1, "CPATH",           "--cpath");
+    ps_setenv (1, "ARCH",            "--arch");
+    ps_setenv (1, "LIBRARY_PATH",    "--library_path");
+    ps_setenv (1, "LD_LIBRARY_PATH", "--ld_library_path");
+    ps_setenv (1, "PKG_CONFIG_PATH", "--pkg_config_path");
+    ps_setenv (1, "ACLOCAL_FLAGS",   "--aclocal_flags");
+    ps_setenv (1, "PERL5LIB",        "--perl5lib");
+    ps_setenv (1, "CFITSIO",         "--prefix");
+
+    exit 0;
+}
+
+sub build_distribution {
+
+    vsystem ("date");
+
+    # the operations system needs to first update the magic software
+    if ($magic) {
+        $homedir = `pwd`; chomp $homedir;
+        chdir "../magic";
+
+        if (! -d "magic" || ! -d "ssa-core-cpp") {
+            $status = vsystem ("make update");
+            if ($status) { die "failed to untar magic directories"; }
+        } else {
+            print "magic directories exist; run make update manually if needed\n";
+        }
+        chdir $homedir;
+    }
+
+    # use psconfig.csh to set needed build aliases
+    if ($extlibs eq "check") {
+        $status = vsystem ("pschecklibs $distname");
+        if ($status) { die "failed to find external libraries\n"; }
+    }
+    if ($extlibs eq "build") {
+        $status = vsystem ("pschecklibs -build $distname");
+        if ($status) { die "failed to build external libraries\n"; }
+    }
+
+    if ($extperl eq "check") {
+        $status = vsystem ("pschecklperl $distname");
+        if ($status) { die "failed to find external perl modules\n"; }
+    }
+    if ($extperl eq "build") {
+        $status = vsystem ("pscheckperl -build $distname");
+        if ($status) { die "failed to build external perl modules\n"; }
+    }
+
+    # set the psconfig version:
+    if ("$version" eq "") {
+        $version = $ENV{'PSVERSION'};
+    }
+    if ("$version" eq "") {
+        $version = "default";
+    }
+
+    $psconfigure = `csh psconfig.csh --psconfigure $version`; chomp $psconfigure;
+    $psautogen   = `csh psconfig.csh --psautogen $version`;   chomp $psautogen;
+    $psperlbuild = `csh psconfig.csh --psperlbuild $version`; chomp $psperlbuild;
+
+    # print "psconfigure: $psconfigure\n";
+    # print "psautogen:   $psautogen\n";
+    # print "psperlbuild: $psperlbuild\n";
+
+    # set build environment variables
+    ps_setenv (0, "PATH",                 "--path");
+    ps_setenv (0, "CPATH",                "--cpath");
+    ps_setenv (0, "ARCH",                 "--arch");
+    ps_setenv (0, "LIBRARY_PATH",    "--library_path");
+    ps_setenv (0, "LD_LIBRARY_PATH", "--ld_library_path");
+    ps_setenv (0, "PKG_CONFIG_PATH", "--pkg_config_path");
+    ps_setenv (0, "ACLOCAL_FLAGS",   "--aclocal_flags");
+    ps_setenv (0, "PERL5LIB",        "--perl5lib");
+    ps_setenv (0, "CFITSIO",         "--prefix");
+
+    # some versions of libtool use this value:
+    $ENV{'D'} = "";
+
+    # make sure the aclocal path exists
+    @word = split (" ", $ENV{'ACLOCAL_FLAGS'});
+    if (@word != 2) { &failure("setup", "ACLOCAL_FLAGS is not set"); }
+    if (! -e $word[1]) { vsystem ("mkdir -p $word[1]"); }
+
+    $psopts = "";
+    if ($optimize) { $psopts = "$psopts --enable-optimize"; }
+    if ($profile)  { $psopts = "$psopts --enable-profile --disable-shared --enable-static"; }
+    if ($debug_build)  { $psopts = "$psopts --enable-debug-build"; }
+    if ($no_as_needed)  { $psopts = "$psopts --enable-no-as-needed"; }
+    $psopts .= " --disable-version" if $offline;
+
+    $homedir = `pwd`; chomp $homedir;
+
+    $stop_now = 0;
+    for ($i = 0; !$stop_now && ($i < @module); $i++) {
+        if ($stop && ($stop eq $module[$i])) { $stop_now = 1; }
+	if ($start_after && ($start_after eq $module[$i])) { $start = $module[$i+1]; next; }
+        if ($start && ($start ne $module[$i])) { next; }
+        $start = "";
+
+        ($do_tag, $do_build, $do_package, $do_update, $dev_build) = $mode[$i] =~ m|(\S)(\S)(\S)(\S)(\S)|;
+        if ($developer) { $do_build = $dev_build; }
+        if ($do_build eq "N") { next; }
+
+        $workdir = "../$module[$i]";
+
+        # XXX need to grab current value for cleanup
+        print "\n ** psbuild: $module[$i] ** \n";
+        print "\033]0; ** psbuild: $module[$i] ** \007";
+
+        if ($svn_trunk && (!-d $workdir || !-r $workdir || !-x $workdir)) {
+            # try trunk instead
+            print STDERR "$module[$i] missing from local path, trying trunk path\n";
+            $workdir = "$svn_trunk/$module[$i]";
+        }
+
+        if (!-d $workdir || !-r $workdir || !-x $workdir) {
+            print STDERR "WARNING: no directory for component $module[$i], skipping\n";
+            next;
+        }
+
+        chdir $workdir;
+
+        # how do we build this component?
+        # - autogen.sh : configure : make : make install
+        # - configure : make : make install
+        # - make : make install
+        # - perl Build.PL : ./Build : ./Build install
+
+        if (-e "Build.PL") {
+            $status = vsystem ("$psperlbuild");
+            if ($status) { &failure($module[$i], "failure in perl Build.PL"); }
+
+            $status = vsystem ("./Build");
+            if ($status) { &failure($module[$i], "failure in Build"); }
+
+            $status = vsystem ("./Build install");
+            if ($status) { &failure($module[$i], "failure in Build install"); }
+
+            next;
+        }
+
+        if ($rebuild && $clean) {
+            if (-e "configure") { unlink "Makefile"; }
+            if ($developer && -e "configure.ac" && -e "autogen.sh") { unlink "configure"; }
+        }
+        $rebuild_this = $rebuild;
+
+        # set a local variable for this loop on rebuild;
+        if (! -e "Makefile") { $rebuild_this = 1; }
+
+        #  run autogen
+        $skip_configure = 0;
+        if ($developer && $rebuild_this && ! -e "configure" && -e "autogen.sh") {
+            $skip_configure = 1;
+            $status = vsystem ("$psautogen $psopts");
+            if ($status) { &failure($module[$i], "failure in psautogen"); }
+        }
+
+        if ($rebuild_this && -e "configure" && !$skip_configure) {
+            $status = vsystem ("$psconfigure $psopts");
+            if ($status) { &failure($module[$i], "failure in psconfigure"); }
+        }
+
+        if (! -e "Makefile") { &failure($module[$i], "missing makefile: do you need to run the -dev developer build?"); }
+
+        my $makeopts = $ENV{'PSCONFIG_MAKEOPTS'}; # Options for make
+        my $make = "make";      # Command for "make"
+        $make .= " $makeopts" if defined $makeopts;
+
+        if ($clean) {
+            $status = vsystem ("$make clean");
+            if ($status) { &failure($module[$i], "failure in make clean"); }
+        }
+
+        $status = vsystem ("$make");
+        if ($status) { &failure($module[$i], "failure in make"); }
+
+        $status = vsystem ("$make install");
+        if ($status) { &failure($module[$i], "failure in make install"); }
+
+        print "*** done with $module[$i] ***\n";
+
+      success:
+        chdir $homedir;
+    }
+    if ($start) { if ($start_after) { $start = $start_after; } &failure($start, "unknown -start or -after module $start\n"); } 
+    if ($stop && !$stop_now) { &failure($start, "unknown -stop module $stop\n"); } 
+
+    print STDER "----- finished psbuild ----- : ";
+    system ("date");
+
+    print "\033]0; ** psbuild: finished ** \007";
+
+    exit 0;
+}
+
+sub vsystem {
+    print STDERR "@_\n";
+    $status = system ("@_");
+    $status;
+}
+
+sub list_distributions {
+    @list = <$tagsets/*.dist>;
+    foreach $line (@list) {
+        chomp $line;
+        ($dist) = $line =~ m|$tagsets/(\S*).dist|;
+        print STDERR "$dist\n";
+    }
+    exit 2;
+}
+
+sub bootstrap {
+    if (@ARGV != 2) { die "USAGE: psbuild -bootstrap (install_dir | current)\n"; }
+    $psconfdir = $ARGV[1];
+
+    if ($psconfdir eq "current") {
+	$psconfdir = $ENV{'PSCONFDIR'};
+	if (! $psconfdir) { die "no env variable PSCONFDIR found for psbuild -bootstrap current\n"; }
+    }
+    die "Target directory must be absolute, not relative: $psconfdir\n" unless $psconfdir =~ m|^/|;
+
+    # copy psconfig.csh and psconfig.bash to psconfdir
+    vsystem ("cat psconfig.csh.in | sed 's|\@PSCONFDIR@|$psconfdir|' > psconfig.csh");
+    vsystem ("cat psconfig.bash.in | sed 's|\@PSCONFDIR@|$psconfdir|' > psconfig.bash");
+
+    vsystem ("mkdir -p $psconfdir");
+
+    vsystem ("cp psconfig.csh $psconfdir/psconfig.csh");
+    vsystem ("cp psconfig.bash $psconfdir/psconfig.bash");
+    vsystem ("chmod u+x $psconfdir/psconfig.bash");
+
+    print STDOUT "\n";
+
+    print STDOUT "** if you use csh, tcsh or equivalent as your shell, add the following to your .cshrc\n";
+    print STDOUT "    if (-e $psconfdir/psconfig.csh) then\n";
+    print STDOUT "      alias  psconfig        \"source $psconfdir/psconfig.csh\"\n";
+    print STDOUT "    else\n";
+    print STDOUT "      alias  psconfig        \"echo psconfig not available\"\n";
+    print STDOUT "    endif\n";
+    print STDOUT "    psconfig default\n";
+    print STDOUT "\n";
+
+    print STDOUT "** if you use sh, bash or equivalent as your shell, add the following to your .bashrc\n";
+    print STDOUT "    if [ -e $psconfdir/psconfig.bash ] ; then\n";
+    print STDOUT "        psconfig () {\n";
+    print STDOUT "            source $psconfdir/psconfig.bash\n";
+    print STDOUT "        }\n";
+    print STDOUT "    else\n";
+    print STDOUT "        psconfig () {\n";
+    print STDOUT "            echo psconfig not available\n";
+    print STDOUT "        }\n";
+    print STDOUT "    fi\n";
+    print STDOUT "    psconfig default\n";
+    print STDOUT "\n";
+
+    exit 0;
+}
+
+sub load_distfile {
+    # open and read the distribution file
+    # results go into @module, @branchtag, @branchver, @mode
+    open (FILE, $distribution) || die "ERROR: can't open distribution file $distribution\n";
+    @list = <FILE>;
+    close (FILE);
+
+    @mode = ();
+    @module = ();
+    @branchtag = ();
+    @branchver = ();
+
+    foreach $line (@list) {
+        chop $line;
+        if ($line =~ m|^\s*$|) { next; }
+        if ($line =~ m|^\s*\#|) { next; }
+
+        ($mode, $module, $branchtag, $branchver) = split (" ", $line);
+
+        if ($module eq "") { die "missing module name\n"; }
+
+        ($do_tag, $do_build, $do_package, $do_update) = $mode =~ m|(\S)(\S)(\S)(\S)|;
+        if (($do_tag ne "Y") && ($do_tag ne "N")) { die "invalid tag option $do_tag\n"; }
+        if (($do_build ne "Y") && ($do_build ne "N")) { die "invalid tag option $do_build\n"; }
+        if (($do_package ne "Y") && ($do_package ne "N")) { die "invalid tag option $do_package\n"; }
+        if (($do_update ne "Y") && ($do_update ne "N")) { die "invalid tag option $do_update\n"; }
+
+        if ($verbose) { print "tag: $do_tag, build: $do_build, package: $do_package, update: $do_update "; }
+        if ($verbose) { print "module: $module, branchtag: $branchtag, branchver: $branchver \n"; }
+
+        push @mode, $mode;
+        push @module, $module;
+        push @branchtag, $branchtag;
+        push @branchver, $branchver;
+    }
+}
+
+sub failure {
+    print "\033]0; ** psbuild: failure  ** \007";
+    die "problem building $_[0] : $_[1]\n";
+}
+
+sub usage {
+    print STDERR "USAGE: psbuild [options] (distribution)\n";
+    print STDERR " (distribution) : name of tagset group, e.g., ipp-3.3\n";
+    print STDERR "     : -version (version) : specify alternate psconfig installation version\n";
+    print STDERR "     : -verbose           : give additional information\n";
+    print STDERR "     : -extlibs (tarball) : specify the location of the extlibs tarball\n";
+    print STDERR "     : -extperl (tarball) : specify the location of the extlibs tarball\n";
+    print STDERR "     : -extcheck          : check (but do not build) the external dependencies\n";
+    print STDERR "     : -extbuild          : check and build (if needed) the external dependencies\n";
+    print STDERR "     : -clean             : clean the source directories before building\n";
+    print STDERR "     : -rebuild           : run 'configure (and autogen for developer)' (C code)\n";
+    print STDERR "     : -optimize          : set flags for optimized code\n";
+    print STDERR "     : -profile           : set flags for profiling\n";
+    print STDERR "     : -debug-build       : set flags for debug build (Wall, but not Werror; use to find and fix warnings from Wall)\n";
+    print STDERR "     : -no-as-needed      : add --no-as-needed flag to gcc (to disable default --as-needed flags from Ubuntu, etc)\n";
+    print STDERR "     : -only (module)     : only build the specified module\n";
+    print STDERR "     : -start (module)    : begin build at specified module\n";
+    print STDERR "     : -after (module)    : begin build after specified module\n";
+    print STDERR "     : -stop (module)     : stop build after specified module\n\n";
+    print STDERR "     : -dev               : build modules not distributed in tarball\n";
+    print STDERR "     : -magic             : also build magic code\n";
+    print STDERR "     : -ops               : option for operational build (-optimize -dev -magic)\n\n";
+    print STDERR "     : psbuild -bootstrap : generate the psconfig scripts\n";
+    print STDERR "     : psbuild -list      : list the available distributions\n";
+    print STDERR "     : psbuild -h         : this help listing\n";
+    print STDERR "     : psbuild -help      : this help listing\n";
+    print STDERR "     : psbuild --help     : this help listing\n";
+    exit 2;
+}
+
+sub ps_setenv {
+
+    my $verbose = $_[0];
+    my $var = $_[1];
+    my $flag = $_[2];
+
+    my $answer = `csh psconfig.csh $flag $version`;
+    chomp $answer;
+
+    $ENV{$var} = $answer;
+    if ($verbose) {
+        print STDERR "$var = $answer\n";
+    }
+}
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/pschecklibs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/pschecklibs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/pschecklibs	(revision 41109)
@@ -0,0 +1,645 @@
+#!/usr/bin/env perl
+
+$tagsets = "tagsets";
+$needdev = 0;
+
+# default system library locations
+@binpath = ( );
+@libpath = ( "/usr/local/lib", "/usr/lib", "/usr/X11R6/lib", "/lib" );
+@incpath = ( "/usr/local/include", "/usr/include", "/usr/X11R6/include" );
+
+$version = "";
+$build = 0;
+$list_modules = 0;
+my $only = "";
+my %force;
+my %done;                       # Tarballs that have been processed
+@tARGV = ();
+for (; @ARGV > 0; ) {
+    if ($ARGV[0] eq "-version") {
+        $version = $ARGV[1];
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-build") {
+        $build = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-force") {
+        if (@ARGV < 2) { die "-force must be coupled to a library name\n"; }
+        if (lc($ARGV[1]) eq 'build') {
+            $force{'autoconf'} = 1;
+            $force{'automake'} = 1;
+            $force{'libtool'} = 1;
+            $force{'pkg-config'} = 1;
+        } else {
+            $force{lc($ARGV[1])} = 1;
+        }
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-only") {
+        if (@ARGV < 2) { die "-only must be coupled to a library name\n"; }
+	$only = lc($ARGV[1]);
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-h")     { &usage (); }
+    if ($ARGV[0] eq "help")   { &usage (); }
+    if ($ARGV[0] eq "-help")  { &usage (); }
+    if ($ARGV[0] eq "--help") { &usage (); }
+    if ($ARGV[0] eq "-list")  { &list_distributions(); }
+    if ($ARGV[0] eq "-modules") { $list_modules = 1; shift; next; }
+    @tARGV = (@tARGV, $ARGV[0]);
+    shift;
+}
+@ARGV = @tARGV;
+if ( @ARGV > 1) { &usage(); }
+
+if ( @ARGV == 0) {
+    @list = <$tagsets/*.libs>;
+    $file = $list[-1];
+} else {
+    $file = "$tagsets/$ARGV[0].libs";
+}
+print "examining C libraries based on $file\n\n";
+
+# load the C libraries list
+open (FILE, $file) || die "ERROR: can't open C libraries list: $file\n";
+@list = <FILE>;
+close (FILE);
+
+if ($list_modules) { &list_modules(); }
+
+# set the psconfig version:
+if ("$version" eq "") {
+    $version = $ENV{'PSVERSION'};
+}
+if ("$version" eq "") {
+    $version = "default";
+}
+
+# generate new psconfig.csh if needed
+if (! -e "psconfig.csh" || ! -e "psconfig.bash") {
+    $psconfdir = $ENV{'PSCONFDIR'};
+    if ($psconfdir eq "") { die "PSCONFDIR not found, run psbuild -bootstrap and follow instructions\n"; }
+    vsystem ("cat psconfig.csh.in | sed 's|\@PSCONFDIR@|$psconfdir|' > psconfig.csh");
+    vsystem ("cat psconfig.bash.in | sed 's|\@PSCONFDIR@|$psconfdir|' > psconfig.bash");
+}
+
+# set the lib and include paths set by psconfig
+$bindir      = `csh psconfig.csh --bin $version`;         chomp $bindir;
+$libdir      = `csh psconfig.csh --libs $version`;        chomp $libdir;
+$mandir      = `csh psconfig.csh --man $version`;         chomp $mandir;
+$incdir      = `csh psconfig.csh --include $version`;     chomp $incdir;
+$prefix      = `csh psconfig.csh --prefix $version`;      chomp $prefix;
+
+$homedir     = `pwd`; chomp $homedir;
+$psconfdir   = `csh psconfig.csh --psconfdir $version`;   chomp $psconfdir;
+$psconfigure = `csh psconfig.csh --psconfigure $version`; chomp $psconfigure;
+
+print "psconfig version: $version\n";
+print "bindir: $bindir\n";
+print "libdir: $libdir\n";
+print "incdir: $incdir\n";
+print "mandir: $mandir\n";
+print "\n";
+
+# create the directories above if not found:
+if (! -e $libdir) { vsystem ("mkdir -p $libdir"); }
+if (! -e $incdir) { vsystem ("mkdir -p $incdir"); }
+if (! -e $bindir) { vsystem ("mkdir -p $bindir"); }
+if (! -e $mandir) { vsystem ("mkdir -p $mandir"); }
+if (! -e "$mandir/man1") { vsystem ("mkdir -p $mandir/man1"); }
+if (! -e "$mandir/man3") { vsystem ("mkdir -p $mandir/man3"); }
+
+# add the path defined by LIBRARY_PATH
+@tmppath = split (":", $ENV{'LIBRARY_PATH'});
+if (@tmppath) {
+    unshift @libpath, @tmppath;
+}
+# search for, and drop, existing libdir entry in libpath?
+unshift @libpath, $libdir;
+
+# XXX a temporary hack for libreadline (this failed... needed to modify libreadline/support/shobj-conf
+# $shlib_libs = $ENV{'SHLIB_LIBS'};
+# unless ($shlib_libs =~ m|-lncurses|) {
+#     $shlib_libs .= " -lncurses";
+# }
+# $ENV{'SHLIB_LIBS'} = $shlib_libs;
+
+# add the path defined by PATH
+@tmppath = split (":", $ENV{'PATH'});
+if (@tmppath) {
+    unshift @binpath, @tmppath;
+}
+# search for, and drop, existing libdir entry in libpath?
+unshift @binpath, $bindir;
+
+# add the path defined by PATH
+@tmppath = split (":", $ENV{'CPATH'});
+if (@tmppath) {
+    unshift @incpath, @tmppath;
+}
+# search for, and drop, existing libdir entry in libpath?
+unshift @incpath, $incdir;
+
+# get a list of implicit paths from cpp directly
+&checkpreprocessor ();
+
+# get a list of implicit paths from the linker directly
+&checklinker ();
+
+# add the system paths specified for each architecture
+&checkarch ();
+print "setting architecture to: $arch\n";
+print "searching for libraries in: @libpath\n";
+print "searching for headers in: @incpath\n";
+print "searching for programs in: @binpath\n";
+print "\n";
+
+if ($build && ! -d $psconfdir) {
+    mkdir $psconfdir || die "unable to create psconfig dir $psconfdir";
+}
+
+# read the lib distribution file, search / build each entry
+@faillibs = ();
+@failincs = ();
+foreach $line (@list) {
+    chop $line;
+    if ($line =~ m|^\s*$|) { next; }
+    if ($line =~ m|^\s*\#|) { next; }
+
+    ($type, $name, $altnames, $altpaths, $tarball, $tardir, $auto_force, $configure_opts, $make_opts, $install_opts) = split (" ", $line);
+    if (($auto_force ne "Y") && ($auto_force ne "N")) { die "invalid value for auto_force field\n"; }
+
+    if ($only && ($only ne lc($name))) { next; }
+
+    if ((defined $force{lc($name)} or defined $force{'all'}) and
+        not defined $done{$tarball} and lc($tarball) ne "none") {
+        # remove it for the list so we can check for -force for a library
+        # not in the list
+        &buildlib ($name, $tarball, $tardir, $configure_opts, $make_opts, $install_opts);
+        $done{$tarball} = 1;
+        delete($force{lc($name)});
+        next;
+    }
+
+    if ($build and ($auto_force eq "Y")) {
+        &buildlib ($name, $tarball, $tardir, $configure_opts, $make_opts, $install_opts);
+        next;
+    }
+
+    ## check for the C library
+    if ($type eq "lib") {
+        $found = &checklib ($name, $altnames, $altpaths);
+    }
+    if ($type eq "bin") {
+        $found = &checkbin ($name, $altnames, $altpaths);
+    }
+    if ($type eq "inc") {
+        $found = &checkinc ($name, $altnames, $altpaths);
+    }
+
+    if ($auto_force eq "Y") {
+        print "$name will be built\n";
+    }
+
+    if ($found) {
+        if ($found eq "runtime-only") {
+            print "runtime $name ($found)\n";
+            push @faillibs, "$name";
+        } else {
+            print "pass $name ($found)\n";
+        }
+        next;
+    } else {
+        print "fail $name\n";
+        push @faillibs, "$name";
+    }
+
+    if ($auto_force eq "Y") {
+        print "$name will be built\n";
+    }
+
+    if (! $build) { next; }
+    if ($type eq "inc") {
+        print "ERROR: missing header file from library which is supposedly installed\n";
+        # Will attempt to install library.
+    }
+    &buildlib ($name, $tarball, $tardir, $configure_opts, $make_opts, $install_opts);
+}
+
+my $bad_force;
+foreach $k (keys %force) {
+    next if lc($k) eq 'all';
+    print STDERR "\nERROR: -force $k requested but $k isn't in the list of libraries\n";
+    $bad_force = 1;
+}
+if ($build) {
+    if ($bad_force) {
+        exit 1;
+    }
+    exit 0;
+}
+print "\n";
+
+if (@faillibs > 0) {
+    print "The following C libraries are missing from your system\n";
+    foreach $name (@faillibs) {
+        print "  $name\n";
+    }
+    print "\n";
+    print "you may install them in your local path by re-running pschecklibs with -build\n";
+
+    print "*** WARNING *** Some libraries are installed in your system only for runtime use, not for linking.\n";
+    print " For many systems, it is possible to install the developer version of a library, and this may be safer\n";
+    print " If you choose to install our version of any of these libraries, please use -force (library) in your psbuild / pschecklibs options\n";
+    exit 1;
+}
+
+print "no C libraries are missing from your system\n";
+exit 0;
+
+sub buildlib {
+    my ($name, $tarball, $tardir, $configure_opts, $make_opts, $install_opts) = @_;
+
+    if ($tarball eq "NONE") {
+        print "No tarball available for $name.  You'll have to build it yourself.\n";
+        exit 1;
+    }
+
+    if ($name eq "libz") {
+        # zlib doesn't like the full list of arguments to configure
+        $psconfigure = "./configure --prefix=$prefix";
+    } else {
+        $psconfigure = `csh psconfig.csh --psconfigure $version`; chomp $psconfigure;
+    }
+
+    print "psconfigure: $psconfigure";
+
+    ## try to build the module ../extlibs/$tarball
+
+    # go to extlibs and unpack the tarball
+    chdir "../extlibs";
+
+    print "extract $name from $tarball\n";
+    vsystem ("tar xvzf $tarball");
+
+    print "tardir: $tardir\n";
+
+    # enter the directory and build
+    chdir $tardir;
+
+    # build the library using psconfigure, make, make install
+    if ($configure_opts eq "NONE") {
+        vsystem ("$psconfigure");
+    } else {
+        $configure_opts = join (' ', split (',', $configure_opts));
+        vsystem ("$psconfigure $configure_opts");
+    }
+    if ($?) { &failure($name, "failure in configure"); }
+
+    my $make = "make";          # Command for make
+    $make .= ' ' . $ENV{'PSCONFIG_MAKEOPTS'} if defined $ENV{'PSCONFIG_MAKEOPTS'};
+
+    if ($make_opts eq "NONE") {
+        vsystem ($make);
+    } else {
+        $make_opts = join (' ', split (',', $make_opts));
+        vsystem ("$make $make_opts");
+    }
+    if ($?) { &failure($name, "failure in make"); }
+
+    if ($install_opts eq "NONE") {
+        vsystem ("$make install");
+    } else {
+        $install_opts = join (' ', split (',', $install_opts));
+        vsystem ("$make install $install_opts");
+    }
+    if ($?) { &failure($name, "failure in make install"); }
+
+    chdir $homedir;
+    return 1;
+}
+
+sub checklib {
+    my $name = $_[0];
+    my $altnames = $_[1];
+    my $altpaths = $_[2];
+
+    @subdirs = ".";
+    if ($altpaths ne "NONE") {
+        @altpaths = split (',', $altpaths);
+        push @subdirs, @altpaths;
+    }
+
+    @trynames = ($name);
+    if ($altnames ne "NONE") {
+        @altnames = split (',', $altnames);
+        push @trynames, @altnames;
+    }
+
+    # try each of the possible library names
+    foreach $tryname (@trynames) {
+        # try each of the library paths, with the default as well as each altpath
+        foreach $topdir ( @libpath ) {
+            foreach $subdir ( @subdirs ) {
+                if ($subdir eq ".") {
+                    $path = $topdir;
+                } else {
+                    $path = "$topdir/$subdir";
+                }
+                # print "trying $path\n";
+                if (! -e $path) { next; }
+                $libname = "$path/$tryname.a";
+                if (-e $libname) { return $libname; }
+                # print "no $libname\n";
+                $libname = "$path/$tryname.$dlltype";
+                if (-e $libname) { return $libname; }
+                # print "no $libname\n";
+            }
+        }
+
+        # if we failed to find the basic named library files, try the
+        # versions libraries if we find only a .so.N without a matching
+        # .so, we link this in the installed libdir
+        # XXX this was probably a mistake to allow some systems to build without supplied libs
+        if (1) {
+            foreach $topdir ( @libpath ) {
+                foreach $subdir ( @subdirs ) {
+                    if ($subdir eq ".") {
+                        $path = $topdir;
+                    } else {
+                        $path = "$topdir/$subdir";
+                    }
+                    if (! -e $path) { next; }
+                    @libnames = <$path/$tryname.$dlltype*>;
+                    if (@libnames > 0) {
+                        $libname = @libnames[-1];
+                        $needdev = 1;
+                        # print " *** need developer version of $name\n";
+                        return "runtime-only";
+
+                        # XXX old option: link in existing library
+                        # symlink $libname, "$libdir/$f.$dlltype";
+                        # if ($?) { exit 1; }
+                        # return $libname;
+                    }
+                }
+            }
+        }
+    }
+    return 0;
+}
+
+sub checkbin {
+    my $name = $_[0];
+    my $altnames = $_[1];
+    my $altpaths = $_[2];
+
+    # XXX drop this for bin?
+    @subdirs = ".";
+    if ($altpaths ne "NONE") {
+        @altpaths = split (',', $altpaths);
+        push @subdirs, @altpaths;
+    }
+
+    # try each of the library paths, with the default as well as each altpath
+    foreach $topdir ( @binpath ) {
+        foreach $subdir ( @subdirs ) {
+            if ($subdir eq ".") {
+                $path = $topdir;
+            } else {
+                $path = "$topdir/$subdir";
+            }
+            if (! -e $path) { next; }
+            $binname = "$path/$name";
+            if (-e $binname) { return $binname; }
+        }
+    }
+    return 0;
+}
+
+sub checkinc {
+    my $name = $_[0];
+    my $altnames = $_[1];
+    my $altpaths = $_[2];
+
+    @subdirs = ".";
+    if ($altpaths ne "NONE") {
+        @altpaths = split (',', $altpaths);
+        push @subdirs, @altpaths;
+    }
+
+    # try each of the library paths, with the default as well as each altpath
+    foreach $topdir ( @incpath ) {
+        foreach $subdir ( @subdirs ) {
+            if ($subdir eq ".") {
+                $path = $topdir;
+            } else {
+                $path = "$topdir/$subdir";
+            }
+            if (! -e $path) { next; }
+            $incname = "$path/$name";
+            if (-e $incname) { return $incname; }
+        }
+    }
+
+    return 0;
+}
+
+sub checklinker {
+    # we are going to supplement the libpath with entries reported by
+    # the linker (this depends on ld --verbose 
+
+    my $line, @lines;
+    my $item, @items;
+
+    @lines = `ld --verbose | grep SEARCH_DIR`;
+    foreach $line (@lines) {
+	# we expect items of the form SEARCH_DIR("path");
+	# or SEARCH_DIR("=path") -- in that case we should prepend sysroo
+	next unless ($line =~ m|SEARCH_DIR|);
+	@items = split (";", $line);
+	foreach $item (@items) {
+	    next unless ($item);
+	    ($p1) = $item =~ m|SEARCH_DIR\050"=(\S*)"|;
+	    ($p2) = $item =~ m|SEARCH_DIR\050"(\S*)"|;
+	    next if (!$p1 && !$p2);
+	    if (!$p1 && $p2) {
+		push @libpath, $p2;
+	    }
+	    if ($p1 && $p2) {
+		push @libpath, $p1;
+	    }
+	    if ($p1 && !$p2) {
+		print "programming error!\n";
+		exit 4;
+	    }
+	}
+    }
+    return 0;
+}
+
+sub checkpreprocessor {
+    # we are going to supplement the libpath with entries reported by
+    # the linker (this depends on ld --verbose 
+
+### #include <...> search starts here:
+###  /home/eugene/src/psconfig/ipp-dev.linux/include
+###  .
+###  /usr/lib/gcc/i686-linux-gnu/4.6/include
+###  /usr/local/include
+###  /usr/lib/gcc/i686-linux-gnu/4.6/include-fixed
+###  /usr/include/i386-linux-gnu
+###  /usr/include
+### End of search list.
+
+    my $line, @lines;
+    my $found_start;
+
+    @lines = `cpp --verbose < /dev/null 2>&1`;
+    $found_start = 0;
+    foreach $line (@lines) {
+	if (!$found_start) {
+	    if ($line =~ m|include \<...\> search starts here|) {
+		$found_start = 1;
+		next;
+	    } else {
+		next;
+	    }
+	}
+	chomp $line;
+	if ($line =~ m|End of search list|) {
+	    return 1;
+	}
+	($cleanline) = $line =~ m|\s*(\S*)|;
+	push @incpath, $cleanline;
+    }
+    return 0;
+}
+
+sub checkarch {
+    # we are going to supplement the global libpath supplied
+
+    # check the hardware architecture:
+    $sys=`uname -s`; chomp $sys;
+
+    # default values
+    $ranlib = "ranlib";
+    $dlltype = "so";
+
+    if ($sys eq "IRIX64") {
+        $arch = "irix";
+        return;
+    }
+
+    if ($sys eq "SunOS") {
+        $ver=`uname -r | awk '{print substr($1,1,1)}'`;
+        if ($ver == 5) {
+            $arch = "sol";
+        } else {
+            $arch="sun4";
+        }
+
+        # sun (at least) seems to need the socket library (linux does not)
+        push @libpath, "/usr/openwin/lib";
+        push @incpath, "/usr/openwin/include";
+
+        # XXX this is a problem
+        print STDERR "need to add system dependent libraries (eg, libsocket, libnsl)\n";
+        exit 1;
+        $needlibs = "$needlibs libsocket libnsl";
+        $ranlib = "touch";
+        return;
+    }
+
+    if ($sys eq "Linux") {
+        $arch = "linux";
+
+        if (-e "/etc/sidious.config") {
+            $arch = "sid";
+            return;
+        }
+
+        $mach = `uname -m`; chomp $mach;
+
+        if ($mach eq "x86_64") {
+            $arch = "lin64";
+            unshift @libpath, "/lib64";
+            unshift @libpath, "/usr/lib64";
+            unshift @libpath, "/usr/X11R6/lib64";
+            return;
+        }
+        return;
+    }
+
+    if ($sys eq "Darwin") {
+        $mach = `uname -m`; chomp $mach;
+        if ($mach eq "i386") {
+            $arch="darwin_x86";
+        } else {
+            $arch = "darwin";
+        }
+        $dlltype = "dylib";
+        unshift @libpath, "/sw/lib";
+        unshift @incpath, "/sw/include";
+        unshift @incpath, "/usr/include/sys";
+        return;
+    }
+
+    if ($sys eq "HP-UX") {
+        $arch = "hpux";
+        return;
+    }
+
+    print "unknown architecture";
+    exit 1;
+}
+
+sub usage {
+    print STDERR "USAGE: pschecklibs [-version] [-build] [-only module] [-force module] [-force all]\n";
+    print STDERR "  multiple [-force (module)] options may be specified\n";
+    print STDERR "USAGE: pschecklibs [-list] : show C libraries file\n";
+    print STDERR "USAGE: pschecklibs [-modules] : list available C modules\n";
+    exit 2;
+}
+
+sub vsystem {
+    print STDERR "@_\n";
+    $status = system ("@_");
+    $status;
+}
+
+sub list_distributions {
+    @list = <$tagsets/*.perl>;
+    foreach $line (@list) {
+        chomp $line;
+        ($dist) = $line =~ m|$tagsets/(\S*).perl|;
+        print STDERR "$dist\n";
+    }
+    exit 2;
+}
+
+sub list_modules {
+
+    foreach $line (@list) {
+	chop $line;
+	if ($line =~ m|^\s*$|) { next; }
+	if ($line =~ m|^\s*\#|) { next; }
+
+	($type, $name, $altnames, $altpaths, $tarball, $tardir, $auto_force, $configure_opts, $make_opts, $install_opts) = split (" ", $line);
+	if ($type eq "bin") {
+	    print STDERR "bin: $name\n";
+	}
+	if ($type eq "lib") {
+	    print STDERR "lib: $name\n";
+	}
+    }
+    exit 0;
+}
+
+sub failure {
+    system ("ls");
+    die "problem building $_[0] : $_[1]\n";
+    print "\033]0; ** pschecklibs: failure  ** \007";
+}
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/pscheckmods
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/pscheckmods	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/pscheckmods	(revision 41109)
@@ -0,0 +1,73 @@
+#!/usr/bin/env perl
+
+$DEBUG = 0;
+$VERBOSE = 0;
+if (@ARGV > 2 && $ARGV[0] eq "-v") {
+    $VERBOSE = 1;
+    shift @ARGV;
+}
+if (@ARGV > 2 && $ARGV[0] eq "-debug") {
+    $DEBUG = 1;
+    shift @ARGV;
+}
+if (@ARGV != 2) { die "USAGE: pscheckmods [-v] [-debug] (module) (version)\n"; }
+
+if ($VERBOSE) { print STDERR "checking in @INC\n"; }
+
+if ($DEBUG) { &detailed_require ($ARGV[0]);}
+
+$x = eval "require $ARGV[0]; 1";
+if (! $x) { 
+    if (! $VERBOSE) { exit 1; }
+    print "$ARGV[0]: missing\n";
+    &detailed_require ($ARGV[0]);
+}
+if ($VERBOSE) { print "result of require: $x\n"; }
+
+$version = eval "\$$ARGV[0]::VERSION";
+print "$ARGV[0]: $version\n";
+
+if ($ARGV[1] > $version) {
+    print "$ARGV[0] is too old: have $version : need $ARGV[1]\n";
+    exit 1;
+}
+
+exit 0;
+
+sub detailed_require {
+    my ($filename) = @_;
+    $filename =~ s|::|/|g;
+    $filename = "$filename.pm";
+    print "\ntesting : $filename\n" if $DEBUG;
+    if (exists $INC{$filename}) {
+	return 1 if $INC{$filename};
+    }
+    my ($realfilename,$result);
+  ITER: {
+      foreach $prefix (@INC) {
+	  $realfilename = "$prefix/$filename";
+	  print "real: $realfilename\n" if $DEBUG;
+	  if (-f $realfilename) {
+	      print "my filename: $filename\n" if $DEBUG;
+	      $INC{$filename} = $realfilename;
+	      print "calling 'do' on $realfilename\n" if $DEBUG;
+	      $result = do $realfilename;
+	      print "result: $result\n" if $DEBUG;
+	      last ITER;
+	  }
+      }
+      die "Can't find $filename in \@INC";
+    }
+    if ($@) {
+	print "$@" if $DEBUG;
+	$INC{$filename} = undef;
+	die $@;
+    } elsif (!$result) {
+	print "no result\n" if $DEBUG;
+	delete $INC{$filename};
+	die "$filename did not return true value";
+    } else {
+	print "done with detailed_require\n" if $DEBUG;
+	return $result;
+    }
+}
Index: /branches/ccl_branches/ipponly-20191108/psconfig/pscheckperl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/pscheckperl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/pscheckperl	(revision 41109)
@@ -0,0 +1,217 @@
+#!/usr/bin/env perl
+
+$tagsets = "tagsets";
+
+$version = "";
+$build = 0;
+$clean = 0;
+my %force;   # Names of module to force build
+@tARGV = ();
+for (; @ARGV > 0; ) {
+    if ($ARGV[0] eq "-version") {
+        $version = $ARGV[1];
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-build") {
+        $build = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-clean") {
+        $clean = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-force") {
+        $force{$ARGV[1]} = 1;
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-path")  { &list_include_path (); }
+    if ($ARGV[0] eq "-h")     { &usage (); }
+    if ($ARGV[0] eq "help")   { &usage (); }
+    if ($ARGV[0] eq "-help")  { &usage (); }
+    if ($ARGV[0] eq "--help") { &usage (); }
+    if ($ARGV[0] eq "-list")  { &list_distributions(); }
+    @tARGV = (@tARGV, $ARGV[0]);
+    shift;
+}
+@ARGV = @tARGV;
+if ( @ARGV > 1) { &usage(); }
+
+if ($build && $clean) {die "-build and -clean are incompatible\n";}
+
+if ( @ARGV == 0) {
+    @list = <$tagsets/*.perl>;
+    $file = $list[-1];
+} else {
+    $file = "$tagsets/$ARGV[0].perl";
+}
+print "examining perl modules based on $file\n";
+
+# load the perl module list
+open (FILE, $file) || die "ERROR: can't open perl module list: $file\n";
+@list = <FILE>;
+close (FILE);
+
+# set the psconfig version:
+if ("$version" eq "") {
+    $version = $ENV{'PSVERSION'};
+}
+if ("$version" eq "") {
+    $version = "default";
+}
+
+# generate new psconfig.csh if needed
+if (! -e "psconfig.csh" || ! -e "psconfig.bash") {
+    $psconfdir = $ENV{'PSCONFDIR'};
+    if ($psconfdir eq "") { die "PSCONFDIR not found, run psbuild -bootstrap and follow instructions\n"; }
+    vsystem ("cat psconfig.csh.in | sed 's|\@PSCONFDIR@|$psconfdir|' > psconfig.csh");
+    vsystem ("cat psconfig.bash.in | sed 's|\@PSCONFDIR@|$psconfdir|' > psconfig.bash");
+}
+
+$prefix  = `csh -f psconfig.csh --prefix $version`; chomp $prefix;
+$perldir = `csh -f psconfig.csh --perldir $version`; chomp $perldir;
+$homedir = `pwd`; chomp $homedir;
+
+# Astro::FITS::CFITSIO requires this to be set correctly...
+$ENV{'CFITSIO'} = $prefix;
+
+print "psconfig version: $version\n";
+print "prefix: $prefix\n";
+print "perldir: $perldir\n";
+print "PERL5LIB: $ENV{'PERL5LIB'}\n";
+$psconfdir = $ENV{'PSCONFDIR'};
+
+if ($build && ! -d $psconfdir) {
+    mkdir $psconfdir || die "unable to create psconfig dir $psconfdir";
+}
+
+$Nmissing = 0;
+@missing = ();
+foreach $line (@list) {
+    chop $line;
+    if ($line =~ m|^\s*$|) { next; }
+    if ($line =~ m|^\s*\#|) { next; }
+
+    $Nvalue = ($N, $module, $tarball, $modver, $buildopts, $prompts) = split (" ", $line);
+    if ($Nvalue < 6) {
+        print "Error in perl module config line $line\n";
+        exit 1;
+    }
+    # print "N: $N, module: $module, tarball: $tarball, modver: $modver, buildopts: $buildopts, prompts: $prompts\n";
+
+    # we require the number of fields to be fixed, so this test is now invalid:
+    # if ($modver eq "") { $modver = 0; }
+
+    if ($clean) {
+	($tardir) = $tarball =~ m|(\S*).tar.gz|;
+	$tardir = "../extperl/$tardir";
+	if (-d $tardir) {
+	    print "remove tardir: $tardir\n";
+	    vsystem ("rm -rf $tardir");
+	}
+	next;
+    }
+    
+    system ("pscheckmods $module $modver");
+    if (($? == 0) and not defined $force{$module} and not defined $force{'all'}) {
+        print "$module: found\n";
+        next;
+    }
+
+    if (defined $force{$module}) {
+        print "$module: force\n";
+    } else {
+        print "$module: missing\n";
+    }
+    unless ($build or defined $force{$module} or defined $force{'all'}) {
+        $Nmissing ++;
+        push @missing, $module;
+        next;
+    }
+
+    # try to build the module from ../extperl/Module.*.tar.gz
+    chdir "../extperl" or die "Unable to find ../extperl directory.";
+
+    print "--- extract $module from $tarball ---\n";
+    vsystem ("tar xvzf $tarball");
+
+    ($tardir) = $tarball =~ m|(\S*).tar.gz|;
+    print "tardir: $tardir\n";
+
+    chdir $tardir;
+
+    # we use NONE as the empty word
+    if ($buildopts eq "NONE") { $buildopts = ""; }
+    if ($prompts eq "NONE") { $prompts = ""; }
+
+    if (-e "Build.PL" and $module ne "DateTime::TimeZone") {
+        # vsystem("perl Build.PL --install_path lib=$perldir ");
+        vsystem("perl Build.PL --install_base $prefix $buildopts");
+        vsystem("Build");
+        vsystem("Build install");
+    } else {
+        # build the MakeMaker makefile, setting the output directories
+	# do this manually with:
+	# perl Makefile.PL PREFIX=`psconfig --prefix VERSION` LIB=`psconfig --perldir VERSION`
+	# where VERSION is e.g., ipp-1804 (install version, not build version like ipp-3.3)
+        if ($prompts) {
+            @answers = split (",", $prompts);
+            open (PIPE, "|perl Makefile.PL PREFIX=$prefix LIB=$perldir $buildopts");
+            foreach $answer (@answers) {
+                print PIPE "$answer\n";
+            }
+            close (PIPE);
+        } else {
+            vsystem ("perl Makefile.PL PREFIX=$prefix LIB=$perldir $buildopts");
+        }
+        vsystem ("make < /dev/null");
+        vsystem ("make install");
+    }
+    chdir $homedir;
+
+    # we claim to have built the module; double-check that it can be found
+    system ("pscheckmods $module $modver");
+    if ($?) {
+        die "failed to find the module we just built: $module\n";
+    }
+    print "built $module\n\n";
+}
+if (!$build) {
+    if ($Nmissing > 0) {
+        print "The following $Nmissing perl modules are missing from your system\n";
+        foreach $name (@missing) {
+            print "  $name\n";
+        }
+        print "you may install them in your local path by re-running pscheckperl with -build\n";
+    } else {
+        print "no perl modules are missing from your system\n";
+    }
+}
+exit 0;
+
+sub usage {
+    print STDERR "USAGE: pscheckperl [-version] [-build] [-path]\n";
+    exit 2;
+}
+
+sub vsystem {
+    print STDERR "@_\n";
+    $status = system ("@_");
+    $status;
+}
+
+sub list_distributions {
+    @list = <$tagsets/*.perl>;
+    foreach $line (@list) {
+        chomp $line;
+        ($dist) = $line =~ m|$tagsets/(\S*).perl|;
+        print STDERR "$dist\n";
+    }
+    exit 2;
+}
+
+sub list_include_path {
+    foreach $path (@INC) {
+        print STDERR "$path\n";
+    }
+    exit 2;
+}
Index: /branches/ccl_branches/ipponly-20191108/psconfig/psconfig.bash.in
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/psconfig.bash.in	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/psconfig.bash.in	(revision 41109)
@@ -0,0 +1,43 @@
+# this script sets the PS IPP build environment for BASH shell users
+
+if [ -z $PSCONFDIR ]; then
+  PSCONFDIR=@PSCONFDIR@
+fi
+
+if (( $# == 0 )); then
+  /bin/csh -f $PSCONFDIR/psconfig.csh
+  return 0
+fi
+
+if [[ "$1" == "--help" ]]; then
+  echo "USAGE: psconfig (version) : set configuration to specified version"
+  return 0
+fi
+
+if [[ "$1" == "--list" ]]; then
+  /bin/csh -f $PSCONFDIR/psconfig.csh --list
+  return 0
+fi
+
+version=$1
+psconfigure=`/bin/csh -f $PSCONFDIR/psconfig.csh --psconfigure $version`
+psautogen=`/bin/csh -f $PSCONFDIR/psconfig.csh --psautogen $version`
+psperlbuild=`/bin/csh -f $PSCONFDIR/psconfig.csh --psperlbuild $version`
+alias psconfigure=$psconfigure
+alias psautogen=$psautogen
+alias psperlbuild=$psperlbuild
+
+# psconfig env variables
+export PSCONFDIR=`/bin/csh -f $PSCONFDIR/psconfig.csh --psconfdir $version`
+export PSCONFIG=`/bin/csh -f $PSCONFDIR/psconfig.csh --psconfig $version`
+export PSVERSION=`/bin/csh -f $PSCONFDIR/psconfig.csh --psversion $version`
+
+# environment variables
+export PATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --path $version`
+export CPATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --cpath $version`
+export ARCH=`/bin/csh -f $PSCONFDIR/psconfig.csh --arch $version`
+export LIBRARY_PATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --library_path $version`
+export LD_LIBRARY_PATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --ld_library_path $version`
+export PKG_CONFIG_PATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --pkg_config_path $version`
+export ACLOCAL_FLAGS=`/bin/csh -f $PSCONFDIR/psconfig.csh --aclocal_flags $version`
+export PERL5LIB=`/bin/csh -f $PSCONFDIR/psconfig.csh --perl5lib $version`
Index: /branches/ccl_branches/ipponly-20191108/psconfig/psconfig.csh.in
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/psconfig.csh.in	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/psconfig.csh.in	(revision 41109)
@@ -0,0 +1,607 @@
+#/bin/csh -f
+# this file is sourced using the command 'psconfig'
+
+# list the defined psconfig versions
+set show_prefix = 0
+set show_libs = 0
+set show_bin = 0
+set show_man = 0
+set show_arch = 0
+set show_path = 0
+set show_cpath = 0
+set show_include = 0
+set show_configure = 0
+set show_autogen = 0
+set show_perlbuild = 0
+set show_perldir = 0
+set show_perl5lib = 0
+set show_psversion = 0
+set show_psconfdir = 0
+set show_psconfig = 0
+set show_library_path = 0
+set show_ld_library_path = 0
+set show_pkg_config_path = 0
+set show_aclocal_flags = 0
+set use_fink = 0
+set args = ""
+while ($#argv) 
+  switch ($argv[1])
+    case --help:
+      goto help;
+    case --list:
+      echo "PSCONFDIR : $PSCONFDIR"
+      /bin/ls $PSCONFDIR | grep -v "\<man\>" | grep -v "\<share\>" | awk -F. '{printf "  %-10s : ", $NF}{for (i = 1; i < NF-1; i++){printf "%s.", $i}}{printf "%s\n", $(NF-1)}'
+      exit 0
+    case --prefix:
+      set show_prefix = 1
+      breaksw
+    case --libs:
+      set show_libs = 1
+      breaksw
+    case --bin
+      set show_bin = 1
+      breaksw
+    case --man
+      set show_man = 1
+      breaksw
+    case --include
+      set show_include = 1
+      breaksw
+    case --psconfigure:
+      set show_configure = 1
+      breaksw;   
+    case --psautogen:
+      set show_autogen = 1
+      breaksw;
+    case --psperlbuild:
+      set show_perlbuild = 1
+      breaksw;
+    case --perldir:
+      set show_perldir = 1
+      breaksw;
+    case --perl5lib:
+      set show_perl5lib = 1
+      breaksw;
+    case --psversion
+      set show_psversion = 1
+      breaksw;
+    case --psconfdir
+      set show_psconfdir = 1
+      breaksw;
+    case --psconfig
+      set show_psconfig = 1
+      breaksw;
+    case --ld_library_path
+      set show_ld_library_path = 1
+      breaksw;
+    case --library_path
+      set show_library_path = 1
+      breaksw;
+    case --pkg_config_path
+      set show_pkg_config_path = 1
+      breaksw;
+    case --arch
+      set show_arch = 1
+      breaksw;
+    case --path
+      set show_path = 1
+      breaksw;
+    case --cpath
+      set show_cpath = 1
+      breaksw;
+    case --aclocal_flags
+      set show_aclocal_flags = 1
+      breaksw;
+    case --use-fink
+      set use_fink = 1
+      breaksw;
+    case -*:
+      echo "unknown option $1"
+      goto help;
+    default:
+      set args=($args $1);
+      breaksw;
+  endsw
+  shift
+end
+if ($#args != 1) goto usage
+if ("$args" == "") goto usage
+
+# make this configurable by the user
+if (! $?PSCONFDIR) then
+  setenv PSCONFDIR @PSCONFDIR@
+endif
+
+if (! $?PSVERSION) then
+  setenv PSVERSION default
+endif
+
+if (-e $HOME/.psconfigrc) then
+  source $HOME/.psconfigrc
+endif
+
+setenv PSVERSION $args[1]
+
+if ($?CPATH == 0) setenv CPATH
+if ($?LIBRARY_PATH == 0) setenv LIBRARY_PATH
+if ($?LD_LIBRARY_PATH == 0) setenv LD_LIBRARY_PATH
+if ($?PKG_CONFIG_PATH == 0) setenv PKG_CONFIG_PATH
+if ($?PERL5LIB == 0) setenv PERL5LIB
+if ($?MANPATH == 0) setenv MANPATH
+if ($?LDFLAGS == 0) setenv LDFLAGS
+
+# identify system architecture
+set sys=`uname -s` 
+if ("$sys" == "SunOS") then
+ set ver = `uname -r | awk '{print substr($1,1,1)}'`;
+ if ($ver > 4) then 
+   set sys = "Solaris"
+ endif
+endif
+if ("$sys" == "Linux") then
+ grep "Sidious" /etc/issue > /dev/null
+ if ($status == 0) then 
+  set sys = Sidious
+ endif
+ grep "Red Hat Enterprise" /etc/issue > /dev/null
+ if ($status == 0) then 
+  set sys = RedHat
+ endif
+endif
+
+# determine architecture-dependent paths & variables for all shells
+switch ($sys)
+ case IRIX64:
+   setenv ARCH irix;
+   breaksw;
+
+ case Solaris:
+   setenv ARCH sol
+   breaksw;
+
+ case SunOs:
+   setenv ARCH sun4
+   breaksw;
+
+ case Linux:
+   setenv ARCH linux;
+   set mach=`uname -m`
+   if ("$mach" == "x86_64") setenv ARCH lin64
+   breaksw;
+
+ case Darwin:
+   setenv ARCH darwin;
+   set mach=`uname -m`
+   if ("$mach" == "i386") setenv ARCH darwin_x86
+   breaksw;
+
+ case Sidious:
+   setenv ARCH sid;
+   breaksw;
+
+ case RedHat:
+   setenv ARCH linrh;
+   set mach=`uname -m`
+   if ("$mach" == "x86_64") setenv ARCH linrh64
+   breaksw;
+
+ case HP-UX:
+    setenv ARCH hp;
+    breaksw;
+
+ default:
+   echo "unknown architecture";
+   setenv ARCH unknown;
+   breaksw;
+endsw
+ 
+setenv PSCONFIG $PSVERSION.$ARCH
+
+set newpath = ""
+set pathlist = `echo $PATH | tr ':' '\n'`
+foreach name ($pathlist)
+  echo $name | grep $PSCONFDIR > /dev/null
+  if ($status == 0) continue
+  if ($newpath == "") then
+    set newpath = {$name}:
+  else
+    set newpath = {$newpath}{$name}:
+  endif
+end
+set bindir = {$PSCONFDIR}/{$PSCONFIG}/bin
+if ("$PSCONFIG" == "none") then
+  setenv PATH {$newpath}
+else
+  setenv PATH {$bindir}:{$newpath}
+endif
+
+set mandir  = {$PSCONFDIR}/{$PSCONFIG}/man
+set newpath = ""
+set pathlist = `echo $MANPATH | tr ':' '\n'`
+foreach name ($pathlist)
+  echo $name | grep $PSCONFDIR > /dev/null
+  if ($status == 0) continue
+  if ($newpath == "") then
+    set newpath = {$name}:
+  else
+    set newpath = {$newpath}{$name}:
+  endif
+end
+if ("$PSCONFIG" == "none") then
+  if ("$newpath" == "") then
+    unsetenv MANPATH
+  else
+    setenv MANPATH {$newpath}
+  endif 
+else
+  if ("$newpath" == "") then
+    setenv MANPATH {$mandir}:
+  else
+    setenv MANPATH {$mandir}:{$newpath}
+  endif 
+endif 
+
+# set CPATH, used to find include files
+set incdir  = {$PSCONFDIR}/{$PSCONFIG}/include
+set newpath = ""
+set pathlist = `echo $CPATH | tr ':' '\n'`
+foreach name ($pathlist)
+  echo $name | grep $PSCONFDIR > /dev/null
+  if ($status == 0) continue
+  if ($newpath == "") then
+    set newpath = {$name}:
+  else
+    set newpath = {$newpath}{$name}:
+  endif
+end
+
+## XXX mysql (and others?) are not installed in the correct location: they go into
+## prefix/lib/mysql regardless of configure options
+if ("$PSCONFIG" == "none") then
+  if ("$newpath" == "") then
+    unsetenv CPATH
+  else
+    setenv CPATH {$newpath}:
+  endif 
+else
+  if ("$newpath" == "") then
+    setenv CPATH {$incdir}:{$PSCONFDIR}/{$PSCONFIG}/include/mysql:
+  else
+    setenv CPATH {$incdir}:{$PSCONFDIR}/{$PSCONFIG}/include/mysql:{$newpath}:
+  endif 
+endif 
+
+# set LIBRARY_PATH and LD_LIBRARY_PATH, used to find libraries
+set libdir  = {$PSCONFDIR}/{$PSCONFIG}/lib
+set newpath = ""
+set pathlist = `echo $LD_LIBRARY_PATH | tr ':' '\n'`
+foreach name ($pathlist)
+  echo $name | grep $PSCONFDIR > /dev/null
+  if ($status == 0) continue
+  if ($newpath == "") then
+    set newpath = {$name}:
+  else
+    set newpath = {$newpath}{$name}:
+  endif
+end
+
+## XXX mysql (and others?) are not installed in the correct location: they go into
+## prefix/lib/mysql regardless of configure options
+if ("$PSCONFIG" == "none") then
+  if ("$newpath" == "") then
+    unsetenv LD_LIBRARY_PATH
+    unsetenv LIBRARY_PATH
+  else
+    setenv LD_LIBRARY_PATH {$newpath}:
+    setenv LIBRARY_PATH {$newpath}:
+  endif 
+else
+  if ("$newpath" == "") then
+    setenv LD_LIBRARY_PATH {$libdir}:{$PSCONFDIR}/{$PSCONFIG}/lib/mysql:
+    setenv LIBRARY_PATH {$libdir}:{$PSCONFDIR}/{$PSCONFIG}/lib/mysql:
+  else
+    setenv LD_LIBRARY_PATH {$libdir}:{$PSCONFDIR}/{$PSCONFIG}/lib/mysql:{$newpath}:
+    setenv LIBRARY_PATH {$libdir}:{$PSCONFDIR}/{$PSCONFIG}/lib/mysql:{$newpath}:
+  endif 
+endif 
+
+# supplement CPATH, LIBRARY_PATH and LD_LIBRARY_PATH with a few extra common locations
+# we probably can drop the system libraries here
+set xtralibs = ( "/usr/local/lib" "/usr/lib" "/usr/X11R6/lib" "/lib" )
+set xtrapath = ( "/usr/local/include" "/usr/include" "/usr/X11R6/include" )
+
+# add architecture-dependent paths
+switch ($ARCH)
+   breaksw;
+
+ case sol:
+ case sun4:
+   set xtralibs = ( $xtralibs "/usr/openwin/lib" )
+   set xtrapath = ( $xtrapath "/usr/openwin/include")
+   breaksw;
+
+ case linux:
+ case linrh:
+   # old test to see if we need no-as-needed
+   # gcc --version | grep -e 4.8 -e 4.6 -e 4.5 | grep Ubuntu >& /dev/null
+
+   # check that we need to add --no-as-needed (gcc version >= 4.5)
+   # https://lists.ubuntu.com/archives/ubuntu-devel-announce/2010-October/000772.html
+   # https://lists.ubuntu.com/archives/ubuntu-devel-announce/2010-November/000783.html
+   # gcc --version | awk '{split($0,value,/\(.+\)/)}(NR == 1){print value[2]}'
+   # gcc --version | awk '{split($0,value,/\(.+\)/)}(NR == 1){print value[2]}' | awk -F. '{printf "%s.%s\n", $1, $2}'
+   # gcc --version | awk '{split($0,value,/\(.+\)/)}(NR == 1){print value[2]}' | awk -F. '{printf "%s.%s\n", $1, $2}' | awk '{n=0}($1 >= 4.5){n=1}{print n}'
+   set use_no_as_needed = `gcc --version | awk '{split($0,value,/\(.+\)/)}(NR == 1){print value[2]}' | awk -F. '{printf "%s.%s\n", $1, $2}' | awk '{n=0}($1 >= 4.5){n=1}{print n}'`
+   if ($use_no_as_needed == 1) then
+    set xtraflags = "-Wl,--no-as-needed"
+    echo $LDFLAGS | grep -- $xtraflags >& /dev/null
+    if ($status) then
+      setenv LDFLAGS "$LDFLAGS $xtraflags"
+    endif
+   endif  
+   breaksw;
+
+ case lin64:
+ case linrh64:
+   # old test to see if we need no-as-needed
+   # gcc --version | grep -e 4.8 -e 4.6 -e 4.5 | grep Ubuntu >& /dev/null
+
+   # check that we need to add --no-as-needed (gcc version >= 4.5)
+   # https://lists.ubuntu.com/archives/ubuntu-devel-announce/2010-October/000772.html
+   # https://lists.ubuntu.com/archives/ubuntu-devel-announce/2010-November/000783.html
+   # gcc --version | awk '{split($0,value,/\(.+\)/)}(NR == 1){print value[2]}'
+   # gcc --version | awk '{split($0,value,/\(.+\)/)}(NR == 1){print value[2]}' | awk -F. '{printf "%s.%s\n", $1, $2}'
+   # gcc --version | awk '{split($0,value,/\(.+\)/)}(NR == 1){print value[2]}' | awk -F. '{printf "%s.%s\n", $1, $2}' | awk '{n=0}($1 >= 4.5){n=1}{print n}'
+   set use_no_as_needed = `gcc --version | awk '{split($0,value,/\(.+\)/)}(NR == 1){print value[2]}' | awk -F. '{printf "%s.%s\n", $1, $2}' | awk '{n=0}($1 >= 4.5){n=1}{print n}'`
+   if ($use_no_as_needed == 1) then
+    set xtraflags = "-Wl,--no-as-needed"
+    echo $LDFLAGS | grep -- $xtraflags >& /dev/null
+    if ($status) then
+      setenv LDFLAGS "$LDFLAGS $xtraflags"
+    endif
+   endif  
+   set xtralibs = ( $xtralibs "/usr/lib64" "/usr/X11R6/lib64" "/lib64" )
+   breaksw;
+
+ case darwin:
+ case darwin_x86:
+   if ($use_fink) then
+     set xtralibs = ( $xtralibs "/sw/lib" )
+     set xtrapath = ( $xtrapath "/sw/include" )
+   endif
+   breaksw;
+
+ case sid:
+ case hp:
+ case irix:
+
+ default:
+   echo "unknown architecture";
+   breaksw;
+endsw
+
+# add to LD_LIBRARY_PATH if not found
+foreach name ($xtralibs)
+  echo $LD_LIBRARY_PATH | grep $name> /dev/null
+  if ($status == 0) continue
+  setenv LD_LIBRARY_PATH {$LD_LIBRARY_PATH}{$name}:
+end
+# add to LIBRARY_PATH if not found
+foreach name ($xtralibs)
+  echo $LIBRARY_PATH | grep $name > /dev/null
+  if ($status == 0) continue
+  setenv LIBRARY_PATH {$LIBRARY_PATH}{$name}:
+end
+# add to CPATH if not found
+foreach name ($xtrapath)
+  echo $CPATH | grep $name > /dev/null
+  if ($status == 0) continue
+  setenv CPATH {$CPATH}{$name}:
+end
+
+# Build wants to put things in prefix/*, MakeMaker wants to put them in prefix/perl5/*
+set plibdir  = {$PSCONFDIR}/{$PSCONFIG}/lib
+set plib5dir = {$PSCONFDIR}/{$PSCONFIG}/lib/perl5
+set plibsite = {$PSCONFDIR}/{$PSCONFIG}/lib/perl5/site_perl
+set newpath = ""
+set pathlist = `echo $PERL5LIB | tr ':' '\n'`
+# build newpath with contents of PERL5LIB excluding PSCONFDIR entries
+foreach name ($pathlist)
+  echo $name | grep $PSCONFDIR > /dev/null
+  if ($status == 0) continue
+  if ($newpath == "") then
+    set newpath = {$name}:
+  else
+    set newpath = {$newpath}{$name}:
+  endif
+end
+if ("$PSCONFIG" == "none") then
+  if ("$newpath" == "") then
+    unsetenv PERL5LIB
+  else
+    setenv PERL5LIB {$newpath}
+  endif 
+else
+  if ("$newpath" == "") then
+    setenv PERL5LIB {$plibdir}:{$plib5dir}:{$plibsite}
+  else
+    setenv PERL5LIB {$plibdir}:{$plib5dir}:{$plibsite}:{$newpath}
+  endif 
+endif 
+
+set newpath = ""
+set pathlist = `echo $PKG_CONFIG_PATH | tr ':' '\n'`
+foreach name ($pathlist)
+  echo $name | grep $PSCONFDIR > /dev/null
+  if ($status == 0) continue
+  if ($newpath == "") then
+    set newpath = {$name}:
+  else
+    set newpath = {$newpath}{$name}:
+  endif
+end
+if ("$PSCONFIG" == "none") then
+  if ("$newpath" == "") then
+    unsetenv PKG_CONFIG_PATH
+  else
+    setenv PKG_CONFIG_PATH {$newpath}
+  endif
+else
+  if ("$newpath" == "") then
+    setenv PKG_CONFIG_PATH {$PSCONFDIR}/{$PSCONFIG}/lib/pkgconfig:
+  else
+    setenv PKG_CONFIG_PATH {$PSCONFDIR}/{$PSCONFIG}/lib/pkgconfig:{$newpath}
+  endif
+endif
+
+if ("$PSCONFIG" == "none") then
+  alias  psconfigure ./configure
+  alias  psautogen ./autogen.sh
+  alias  psperlbuild perl Build.PL
+else
+  alias  psconfigure ./configure --prefix={$PSCONFDIR}/{$PSCONFIG} --bindir=$bindir --libdir=$libdir --mandir=$mandir --includedir=$incdir --sysconfdir={$PSCONFDIR}/{$PSCONFIG}/etc --datadir={$PSCONFDIR}/{$PSCONFIG}/share
+  alias  psautogen ./autogen.sh  --prefix={$PSCONFDIR}/{$PSCONFIG} --bindir=$bindir --libdir=$libdir --mandir=$mandir --includedir=$incdir --sysconfdir={$PSCONFDIR}/{$PSCONFIG}/etc --datadir={$PSCONFDIR}/{$PSCONFIG}/share
+  alias  psperlbuild perl ./Build.PL --prefix {$PSCONFDIR}/{$PSCONFIG} --install_path script=$bindir --install_path arch=$bindir --install_path bin=$bindir --install_path lib=$libdir --install_path bindoc={$PSCONFDIR}/{$PSCONFIG}/man/man1 --install_path libdoc={$PSCONFDIR}/{$PSCONFIG}/man/man3
+  setenv ACLOCAL_FLAGS "-I $PSCONFDIR/$PSCONFIG/share/aclocal"
+endif
+
+# list selected environment variables
+if ($show_prefix) then
+  echo $PSCONFDIR/$PSCONFIG
+  exit 0
+endif
+if ($show_libs) then
+  echo $libdir
+  exit 0
+endif
+if ($show_bin) then
+  echo $bindir
+  exit 0
+endif
+if ($show_man) then
+  echo $mandir
+  exit 0
+endif
+if ($show_include) then
+  echo $incdir
+  exit 0
+endif
+
+# list the defined psconfig versions
+if ($show_configure) then
+  alias psconfigure 
+  exit 0
+endif
+
+# list the defined psconfig versions
+if ($show_autogen) then
+  alias psautogen
+  exit 0
+endif
+
+# list the defined psconfig versions
+if ($show_perlbuild) then
+  alias psperlbuild
+  exit 0
+endif
+
+if ($show_perldir) then
+  echo $plibdir
+  exit 0
+endif
+
+if ($show_perl5lib) then
+  echo $PERL5LIB
+  exit 0
+endif
+
+if ($show_psversion) then
+  echo $PSVERSION
+  exit 0
+endif
+
+if ($show_psconfdir) then
+  echo $PSCONFDIR
+  exit 0
+endif
+
+if ($show_psconfig) then
+  echo $PSCONFIG
+  exit 0
+endif
+
+if ($show_ld_library_path) then
+  echo $LD_LIBRARY_PATH
+  exit 0
+endif
+
+if ($show_library_path) then
+  echo $LIBRARY_PATH
+  exit 0
+endif
+
+if ($show_pkg_config_path) then
+  echo $PKG_CONFIG_PATH
+  exit 0
+endif
+
+if ($show_arch) then
+  echo $ARCH
+  exit 0
+endif
+
+if ($show_path) then
+  echo $PATH
+  exit 0
+endif
+
+if ($show_cpath) then
+  echo $CPATH
+  exit 0
+endif
+
+if ($show_aclocal_flags) then
+  echo $ACLOCAL_FLAGS
+  exit 0
+endif
+
+
+
+exit 0
+
+usage:
+  if (! $?PSCONFDIR) echo "PSCONFDIR is not set : run psconfig with an argument to setup"
+  if (! $?PSVERSION) echo "PSVERSION is not set : run psconfig with an argument to setup"
+  if (! $?ARCH)      echo "ARCH is not set : run psconfig with an argument to setup"
+  echo $PSCONFDIR : $PSVERSION : $ARCH 
+  echo "psconfig --help for additional info"
+  exit 2
+
+help:
+  echo "psconfig: set or show the current pslib configuration information"
+  echo "USAGE: psconfig (version) : set configuration to specified version"
+  echo "       psconfig --bin     : return the current path"
+  echo "       psconfig --libs    : return the current library path"
+  echo "       psconfig --include"
+  echo 
+  echo "       psconfig --prefix  : show prefix directory"
+  echo "       psconfig --psconfigure"
+  echo "       psconfig --psautogen"
+  echo "       psconfig --psperlbuild"
+  echo "       psconfig --perldir"
+  echo "       psconfig --perl5lib"
+  echo "       psconfig --psversion"
+  echo "       psconfig --psconfdir"
+  echo "       psconfig --library_path"
+  echo "       psconfig --ld_library_path"
+  echo "       psconfig --pkg_config_path"
+  echo "       psconfig --arch"
+  echo "       psconfig --path"
+  echo "       psconfig --cpath"
+  echo "       psconfig --aclocal_flags"
+  echo "       psconfig --use-fink"
+  echo
+  echo "       psconfig --list    : list currently availabe configuration versions"
+  echo "       psconfig --help    : this listing"
+  echo " use ~/.psconfigrc to set PSCONFDIR as desired"
+  exit 1
Index: /branches/ccl_branches/ipponly-20191108/psconfig/psdist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/psdist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/psdist	(revision 41109)
@@ -0,0 +1,313 @@
+#!/usr/bin/env perl
+
+$tagsets = "tagsets";
+
+$cvs  = 0;
+$diff = 0;
+$settag = 0;
+$update = 0;
+$mkdist = 0;
+$module = "";
+$settag_mode = "";
+$update_mode = "";
+$mkdist_mode = "";
+$mkdist_head = 0;
+@tARGV = ();
+for (; @ARGV > 0; ) {
+    if ($ARGV[0] eq "-diff") {
+        $diff = 1;
+        shift; next;
+    }
+    if ($ARGV[0] eq "-update") {
+        $update = 1; shift;
+        if ($ARGV[0] eq "tags") {
+            $update_mode = "tags";
+            shift; next
+        }
+        if ($ARGV[0] eq "head") {
+            $update_mode = "head";
+            shift; next
+        }
+        &usage();
+    }
+    if ($ARGV[0] eq "-tag") {
+        $settag = 1; shift;
+        if ($ARGV[0] eq "dev") {
+            $settag_mode = "dev";
+            shift; next
+        }
+        if ($ARGV[0] eq "rev") {
+            $settag_mode = "rev";
+            shift; next
+        }
+        if ($ARGV[0] eq "branch") {
+            $settag_mode = "branch";
+            shift; next
+        }
+        &usage();
+    }
+    if ($ARGV[0] eq "-dist") {
+        $mkdist = 1; shift;
+        if ($ARGV[0] eq "cvs") {
+            $mkdist_mode = "cvs";
+            shift; next
+        }
+        if ($ARGV[0] eq "tree") {
+            $mkdist_mode = "tree";
+            shift; next
+        }
+        if ($ARGV[0] eq "autogen") {
+            $mkdist_mode = "autogen";
+            shift; next
+        }
+        if ($ARGV[0] eq "tarball") {
+            $mkdist_mode = "tarball";
+            shift; next
+        }
+        &usage();
+    }
+    if ($ARGV[0] eq "-module") {
+        $module = $ARGV[1];
+        shift; shift; next;
+    }
+    if ($ARGV[0] eq "-head")  { $mkdist_head = 1; shift; next; }
+    if ($ARGV[0] eq "-list")  { &list_distributions(); }
+    if ($ARGV[0] eq "-h")     { &usage(); }
+    if ($ARGV[0] eq "-help")  { &usage(); }
+    if ($ARGV[0] eq "--help") { &usage(); }
+    @tARGV = (@tARGV, $ARGV[0]);
+    shift;
+}
+@ARGV = @tARGV;
+
+if ( @ARGV != 1) { &usage (); }
+
+$distribution = $ARGV[0];
+&load_distfile ();
+
+if ($diff)   { &difflist (); }
+if ($settag) { &settags (); }
+if ($update) { &update_tree (); }
+if ($mkdist) { &make_distribution (); }
+&usage();
+
+sub vsystem {
+    print STDERR "@_\n";
+    $status = system ("@_");
+    $status;
+}
+
+sub difflist {
+
+    for ($i = 0; $i < @module; $i++) {
+        # the base component cannot be rdiffed
+        print STDERR "--- $module[$i] ---\n";
+        if ($module[$i] eq "base") { next; }
+        if ($tag[$i] eq "") { next; }
+        &vsystem ("cvs -q rdiff -s -r $tag[$i] $module[$i]");
+        print STDERR "\n\n";
+    }
+    exit 0;
+}
+
+sub settags {
+    print STDERR "setting tags\n";
+    if ($settag_mode eq "") { die "-tag mode is not set\n"; }
+    for ($i = 0; $i < @module; $i++) {
+        if (($module ne "") && ($module ne $module[$i])) { next; }
+        ## XXX make this backwards compatible with pre-ipp-2.4 releases (with four, not five, entries)?
+        ($do_tag, $do_build, $do_dist, $do_update, $dev_build) = $mode[$i] =~ m|(\S)(\S)(\S)(\S)(\S)|;
+        if ($do_tag eq "N") {
+            push @remind, $module[$i];
+            next;
+        }
+        if ($branchtag[$i] eq "") { die "branch tag missing for $module[$i]\n"; }
+        if ($branchver[$i] eq "") { die "branch tag version missing\n"; }
+        $tag = "$branchtag[$i]$branchver[$i]";
+        if ($settag_mode eq "branch") {
+            &vsystem ("cvs -q rtag -b $branchtag[$i] $module[$i]");
+            next;
+        }
+        if ($settag_mode eq "dev") {
+            &vsystem ("cvs -q rtag $tag $module[$i]");
+            next;
+        }
+        if ($settag_mode eq "rev") {
+            &vsystem ("cvs -q rtag -r $branchtag[$i] $tag $module[$i]");
+            next;
+        }
+        die "programming error";
+    }
+    for ($i = 0; $i < @remind; $i++) {
+        print STDERR "remember to set tag for $remind[$i] if needed\n";
+    }
+    exit 0;
+}
+
+sub update_tree {
+    print STDERR "updating tree\n";
+    if ($update_mode eq "") { die "-update mode is not set\n"; }
+
+    $homedir = `pwd`; chomp $homedir;
+    chdir "..";
+
+    for ($i = 0; $i < @module; $i++) {
+        if (($module ne "") && ($module ne $module[$i])) { next; }
+        ($do_tag, $do_build, $do_dist, $do_update) = $mode[$i] =~ m|(\S)(\S)(\S)(\S)|;
+        if ($do_update eq "N") {
+            push @remind, $module[$i];
+            next;
+        }
+        # only update modules with tags
+        if ($branchtag[$i] eq "") { die "branch tag missing for $module[$i]\n"; }
+        if ($branchver[$i] eq "") { die "branch tag version missing\n"; }
+        $tag = "$branchtag[$i]$branchver[$i]";
+        if ($update_mode eq "tags") {
+            &vsystem ("cvs -q co -r $tag $module[$i]");
+            next;
+        }
+        if ($update_mode eq "head") {
+            &vsystem ("cvs -q co -A $module[$i]");
+            next;
+        }
+        die "programming error";
+    }
+    for ($i = 0; $i < @remind; $i++) {
+        print STDERR "remember to update $remind[$i] if needed\n";
+    }
+    chdir $homedir;
+    exit 0;
+}
+
+# XXX probably need to force CVSROOT here
+sub make_distribution {
+    # extract source tree and optionally package the distribution into a tarball
+    print STDERR "making distribution\n";
+    if ($mkdist_mode eq "") { die "-dist mode is not set\n"; }
+    mkdir $distribution;
+    chdir $distribution;
+    for ($i = 0; $i < @module; $i++) {
+        if (($module ne "") && ($module ne $module[$i])) { next; }
+        ($do_tag, $do_build, $do_dist, $do_update) = $mode[$i] =~ m|(\S)(\S)(\S)(\S)|;
+        if ($do_dist eq "N") { next; }
+
+        if ($branchtag[$i] eq "") { die "branch tag missing for $module[$i]\n"; }
+        if ($branchver[$i] eq "") { die "branch tag version missing\n"; }
+        $tag = "$branchtag[$i]$branchver[$i]";
+
+        if ($mkdist_head) {
+            &vsystem ("cvs co $module[$i]");
+            if ($status) { die "error running cvs"; }
+        } else {
+            &vsystem ("cvs co -r $tag $module[$i]");
+            if ($status) { die "error running cvs"; }
+        }
+    }
+    chdir "..";
+    if ($mkdist_mode eq "cvs") { exit 0; }
+
+    # remove the CVS directories
+    &vsystem ("rm -r `find $distribution -name CVS`");
+    if ($mkdist_mode eq "tree") { exit 0; }
+
+    # make sure the aclocal path exists
+    @word = split (" ", $ENV{'ACLOCAL_FLAGS'});
+    if (@word != 2) { &failure("setup", "ACLOCAL_FLAGS is not set"); }
+    if (! -e $word[1]) { vsystem ("mkdir -p $word[1]"); }
+
+    # run autogen.sh, if present, to build a configure script
+    chdir $distribution;
+    for ($i = 0; $i < @module; $i++) {
+        if (($module ne "") && ($module ne $module[$i])) { next; }
+        ($do_tag, $do_build, $do_dist, $do_update) = $mode[$i] =~ m|(\S)(\S)(\S)(\S)|;
+        if ($do_dist eq "N") { next; }
+
+        if (! -e "$module[$i]/autogen.sh" || -e "$module[$i]/Build.PL" ) { next; }
+        chdir $module[$i];
+
+        vsystem ("./autogen.sh --no-configure");
+        if ($status) { die "error running autogen.sh"; }
+
+#       vsystem ("make distclean");
+#       if ($status) { die "error running make distclean"; }
+        chdir "..";
+    }
+    chdir "..";
+    if ($mkdist_mode eq "autogen") { exit 0; }
+
+    # build a tarball from the full tree
+    if (! -e tarballs) { mkdir "tarballs"; }
+    &vsystem ("tar cvzf tarballs/$distribution.tgz  $distribution");
+    if ($status) { die "error creating tarball\n"; }
+    exit 0;
+}
+
+sub list_distributions {
+    @list = <$tagsets/*.dist>;
+    foreach $line (@list) {
+        chomp $line;
+        ($dist) = $line =~ m|$tagsets/(\S*).dist|;
+        print STDERR "$dist\n";
+    }
+    exit 2;
+}
+
+sub load_distfile {
+    # open and read the distribution file
+    # results go into @module, @branchtag, @branchver, @mode
+    $file = "$tagsets/$ARGV[0].dist";
+    open (FILE, $file) || die "ERROR: can't open distribution file $file\n";
+    @list = <FILE>;
+    close (FILE);
+
+    @mode = ();
+    @module = ();
+    @branchtag = ();
+    @branchver = ();
+
+    foreach $line (@list) {
+        chop $line;
+        if ($line =~ m|^\s*$|) { next; }
+        if ($line =~ m|^\s*\#|) { next; }
+
+        ($mode, $my_module, $branchtag, $branchver) = split (" ", $line);
+
+        if ($my_module eq "") { die "missing module name\n"; }
+
+        ($do_tag, $do_build, $do_dist, $do_update) = $mode =~ m|(\S)(\S)(\S)(\S)|;
+        if (($do_tag ne "Y") && ($do_tag ne "N")) { die "invalid tag option $do_tag\n"; }
+        if (($do_build ne "Y") && ($do_build ne "N")) { die "invalid tag option $do_build\n"; }
+        if (($do_dist ne "Y") && ($do_dist ne "N")) { die "invalid tag option $do_dist\n"; }
+        if (($do_update ne "Y") && ($do_update ne "N")) { die "invalid tag option $do_update\n"; }
+
+        # print "module: $my_module, branchtag: $branchtag, branchver: $branchver ";
+        # print "tag: $do_tag, build: $do_build, dist: $do_dist, update: $do_update\n";
+
+        push @mode, $mode;
+        push @module, $my_module;
+        push @branchtag, $branchtag;
+        push @branchver, $branchver;
+    }
+}
+
+sub usage {
+    print STDERR "USAGE: psdist [options] (distribution]\n";
+    print STDERR "     : -tag (dev)      : set tags on cvs HEAD based on distribution table (requires -tag)\n";
+    print STDERR "     : -tag (rev)      : set tags on branch based on distribution table\n";
+    print STDERR "     : -tag (branch)   : create branch tags based on distribution table (requires -tag)\n\n";
+
+    print STDERR "     : -update (tags)  : update this tree from cvs to match distribution tags\n";
+    print STDERR "     : -update (head)  : update this tree from cvs to match distribution tags\n\n";
+
+    print STDERR "     : -dist (cvs)     : check out a distribution and leave CVS directories in place\n";
+    print STDERR "     : -dist (tree)    : check out a distribution and leave a clean tree\n";
+    print STDERR "     : -dist (autogen) : check out a distribution and run autogen\n";
+    print STDERR "     : -dist (tarball) : check out a distribution and make a tarball\n";
+    print STDERR "     : -head           : use the cvs HEAD for distribution checkout (requires -dist)\n\n";
+
+    print STDERR "     : -module         : perform action only on the specified module\n";
+    print STDERR "     : -list           : list valid distributions \n";
+    print STDERR "     : -diff           : show the difference between the distribution and current cvs HEAD\n\n";
+    exit 2;
+}
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/00_nebulous-1.0.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/00_nebulous-1.0.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/00_nebulous-1.0.perl	(revision 41109)
@@ -0,0 +1,87 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+# a Version of 0 is required if no specific version is desired
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.54.tar.gz           0
+  02    Params::Validate               Params-Validate-0.92.tar.gz              0.92
+# 02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0
+  06    DateTime                       DateTime-0.36.tar.gz                     0
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0
+  15    Digest                         Digest-1.15.tar.gz                       0
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz            0
+  17    version                        version-0.70.tar.gz                      0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz              0
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz    0
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz            0
+  21    URI                            URI-1.35.tar.gz                          1.30
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz         0
+  23    Test::Exception                Test-Exception-0.24.tar.gz               0
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz                0
+  25    Array::Compare                 Array-Compare-1.13.tar.gz                0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz                  0
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                   0
+  28    Net::FTP                       libnet-1.19.tar.gz                       0
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz               0
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz       0
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz             1.94
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz               0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06
+  34    CGI                            CGI.pm-3.25.tar.gz                       3
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                     1.05
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz              1.1.1
+  37    LWP                            libwww-perl-5.805.tar.gz                 0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz              0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                    0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz            0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                    0
+  42    YAML                           YAML-0.62.tar.gz                         0.58           y
+  43    Module::Load                   Module-Load-0.10.tar.gz                  0
+  44    Params::Check                  Params-Check-0.25.tar.gz                 0
+  45    Template                       Template-Toolkit-2.16.tar.gz             0              n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz        2.6
+  47    Storable                       Storable-2.15.tar.gz                     0
+  48    IO::String                     IO-String-1.08.tar.gz                    0
+  49    Date::Parse                    TimeDate-1.16.tar.gz                     0
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                  0
+  51    DB_File                        DB_File-1.814.tar.gz                     0
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz                 0
+  53    Heap                           Heap-0.71.tar.gz                         0
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz      0
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                      0
+  56    Cache                          Cache-2.04.tar.gz                        0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                      0.36
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
+  65    Test::More                     Test-Simple-0.74.tar.gz                  0.49
+  66    Apache::DBI                    Apache-DBI-1.06.tar.gz                   0
+  67    Apache2::SOAP                  Apache2-SOAP-0.72.tar.gz                 0
+  68    Test::URI                      Test-URI-1.08.tar.gz                     0
+# 69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0
+  70    Config::YAML                   Config-YAML-1.42.tar.gz                  0
+  72    File::ExtAttr                  File-ExtAttr-1.07.tar.gz                 0
+  73    DBI                            DBI-1.601.tar.gz                         0
+  71    DBD::mysql                     DBD-mysql-4.006.tar.gz                   0
+  74    Net::Server::Daemonize         Net-Server-0.97.tar.gz                   0.05
+  75    File::Path                      File-Path-2.04.tar.gz			0
+  76    File::Mountpoint                File-Mountpoint-0.01.tar.gz             0.01
+  77    Filesys::Df                     Filesys-Df-0.92.tar.gz                  0.92
+  78    SQL::Interp                     SQL-Interp-1.06.tar.gz                  0
+  79    Log::Dispatch::Email::MailSend  Log-Dispatch-2.22.tar.gz		0
+  80    Abstract::Meta::Class          Abstract-Meta-Class-0.13.tar.gz		0
+  81    DBIx::Connection               DBIx-Connection-0.13.tar.gz		0
+  82    Simple::SAX::Serializer        Simple-SAX-Serializer-0.05.tar.gz	0
+  83    Test::Distribution             Test-Distribution-2.00.tar.gz		0
+  84    Test::DBUnit                   Test-DBUnit-0.20.tar.gz                  0.20
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.0.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.0.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.0.dist	(revision 41109)
@@ -0,0 +1,53 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update?
+# ||||
+# ||||  CVS module     CVS branch tag   CVS branch version   
+# |||| 
+  NYNN  Ohana
+  NNYY  ohana.base     	base-1-5         -0
+  NNYY  libohana       	libohana-1-9     -0
+  NNYY  libfits        	libfits-1-7      -0
+  NNYY  libautocode    	libautocode-1-6  -0
+  NNYY  libdvo         	libdvo-1-4       -0
+  NNYY  libkapa        	libkapa-1-3      -0
+  NNYY  addstar        	addstar-1-8      -0
+  NNYY  delstar        	delstar-1-7      -0
+  NNYY  getstar        	getstar-1-3      -0
+  NNYY  kapa           	kapa-1-7         -0
+  NNYY  kii            	kii-1-7          -0
+  NNYY  relphot        	relphot-1-5      -0
+  NNYY  uniphot        	uniphot-1-5      -0
+  NNYY  opihi.base     	opihi-2-9        -0
+  NNYY  mana           	mana-1-7         -0
+  NNYY  dvo            	dvo-1-0          -0
+  NNYY  pantasks       	pantasks-1-0     -0
+  NNYY  pcontrol       	pcontrol-1-0     -0
+  NNYY  pclient        	pclient-1-0      -0
+  NYYY  psLib          	rel-1-0          -0
+  NYYY  psModules      	rel-1-0          -0
+  YYYY  psphot         	rel-0-8          -0
+  YYYY  psastro        	rel-0-8          -0
+  YYYY  ppStats        	rel-1-0          -0
+  YYYY  ppImage        	rel-1-0          -0
+  YYYY  ppNorm         	rel-1-0          -0
+  YYYY  ppMerge        	rel-1-0          -0
+  YNYY  pois           	rel-0-1          -0
+  YNYY  pswarp         	rel-0-1          -0
+  YNYY  ppStac         	rel-0-1          -0
+  YYYY  PS-IPP-Metadata-Config rel-1-0   -0
+  YYYY  PS-IPP-Config  	rel-1-0          -0
+  YYYY  ippScripts     	rel-1-0          -0
+  YYYY  glueforge      	rel-1-0          -0
+  YYYY  dbconfig       	rel-1-0          -0
+  NYNN  ippdb.src      			      
+  YYYY  ippconfig      	rel-1-0          -0
+  YYYY  ippTools       	rel-1-0          -0
+  YYYY  ippTasks       	rel-1-0          -0
+  YYYY  simtest        	rel-0-8          -0
+  YNYY  psconfig       	rel-1-0          -0
+  YNYY  ippMonitor     	rel-1-0          -0
+
+# there are externally required perl modules (see README?)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.0.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.0.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.0.perl	(revision 41109)
@@ -0,0 +1,59 @@
+# NN    Name                           Tarball                                Optional Responses
+  00    Module::Build                  Module-Build-0.2806.tar.gz                
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz            
+  02    Params::Validate               Params-Validate-0.87.tar.gz               
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz             
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz               
+  05    Time::Local                    Time-Local-1.17.tar.gz                    
+  06    DateTime                       DateTime-0.36.tar.gz                      
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                   
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz             
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz            
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz             
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz    
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz                
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                   
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                   
+  15    Digest                         Digest-1.15.tar.gz                        
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz             
+  17    version                        version-0.70.tar.gz
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz               
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz     
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz             
+  21    URI                            URI-1.35.tar.gz                           
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz          
+  23    Test::Exception                Test-Exception-0.24.tar.gz                
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz                 
+  25    Array::Compare                 Array-Compare-1.13.tar.gz                 
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz                   
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                    
+  28    Net::FTP                       libnet-1.19.tar.gz                        
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz                
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz        
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz              
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz                
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz     
+  34    CGI                            CGI.pm-3.25.tar.gz                        
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                      
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz               
+  37    LWP                            libwww-perl-5.805.tar.gz             
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz               
+  39    File::Temp                     File-Temp-0.18.tar.gz                     
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz             
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                     
+  42    YAML                           YAML-0.62.tar.gz                          y
+  43    Module::Load                   Module-Load-0.10.tar.gz                   
+  44    Params::Check                  Params-Check-0.25.tar.gz                  
+  45    Template                       Template-Toolkit-2.16.tar.gz              n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz         
+  47    Storable                       Storable-2.15.tar.gz                      
+  48    IO::String                     IO-String-1.08.tar.gz                     
+  49    Date::Parse                    TimeDate-1.16.tar.gz                      
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                   
+  51    DB_File                        DB_File-1.814.tar.gz                      
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz                  
+  53    Heap                           Heap-0.71.tar.gz                          
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz       
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                       
+  56    Cache                          Cache-2.04.tar.gz                         
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                       
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.1.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.1.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.1.dist	(revision 41109)
@@ -0,0 +1,55 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update?
+# ||||
+# ||||  CVS module     CVS branch tag   CVS branch version   
+# |||| 
+  NYNN  Ohana
+  NNYY  ohana.base     	base-1-6         -1
+  NNYY  libohana       	libohana-1-10    -1
+  NNYY  libfits        	libfits-1-8      -1
+  NNYY  libautocode    	libautocode-1-7  -1
+  NNYY  libdvo         	libdvo-1-5       -1
+  NNYY  libkapa        	libkapa-1-4      -1
+  NNYY  addstar        	addstar-1-9      -1
+  NNYY  delstar        	delstar-1-8      -1
+  NNYY  getstar        	getstar-1-4      -1
+  NNYY  kapa           	kapa-1-8         -1
+  NNYY  kii            	kii-1-8          -1
+  NNYY  relphot        	relphot-1-6      -1
+  NNYY  uniphot        	uniphot-1-6      -1
+  NNYY  opihi.base     	opihi-2-10       -1
+  NNYY  mana           	mana-1-8         -1
+  NNYY  dvo            	dvo-1-1          -1
+  NNYY  pantasks       	pantasks-1-1     -1
+  NNYY  pcontrol       	pcontrol-1-1     -1
+  NNYY  pclient        	pclient-1-1      -1
+  NYYY  psLib          	rel-1-1          -0
+  NYYY  psModules      	rel-1-1          -0
+  YYYY  psphot         	rel-0-9          -0
+  YYYY  psastro        	rel-0-9          -0
+  YYYY  ppStats        	rel-1-1          -0
+  YYYY  ppImage        	rel-1-1          -0
+  YYYY  ppNorm         	rel-1-1          -0
+  YYYY  ppMerge        	rel-1-1          -0
+  YNYY  pedestal       	rel-1-1          -0
+  YNYY  dvoTools       	rel-1-0          -0
+  YNYY  pois           	rel-0-1          -1
+  YNYY  pswarp         	rel-0-1          -1
+  YNYY  ppStac         	rel-0-1          -1
+  YYYY  PS-IPP-Metadata-Config rel-1-1   -0
+  YYYY  PS-IPP-Config  	rel-1-1          -0
+  YYYY  ippScripts     	rel-1-1          -0
+  YYYY  glueforge      	rel-1            _01
+  NYYY  dbconfig       	rel-1_1          _13
+  NYNN  ippdb.src      			      
+  YYYY  ippconfig      	rel-1-1          -0
+  NYYY  ippTools       	rel-1_1          _13
+  YYYY  ippTasks       	rel-1-1          -0
+  YYYY  simtest        	rel-0-9          -0
+  YNYY  psconfig       	rel-1-1          -0
+  YNYY  ippMonitor     	rel-1-1          -0
+
+# there are externally required perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.1.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.1.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.1.perl	(revision 41109)
@@ -0,0 +1,60 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0         
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0         
+  02    Params::Validate               Params-Validate-0.87.tar.gz              0.77         
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0         
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0         
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0         
+  06    DateTime                       DateTime-0.36.tar.gz                     0         
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0         
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0         
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0         
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0         
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0         
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0         
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0         
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0         
+  15    Digest                         Digest-1.15.tar.gz                       0         
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz         	0	            
+  17    version                        version-0.70.tar.gz		     	0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz           	0	    
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz 	0	    
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz         	0	    
+  21    URI                            URI-1.35.tar.gz                       	1.30	    
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz      	0	    
+  23    Test::Exception                Test-Exception-0.24.tar.gz            	0	    
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz             	0	    
+  25    Array::Compare                 Array-Compare-1.13.tar.gz             	0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz               	0	    
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                	0	    
+  28    Net::FTP                       libnet-1.19.tar.gz                    	0	    
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz            	0	    
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz    	0	    
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz          	1.94	    
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz            	0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz 	0.0402
+  34    CGI                            CGI.pm-3.25.tar.gz                    	3	      
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                  	1.05	    
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz           	1.1.1	    
+  37    LWP                            libwww-perl-5.805.tar.gz              	0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz           	0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                 	0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz         	0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                 	0	    
+  42    YAML                           YAML-0.62.tar.gz                      	0.58	       y
+  43    Module::Load                   Module-Load-0.10.tar.gz               	0	    
+  44    Params::Check                  Params-Check-0.25.tar.gz              	0	    
+  45    Template                       Template-Toolkit-2.16.tar.gz          	0	       n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz     	2.6
+  47    Storable                       Storable-2.15.tar.gz                  	0	    
+  48    IO::String                     IO-String-1.08.tar.gz                 	0	    
+  49    Date::Parse                    TimeDate-1.16.tar.gz                  	0	    
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz               	0	    
+  51    DB_File                        DB_File-1.814.tar.gz                  	0	    
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz              	0	    
+  53    Heap                           Heap-0.71.tar.gz                      	0	    
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz   	0	    
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                   	0	    
+  56    Cache                          Cache-2.04.tar.gz                     	0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                   	0	    
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.2.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.2.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.2.dist	(revision 41109)
@@ -0,0 +1,56 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update?
+# ||||
+# ||||  CVS module     CVS branch tag   CVS branch version   
+# |||| 
+  NYNN  Ohana
+  NNYY  ohana.base     	base-1-6         -1
+  NNYY  libohana       	libohana-1-10    -1
+  NNYY  libfits        	libfits-1-8      -1
+  NNYY  libautocode    	libautocode-1-7  -1
+  NNYY  libdvo         	libdvo-1-5       -1
+  NNYY  libkapa        	libkapa-1-4      -1
+  NNYY  addstar        	addstar-1-9      -1
+  NNYY  delstar        	delstar-1-8      -1
+  NNYY  getstar        	getstar-1-4      -1
+  NNYY  kapa           	kapa-1-8         -1
+  NNYY  kii            	kii-1-8          -1
+  NNYY  relphot        	relphot-1-6      -1
+  NNYY  uniphot        	uniphot-1-6      -1
+  NNYY  opihi.base     	opihi-2-10       -1
+  NNYY  mana           	mana-1-8         -1
+  NNYY  dvo            	dvo-1-1          -1
+  NNYY  pantasks       	pantasks-1-1     -1
+  NNYY  pcontrol       	pcontrol-1-1     -1
+  NNYY  pclient        	pclient-1-1      -1
+  NYYY  psLib          	rel-1-1          -0
+  NYYY  psModules      	rel-1-1          -0
+  YYYY  psphot         	rel-0-9          -0
+  YYYY  psastro        	rel-0-9          -0
+  YYYY  ppStats        	rel-1-1          -0
+  YYYY  ppConfigDump   	rel-1-1          -0
+  YYYY  ppImage        	rel-1-1          -0
+  YYYY  ppNorm         	rel-1-1          -0
+  YYYY  ppMerge        	rel-1-1          -0
+  YYYY  pedestal       	rel-1-1          -0
+  YYYY  dvoTools       	rel-1-0          -0
+  YYYY  pois           	rel-0-1          -1
+  YYYY  pswarp         	rel-0-1          -1
+  YYYY  ppStac         	rel-0-1          -1
+  YYYY  PS-IPP-Metadata-Config rel-1-1   -0
+  YYYY  PS-IPP-Config  	rel-1-1          -0
+  YYYY  ippScripts     	rel-1-1          -0
+  YYYY  glueforge      	rel-1            _01
+  NYYY  dbconfig       	rel-1_1          _13
+  NYNN  ippdb.src      			      
+  YYYY  ippconfig      	rel-1-1          -0
+  NYYY  ippTools       	rel-1_1          _13
+  YYYY  ippTasks       	rel-1-1          -0
+  YYYY  simtest        	rel-0-9          -0
+  YNYY  psconfig       	rel-1-1          -0
+  YNYY  ippMonitor     	rel-1-1          -0
+
+# there are externally required perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.2.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.2.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-1.2.perl	(revision 41109)
@@ -0,0 +1,60 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0         
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0         
+  02    Params::Validate               Params-Validate-0.87.tar.gz              0.77         
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0         
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0         
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0         
+  06    DateTime                       DateTime-0.36.tar.gz                     0         
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0         
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0         
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0         
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0         
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0         
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0         
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0         
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0         
+  15    Digest                         Digest-1.15.tar.gz                       0         
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz         	0	            
+  17    version                        version-0.70.tar.gz		     	0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz           	0	    
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz 	0	    
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz         	0	    
+  21    URI                            URI-1.35.tar.gz                       	1.30	    
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz      	0	    
+  23    Test::Exception                Test-Exception-0.24.tar.gz            	0	    
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz             	0	    
+  25    Array::Compare                 Array-Compare-1.13.tar.gz             	0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz               	0	    
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                	0	    
+  28    Net::FTP                       libnet-1.19.tar.gz                    	0	    
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz            	0	    
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz    	0	    
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz          	1.94	    
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz            	0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz 	0.0402
+  34    CGI                            CGI.pm-3.25.tar.gz                    	3	      
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                  	1.05	    
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz           	1.1.1	    
+  37    LWP                            libwww-perl-5.805.tar.gz              	0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz           	0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                 	0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz         	0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                 	0	    
+  42    YAML                           YAML-0.62.tar.gz                      	0.58	       y
+  43    Module::Load                   Module-Load-0.10.tar.gz               	0	    
+  44    Params::Check                  Params-Check-0.25.tar.gz              	0	    
+  45    Template                       Template-Toolkit-2.16.tar.gz          	0	       n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz     	2.6
+  47    Storable                       Storable-2.15.tar.gz                  	0	    
+  48    IO::String                     IO-String-1.08.tar.gz                 	0	    
+  49    Date::Parse                    TimeDate-1.16.tar.gz                  	0	    
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz               	0	    
+  51    DB_File                        DB_File-1.814.tar.gz                  	0	    
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz              	0	    
+  53    Heap                           Heap-0.71.tar.gz                      	0	    
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz   	0	    
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                   	0	    
+  56    Cache                          Cache-2.04.tar.gz                     	0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                   	0	    
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.0.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.0.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.0.dist	(revision 41109)
@@ -0,0 +1,64 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update?
+# ||||
+# ||||  CVS module     CVS branch tag   CVS branch version   
+# |||| 
+  NYNN  Ohana
+  NNYY  ohana.base     	ipp-2-0  	 -0
+  NNYY  libohana       	ipp-2-0  	 -0
+  NNYY  libfits        	ipp-2-0  	 -0
+  NNYY  libautocode    	ipp-2-0  	 -0
+  NNYY  libdvo         	ipp-2-0  	 -0
+  NNYY  libkapa        	ipp-2-0  	 -0
+  NNYY  libtap.ohana   	ipp-2-0  	 -0
+  NNYY  addstar        	ipp-2-0  	 -0
+  NNYY  delstar        	ipp-2-0  	 -0
+  NNYY  getstar        	ipp-2-0  	 -0
+  NNYY  ohana.tools    	ipp-2-0  	 -0
+  NNYY  kapa           	ipp-2-0  	 -0
+  NNYY  kii            	ipp-2-0  	 -0
+  NNYY  relphot        	ipp-2-0  	 -0
+  NNYY  relastro       	ipp-2-0  	 -0
+  NNYY  uniphot        	ipp-2-0  	 -0
+  NNYY  opihi.base     	ipp-2-0  	 -0
+  NNYY  mana           	ipp-2-0  	 -0
+  NNYY  dvo            	ipp-2-0  	 -0
+  NNYY  pantasks       	ipp-2-0  	 -0
+  NNYY  pcontrol       	ipp-2-0  	 -0
+  NNYY  pclient        	ipp-2-0  	 -0      
+
+  YYYN  nebclient       ipp-2-0          -0
+  YYYN  Nebulous        ipp-2-0          -0
+  YYYY  PS-IPP-Metadata-Config ipp-2-0   -0
+  YYYY  PS-IPP-Config  	ipp-2-0          -0
+
+  NYYY  psLib          	ipp-2-0          -0
+  NYYY  psModules      	ipp-2-0          -0
+  YYYY  psphot         	ipp-2-0          -0
+  YYYY  psastro        	ipp-2-0          -0
+  YYYY  ppStats        	ipp-2-0          -0
+  YYYY  ppConfigDump   	ipp-2-0          -0
+  YYYY  ppImage        	ipp-2-0          -0
+  YYYY  ppNorm         	ipp-2-0          -0
+  YYYY  ppMerge        	ipp-2-0          -0
+  YYYY  pedestal       	ipp-2-0          -0
+  YYYY  dvoTools       	ipp-2-0          -0
+  YYYY  pois           	ipp-2-0          -0
+  YYYY  pswarp         	ipp-2-0          -0
+  YYYY  ppStac         	ipp-2-0          -0
+  YYYY  ppSim        	ipp-2-0          -0
+  YYYY  ippScripts     	ipp-2-0          -0
+  YYYY  glueforge      	ipp-2-0          -0
+  YYYY  dbconfig       	ipp-2-0          -0
+  NYNN  ippdb.src      			      
+  YYYY  ippconfig      	ipp-2-0          -0
+  YYYY  ippTools       	ipp-2-0          -0
+  YYYY  ippTasks       	ipp-2-0          -0
+  YYYY  simtest        	ipp-2-0          -0
+  YNYY  psconfig       	ipp-2-0          -0
+  YNYY  ippMonitor     	ipp-2-0          -0
+
+# there are externally required perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.0.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.0.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.0.perl	(revision 41109)
@@ -0,0 +1,64 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806         
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0         
+  02    Params::Validate               Params-Validate-0.87.tar.gz              0.77         
+  02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0         
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0         
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0         
+  06    DateTime                       DateTime-0.36.tar.gz                     0         
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0         
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0         
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0         
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0         
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0         
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0         
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0         
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0         
+  15    Digest                         Digest-1.15.tar.gz                       0         
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz         	0	            
+  17    version                        version-0.70.tar.gz		     	0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz           	0	    
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz 	0	    
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz         	0	    
+  21    URI                            URI-1.35.tar.gz                       	1.30	    
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz      	0	    
+  23    Test::Exception                Test-Exception-0.24.tar.gz            	0	    
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz             	0	    
+  25    Array::Compare                 Array-Compare-1.13.tar.gz             	0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz               	0	    
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                	0	    
+  28    Net::FTP                       libnet-1.19.tar.gz                    	0	    
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz            	0	    
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz    	0	    
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz          	1.94	    
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz            	0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz 	0.0402
+  34    CGI                            CGI.pm-3.25.tar.gz                    	3	      
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                  	1.05	    
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz           	1.1.1	    
+  37    LWP                            libwww-perl-5.805.tar.gz              	0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz           	0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                 	0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz         	0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                 	0	    
+  42    YAML                           YAML-0.62.tar.gz                      	0.58	       y
+  43    Module::Load                   Module-Load-0.10.tar.gz               	0	    
+  44    Params::Check                  Params-Check-0.25.tar.gz              	0	    
+  45    Template                       Template-Toolkit-2.16.tar.gz          	0	       n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz     	2.6
+  47    Storable                       Storable-2.15.tar.gz                  	0	    
+  48    IO::String                     IO-String-1.08.tar.gz                 	0	    
+  49    Date::Parse                    TimeDate-1.16.tar.gz                  	0	    
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz               	0	    
+  51    DB_File                        DB_File-1.814.tar.gz                  	0	    
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz              	0	    
+  53    Heap                           Heap-0.71.tar.gz                      	0	    
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz   	0	    
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                   	0	    
+  56    Cache                          Cache-2.04.tar.gz                     	0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                   	0.36	    
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+  60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.1.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.1.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.1.dist	(revision 41109)
@@ -0,0 +1,65 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update?
+# ||||
+# ||||  CVS module     CVS branch tag   CVS branch version   
+# |||| 
+  NYNN  Ohana
+  NNYY  ohana.base     	ipp-2-1  	 -0
+  NNYY  libohana       	ipp-2-1  	 -0
+  NNYY  libfits        	ipp-2-1  	 -0
+  NNYY  libautocode    	ipp-2-1  	 -0
+  NNYY  libdvo         	ipp-2-1  	 -0
+  NNYY  libkapa        	ipp-2-1  	 -0
+  NNYY  libtap.ohana   	ipp-2-1  	 -0
+  NNYY  addstar        	ipp-2-1  	 -0
+  NNYY  delstar        	ipp-2-1  	 -0
+  NNYY  getstar        	ipp-2-1  	 -0
+  NNYY  ohana.tools    	ipp-2-1  	 -0
+  NNYY  kapa2          	ipp-2-1  	 -0
+  NNYY  relphot        	ipp-2-1  	 -0
+  NNYY  relastro       	ipp-2-1  	 -0
+  NNYY  uniphot        	ipp-2-1  	 -0
+  NNYY  opihi.base     	ipp-2-1  	 -0
+  NNYY  mana           	ipp-2-1  	 -0
+  NNYY  dvo            	ipp-2-1  	 -0
+  NNYY  pantasks       	ipp-2-1  	 -0
+  NNYY  pcontrol       	ipp-2-1  	 -0
+  NNYY  pclient        	ipp-2-1  	 -0      
+
+  NYNN  Nebulous/nebclient ipp-2-1       -0
+  YYYN  Nebulous        ipp-2-1          -0
+  YYYY  PS-IPP-Metadata-Config ipp-2-1   -0
+  YYYY  PS-IPP-Config  	ipp-2-1          -0
+
+  NYYY  psLib          	ipp-2-1          -0
+  NYYY  psModules      	ipp-2-1          -0
+  YYYY  psphot         	ipp-2-1          -0
+  YYYY  psastro        	ipp-2-1          -0
+  YYYY  ppStats        	ipp-2-1          -0
+  YYYY  ppConfigDump   	ipp-2-1          -0
+  YYYY  ppImage        	ipp-2-1          -0
+  YYYY  ppNorm         	ipp-2-1          -0
+  YYYY  ppMerge        	ipp-2-1          -0
+  YYYY  pedestal       	ipp-2-1          -0
+  YYYY  dvoTools       	ipp-2-1          -0
+  YYYY  pswarp         	ipp-2-1          -0
+  YYYY  ppStack        	ipp-2-1          -0
+  YYYY  ppSub          	ipp-2-1          -0
+  YYYY  ppSim        	ipp-2-1          -0
+
+  YYYY  glueforge      	ipp-2-1          -0
+  YYYY  dbconfig       	ipp-2-1          -0
+  NYNN  ippdb.src      			      
+  YYYY  ippTools       	ipp-2-1          -0
+  YYYY  ippScripts     	ipp-2-1          -0
+  YYYY  ippTasks       	ipp-2-1          -0
+
+  YYYY  ippconfig      	ipp-2-1          -0
+  YYYY  simtest        	ipp-2-1          -0
+  YNYY  psconfig       	ipp-2-1          -0
+  YNYY  ippMonitor     	ipp-2-1          -0
+
+# there are externally required perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.1.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.1.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.1.perl	(revision 41109)
@@ -0,0 +1,67 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806         
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0         
+  02    Params::Validate               Params-Validate-0.87.tar.gz              0.77         
+  02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0         
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0         
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0         
+  06    DateTime                       DateTime-0.36.tar.gz                     0         
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0         
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0         
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0         
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0         
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0         
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0         
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0         
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0         
+  15    Digest                         Digest-1.15.tar.gz                       0         
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz         	0	            
+  17    version                        version-0.70.tar.gz		     	0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz           	0	    
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz 	0	    
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz         	0	    
+  21    URI                            URI-1.35.tar.gz                       	1.30	    
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz      	0	    
+  23    Test::Exception                Test-Exception-0.24.tar.gz            	0	    
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz             	0	    
+  25    Array::Compare                 Array-Compare-1.13.tar.gz             	0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz               	0	    
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                	0	    
+  28    Net::FTP                       libnet-1.19.tar.gz                    	0	    
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz            	0	    
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz    	0	    
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz          	1.94	    
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz            	0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz 	0.0402
+  34    CGI                            CGI.pm-3.25.tar.gz                    	3	      
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                  	1.05	    
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz           	1.1.1	    
+  37    LWP                            libwww-perl-5.805.tar.gz              	0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz           	0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                 	0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz         	0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                 	0	    
+  42    YAML                           YAML-0.62.tar.gz                      	0.58	       y
+  43    Module::Load                   Module-Load-0.10.tar.gz               	0	    
+  44    Params::Check                  Params-Check-0.25.tar.gz              	0	    
+  45    Template                       Template-Toolkit-2.16.tar.gz          	0	       n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz     	2.6
+  47    Storable                       Storable-2.15.tar.gz                  	0	    
+  48    IO::String                     IO-String-1.08.tar.gz                 	0	    
+  49    Date::Parse                    TimeDate-1.16.tar.gz                  	0	    
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz               	0	    
+  51    DB_File                        DB_File-1.814.tar.gz                  	0	    
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz              	0	    
+  53    Heap                           Heap-0.71.tar.gz                      	0	    
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz   	0	    
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                   	0	    
+  56    Cache                          Cache-2.04.tar.gz                     	0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                   	0.36	    
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.2.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.2.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.2.dist	(revision 41109)
@@ -0,0 +1,65 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update?
+# ||||
+# ||||  CVS module     CVS branch tag   CVS branch version   
+# |||| 
+  NYNN  Ohana
+  NNYY  ohana.base     	ipp-2-2  	 -0
+  NNYY  libohana       	ipp-2-2  	 -0
+  NNYY  libfits        	ipp-2-2  	 -0
+  NNYY  libautocode    	ipp-2-2  	 -0
+  NNYY  libdvo         	ipp-2-2  	 -0
+  NNYY  libkapa        	ipp-2-2  	 -0
+  NNYY  libtap.ohana   	ipp-2-2  	 -0
+  NNYY  addstar        	ipp-2-2  	 -0
+  NNYY  delstar        	ipp-2-2  	 -0
+  NNYY  getstar        	ipp-2-2  	 -0
+  NNYY  ohana.tools    	ipp-2-2  	 -0
+  NNYY  kapa2          	ipp-2-2  	 -0
+  NNYY  relphot        	ipp-2-2  	 -0
+  NNYY  relastro       	ipp-2-2  	 -0
+  NNYY  uniphot        	ipp-2-2  	 -0
+  NNYY  opihi.base     	ipp-2-2  	 -0
+  NNYY  mana           	ipp-2-2  	 -0
+  NNYY  dvo            	ipp-2-2  	 -0
+  NNYY  pantasks       	ipp-2-2  	 -0
+  NNYY  pcontrol       	ipp-2-2  	 -0
+  NNYY  pclient        	ipp-2-2  	 -0      
+
+  NYNN  Nebulous/nebclient ipp-2-2       -0
+  YYYN  Nebulous        ipp-2-2          -0
+  YYYY  PS-IPP-Metadata-Config ipp-2-2   -0
+  YYYY  PS-IPP-Config  	ipp-2-2          -0
+
+  NYYY  psLib          	ipp-2-2          -0
+  NYYY  psModules      	ipp-2-2          -0
+  YYYY  psphot         	ipp-2-2          -0
+  YYYY  psastro        	ipp-2-2          -0
+  YYYY  ppStats        	ipp-2-2          -0
+  YYYY  ppConfigDump   	ipp-2-2          -0
+  YYYY  ppImage        	ipp-2-2          -0
+  YYYY  ppNorm         	ipp-2-2          -0
+  YYYY  ppMerge        	ipp-2-2          -0
+  YYYY  pedestal       	ipp-2-2          -0
+  YYYY  dvoTools       	ipp-2-2          -0
+  YYYY  pswarp         	ipp-2-2          -0
+  YYYY  ppStack        	ipp-2-2          -0
+  YYYY  ppSub          	ipp-2-2          -0
+  YYYY  ppSim        	ipp-2-2          -0
+
+  YYYY  glueforge      	ipp-2-2          -0
+  YYYY  dbconfig       	ipp-2-2          -0
+  NYNN  ippdb.src      			      
+  YYYY  ippTools       	ipp-2-2          -0
+  YYYY  ippScripts     	ipp-2-2          -0
+  YYYY  ippTasks       	ipp-2-2          -0
+
+  YYYY  ippconfig      	ipp-2-2          -0
+  YYYY  simtest        	ipp-2-2          -0
+  YNYY  psconfig       	ipp-2-2          -0
+  YNYY  ippMonitor     	ipp-2-2          -0
+
+# there are externally required perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.2.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.2.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.2.libs	(revision 41109)
@@ -0,0 +1,88 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   configure options
+#   make options
+#   make install options
+
+lib libm                 NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      Y NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2.tar.gz      readline-5.2     Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       Y --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    Y NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v6b.tar.gz       jpeg-6b          Y NONE NONE install-lib
+lib libcfitsio           NONE           NONE   cfitsio2510.tar.gz       cfitsio          Y NONE NONE NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.27.tar.gz      mysql-5.0.27     Y NONE NONE NONE
+lib libgsl               NONE           NONE   gsl-1.6.tar.gz           gsl-1.6          Y NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-float,--enable-shared,--disable-fortran NONE NONE
+
+bin pkg-config           NONE           NONE   pkg-config-0.22.tar.gz   pkg-config-0.22  Y NONE NONE NONE
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fitsio.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/readline.h  NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.2.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.2.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.2.perl	(revision 41109)
@@ -0,0 +1,67 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806         
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0         
+  02    Params::Validate               Params-Validate-0.87.tar.gz              0.77         
+  02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0         
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0         
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0         
+  06    DateTime                       DateTime-0.36.tar.gz                     0         
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0         
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0         
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0         
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0         
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0         
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0         
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0         
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0         
+  15    Digest                         Digest-1.15.tar.gz                       0         
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz         	0	            
+  17    version                        version-0.70.tar.gz		     	0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz           	0	    
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz 	0	    
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz         	0	    
+  21    URI                            URI-1.35.tar.gz                       	1.30	    
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz      	0	    
+  23    Test::Exception                Test-Exception-0.24.tar.gz            	0	    
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz             	0	    
+  25    Array::Compare                 Array-Compare-1.13.tar.gz             	0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz               	0	    
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                	0	    
+  28    Net::FTP                       libnet-1.19.tar.gz                    	0	    
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz            	0	    
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz    	0	    
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz          	1.94	    
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz            	0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz 	0.0402
+  34    CGI                            CGI.pm-3.25.tar.gz                    	3	      
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                  	1.05	    
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz           	1.1.1	    
+  37    LWP                            libwww-perl-5.805.tar.gz              	0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz           	0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                 	0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz         	0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                 	0	    
+  42    YAML                           YAML-0.62.tar.gz                      	0.58	       y
+  43    Module::Load                   Module-Load-0.10.tar.gz               	0	    
+  44    Params::Check                  Params-Check-0.25.tar.gz              	0	    
+  45    Template                       Template-Toolkit-2.16.tar.gz          	0	       n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz     	2.6
+  47    Storable                       Storable-2.15.tar.gz                  	0	    
+  48    IO::String                     IO-String-1.08.tar.gz                 	0	    
+  49    Date::Parse                    TimeDate-1.16.tar.gz                  	0	    
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz               	0	    
+  51    DB_File                        DB_File-1.814.tar.gz                  	0	    
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz              	0	    
+  53    Heap                           Heap-0.71.tar.gz                      	0	    
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz   	0	    
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                   	0	    
+  56    Cache                          Cache-2.04.tar.gz                     	0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                   	0.36	    
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.3.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.3.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.3.dist	(revision 41109)
@@ -0,0 +1,66 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update?
+# ||||
+# ||||  CVS module     CVS branch tag   CVS branch version   
+# |||| 
+  NYNN  Ohana
+  NNYY  ohana.base     	ipp-2-3  	 -0
+  NNYY  libohana       	ipp-2-3  	 -0
+  NNYY  libfits        	ipp-2-3  	 -0
+  NNYY  libautocode    	ipp-2-3  	 -0
+  NNYY  libdvo         	ipp-2-3  	 -0
+  NNYY  libkapa        	ipp-2-3  	 -0
+  NNYY  libtap.ohana   	ipp-2-3  	 -0
+  NNYY  addstar        	ipp-2-3  	 -0
+  NNYY  delstar        	ipp-2-3  	 -0
+  NNYY  getstar        	ipp-2-3  	 -0
+  NNYY  ohana.tools    	ipp-2-3  	 -0
+  NNYY  kapa2          	ipp-2-3  	 -0
+  NNYY  relphot        	ipp-2-3  	 -0
+  NNYY  relastro       	ipp-2-3  	 -0
+  NNYY  uniphot        	ipp-2-3  	 -0
+  NNYY  opihi.base     	ipp-2-3  	 -0
+  NNYY  mana           	ipp-2-3  	 -0
+  NNYY  dvo            	ipp-2-3  	 -0
+  NNYY  pantasks       	ipp-2-3  	 -0
+  NNYY  pcontrol       	ipp-2-3  	 -0
+  NNYY  pclient        	ipp-2-3  	 -0      
+
+  NYNN  Nebulous/nebclient ipp-2-3       -0
+  YYYN  Nebulous        ipp-2-3          -0
+  YYYY  PS-IPP-Metadata-Config ipp-2-3   -0
+  YYYY  PS-IPP-Config  	ipp-2-3          -0
+
+  NYYY  psLib          	ipp-2-3          -0
+  NYYY  psModules      	ipp-2-3          -0
+  YYYY  psphot         	ipp-2-3          -0
+  YYYY  psastro        	ipp-2-3          -0
+  YYYY  ppStats        	ipp-2-3          -0
+  YYYY  ppConfigDump   	ipp-2-3          -0
+  YYYY  ppImage        	ipp-2-3          -0
+  YYYY  ppNorm         	ipp-2-3          -0
+  YYYY  ppMerge        	ipp-2-3          -0
+  YYYY  pedestal       	ipp-2-3          -0
+  YYYY  dvoTools       	ipp-2-3          -0
+  YYYY  pswarp         	ipp-2-3          -0
+  YYYY  ppStack        	ipp-2-3          -0
+  YYYY  ppSub          	ipp-2-3          -0
+  YYYY  ppSim        	ipp-2-3          -0
+  YYYY  ppstamp        	ipp-2-3          -0
+
+  YYYY  glueforge      	ipp-2-3          -0
+  YYYY  dbconfig       	ipp-2-3          -0
+  NYNN  ippdb.src      			      
+  YYYY  ippTools       	ipp-2-3          -0
+  YYYY  ippScripts     	ipp-2-3          -0
+  YYYY  ippTasks       	ipp-2-3          -0
+
+  YYYY  ippconfig      	ipp-2-3          -0
+  YYYY  simtest        	ipp-2-3          -0
+  YNYY  psconfig       	ipp-2-3          -0
+  YNYY  ippMonitor     	ipp-2-3          -0
+
+# there are externally required perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.3.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.3.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.3.libs	(revision 41109)
@@ -0,0 +1,88 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   configure options
+#   make options
+#   make install options
+
+lib libm                 NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      Y NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2.tar.gz      readline-5.2     Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       Y --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    Y NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v6b.tar.gz       jpeg-6b          Y NONE NONE install-lib
+lib libcfitsio           NONE           NONE   cfitsio2510.tar.gz       cfitsio          Y NONE NONE NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.27.tar.gz      mysql-5.0.27     Y NONE NONE NONE
+lib libgsl               NONE           NONE   gsl-1.6.tar.gz           gsl-1.6          Y NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-float,--enable-shared,--disable-fortran NONE NONE
+
+bin pkg-config           NONE           NONE   pkg-config-0.22.tar.gz   pkg-config-0.22  Y NONE NONE NONE
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fitsio.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/readline.h  NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.3.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.3.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.3.perl	(revision 41109)
@@ -0,0 +1,67 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806         
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0         
+  02    Params::Validate               Params-Validate-0.87.tar.gz              0.77         
+  02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0         
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0         
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0         
+  06    DateTime                       DateTime-0.36.tar.gz                     0         
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0         
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0         
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0         
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0         
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0         
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0         
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0         
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0         
+  15    Digest                         Digest-1.15.tar.gz                       0         
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz         	0	            
+  17    version                        version-0.70.tar.gz		     	0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz           	0	    
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz 	0	    
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz         	0	    
+  21    URI                            URI-1.35.tar.gz                       	1.30	    
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz      	0	    
+  23    Test::Exception                Test-Exception-0.24.tar.gz            	0	    
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz             	0	    
+  25    Array::Compare                 Array-Compare-1.13.tar.gz             	0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz               	0	    
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                	0	    
+  28    Net::FTP                       libnet-1.19.tar.gz                    	0	    
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz            	0	    
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz    	0	    
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz          	1.94	    
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz            	0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz 	0.0402
+  34    CGI                            CGI.pm-3.25.tar.gz                    	3	      
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                  	1.05	    
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz           	1.1.1	    
+  37    LWP                            libwww-perl-5.805.tar.gz              	0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz           	0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                 	0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz         	0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                 	0	    
+  42    YAML                           YAML-0.62.tar.gz                      	0.58	       y
+  43    Module::Load                   Module-Load-0.10.tar.gz               	0	    
+  44    Params::Check                  Params-Check-0.25.tar.gz              	0	    
+  45    Template                       Template-Toolkit-2.16.tar.gz          	0	       n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz     	2.6
+  47    Storable                       Storable-2.15.tar.gz                  	0	    
+  48    IO::String                     IO-String-1.08.tar.gz                 	0	    
+  49    Date::Parse                    TimeDate-1.16.tar.gz                  	0	    
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz               	0	    
+  51    DB_File                        DB_File-1.814.tar.gz                  	0	    
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz              	0	    
+  53    Heap                           Heap-0.71.tar.gz                      	0	    
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz   	0	    
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                   	0	    
+  56    Cache                          Cache-2.04.tar.gz                     	0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                   	0.36	    
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.4.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.4.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.4.dist	(revision 41109)
@@ -0,0 +1,69 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  CVS module             CVS branch tag   CVS branch version   
+# ||||| 
+  NYNNY  Ohana
+  NNYYN  ohana.base             ipp-2-4          -0
+  NNYYN  libohana               ipp-2-4          -0
+  NNYYN  libfits                ipp-2-4          -0
+  NNYYN  libautocode            ipp-2-4          -0
+  NNYYN  libdvo                 ipp-2-4          -0
+  NNYYN  libkapa                ipp-2-4          -0
+  NNYYN  libtap.ohana           ipp-2-4          -0
+  NNYYN  addstar                ipp-2-4          -0
+  NNYYN  delstar                ipp-2-4          -0
+  NNYYN  getstar                ipp-2-4          -0
+  NNYYN  ohana.tools            ipp-2-4          -0
+  NNYYN  kapa2                  ipp-2-4          -0
+  NNYYN  relphot                ipp-2-4          -0
+  NNYYN  relastro               ipp-2-4          -0
+  NNYYN  uniphot                ipp-2-4          -0
+  NNYYN  opihi.base             ipp-2-4          -0
+  NNYYN  mana                   ipp-2-4          -0
+  NNYYN  dvo                    ipp-2-4          -0
+  NNYYN  pantasks               ipp-2-4          -0
+  NNYYN  pcontrol               ipp-2-4          -0
+  NNYYN  pclient                ipp-2-4          -0      
+          
+  NYNNY  Nebulous/nebclient     ipp-2-4          -0
+  YYYNY  Nebulous               ipp-2-4          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-4          -0
+  YYYYY  PS-IPP-Config          ipp-2-4          -0     
+          
+  YYYYY  psLib                  ipp-2-4          -0
+  YYYYY  psModules              ipp-2-4          -0
+  YYYYY  psphot                 ipp-2-4          -0
+  YYYYY  psastro                ipp-2-4          -0
+  YYYYY  ppStats                ipp-2-4          -0
+  YYYYY  ppConfigDump           ipp-2-4          -0
+  YYYYY  ppImage                ipp-2-4          -0
+  YYYYY  ppNorm                 ipp-2-4          -0
+  YYYYY  ppMerge                ipp-2-4          -0
+  YYYYY  pedestal               ipp-2-4          -0
+  YYYYY  dvoTools               ipp-2-4          -0
+  YYYYY  pswarp                 ipp-2-4          -0
+  YYYYY  ppArith                ipp-2-4          -0
+  YYYYY  ppStack                ipp-2-4          -0
+  YYYYY  ppSub                  ipp-2-4          -0
+  YYYYY  ppSim                  ipp-2-4          -0
+  YNYYN  pstamp                 ipp-2-4          -0
+          
+  YNNYY  glueforge              ipp-2-4          -0
+  YNNYY  dbconfig               ipp-2-4          -0
+  NNNNY  ippdb.src             
+  NYYNN  ippdb                  ipp-2-4          -0
+  YYYYY  ippTools               ipp-2-4          -0
+  YYYYY  ippScripts             ipp-2-4          -0
+  YYYYY  ippTasks               ipp-2-4          -0
+          
+  YYYYY  ippconfig              ipp-2-4          -0
+  YYYYY  simtest                ipp-2-4          -0
+  YNYYN  psconfig               ipp-2-4          -0
+  YNYYN  ippMonitor             ipp-2-4          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.4.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.4.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.4.libs	(revision 41109)
@@ -0,0 +1,91 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   configure options
+#   make options
+#   make install options
+
+lib libm                 NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      Y NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2.tar.gz      readline-5.2     Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       Y --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    Y NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v6b.tar.gz       jpeg-6b          Y --enable-shared NONE install-lib
+# lib libcfitsio         NONE           NONE   cfitsio2510.tar.gz       cfitsio          Y NONE NONE NONE
+lib libcfitsio           NONE           NONE   cfitsio3060.tar.gz       cfitsio          Y NONE NONE NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.27.tar.gz      mysql-5.0.27     Y NONE NONE NONE
+lib libgsl               NONE           NONE   gsl-1.6.tar.gz           gsl-1.6          Y NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-float,--enable-shared,--disable-fortran NONE NONE
+# lib libfftw3             NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-shared,--disable-fortran NONE NONE
+# paul claims we are not currently using double-point FFTs anywhere
+
+bin pkg-config           NONE           NONE   pkg-config-0.22.tar.gz   pkg-config-0.22  Y NONE NONE NONE
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fitsio.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/readline.h  NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.4.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.4.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.4.perl	(revision 41109)
@@ -0,0 +1,79 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806         
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0         
+  02    Params::Validate               Params-Validate-0.87.tar.gz              0.77         
+  02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0         
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0         
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0         
+  06    DateTime                       DateTime-0.36.tar.gz                     0         
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0         
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0         
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0         
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0         
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0         
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0         
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0         
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0         
+  15    Digest                         Digest-1.15.tar.gz                       0         
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz         	0	            
+  17    version                        version-0.70.tar.gz		     	0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz           	0	    
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz 	0	    
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz         	0	    
+  21    URI                            URI-1.35.tar.gz                       	1.30	    
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz      	0	    
+  23    Test::Exception                Test-Exception-0.24.tar.gz            	0	    
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz             	0	    
+  25    Array::Compare                 Array-Compare-1.13.tar.gz             	0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz               	0	    
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                	0	    
+  28    Net::FTP                       libnet-1.19.tar.gz                    	0	    
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz            	0	    
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz    	0	    
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz          	1.94	    
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz            	0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz 	0.0402
+  34    CGI                            CGI.pm-3.25.tar.gz                    	3	      
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                  	1.05	    
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz           	1.1.1	    
+  37    LWP                            libwww-perl-5.805.tar.gz              	0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz           	0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                 	0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz         	0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                 	0	    
+  42    YAML                           YAML-0.62.tar.gz                      	0.58	       y
+  43    Module::Load                   Module-Load-0.10.tar.gz               	0	    
+  44    Params::Check                  Params-Check-0.25.tar.gz              	0	    
+  45    Template                       Template-Toolkit-2.16.tar.gz          	0	       n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz     	2.6
+  47    Storable                       Storable-2.15.tar.gz                  	0	    
+  48    IO::String                     IO-String-1.08.tar.gz                 	0	    
+  49    Date::Parse                    TimeDate-1.16.tar.gz                  	0	    
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz               	0	    
+  51    DB_File                        DB_File-1.814.tar.gz                  	0	    
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz              	0	    
+  53    Heap                           Heap-0.71.tar.gz                      	0	    
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz   	0	    
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                   	0	    
+  56    Cache                          Cache-2.04.tar.gz                     	0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                   	0.36	    
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0
+  65    Test::More    		       Test-Simple-0.74.tar.gz                  0.49
+  66    Apache::DBI   		       Apache-DBI-1.06.tar.gz                   0
+  67    Apache2::SOAP 		       Apache2-SOAP-0.72.tar.gz                 0
+  68    Test::URI     		       Test-URI-1.08.tar.gz                     0
+  69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0
+  70    Config::YAML  	       	       Config-YAML-1.42.tar.gz                  0
+  72    File::ExtAttr 	       	       File-ExtAttr-1.07.tar.gz                 0
+  73    DBI           	       	       DBI-1.601.tar.gz                         0
+  71    DBD::mysql    	       	       DBD-mysql-4.006.tar.gz                   0
+  74    Net::Server::Daemonize 	       Net-Server-0.97.tar.gz                   0.05
+  75    File::Path                     File-Path-2.04.tar.gz
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.5.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.5.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.5.dist	(revision 41109)
@@ -0,0 +1,71 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  CVS module             CVS branch tag   CVS branch version   
+# ||||| 
+  NYNNY  Ohana
+  NNYYN  ohana.base             ipp-2-5          -0
+  NNYYN  libohana               ipp-2-5          -0
+  NNYYN  libfits                ipp-2-5          -0
+  NNYYN  libautocode            ipp-2-5          -0
+  NNYYN  libdvo                 ipp-2-5          -1
+  NNYYN  libkapa                ipp-2-5          -0
+  NNYYN  libtap.ohana           ipp-2-5          -0
+  NNYYN  addstar                ipp-2-5          -1
+  NNYYN  delstar                ipp-2-5          -0
+  NNYYN  getstar                ipp-2-5          -0
+  NNYYN  ohana.tools            ipp-2-5          -0
+  NNYYN  kapa2                  ipp-2-5          -1
+  NNYYN  relphot                ipp-2-5          -1
+  NNYYN  relastro               ipp-2-5          -1
+  NNYYN  uniphot                ipp-2-5          -0
+  NNYYN  opihi.base             ipp-2-5          -1
+  NNYYN  mana                   ipp-2-5          -1
+  NNYYN  dvo                    ipp-2-5          -1
+  NNYYN  pantasks               ipp-2-5          -1
+  NNYYN  pcontrol               ipp-2-5          -1
+  NNYYN  pclient                ipp-2-5          -1      
+          
+  YYYYY  nebclient              ipp-2-5          -0
+  YYYNY  Nebulous               ipp-2-5          -0
+  YYYNY  Nebulous-Server        ipp-2-5          -0
+  YYYNY  DataStore        	ipp-2-5          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-5          -0
+  YYYYY  PS-IPP-Config          ipp-2-5          -0     
+          
+  YYYYY  psLib                  ipp-2-5          -0
+  YYYYY  psModules              ipp-2-5          -0
+  YYYYY  psphot                 ipp-2-5          -0
+  YYYYY  psastro                ipp-2-5          -0
+  YYYYY  ppStats                ipp-2-5          -0
+  YYYYY  ppConfigDump           ipp-2-5          -0
+  YYYYY  ppImage                ipp-2-5          -0
+  YYYYY  ppNorm                 ipp-2-5          -0
+  YYYYY  ppMerge                ipp-2-5          -0
+  YYYYY  pedestal               ipp-2-5          -0
+  YYYYY  dvoTools               ipp-2-5          -0
+  YYYYY  pswarp                 ipp-2-5          -0
+  YYYYY  ppArith                ipp-2-5          -0
+  YYYYY  ppStack                ipp-2-5          -0
+  YYYYY  ppSub                  ipp-2-5          -0
+  YYYYY  ppSim                  ipp-2-5          -0
+          
+  YNNYY  glueforge              ipp-2-5          -0
+  YNNYY  dbconfig               ipp-2-5          -0
+  NNNNY  ippdb.src             
+  YYYNN  ippdb                  ipp-2-5          -1
+  YYYYY  pstamp                 ipp-2-5          -0
+  YYYYY  ippTools               ipp-2-5          -0
+  YYYYY  ippScripts             ipp-2-5          -0
+  YYYYY  ippTasks               ipp-2-5          -0
+          
+  YYYYY  ippconfig              ipp-2-5          -0
+  YNYYN  psconfig               ipp-2-5          -0
+  YNYYN  ippMonitor             ipp-2-5          -0
+  YYYYY  DataStore              ipp-2-5          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.5.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.5.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.5.libs	(revision 41109)
@@ -0,0 +1,92 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   configure options
+#   make options
+#   make install options
+
+lib libm                 NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      Y NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2.tar.gz      readline-5.2     Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       Y --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    Y NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v6b.tar.gz       jpeg-6b          Y --enable-shared NONE install-lib
+# lib libcfitsio         NONE           NONE   cfitsio2510.tar.gz       cfitsio          Y NONE NONE NONE
+lib libcfitsio           NONE           NONE   cfitsio3060.tar.gz       cfitsio          Y NONE NONE NONE
+#lib libmysqlclient      NONE           mysql  mysql-5.0.27.tar.gz      mysql-5.0.27     Y NONE NONE NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    Y NONE NONE NONE
+lib libgsl               NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         Y NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-float,--enable-shared,--disable-fortran NONE NONE
+#lib libfftw3            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-shared,--disable-fortran NONE NONE
+# paul claims we are not currently using double-point FFTs anywhere
+
+bin pkg-config           NONE           NONE   pkg-config-0.22.tar.gz   pkg-config-0.22  Y NONE NONE NONE
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fitsio.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/readline.h  NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.5.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.5.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.5.perl	(revision 41109)
@@ -0,0 +1,79 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806         
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0         
+  02    Params::Validate               Params-Validate-0.87.tar.gz              0.77         
+#  02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0         
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0         
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0         
+  06    DateTime                       DateTime-0.36.tar.gz                     0         
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0         
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0         
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0         
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0         
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0         
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0         
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0         
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0         
+  15    Digest                         Digest-1.15.tar.gz                       0         
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz         	0	            
+  17    version                        version-0.70.tar.gz		     	0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz           	0	    
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz 	0	    
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz         	0	    
+  21    URI                            URI-1.35.tar.gz                       	1.30	    
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz      	0	    
+  23    Test::Exception                Test-Exception-0.24.tar.gz            	0	    
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz             	0	    
+  25    Array::Compare                 Array-Compare-1.13.tar.gz             	0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz               	0	    
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                	0	    
+  28    Net::FTP                       libnet-1.19.tar.gz                    	0	    
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz            	0	    
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz    	0	    
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz          	1.94	    
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz            	0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz 	0.0402
+  34    CGI                            CGI.pm-3.25.tar.gz                    	3	      
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                  	1.05	    
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz           	1.1.1	    
+  37    LWP                            libwww-perl-5.805.tar.gz              	0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz           	0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                 	0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz         	0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                 	0	    
+  42    YAML                           YAML-0.62.tar.gz                      	0.58	       y
+  43    Module::Load                   Module-Load-0.10.tar.gz               	0	    
+  44    Params::Check                  Params-Check-0.25.tar.gz              	0	    
+  45    Template                       Template-Toolkit-2.16.tar.gz          	0	       n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz     	2.6
+  47    Storable                       Storable-2.15.tar.gz                  	0	    
+  48    IO::String                     IO-String-1.08.tar.gz                 	0	    
+  49    Date::Parse                    TimeDate-1.16.tar.gz                  	0	    
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz               	0	    
+  51    DB_File                        DB_File-1.814.tar.gz                  	0	    
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz              	0	    
+  53    Heap                           Heap-0.71.tar.gz                      	0	    
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz   	0	    
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                   	0	    
+  56    Cache                          Cache-2.04.tar.gz                     	0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                   	0.36	    
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0
+  65    Test::More    		       Test-Simple-0.74.tar.gz                  0.49
+#  66    Apache::DBI   		       Apache-DBI-1.06.tar.gz                   0
+#  67    Apache2::SOAP 		       Apache2-SOAP-0.72.tar.gz                 0
+  68    Test::URI     		       Test-URI-1.08.tar.gz                     0
+#  69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0
+#  70    Config::YAML  	       	       Config-YAML-1.42.tar.gz                  0
+#  72    File::ExtAttr 	       	       File-ExtAttr-1.07.tar.gz                 0
+  73    DBI           	       	       DBI-1.601.tar.gz                         0
+  71    DBD::mysql    	       	       DBD-mysql-4.006.tar.gz                   0
+#  74    Net::Server::Daemonize 	       Net-Server-0.97.tar.gz                   0.05
+  75    File::Path                     File-Path-2.04.tar.gz
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.1.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.1.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.1.dist	(revision 41109)
@@ -0,0 +1,69 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  CVS module             CVS branch tag   CVS branch version   
+# ||||| 
+  YYNNY  Ohana                  ipp-2-6-1          -0
+  NNYYN  ohana.base             ipp-2-6-1          -0
+  NNYYN  libohana               ipp-2-6-1          -0
+  NNYYN  libfits                ipp-2-6-1          -0
+  NNYYN  libautocode            ipp-2-6-1          -0
+  NNYYN  libdvo                 ipp-2-6-1          -0
+  NNYYN  libkapa                ipp-2-6-1          -0
+  NNYYN  libtap.ohana           ipp-2-6-1          -0
+  NNYYN  addstar                ipp-2-6-1          -0
+  NNYYN  delstar                ipp-2-6-1          -0
+  NNYYN  getstar                ipp-2-6-1          -0
+  NNYYN  ohana.tools            ipp-2-6-1          -0
+  NNYYN  kapa2                  ipp-2-6-1          -0
+  NNYYN  relphot                ipp-2-6-1          -0
+  NNYYN  relastro               ipp-2-6-1          -0
+  NNYYN  uniphot                ipp-2-6-1          -0
+  NNYYN  opihi.base             ipp-2-6-1          -0
+  NNYYN  mana                   ipp-2-6-1          -0
+  NNYYN  dvo                    ipp-2-6-1          -0
+  NNYYN  pantasks               ipp-2-6-1          -0
+  NNYYN  pcontrol               ipp-2-6-1          -0
+  NNYYN  pclient                ipp-2-6-1          -0      
+          
+  YNNYY  nebclient              ipp-2-6-1          -0
+  YNNNY  Nebulous               ipp-2-6-1          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-6-1          -0
+  YYYYY  PS-IPP-Config          ipp-2-6-1          -0     
+          
+  YYYYY  psLib                  ipp-2-6-1          -0
+  YYYYY  psModules              ipp-2-6-1          -0
+  YYYYY  ppStats                ipp-2-6-1          -0
+  YYYYY  psphot                 ipp-2-6-1          -0
+  YYYYY  psastro                ipp-2-6-1          -0
+  YYYYY  ppConfigDump           ipp-2-6-1          -0
+  YYYYY  ppImage                ipp-2-6-1          -0
+  YYYYY  ppNorm                 ipp-2-6-1          -0
+  YYYYY  ppMerge                ipp-2-6-1          -0
+  YNNYN  pedestal               ipp-2-6-1          -0
+  YYYYY  dvoTools               ipp-2-6-1          -0
+  YYYYY  pswarp                 ipp-2-6-1          -0
+  YYYYY  ppArith                ipp-2-6-1          -0
+  YYYYY  ppStack                ipp-2-6-1          -0
+  YYYYY  ppSub                  ipp-2-6-1          -0
+  YYYYY  ppSim                  ipp-2-6-1          -0
+          
+  YNNYY  glueforge              ipp-2-6-1          -0
+  YNNYY  dbconfig               ipp-2-6-1          -0
+  NNNNY  ippdb.src             
+  YYYNN  ippdb                  ipp-2-6-1          -0
+  YYYYY  pstamp                 ipp-2-6-1          -0
+  YYYYY  ippTools               ipp-2-6-1          -0
+  YYYYY  ippScripts             ipp-2-6-1          -0
+  YYYYY  ippTasks               ipp-2-6-1          -0
+          
+  YYYYY  ippconfig              ipp-2-6-1          -0
+  YNYYN  psconfig               ipp-2-6-1          -0
+  YNYYN  ippMonitor             ipp-2-6-1          -0
+  YYYYY  DataStore              ipp-2-6-1          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.1.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.1.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.1.libs	(revision 41109)
@@ -0,0 +1,93 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   configure options
+#   make options
+#   make install options
+
+lib libm                 NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      Y NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       Y --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    Y NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v6b.tar.gz       jpeg-6b          Y --enable-shared NONE install-lib
+lib libcfitsio           NONE           NONE   cfitsio3090.tar.gz       cfitsio          Y NONE NONE NONE
+#lib libmysqlclient      NONE           mysql  mysql-5.0.27.tar.gz      mysql-5.0.27     Y NONE NONE NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    Y NONE NONE NONE
+lib libgsl               NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         Y NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-float,--enable-shared,--enable-threads,--disable-fortran NONE NONE
+#lib libfftw3            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-shared,--disable-fortran NONE NONE
+# paul claims we are not currently using double-point FFTs anywhere
+
+bin pkg-config           NONE           NONE   pkg-config-0.22.tar.gz   pkg-config-0.22  Y NONE NONE NONE
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fftw3.h              NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-float,--enable-shared,--disable-fortran NONE NONE
+inc fitsio.h             NONE           NONE   cfitsio3090.tar.gz       cfitsio          Y NONE NONE NONE
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         Y NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         Y NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           jpeg   jpegsrc.v6b.tar.gz       jpeg-6b          Y --enable-shared NONE install-lib
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc mysql.h              NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    Y NONE NONE NONE
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    Y NONE NONE NONE
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 Y NONE NONE NONE
+inc readline/readline.h  NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 Y NONE NONE NONE
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       Y --shared NONE NONE
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.1.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.1.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.1.perl	(revision 41109)
@@ -0,0 +1,79 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806         
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0         
+  02    Params::Validate               Params-Validate-0.87.tar.gz              0.77         
+#  02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0         
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0         
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0         
+  06    DateTime                       DateTime-0.36.tar.gz                     0         
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0         
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0         
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0         
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0         
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0         
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0         
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0         
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0         
+  15    Digest                         Digest-1.15.tar.gz                       0         
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz         	0	            
+  17    version                        version-0.70.tar.gz		     	0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz           	0	    
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz 	0	    
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz         	0	    
+  21    URI                            URI-1.35.tar.gz                       	1.30	    
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz      	0	    
+  23    Test::Exception                Test-Exception-0.24.tar.gz            	0	    
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz             	0	    
+  25    Array::Compare                 Array-Compare-1.13.tar.gz             	0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz               	0	    
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                	0	    
+  28    Net::FTP                       libnet-1.19.tar.gz                    	0	    
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz            	0	    
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz    	0	    
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz          	1.94	    
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz            	0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz 	0.0402
+  34    CGI                            CGI.pm-3.25.tar.gz                    	3	      
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                  	1.05	    
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz           	1.1.1	    
+  37    LWP                            libwww-perl-5.805.tar.gz              	0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz           	0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                 	0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz         	0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                 	0	    
+  42    YAML                           YAML-0.62.tar.gz                      	0.58	       y
+  43    Module::Load                   Module-Load-0.10.tar.gz               	0	    
+  44    Params::Check                  Params-Check-0.25.tar.gz              	0	    
+  45    Template                       Template-Toolkit-2.16.tar.gz          	0	       n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz     	2.6
+  47    Storable                       Storable-2.15.tar.gz                  	0	    
+  48    IO::String                     IO-String-1.08.tar.gz                 	0	    
+  49    Date::Parse                    TimeDate-1.16.tar.gz                  	0	    
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz               	0	    
+  51    DB_File                        DB_File-1.814.tar.gz                  	0	    
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz              	0	    
+  53    Heap                           Heap-0.71.tar.gz                      	0	    
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz   	0	    
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                   	0	    
+  56    Cache                          Cache-2.04.tar.gz                     	0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                   	0.36	    
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0
+  65    Test::More    		       Test-Simple-0.74.tar.gz                  0.49
+#  66    Apache::DBI   		       Apache-DBI-1.06.tar.gz                   0
+#  67    Apache2::SOAP 		       Apache2-SOAP-0.72.tar.gz                 0
+  68    Test::URI     		       Test-URI-1.08.tar.gz                     0
+#  69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0
+#  70    Config::YAML  	       	       Config-YAML-1.42.tar.gz                  0
+#  72    File::ExtAttr 	       	       File-ExtAttr-1.07.tar.gz                 0
+  73    DBI           	       	       DBI-1.601.tar.gz                         0
+  71    DBD::mysql    	       	       DBD-mysql-4.006.tar.gz                   0
+#  74    Net::Server::Daemonize 	       Net-Server-0.97.tar.gz                   0.05
+  75    File::Path                     File-Path-2.04.tar.gz
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.dist	(revision 41109)
@@ -0,0 +1,69 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  CVS module             CVS branch tag   CVS branch version   
+# ||||| 
+  YYNNY  Ohana                  ipp-2-6          -0
+  NNYYN  ohana.base             ipp-2-6          -0
+  NNYYN  libohana               ipp-2-6          -0
+  NNYYN  libfits                ipp-2-6          -0
+  NNYYN  libautocode            ipp-2-6          -0
+  NNYYN  libdvo                 ipp-2-6          -0
+  NNYYN  libkapa                ipp-2-6          -0
+  NNYYN  libtap.ohana           ipp-2-6          -0
+  NNYYN  addstar                ipp-2-6          -0
+  NNYYN  delstar                ipp-2-6          -0
+  NNYYN  getstar                ipp-2-6          -0
+  NNYYN  ohana.tools            ipp-2-6          -0
+  NNYYN  kapa2                  ipp-2-6          -0
+  NNYYN  relphot                ipp-2-6          -0
+  NNYYN  relastro               ipp-2-6          -0
+  NNYYN  uniphot                ipp-2-6          -0
+  NNYYN  opihi.base             ipp-2-6          -0
+  NNYYN  mana                   ipp-2-6          -0
+  NNYYN  dvo                    ipp-2-6          -0
+  NNYYN  pantasks               ipp-2-6          -0
+  NNYYN  pcontrol               ipp-2-6          -0
+  NNYYN  pclient                ipp-2-6          -0      
+          
+  YYYYY  nebclient              ipp-2-6          -0
+  YYYNY  Nebulous               ipp-2-6          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-6          -0
+  YYYYY  PS-IPP-Config          ipp-2-6          -0     
+          
+  YYYYY  psLib                  ipp-2-6          -0
+  YYYYY  psModules              ipp-2-6          -0
+  YYYYY  ppStats                ipp-2-6          -0
+  YYYYY  psphot                 ipp-2-6          -0
+  YYYYY  psastro                ipp-2-6          -0
+  YYYYY  ppConfigDump           ipp-2-6          -0
+  YYYYY  ppImage                ipp-2-6          -0
+  YYYYY  ppNorm                 ipp-2-6          -0
+  YYYYY  ppMerge                ipp-2-6          -0
+  YYYYY  pedestal               ipp-2-6          -0
+  YYYYY  dvoTools               ipp-2-6          -0
+  YYYYY  pswarp                 ipp-2-6          -0
+  YYYYY  ppArith                ipp-2-6          -0
+  YYYYY  ppStack                ipp-2-6          -0
+  YYYYY  ppSub                  ipp-2-6          -0
+  YYYYY  ppSim                  ipp-2-6          -0
+          
+  YNNYY  glueforge              ipp-2-6          -0
+  YNNYY  dbconfig               ipp-2-6          -0
+  NNNNY  ippdb.src             
+  YYYNN  ippdb                  ipp-2-6          -0
+  YYYYY  pstamp                 ipp-2-6          -0
+  YYYYY  ippTools               ipp-2-6          -0
+  YYYYY  ippScripts             ipp-2-6          -0
+  YYYYY  ippTasks               ipp-2-6          -0
+          
+  YYYYY  ippconfig              ipp-2-6          -0
+  YNYYN  psconfig               ipp-2-6          -0
+  YNYYN  ippMonitor             ipp-2-6          -0
+  YYYYY  DataStore              ipp-2-6          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.libs	(revision 41109)
@@ -0,0 +1,91 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   configure options
+#   make options
+#   make install options
+
+lib libm                 NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      Y NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       Y --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    Y NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v6b.tar.gz       jpeg-6b          Y --enable-shared NONE install-lib
+lib libcfitsio           NONE           NONE   cfitsio3090.tar.gz       cfitsio          Y NONE NONE NONE
+#lib libmysqlclient      NONE           mysql  mysql-5.0.27.tar.gz      mysql-5.0.27     Y NONE NONE NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    Y NONE NONE NONE
+lib libgsl               NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         Y NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-float,--enable-shared,--enable-threads,--disable-fortran NONE NONE
+#lib libfftw3            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       Y --enable-shared,--disable-fortran NONE NONE
+# paul claims we are not currently using double-point FFTs anywhere
+
+bin pkg-config           NONE           NONE   pkg-config-0.22.tar.gz   pkg-config-0.22  Y NONE NONE NONE
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fitsio.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/readline.h  NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.6.perl	(revision 41109)
@@ -0,0 +1,79 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806         
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0         
+  02    Params::Validate               Params-Validate-0.87.tar.gz              0.77         
+#  02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0         
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0         
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0         
+  06    DateTime                       DateTime-0.36.tar.gz                     0         
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0         
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0         
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0         
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0         
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0         
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0         
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0         
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0         
+  15    Digest                         Digest-1.15.tar.gz                       0         
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz         	0	            
+  17    version                        version-0.70.tar.gz		     	0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz           	0	    
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz 	0	    
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz         	0	    
+  21    URI                            URI-1.35.tar.gz                       	1.30	    
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz      	0	    
+  23    Test::Exception                Test-Exception-0.24.tar.gz            	0	    
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz             	0	    
+  25    Array::Compare                 Array-Compare-1.13.tar.gz             	0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz               	0	    
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                	0	    
+  28    Net::FTP                       libnet-1.19.tar.gz                    	0	    
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz            	0	    
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz    	0	    
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz          	1.94	    
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz            	0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.0403.tar.gz 	0.0402
+  34    CGI                            CGI.pm-3.25.tar.gz                    	3	      
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                  	1.05	    
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz           	1.1.1	    
+  37    LWP                            libwww-perl-5.805.tar.gz              	0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz           	0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                 	0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz         	0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                 	0	    
+  42    YAML                           YAML-0.62.tar.gz                      	0.58	       y
+  43    Module::Load                   Module-Load-0.10.tar.gz               	0	    
+  44    Params::Check                  Params-Check-0.25.tar.gz              	0	    
+  45    Template                       Template-Toolkit-2.16.tar.gz          	0	       n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz     	2.6
+  47    Storable                       Storable-2.15.tar.gz                  	0	    
+  48    IO::String                     IO-String-1.08.tar.gz                 	0	    
+  49    Date::Parse                    TimeDate-1.16.tar.gz                  	0	    
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz               	0	    
+  51    DB_File                        DB_File-1.814.tar.gz                  	0	    
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz              	0	    
+  53    Heap                           Heap-0.71.tar.gz                      	0	    
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz   	0	    
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                   	0	    
+  56    Cache                          Cache-2.04.tar.gz                     	0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                   	0.36	    
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0
+  65    Test::More    		       Test-Simple-0.74.tar.gz                  0.49
+#  66    Apache::DBI   		       Apache-DBI-1.06.tar.gz                   0
+#  67    Apache2::SOAP 		       Apache2-SOAP-0.72.tar.gz                 0
+  68    Test::URI     		       Test-URI-1.08.tar.gz                     0
+#  69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0
+#  70    Config::YAML  	       	       Config-YAML-1.42.tar.gz                  0
+#  72    File::ExtAttr 	       	       File-ExtAttr-1.07.tar.gz                 0
+  73    DBI           	       	       DBI-1.601.tar.gz                         0
+  71    DBD::mysql    	       	       DBD-mysql-4.006.tar.gz                   0
+#  74    Net::Server::Daemonize 	       Net-Server-0.97.tar.gz                   0.05
+  75    File::Path                     File-Path-2.04.tar.gz
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.7.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.7.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.7.dist	(revision 41109)
@@ -0,0 +1,70 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  module                 branch name      tag version   
+# ||||| 
+  YYNNY  Ohana                  ipp-2-7          -0
+  NNYYN  ohana.base             ipp-2-7          -0
+  NNYYN  libohana               ipp-2-7          -0
+  NNYYN  libfits                ipp-2-7          -0
+  NNYYN  libautocode            ipp-2-7          -0
+  NNYYN  libdvo                 ipp-2-7          -0
+  NNYYN  libkapa                ipp-2-7          -0
+  NNYYN  libtap.ohana           ipp-2-7          -0
+  NNYYN  addstar                ipp-2-7          -0
+  NNYYN  delstar                ipp-2-7          -0
+  NNYYN  getstar                ipp-2-7          -0
+  NNYYN  ohana.tools            ipp-2-7          -0
+  NNYYN  kapa2                  ipp-2-7          -0
+  NNYYN  relphot                ipp-2-7          -0
+  NNYYN  relastro               ipp-2-7          -0
+  NNYYN  uniphot                ipp-2-7          -0
+  NNYYN  opihi.base             ipp-2-7          -0
+  NNYYN  mana                   ipp-2-7          -0
+  NNYYN  dvo                    ipp-2-7          -0
+  NNYYN  pantasks               ipp-2-7          -0
+  NNYYN  pcontrol               ipp-2-7          -0
+  NNYYN  pclient                ipp-2-7          -0      
+          
+  YNNYY  nebclient              ipp-2-7          -0
+  YNNNY  Nebulous               ipp-2-7          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-7          -0
+  YYYYY  PS-IPP-Config          ipp-2-7          -0     
+          
+  YYYYY  psLib                  ipp-2-7          -0
+  YYYYY  psModules              ipp-2-7          -0
+  YYYYY  ppStats                ipp-2-7          -0
+  YYYYY  psphot                 ipp-2-7          -0
+  YYYYY  psastro                ipp-2-7          -0
+  YYYYY  ppConfigDump           ipp-2-7          -0
+  YYYYY  ppImage                ipp-2-7          -0
+  YYYYY  ppNorm                 ipp-2-7          -0
+  YYYYY  ppMerge                ipp-2-7          -0
+  YNNYN  pedestal               ipp-2-7          -0
+  YYYYY  dvoTools               ipp-2-7          -0
+  YYYYY  pswarp                 ipp-2-7          -0
+  YYYYY  ppArith                ipp-2-7          -0
+  YYYYY  ppStack                ipp-2-7          -0
+  YYYYY  ppSub                  ipp-2-7          -0
+  YYYYY  ppSim                  ipp-2-7          -0
+          
+  YNNYY  glueforge              ipp-2-7          -0
+  YNNYY  dbconfig               ipp-2-7          -0
+  NNNNY  ippdb.src             
+  YYYNN  ippdb                  ipp-2-7          -0
+  YYYYY  PStamp                 ipp-2-7          -0
+  YYYYY  pstamp                 ipp-2-7          -0
+  YYYYY  ippTools               ipp-2-7          -0
+  YYYYY  ippScripts             ipp-2-7          -0
+  YYYYY  ippTasks               ipp-2-7          -0
+          
+  YYYYY  ippconfig              ipp-2-7          -0
+  YNYYN  psconfig               ipp-2-7          -0
+  YNYYN  ippMonitor             ipp-2-7          -0
+  YYYYY  DataStore              ipp-2-7          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.7.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.7.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.7.libs	(revision 41109)
@@ -0,0 +1,94 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   force install by default?
+#   configure options
+#   make options
+#   make install options
+
+lib libm                 NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      N NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v6b-p1.tar.gz    jpeg-6b          N --enable-shared NONE install-lib
+lib libcfitsio           NONE           NONE   cfitsio3100-pap.tar.gz   cfitsio3100-pap  N --enable-shared shared NONE
+#lib libmysqlclient      NONE           mysql  mysql-5.0.27.tar.gz      mysql-5.0.27     N NONE NONE NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    N NONE NONE NONE
+lib libgsl               NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+#lib libfftw3            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-shared,--disable-fortran NONE NONE
+# paul claims we are not currently using double-point FFTs anywhere
+
+bin pkg-config           NONE           NONE   pkg-config-0.22.tar.gz   pkg-config-0.22  N NONE NONE NONE
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fftw3.h              NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+inc fitsio.h             NONE           NONE   cfitsio3100-pap.tar.gz   cfitsio3100-pap  N --enable-shared shared NONE
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           jpeg   jpegsrc.v6b.tar.gz       jpeg-6b          N --enable-shared NONE install-lib
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc mysql.h              NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    N NONE NONE NONE
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc readline/readline.h  NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.7.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.7.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.7.perl	(revision 41109)
@@ -0,0 +1,84 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0
+  02    Params::Validate               Params-Validate-0.91.tar.gz       0.77
+#  02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0
+  06    DateTime                       DateTime-0.36.tar.gz                     0
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0
+  15    Digest                         Digest-1.15.tar.gz                       0
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz            0
+  17    version                        version-0.70.tar.gz                      0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz              0
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz    0
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz            0
+  21    URI                            URI-1.35.tar.gz                          1.30
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz         0
+  23    Test::Exception                Test-Exception-0.24.tar.gz               0
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz                0
+  25    Array::Compare                 Array-Compare-1.13.tar.gz                0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz                  0
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                   0
+  28    Net::FTP                       libnet-1.19.tar.gz                       0
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz               0
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz       0
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz             1.94
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz               0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06
+  34    CGI                            CGI.pm-3.25.tar.gz                       3
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                     1.05
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz              1.1.1
+  37    LWP                            libwww-perl-5.805.tar.gz                 0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz              0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                    0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz            0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                    0
+  42    YAML                           YAML-0.62.tar.gz                         0.58           y
+  43    Module::Load                   Module-Load-0.10.tar.gz                  0
+  44    Params::Check                  Params-Check-0.25.tar.gz                 0
+  45    Template                       Template-Toolkit-2.16.tar.gz             0              n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz        2.6
+  47    Storable                       Storable-2.15.tar.gz                     0
+  48    IO::String                     IO-String-1.08.tar.gz                    0
+  49    Date::Parse                    TimeDate-1.16.tar.gz                     0
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                  0
+  51    DB_File                        DB_File-1.814.tar.gz                     0
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz                 0
+  53    Heap                           Heap-0.71.tar.gz                         0
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz      0
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                      0
+  56    Cache                          Cache-2.04.tar.gz                        0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                      0.36
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0
+  65    Test::More                     Test-Simple-0.74.tar.gz                  0.49
+#  66    Apache::DBI                   Apache-DBI-1.06.tar.gz                   0
+#  67    Apache2::SOAP                 Apache2-SOAP-0.72.tar.gz                 0
+  68    Test::URI                      Test-URI-1.08.tar.gz                     0
+#  69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0
+#  70    Config::YAML                  Config-YAML-1.42.tar.gz                  0
+#  72    File::ExtAttr                 File-ExtAttr-1.07.tar.gz                 0
+  73    DBI                            DBI-1.601.tar.gz                         0
+  71    DBD::mysql                     DBD-mysql-4.006.tar.gz                   0
+#  74    Net::Server::Daemonize                Net-Server-0.97.tar.gz                   0.05
+  75    File::Path                      File-Path-2.04.tar.gz
+  76    File::Mountpoint                File-Mountpoint-0.01.tar.gz             0.01
+  77    Filesys::Df                     Filesys-Df-0.92.tar.gz                  0.92
+  78    SQL::Interp                     SQL-Interp-1.06.tar.gz
+  79    Log::Dispatch::Email::MailSend  Log-Dispatch-2.22.tar.gz
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.8.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.8.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.8.dist	(revision 41109)
@@ -0,0 +1,75 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  module                 branch name      tag version   
+# ||||| 
+  YYNNY  Ohana                  ipp-2-8          -0
+  NNYYN  ohana.base             ipp-2-8          -0
+  NNYYN  libohana               ipp-2-8          -0
+  NNYYN  libfits                ipp-2-8          -0
+  NNYYN  libautocode            ipp-2-8          -0
+  NNYYN  libdvo                 ipp-2-8          -0
+  NNYYN  libkapa                ipp-2-8          -0
+  NNYYN  libtap.ohana           ipp-2-8          -0
+  NNYYN  addstar                ipp-2-8          -0
+  NNYYN  delstar                ipp-2-8          -0
+  NNYYN  getstar                ipp-2-8          -0
+  NNYYN  ohana.tools            ipp-2-8          -0
+  NNYYN  kapa2                  ipp-2-8          -0
+  NNYYN  relphot                ipp-2-8          -0
+  NNYYN  relastro               ipp-2-8          -0
+  NNYYN  uniphot                ipp-2-8          -0
+  NNYYN  opihi.base             ipp-2-8          -0
+  NNYYN  mana                   ipp-2-8          -0
+  NNYYN  dvo                    ipp-2-8          -0
+  NNYYN  pantasks               ipp-2-8          -0
+  NNYYN  pcontrol               ipp-2-8          -0
+  NNYYN  pclient                ipp-2-8          -0      
+          
+  YNNYY  Nebulous/nebclient     ipp-2-8          -0
+  YNNYY  Nebulous               ipp-2-8          -0
+  YNNYY  Nebulous-Server        ipp-2-8          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-8          -0
+  YYYYY  PS-IPP-Config          ipp-2-8          -0     
+          
+  YYYYY  psLib                  ipp-2-8          -0
+  YYYYY  psModules              ipp-2-8          -0
+  YYYYY  ppStats                ipp-2-8          -0
+  YYYYY  psphot                 ipp-2-8          -0
+  YYYYY  psastro                ipp-2-8          -0
+  YYYYY  ppConfigDump           ipp-2-8          -0
+  YYYYY  ppImage                ipp-2-8          -0
+  YYYYY  ppNorm                 ipp-2-8          -0
+  YYYYY  ppMerge                ipp-2-8          -0
+  YNNYN  pedestal               ipp-2-8          -0
+  YYYYY  dvoTools               ipp-2-8          -0
+  YYYYY  pswarp                 ipp-2-8          -0
+  YYYYY  ppArith                ipp-2-8          -0
+  YYYYY  ppStack                ipp-2-8          -0
+  YYYYY  ppSub                  ipp-2-8          -0
+  YYYYY  ppSim                  ipp-2-8          -0
+          
+  YNNYY  glueforge              ipp-2-8          -0
+  YNNYY  dbconfig               ipp-2-8          -0
+  NNNNY  ippdb.src             
+  YYYNN  ippdb                  ipp-2-8          -0
+  YYYYY  PS-IPP-PStamp          ipp-2-8          -0
+  YYYYY  pstamp                 ipp-2-8          -0
+  YYYYY  ippTools               ipp-2-8          -0
+  YYYYY  ippScripts             ipp-2-8          -0
+  YYYYY  ippTasks               ipp-2-8          -0
+          
+  YYYYY  ippconfig              ipp-2-8          -0
+  YNYYN  psconfig               ipp-2-8          -0
+  YNYYN  ippMonitor             ipp-2-8          -0
+  YYYYY  DataStore              ipp-2-8          -0
+
+  YYYYY  ppTranslate            ipp-2-8          -0
+
+  YNNNN  extsrc/gpcsw           ipp-2-8          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.8.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.8.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.8.libs	(revision 41109)
@@ -0,0 +1,97 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   force install by default?
+#   configure options
+#   make options
+#   make install options
+
+
+# Build tools
+bin autoconf             NONE           NONE   autoconf-2.63.tar.gz     autoconf-2.63    N NONE NONE NONE
+bin automake             NONE           NONE   automake-1.10.tar.gz     automake-1.10    N NONE NONE NONE
+bin libtool              NONE           NONE   libtool-2.2.6a.tar.gz    libtool-2.2.6    N NONE NONE NONE
+bin pkg-config           NONE           NONE   pkg-config-0.23.tar.gz   pkg-config-0.23  N NONE NONE NONE
+
+lib libm                 NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      N NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v6b-p1.tar.gz    jpeg-6b          N --enable-shared NONE install-lib
+lib libcfitsio           NONE           NONE   cfitsio3100-pap.tar.gz   cfitsio3100-pap  N --enable-shared shared NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    N NONE NONE NONE
+lib libgsl               NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fftw3.h              NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+inc fitsio.h             NONE           NONE   cfitsio3100-pap.tar.gz   cfitsio3100-pap  N --enable-shared shared NONE
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           jpeg   jpegsrc.v6b-p1.tar.gz    jpeg-6b          N --enable-shared NONE install-lib
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc mysql.h              NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    N NONE NONE NONE
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc readline/readline.h  NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.8.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.8.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.8.perl	(revision 41109)
@@ -0,0 +1,83 @@
+# NN    Name                           Tarball                                  Version        Optional Responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.31.tar.gz           0
+  02    Params::Validate               Params-Validate-0.91.tar.gz       0.77
+#  02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0
+  06    DateTime                       DateTime-0.36.tar.gz                     0
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0
+  15    Digest                         Digest-1.15.tar.gz                       0
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz            0
+  17    version                        version-0.70.tar.gz                      0
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz              0
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz    0
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz            0
+  21    URI                            URI-1.35.tar.gz                          1.30
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz         0
+  23    Test::Exception                Test-Exception-0.24.tar.gz               0
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz                0
+  25    Array::Compare                 Array-Compare-1.13.tar.gz                0
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz                  0
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                   0
+  28    Net::FTP                       libnet-1.19.tar.gz                       0
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz               0
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz       0
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz             1.94
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz               0.19
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06
+  34    CGI                            CGI.pm-3.25.tar.gz                       3
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                     1.05
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz              1.1.1
+  37    LWP                            libwww-perl-5.805.tar.gz                 0
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz              0.03
+  39    File::Temp                     File-Temp-0.18.tar.gz                    0.16
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz            0.01
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                    0
+  42    YAML                           YAML-0.62.tar.gz                         0.58           y
+  43    Module::Load                   Module-Load-0.10.tar.gz                  0
+  44    Params::Check                  Params-Check-0.25.tar.gz                 0
+  45    Template                       Template-Toolkit-2.16.tar.gz             0              n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz        2.6
+  47    Storable                       Storable-2.15.tar.gz                     0
+  48    IO::String                     IO-String-1.08.tar.gz                    0
+  49    Date::Parse                    TimeDate-1.16.tar.gz                     0
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                  0
+  51    DB_File                        DB_File-1.814.tar.gz                     0
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz                 0
+  53    Heap                           Heap-0.71.tar.gz                         0
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz      0
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                      0
+  56    Cache                          Cache-2.04.tar.gz                        0
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                      0.36
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0
+  65    Test::More                     Test-Simple-0.74.tar.gz                  0.49
+#  66    Apache::DBI                   Apache-DBI-1.06.tar.gz                   0
+#  67    Apache2::SOAP                 Apache2-SOAP-0.72.tar.gz                 0
+  68    Test::URI                      Test-URI-1.08.tar.gz                     0
+#  69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0
+#  70    Config::YAML                  Config-YAML-1.42.tar.gz                  0
+#  72    File::ExtAttr                 File-ExtAttr-1.07.tar.gz                 0
+  73    DBI                            DBI-1.601.tar.gz                         0
+  71    DBD::mysql                     DBD-mysql-4.006.tar.gz                   0
+#  74    Net::Server::Daemonize                Net-Server-0.97.tar.gz                   0.05
+  75    File::Path                      File-Path-2.04.tar.gz
+  76    File::Mountpoint                File-Mountpoint-0.01.tar.gz             0.01
+  77    Filesys::Df                     Filesys-Df-0.92.tar.gz                  0.92
+  78    SQL::Interp                     SQL-Interp-1.06.tar.gz
+  79    Log::Dispatch::Email::MailSend  Log-Dispatch-2.22.tar.gz
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.9.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.9.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.9.dist	(revision 41109)
@@ -0,0 +1,84 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  module                 branch name      tag version   
+# ||||| 
+  YYNNY  Ohana                  ipp-2-9          -0
+  NNYYN  ohana.base             ipp-2-9          -0
+  NNYYN  libohana               ipp-2-9          -0
+  NNYYN  libfits                ipp-2-9          -0
+  NNYYN  libautocode            ipp-2-9          -0
+  NNYYN  libdvo                 ipp-2-9          -0
+  NNYYN  libkapa                ipp-2-9          -0
+  NNYYN  libtap.ohana           ipp-2-9          -0
+  NNYYN  addstar                ipp-2-9          -0
+  NNYYN  delstar                ipp-2-9          -0
+  NNYYN  getstar                ipp-2-9          -0
+  NNYYN  ohana.tools            ipp-2-9          -0
+  NNYYN  kapa2                  ipp-2-9          -0
+  NNYYN  relphot                ipp-2-9          -0
+  NNYYN  relastro               ipp-2-9          -0
+  NNYYN  uniphot                ipp-2-9          -0
+  NNYYN  opihi.base             ipp-2-9          -0
+  NNYYN  mana                   ipp-2-9          -0
+  NNYYN  dvo                    ipp-2-9          -0
+  NNYYN  pantasks               ipp-2-9          -0
+  NNYYN  pcontrol               ipp-2-9          -0
+  NNYYN  pclient                ipp-2-9          -0      
+          
+  YNNYY  Nebulous/nebclient     ipp-2-9          -0
+  YNNYY  Nebulous               ipp-2-9          -0
+  YNNYY  Nebulous-Server        ipp-2-9          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-9          -0
+  YYYYY  PS-IPP-Config          ipp-2-9          -0     
+          
+  YYYYY  psLib                  ipp-2-9          -0
+  YYYYY  psModules              ipp-2-9          -0
+  YYYYY  ppStats                ipp-2-9          -0
+  YYYYY  psphot                 ipp-2-9          -0
+  YYYYY  psastro                ipp-2-9          -0
+  YYYYY  ppConfigDump           ipp-2-9          -0
+  YYYYY  ppImage                ipp-2-9          -0
+  YYYYY  ppNoiseMap             ipp-2-9          -0
+  YYYYY  ppNorm                 ipp-2-9          -0
+  YYYYY  ppMerge                ipp-2-9          -0
+  YNNYN  pedestal               ipp-2-9          -0
+  YYYYY  dvoTools               ipp-2-9          -0
+  YYYYY  pswarp                 ipp-2-9          -0
+  YYYYY  ppArith                ipp-2-9          -0
+  YYYYY  ppStack                ipp-2-9          -0
+  YYYYY  ppSub                  ipp-2-9          -0
+  YYYYY  ppSim                  ipp-2-9          -0
+          
+  YNNYY  glueforge              ipp-2-9          -0
+  YNNYY  dbconfig               ipp-2-9          -0
+  NNNNY  ippdb.src             
+  YYYNN  ippdb                  ipp-2-9          -0
+  YYYYY  PS-IPP-PStamp          ipp-2-9          -0
+  YYYYY  pstamp                 ipp-2-9          -0
+  YYYYY  ippTools               ipp-2-9          -0
+  YYYYY  ippScripts             ipp-2-9          -0
+  YYYYY  ippTasks               ipp-2-9          -0
+          
+  YYYYY  ippconfig              ipp-2-9          -0
+  YNYYN  psconfig               ipp-2-9          -0
+  YNYYN  ippMonitor             ipp-2-9          -0
+  YYYYY  DataStore              ipp-2-9          -0
+  YYYYY  DataStoreServer        ipp-2-9          -0
+
+  YYYYY  ppTranslate            ipp-2-9          -0
+  YYYYY  ppViz                  ipp-2-9          -0
+  YYYYY  ppBackground		ipp-2-9		 -0
+  YYYYY  ppSkycell              ipp-2-9          -0
+
+  YYYYY  extsrc/gpcsw           ipp-2-9          -0
+  YYYYY  magic                  ipp-2-9          -0
+  YYYYY  magic/censorObjects    ipp-2-9          -0
+  YYYYY  magic/remove           ipp-2-9          -0
+  YYYYY  console                ipp-2-9          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.9.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.9.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.9.libs	(revision 41109)
@@ -0,0 +1,98 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   force install by default?
+#   configure options
+#   make options
+#   make install options
+
+
+# Build tools
+bin m4                   NONE           NONE   m4-1.4.13.tar.gz         m4-1.4.13        N NONE NONE NONE
+bin autoconf             NONE           NONE   autoconf-2.63.tar.gz     autoconf-2.63    N NONE NONE NONE
+bin automake             NONE           NONE   automake-1.10.tar.gz     automake-1.10    N NONE NONE NONE
+bin libtool              NONE           NONE   libtool-2.2.6-p1.tar.gz  libtool-2.2.6-p1 N NONE NONE NONE
+bin pkg-config           NONE           NONE   pkg-config-0.23.tar.gz   pkg-config-0.23  N NONE NONE NONE
+
+lib libm                 NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      N NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2-p13.tar.gz  readline-5.2-p13 Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v6b-p1.tar.gz    jpeg-6b          N --enable-shared NONE install-lib
+lib libcfitsio           NONE           NONE   cfitsio3100-p3.tar.gz    cfitsio3100-p3   N --enable-shared shared,all NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    N NONE NONE NONE
+lib libgsl               NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fftw3.h              NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+inc fitsio.h             NONE           NONE   cfitsio3100-p3.tar.gz   cfitsio3100-p3  N --enable-shared shared NONE
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           jpeg   jpegsrc.v6b-p1.tar.gz    jpeg-6b          N --enable-shared NONE install-lib
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc mysql.h              NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    N NONE NONE NONE
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc readline/readline.h  NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.9.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.9.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-2.9.perl	(revision 41109)
@@ -0,0 +1,101 @@
+# notes:
+# Build.PL/Makefile.PL options are added to the line "perl Build.PL / perl Makefile.PL", a value of NONE is required if no options are desired
+# Build.PL/Makefile.PL responses are supplied via stdin to "perl Build.PL / perl Makefile.PL", a value of NONE is required if no responses are desired
+
+# NN    Name                           Tarball                                  Version        Build.PL/Makefile.PL Build.PL/Makefile.PL responses
+# a Version of 0 is required if no specific version is desired                                 options   responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            NONE      n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806         NONE      NONE # special comment here
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.54.tar.gz           0              NONE      NONE
+  02a   Attribute::Handlers            Attribute-Handlers-0.87.tar.gz           0.79           NONE      NONE
+  02    Params::Validate               Params-Validate-0.92.tar.gz              0.92           NONE      NONE
+# 02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29           NONE      NONE
+  03a   Class::Singleton               Class-Singleton-1.4.tar.gz               0              NONE      NONE
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0              NONE      NONE
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0              NONE      NONE
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0              NONE      NONE
+  06    DateTime                       DateTime-0.36.tar.gz                     0              NONE      NONE
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0              NONE      NONE
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0              NONE      NONE
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0              NONE      NONE
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0              NONE      NONE
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0              NONE      NONE
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0              NONE      NONE
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0              NONE      NONE
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0              NONE      NONE
+  15    Digest                         Digest-1.15.tar.gz                       0              NONE      NONE
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz            0              NONE      NONE
+  17    version                        version-0.70.tar.gz                      0              NONE      NONE
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz              0              NONE      NONE
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz    0              NONE      NONE
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz            0              NONE      NONE
+  21    URI                            URI-1.35.tar.gz                          1.30           NONE      NONE
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz         0              NONE      NONE
+  23    Test::Exception                Test-Exception-0.24.tar.gz               0              NONE      NONE
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz                0              NONE      NONE
+  25    Array::Compare                 Array-Compare-1.13.tar.gz                0              NONE      NONE
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz                  0              NONE      NONE
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                   0              NONE      NONE
+  28    Net::FTP                       libnet-1.19.tar.gz                       0              NONE      n
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz               0              NONE      NONE
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz       0              NONE      NONE
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz             1.94           NONE      NONE
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz               0.19           NONE      NONE
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06           NONE      NONE
+  34    CGI                            CGI.pm-3.25.tar.gz                       3              NONE      NONE
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                     1.05           NONE      NONE
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz              1.1.1          NONE      NONE
+  37    LWP                            libwww-perl-5.805.tar.gz                 0              NONE      NONE
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz              0.03           NONE      NONE
+  39    File::Temp                     File-Temp-0.18.tar.gz                    0.16           NONE      NONE
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz            0.01           NONE      NONE
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                    0              NONE      NONE
+  42    YAML                           YAML-0.62.tar.gz                         0.58           NONE      y
+  43    Module::Load                   Module-Load-0.10.tar.gz                  0              NONE      NONE
+  44    Params::Check                  Params-Check-0.25.tar.gz                 0              NONE      NONE
+  45    Template                       Template-Toolkit-2.16.tar.gz             0              NONE      n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz        2.6            NONE      NONE
+  47    Storable                       Storable-2.15.tar.gz                     0              NONE      NONE
+  48    IO::String                     IO-String-1.08.tar.gz                    0              NONE      NONE
+  49    Date::Parse                    TimeDate-1.16.tar.gz                     0              NONE      NONE
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                  0              NONE      NONE
+  51    DB_File                        DB_File-1.814.tar.gz                     0              NONE      NONE
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz                 0              NONE      NONE
+  53    Heap                           Heap-0.71.tar.gz                         0              NONE      NONE
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz      0              NONE      NONE
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                      0              NONE      NONE
+  56    Cache                          Cache-2.04.tar.gz                        0              NONE      NONE
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                      0.36           NONE      NONE
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              NONE      yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0              NONE      NONE
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0              NONE      NONE
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08           NONE      NONE
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01           NONE      NONE
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30           NONE      NONE
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0              NONE      NONE
+  65    Test::More                     Test-Simple-0.74.tar.gz                  0.49           NONE      NONE
+# 66    Apache::DBI                    Apache-DBI-1.06.tar.gz                   0              NONE      NONE
+# 67    Apache2::SOAP                  Apache2-SOAP-0.72.tar.gz                 0              NONE      NONE
+  68    Test::URI                      Test-URI-1.08.tar.gz                     0              NONE      NONE
+# 69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0              NONE      NONE
+  70    Config::YAML                   Config-YAML-1.42.tar.gz                  0              NONE      NONE
+# 72    File::ExtAttr                  File-ExtAttr-1.07.tar.gz                 0              NONE      NONE
+  73    DBI                            DBI-1.601.tar.gz                         0              NONE      NONE
+  71    DBD::mysql                     DBD-mysql-4.006.tar.gz                   0              NONE      NONE
+# 74    Net::Server::Daemonize         Net-Server-0.97.tar.gz                   0.05           NONE      NONE
+  75    File::Path                      File-Path-2.04.tar.gz                   0              NONE      NONE
+  76    File::Mountpoint                File-Mountpoint-0.01.tar.gz             0.01           NONE      NONE
+  77    Filesys::Df                     Filesys-Df-0.92.tar.gz                  0.92           NONE      NONE
+  78    SQL::Interp                     SQL-Interp-1.06.tar.gz                  0              NONE      NONE
+  79a   Mail::Send                      MailTools-2.04.tar.gz                   0              NONE      NONE
+  79b   Log::Dispatch::Email::MailSend  Log-Dispatch-2.22.tar.gz                0              NONE      NONE
+  80    Abstract::Meta::Class          Abstract-Meta-Class-0.13.tar.gz          0              NONE      NONE
+  81    DBIx::Connection               DBIx-Connection-0.13.tar.gz              0              NONE      NONE
+  82a   Pod::Escapes                   Pod-Escapes-1.04.tar.gz                  0              NONE      NONE
+  82b   Pod::Simple                    Pod-Simple-3.14.tar.gz                   0              NONE      NONE
+  82c   Test::Pod                      Test-Pod-1.40.tar.gz                     0              NONE      NONE
+  82d   XML::NamespaceSupport          XML-NamespaceSupport-1.10.tar.gz         0              --skip    NONE
+  82e   XML::SAX                       XML-SAX-0.96.tar.gz                      0              NONE      Y
+  82f   Simple::SAX::Serializer        Simple-SAX-Serializer-0.05.tar.gz        0              NONE      NONE
+  83    Test::Distribution             Test-Distribution-2.00.tar.gz            0              NONE      NONE
+  84    Test::DBUnit                   Test-DBUnit-0.20.tar.gz                  0.20           NONE      NONE
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.0.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.0.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.0.dist	(revision 41109)
@@ -0,0 +1,87 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  module                 branch name      tag version   
+# ||||| 
+  YYNNY  Ohana                  ipp-2-9          -0
+  NNYYN  ohana.base             ipp-2-9          -0
+  NNYYN  libohana               ipp-2-9          -0
+  NNYYN  libfits                ipp-2-9          -0
+  NNYYN  libautocode            ipp-2-9          -0
+  NNYYN  libdvo                 ipp-2-9          -0
+  NNYYN  libkapa                ipp-2-9          -0
+  NNYYN  libtap.ohana           ipp-2-9          -0
+  NNYYN  addstar                ipp-2-9          -0
+  NNYYN  delstar                ipp-2-9          -0
+  NNYYN  getstar                ipp-2-9          -0
+  NNYYN  ohana.tools            ipp-2-9          -0
+  NNYYN  kapa2                  ipp-2-9          -0
+  NNYYN  relphot                ipp-2-9          -0
+  NNYYN  relastro               ipp-2-9          -0
+  NNYYN  uniphot                ipp-2-9          -0
+  NNYYN  opihi.base             ipp-2-9          -0
+  NNYYN  mana                   ipp-2-9          -0
+  NNYYN  dvo                    ipp-2-9          -0
+  NNYYN  pantasks               ipp-2-9          -0
+  NNYYN  pcontrol               ipp-2-9          -0
+  NNYYN  pclient                ipp-2-9          -0      
+          
+# psLib-based code needs the nebclient library to interact with nebulous
+  YNNYY  Nebulous/nebclient     ipp-2-9          -0
+
+  YYYYY  psLib                  ipp-2-9          -0
+  YYYYY  psModules              ipp-2-9          -0
+  YYYYY  ppStats                ipp-2-9          -0
+  YYYYY  psphot                 ipp-2-9          -0
+  YYYYY  psastro                ipp-2-9          -0
+  YYYYY  ppConfigDump           ipp-2-9          -0
+  YYYYY  ppImage                ipp-2-9          -0
+  YYYYY  ppNoiseMap             ipp-2-9          -0
+  YYYYY  ppNorm                 ipp-2-9          -0
+  YYYYY  ppMerge                ipp-2-9          -0
+  YNNYN  pedestal               ipp-2-9          -0
+  YYYYY  dvoTools               ipp-2-9          -0
+  YYYYY  pswarp                 ipp-2-9          -0
+  YYYYY  ppArith                ipp-2-9          -0
+  YYYYY  ppStack                ipp-2-9          -0
+  YYYYY  ppSub                  ipp-2-9          -0
+  YYYYY  ppSim                  ipp-2-9          -0
+          
+  YNNYY  Nebulous               ipp-2-9          -0
+  YNNYY  Nebulous-Server        ipp-2-9          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-9          -0
+  YYYYY  PS-IPP-Config          ipp-2-9          -0     
+          
+  YNNYY  glueforge              ipp-2-9          -0
+  YNNYY  dbconfig               ipp-2-9          -0
+  NNNNY  ippdb.src             
+  YYYNN  ippdb                  ipp-2-9          -0
+  YYYYY  PS-IPP-PStamp          ipp-2-9          -0
+  YYYYY  pstamp                 ipp-2-9          -0
+  YYYYY  ippTools               ipp-2-9          -0
+  YYYYY  ippScripts             ipp-2-9          -0
+  YYYYY  ippTasks               ipp-2-9          -0
+  YYYYY  ippToPsps              ipp-2-9          -0
+          
+  YYYYY  ippconfig              ipp-2-9          -0
+  YNYYN  psconfig               ipp-2-9          -0
+  YNYYN  ippMonitor             ipp-2-9          -0
+  YYYYY  DataStore              ipp-2-9          -0
+  YYYYY  DataStoreServer        ipp-2-9          -0
+
+  YYYYY  ppTranslate            ipp-2-9          -0
+  YYYYY  ppViz                  ipp-2-9          -0
+  YYYYY  ppBackground		ipp-2-9		 -0
+  YYYYY  ppSkycell              ipp-2-9          -0
+
+  YYYYY  extsrc/gpcsw           ipp-2-9          -0
+# YYYYY  magic                  ipp-2-9          -0
+  YYYYY  magic/censorObjects    ipp-2-9          -0
+  YYYYY  magic/remove           ipp-2-9          -0
+  YYYYY  console                ipp-2-9          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.0.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.0.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.0.libs	(revision 41109)
@@ -0,0 +1,98 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   force install by default?
+#   configure options
+#   make options
+#   make install options
+
+
+# Build tools
+bin m4                   NONE           NONE   m4-1.4.13.tar.gz         m4-1.4.13        N NONE NONE NONE
+bin autoconf             NONE           NONE   autoconf-2.63.tar.gz     autoconf-2.63    N NONE NONE NONE
+bin automake             NONE           NONE   automake-1.10.tar.gz     automake-1.10    N NONE NONE NONE
+bin libtool              NONE           NONE   libtool-2.2.6-p1.tar.gz  libtool-2.2.6-p1 N NONE NONE NONE
+bin pkg-config           NONE           NONE   pkg-config-0.23.tar.gz   pkg-config-0.23  N NONE NONE NONE
+
+lib libm                 NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      N NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2-p14.tar.gz  readline-5.2-p14 Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v8c.tar.gz       jpeg-8c          N --enable-shared NONE NONE
+lib libcfitsio           NONE           NONE   cfitsio3100-p5.tar.gz    cfitsio3100-p5   N --enable-shared shared,all NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    Y --with-unix-socket-path=/var/run/mysqld/mysqld.sock NONE NONE
+lib libgsl               NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fftw3.h              NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+inc fitsio.h             NONE           NONE   cfitsio3100-p3.tar.gz   cfitsio3100-p3  N --enable-shared shared NONE
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           jpeg   jpegsrc.v6b-p1.tar.gz    jpeg-6b          N --enable-shared NONE install-lib
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc mysql.h              NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    N NONE NONE NONE
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc readline/readline.h  NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.0.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.0.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.0.perl	(revision 41109)
@@ -0,0 +1,106 @@
+# notes:
+# Build.PL/Makefile.PL options are added to the line "perl Build.PL / perl Makefile.PL", a value of NONE is required if no options are desired
+# Build.PL/Makefile.PL responses are supplied via stdin to "perl Build.PL / perl Makefile.PL", a value of NONE is required if no responses are desired
+
+# NN    Name                           Tarball                                  Version        Build.PL/Makefile.PL Build.PL/Makefile.PL responses
+# a Version of 0 is required if no specific version is desired                                 options   responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            NONE      n
+# 00    Module::Build                  Module-Build-0.40.tar.gz                 0.38           NONE      NONE # special comment here
+  00    Module::Build                  Module-Build-0.3601.tar.gz               0.3601         NONE      NONE # special comment here
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.54.tar.gz           0              NONE      NONE
+  02a   Attribute::Handlers            Attribute-Handlers-0.87.tar.gz           0.79           NONE      NONE
+# Params::Validate 0.92 breaks with Perl >= 5.14 (and probably earlier) because 'ref' added RegExp as a type
+  02    Params::Validate               Params-Validate-0.96.tar.gz              0.96           NONE      NONE
+# 02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29           NONE      NONE
+  03a   Class::Singleton               Class-Singleton-1.4.tar.gz               0              NONE      NONE
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0              NONE      NONE
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0              NONE      NONE
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0              NONE      NONE
+  06    DateTime                       DateTime-0.36.tar.gz                     0              NONE      NONE
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0              NONE      NONE
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0              NONE      NONE
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0              NONE      NONE
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0              NONE      NONE
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0              NONE      NONE
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0              NONE      NONE
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0              NONE      NONE
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0              NONE      NONE
+  15    Digest                         Digest-1.15.tar.gz                       0              NONE      NONE
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz            0              NONE      NONE
+  17    version                        version-0.70.tar.gz                      0              NONE      NONE
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz              0              NONE      NONE
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz    0              NONE      NONE
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz            0              NONE      NONE
+  21    URI                            URI-1.35.tar.gz                          1.30           NONE      NONE
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz         0              NONE      NONE
+  23    Test::Exception                Test-Exception-0.24.tar.gz               0              NONE      NONE
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz                0              NONE      NONE
+  25    Array::Compare                 Array-Compare-1.13.tar.gz                0              NONE      NONE
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz                  0              NONE      NONE
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                   0              NONE      NONE
+  28    Net::FTP                       libnet-1.19.tar.gz                       0              NONE      n
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz               0              NONE      NONE
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz       0              NONE      NONE
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz             1.94           NONE      NONE
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz               0.19           NONE      NONE
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06           NONE      NONE
+  34    CGI                            CGI.pm-3.25.tar.gz                       3              NONE      NONE
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                     1.05           NONE      NONE
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz              1.1.1          NONE      NONE
+  37    LWP                            libwww-perl-5.805.tar.gz                 0              NONE      NONE
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz              0.03           NONE      NONE
+  39    File::Temp                     File-Temp-0.18.tar.gz                    0.16           NONE      NONE
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz            0.01           NONE      NONE
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                    0              NONE      NONE
+  42    YAML                           YAML-0.62.tar.gz                         0.58           NONE      y
+  43    Module::Load                   Module-Load-0.10.tar.gz                  0              NONE      NONE
+  44    Params::Check                  Params-Check-0.25.tar.gz                 0              NONE      NONE
+  45    Template                       Template-Toolkit-2.16.tar.gz             0              NONE      n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz        2.6            NONE      NONE
+  47    Storable                       Storable-2.15.tar.gz                     0              NONE      NONE
+  48    IO::String                     IO-String-1.08.tar.gz                    0              NONE      NONE
+  49    Date::Parse                    TimeDate-1.16.tar.gz                     0              NONE      NONE
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                  0              NONE      NONE
+  51    DB_File                        DB_File-1.814.tar.gz                     0              NONE      NONE
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz                 0              NONE      NONE
+  53    Heap                           Heap-0.71.tar.gz                         0              NONE      NONE
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz      0              NONE      NONE
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                      0              NONE      NONE
+  56    Cache                          Cache-2.04.tar.gz                        0              NONE      NONE
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                      0.36           NONE      NONE
+  58    SOAP::Lite                     SOAP-Lite-0.69.v1.tar.gz                 0              NONE      yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.v1.tar.gz              0              NONE      NONE
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0              NONE      NONE
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08           NONE      NONE
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01           NONE      NONE
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30           NONE      NONE
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0              NONE      NONE
+  65    Test::More                     Test-Simple-0.74.tar.gz                  0.49           NONE      NONE
+# 66    Apache::DBI                    Apache-DBI-1.06.tar.gz                   0              NONE      NONE
+# 67    Apache2::SOAP                  Apache2-SOAP-0.72.tar.gz                 0              NONE      NONE
+  68    Test::URI                      Test-URI-1.08.tar.gz                     0              NONE      NONE
+# 69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0              NONE      NONE
+  70    Config::YAML                   Config-YAML-1.42.tar.gz                  0              NONE      NONE
+# 72    File::ExtAttr                  File-ExtAttr-1.07.tar.gz                 0              NONE      NONE
+# version 1.622 updates sv_undef and related to new namespace (PL_*) (needed as of Perl 5.13.XX)
+  73    DBI                            DBI-1.622.tar.gz                         1.622          NONE      NONE
+# version 4.021 updates sv_undef and related to new namespace (PL_*) (needed as of Perl 5.13.XX)
+  71    DBD::mysql                     DBD-mysql-4.021.tar.gz                   4.021          NONE      NONE
+
+# 74    Net::Server::Daemonize         Net-Server-0.97.tar.gz                   0.05           NONE      NONE
+  75    File::Path                      File-Path-2.04.tar.gz                   0              NONE      NONE
+  76    File::Mountpoint                File-Mountpoint-0.01.tar.gz             0.01           NONE      NONE
+  77    Filesys::Df                     Filesys-Df-0.92.tar.gz                  0.92           NONE      NONE
+  78    SQL::Interp                     SQL-Interp-1.06.tar.gz                  0              NONE      NONE
+  79a   Mail::Send                      MailTools-2.04.tar.gz                   0              NONE      NONE
+  79b   Log::Dispatch::Email::MailSend  Log-Dispatch-2.22.tar.gz                0              NONE      NONE
+  80    Abstract::Meta::Class          Abstract-Meta-Class-0.13.tar.gz          0              NONE      NONE
+  81    DBIx::Connection               DBIx-Connection-0.13.tar.gz              0              NONE      NONE
+  82a   Pod::Escapes                   Pod-Escapes-1.04.tar.gz                  0              NONE      NONE
+  82b   Pod::Simple                    Pod-Simple-3.14.tar.gz                   0              NONE      NONE
+  82c   Test::Pod                      Test-Pod-1.40.tar.gz                     0              NONE      NONE
+  82d   XML::NamespaceSupport          XML-NamespaceSupport-1.10.tar.gz         0              --skip    NONE
+  82e   XML::SAX                       XML-SAX-0.96.tar.gz                      0              NONE      Y
+  82f   Simple::SAX::Serializer        Simple-SAX-Serializer-0.05.tar.gz        0              NONE      NONE
+  83    Test::Distribution             Test-Distribution-2.00.tar.gz            0              NONE      NONE
+  84    Test::DBUnit                   Test-DBUnit-0.20.tar.gz                  0.20           NONE      NONE
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.1.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.1.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.1.dist	(revision 41109)
@@ -0,0 +1,87 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  module                 branch name      tag version   
+# ||||| 
+  YYNNY  Ohana                  ipp-2-9          -0
+  NNYYN  ohana.base             ipp-2-9          -0
+  NNYYN  libohana               ipp-2-9          -0
+  NNYYN  libfits                ipp-2-9          -0
+  NNYYN  libautocode            ipp-2-9          -0
+  NNYYN  libdvo                 ipp-2-9          -0
+  NNYYN  libkapa                ipp-2-9          -0
+  NNYYN  libtap.ohana           ipp-2-9          -0
+  NNYYN  addstar                ipp-2-9          -0
+  NNYYN  delstar                ipp-2-9          -0
+  NNYYN  getstar                ipp-2-9          -0
+  NNYYN  ohana.tools            ipp-2-9          -0
+  NNYYN  kapa2                  ipp-2-9          -0
+  NNYYN  relphot                ipp-2-9          -0
+  NNYYN  relastro               ipp-2-9          -0
+  NNYYN  uniphot                ipp-2-9          -0
+  NNYYN  opihi.base             ipp-2-9          -0
+  NNYYN  mana                   ipp-2-9          -0
+  NNYYN  dvo                    ipp-2-9          -0
+  NNYYN  pantasks               ipp-2-9          -0
+  NNYYN  pcontrol               ipp-2-9          -0
+  NNYYN  pclient                ipp-2-9          -0      
+          
+# psLib-based code needs the nebclient library to interact with nebulous
+  YNNYY  Nebulous/nebclient     ipp-2-9          -0
+
+  YYYYY  psLib                  ipp-2-9          -0
+  YYYYY  psModules              ipp-2-9          -0
+  YYYYY  ppStats                ipp-2-9          -0
+  YYYYY  psphot                 ipp-2-9          -0
+  YYYYY  psastro                ipp-2-9          -0
+  YYYYY  ppConfigDump           ipp-2-9          -0
+  YYYYY  ppImage                ipp-2-9          -0
+  YYYYY  ppNoiseMap             ipp-2-9          -0
+  YYYYY  ppNorm                 ipp-2-9          -0
+  YYYYY  ppMerge                ipp-2-9          -0
+  YNNYN  pedestal               ipp-2-9          -0
+  YYYYY  dvoTools               ipp-2-9          -0
+  YYYYY  pswarp                 ipp-2-9          -0
+  YYYYY  ppArith                ipp-2-9          -0
+  YYYYY  ppStack                ipp-2-9          -0
+  YYYYY  ppSub                  ipp-2-9          -0
+  YYYYY  ppSim                  ipp-2-9          -0
+          
+  YNNYY  Nebulous               ipp-2-9          -0
+  YNNYY  Nebulous-Server        ipp-2-9          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-9          -0
+  YYYYY  PS-IPP-Config          ipp-2-9          -0     
+          
+  YNNYY  glueforge              ipp-2-9          -0
+  YNNYY  dbconfig               ipp-2-9          -0
+  NNNNY  ippdb.src             
+  YYYNN  ippdb                  ipp-2-9          -0
+  YYYYY  PS-IPP-PStamp          ipp-2-9          -0
+  YYYYY  pstamp                 ipp-2-9          -0
+  YYYYY  ippTools               ipp-2-9          -0
+  YYYYY  ippScripts             ipp-2-9          -0
+  YYYYY  ippTasks               ipp-2-9          -0
+  YYYYY  ippToPsps              ipp-2-9          -0
+          
+  YYYYY  ippconfig              ipp-2-9          -0
+  YNYYN  psconfig               ipp-2-9          -0
+  YNYYN  ippMonitor             ipp-2-9          -0
+  YYYYY  DataStore              ipp-2-9          -0
+  YYYYY  DataStoreServer        ipp-2-9          -0
+
+  YYYYY  ppTranslate            ipp-2-9          -0
+  YYYYY  ppViz                  ipp-2-9          -0
+  YYYYY  ppBackground		ipp-2-9		 -0
+  YYYYY  ppSkycell              ipp-2-9          -0
+
+  YYYYY  extsrc/gpcsw           ipp-2-9          -0
+# YYYYY  magic                  ipp-2-9          -0
+  YYYYY  magic/censorObjects    ipp-2-9          -0
+  YYYYY  magic/remove           ipp-2-9          -0
+  YYYYY  console                ipp-2-9          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.1.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.1.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.1.libs	(revision 41109)
@@ -0,0 +1,98 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   force install by default?
+#   configure options
+#   make options
+#   make install options
+
+
+# Build tools
+bin m4                   NONE           NONE   m4-1.4.13.tar.gz         m4-1.4.13        N NONE NONE NONE
+bin autoconf             NONE           NONE   autoconf-2.63.tar.gz     autoconf-2.63    N NONE NONE NONE
+bin automake             NONE           NONE   automake-1.10.tar.gz     automake-1.10    N NONE NONE NONE
+bin libtool              NONE           NONE   libtool-2.2.6-p1.tar.gz  libtool-2.2.6-p1 N NONE NONE NONE
+bin pkg-config           NONE           NONE   pkg-config-0.23.tar.gz   pkg-config-0.23  N NONE NONE NONE
+
+lib libm                 NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      N NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2-p15.tar.gz  readline-5.2-p15 Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v8c.tar.gz       jpeg-8c          N --enable-shared NONE NONE
+lib libcfitsio           NONE           NONE   cfitsio3100-p5.tar.gz    cfitsio3100-p5   N --enable-shared shared,all NONE
+lib libmysqlclient       NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    Y --with-unix-socket-path=/var/run/mysqld/mysqld.sock NONE NONE
+lib libgsl               NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fftw3.h              NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+inc fitsio.h             NONE           NONE   cfitsio3100-p3.tar.gz   cfitsio3100-p3  N --enable-shared shared NONE
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           jpeg   jpegsrc.v6b-p1.tar.gz    jpeg-6b          N --enable-shared NONE install-lib
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc mysql.h              NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    N NONE NONE NONE
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc readline/readline.h  NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.1.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.1.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.1.perl	(revision 41109)
@@ -0,0 +1,106 @@
+# notes:
+# Build.PL/Makefile.PL options are added to the line "perl Build.PL / perl Makefile.PL", a value of NONE is required if no options are desired
+# Build.PL/Makefile.PL responses are supplied via stdin to "perl Build.PL / perl Makefile.PL", a value of NONE is required if no responses are desired
+
+# NN    Name                           Tarball                                  Version        Build.PL/Makefile.PL Build.PL/Makefile.PL responses
+# a Version of 0 is required if no specific version is desired                                 options   responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            NONE      n
+# 00    Module::Build                  Module-Build-0.40.tar.gz                 0.38           NONE      NONE # special comment here
+  00    Module::Build                  Module-Build-0.3601.tar.gz               0.3601         NONE      NONE # special comment here
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.54.tar.gz           0              NONE      NONE
+  02a   Attribute::Handlers            Attribute-Handlers-0.87.tar.gz           0.79           NONE      NONE
+# Params::Validate 0.92 breaks with Perl >= 5.14 (and probably earlier) because 'ref' added RegExp as a type
+  02    Params::Validate               Params-Validate-0.96.tar.gz              0.96           NONE      NONE
+# 02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29           NONE      NONE
+  03a   Class::Singleton               Class-Singleton-1.4.tar.gz               0              NONE      NONE
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0              NONE      NONE
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0              NONE      NONE
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0              NONE      NONE
+  06    DateTime                       DateTime-0.36.tar.gz                     0              NONE      NONE
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0              NONE      NONE
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0              NONE      NONE
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0              NONE      NONE
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0              NONE      NONE
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0              NONE      NONE
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0              NONE      NONE
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0              NONE      NONE
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0              NONE      NONE
+  15    Digest                         Digest-1.15.tar.gz                       0              NONE      NONE
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz            0              NONE      NONE
+  17    version                        version-0.70.tar.gz                      0              NONE      NONE
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz              0              NONE      NONE
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz    0              NONE      NONE
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz            0              NONE      NONE
+  21    URI                            URI-1.35.tar.gz                          1.30           NONE      NONE
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz         0              NONE      NONE
+  23    Test::Exception                Test-Exception-0.24.tar.gz               0              NONE      NONE
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz                0              NONE      NONE
+  25    Array::Compare                 Array-Compare-1.13.tar.gz                0              NONE      NONE
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz                  0              NONE      NONE
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                   0              NONE      NONE
+  28    Net::FTP                       libnet-1.19.tar.gz                       0              NONE      n
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz               0              NONE      NONE
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz       0              NONE      NONE
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz             1.94           NONE      NONE
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz               0.19           NONE      NONE
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06           NONE      NONE
+  34    CGI                            CGI.pm-3.25.tar.gz                       3              NONE      NONE
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                     1.05           NONE      NONE
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz              1.1.1          NONE      NONE
+  37    LWP                            libwww-perl-5.805.tar.gz                 0              NONE      NONE
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz              0.03           NONE      NONE
+  39    File::Temp                     File-Temp-0.18.tar.gz                    0.16           NONE      NONE
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz            0.01           NONE      NONE
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                    0              NONE      NONE
+  42    YAML                           YAML-0.62.tar.gz                         0.58           NONE      y
+  43    Module::Load                   Module-Load-0.10.tar.gz                  0              NONE      NONE
+  44    Params::Check                  Params-Check-0.25.tar.gz                 0              NONE      NONE
+  45    Template                       Template-Toolkit-2.16.tar.gz             0              NONE      n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz        2.6            NONE      NONE
+  47    Storable                       Storable-2.15.tar.gz                     0              NONE      NONE
+  48    IO::String                     IO-String-1.08.tar.gz                    0              NONE      NONE
+  49    Date::Parse                    TimeDate-1.16.tar.gz                     0              NONE      NONE
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                  0              NONE      NONE
+  51    DB_File                        DB_File-1.814.tar.gz                     0              NONE      NONE
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz                 0              NONE      NONE
+  53    Heap                           Heap-0.71.tar.gz                         0              NONE      NONE
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz      0              NONE      NONE
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                      0              NONE      NONE
+  56    Cache                          Cache-2.04.tar.gz                        0              NONE      NONE
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                      0.36           NONE      NONE
+  58    SOAP::Lite                     SOAP-Lite-0.69.v1.tar.gz                 0              NONE      yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.v1.tar.gz              0              NONE      NONE
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0              NONE      NONE
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08           NONE      NONE
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01           NONE      NONE
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30           NONE      NONE
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0              NONE      NONE
+  65    Test::More                     Test-Simple-0.74.tar.gz                  0.49           NONE      NONE
+# 66    Apache::DBI                    Apache-DBI-1.06.tar.gz                   0              NONE      NONE
+# 67    Apache2::SOAP                  Apache2-SOAP-0.72.tar.gz                 0              NONE      NONE
+  68    Test::URI                      Test-URI-1.08.tar.gz                     0              NONE      NONE
+# 69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0              NONE      NONE
+  70    Config::YAML                   Config-YAML-1.42.tar.gz                  0              NONE      NONE
+# 72    File::ExtAttr                  File-ExtAttr-1.07.tar.gz                 0              NONE      NONE
+# version 1.622 updates sv_undef and related to new namespace (PL_*) (needed as of Perl 5.13.XX)
+  73    DBI                            DBI-1.622.tar.gz                         1.622          NONE      NONE
+# version 4.021 updates sv_undef and related to new namespace (PL_*) (needed as of Perl 5.13.XX)
+  71    DBD::mysql                     DBD-mysql-4.021.tar.gz                   4.021          NONE      NONE
+
+# 74    Net::Server::Daemonize         Net-Server-0.97.tar.gz                   0.05           NONE      NONE
+  75    File::Path                      File-Path-2.04.tar.gz                   0              NONE      NONE
+  76    File::Mountpoint                File-Mountpoint-0.01.tar.gz             0.01           NONE      NONE
+  77    Filesys::Df                     Filesys-Df-0.92.tar.gz                  0.92           NONE      NONE
+  78    SQL::Interp                     SQL-Interp-1.06.tar.gz                  0              NONE      NONE
+  79a   Mail::Send                      MailTools-2.04.tar.gz                   0              NONE      NONE
+  79b   Log::Dispatch::Email::MailSend  Log-Dispatch-2.22.tar.gz                0              NONE      NONE
+  80    Abstract::Meta::Class          Abstract-Meta-Class-0.13.tar.gz          0              NONE      NONE
+  81    DBIx::Connection               DBIx-Connection-0.13.tar.gz              0              NONE      NONE
+  82a   Pod::Escapes                   Pod-Escapes-1.04.tar.gz                  0              NONE      NONE
+  82b   Pod::Simple                    Pod-Simple-3.14.tar.gz                   0              NONE      NONE
+  82c   Test::Pod                      Test-Pod-1.40.tar.gz                     0              NONE      NONE
+  82d   XML::NamespaceSupport          XML-NamespaceSupport-1.10.tar.gz         0              --skip    NONE
+  82e   XML::SAX                       XML-SAX-0.96.tar.gz                      0              NONE      Y
+  82f   Simple::SAX::Serializer        Simple-SAX-Serializer-0.05.tar.gz        0              NONE      NONE
+  83    Test::Distribution             Test-Distribution-2.00.tar.gz            0              NONE      NONE
+  84    Test::DBUnit                   Test-DBUnit-0.20.tar.gz                  0.20           NONE      NONE
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.2.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.2.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.2.dist	(revision 41109)
@@ -0,0 +1,87 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  module                 branch name      tag version   
+# ||||| 
+  YYNNY  Ohana                  ipp-2-9          -0
+  NNYYN  ohana.base             ipp-2-9          -0
+  NNYYN  libohana               ipp-2-9          -0
+  NNYYN  libfits                ipp-2-9          -0
+  NNYYN  libautocode            ipp-2-9          -0
+  NNYYN  libdvo                 ipp-2-9          -0
+  NNYYN  libkapa                ipp-2-9          -0
+  NNYYN  libtap.ohana           ipp-2-9          -0
+  NNYYN  addstar                ipp-2-9          -0
+  NNYYN  delstar                ipp-2-9          -0
+  NNYYN  getstar                ipp-2-9          -0
+  NNYYN  ohana.tools            ipp-2-9          -0
+  NNYYN  kapa2                  ipp-2-9          -0
+  NNYYN  relphot                ipp-2-9          -0
+  NNYYN  relastro               ipp-2-9          -0
+  NNYYN  uniphot                ipp-2-9          -0
+  NNYYN  opihi.base             ipp-2-9          -0
+  NNYYN  mana                   ipp-2-9          -0
+  NNYYN  dvo                    ipp-2-9          -0
+  NNYYN  pantasks               ipp-2-9          -0
+  NNYYN  pcontrol               ipp-2-9          -0
+  NNYYN  pclient                ipp-2-9          -0      
+          
+# psLib-based code needs the nebclient library to interact with nebulous
+  YNNYY  Nebulous/nebclient     ipp-2-9          -0
+
+  YYYYY  psLib                  ipp-2-9          -0
+  YYYYY  psModules              ipp-2-9          -0
+  YYYYY  ppStats                ipp-2-9          -0
+  YYYYY  psphot                 ipp-2-9          -0
+  YYYYY  psastro                ipp-2-9          -0
+  YYYYY  ppConfigDump           ipp-2-9          -0
+  YYYYY  ppImage                ipp-2-9          -0
+  YYYYY  ppNoiseMap             ipp-2-9          -0
+  YYYYY  ppNorm                 ipp-2-9          -0
+  YYYYY  ppMerge                ipp-2-9          -0
+  YNNYN  pedestal               ipp-2-9          -0
+  YYYYY  dvoTools               ipp-2-9          -0
+  YYYYY  pswarp                 ipp-2-9          -0
+  YYYYY  ppArith                ipp-2-9          -0
+  YYYYY  ppStack                ipp-2-9          -0
+  YYYYY  ppSub                  ipp-2-9          -0
+  YYYYY  ppSim                  ipp-2-9          -0
+          
+  YNNYY  Nebulous               ipp-2-9          -0
+  YNNYY  Nebulous-Server        ipp-2-9          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-9          -0
+  YYYYY  PS-IPP-Config          ipp-2-9          -0     
+          
+  YNNYY  glueforge              ipp-2-9          -0
+  YNNYY  dbconfig               ipp-2-9          -0
+  NNNNY  ippdb.src             
+  YYYNN  ippdb                  ipp-2-9          -0
+  YYYYY  PS-IPP-PStamp          ipp-2-9          -0
+  YYYYY  pstamp                 ipp-2-9          -0
+  YYYYY  ippTools               ipp-2-9          -0
+  YYYYY  ippScripts             ipp-2-9          -0
+  YYYYY  ippTasks               ipp-2-9          -0
+  YYYYY  ippToPsps              ipp-2-9          -0
+          
+  YYYYY  ippconfig              ipp-2-9          -0
+  YNYYN  psconfig               ipp-2-9          -0
+  YNYYN  ippMonitor             ipp-2-9          -0
+  YYYYY  DataStore              ipp-2-9          -0
+  YYYYY  DataStoreServer        ipp-2-9          -0
+
+  YYYYY  ppTranslate            ipp-2-9          -0
+  YYYYY  ppViz                  ipp-2-9          -0
+  YYYYY  ppBackground		ipp-2-9		 -0
+  YYYYY  ppSkycell              ipp-2-9          -0
+
+  YYYYY  extsrc/gpcsw           ipp-2-9          -0
+# YYYYY  magic                  ipp-2-9          -0
+  YYYYY  magic/censorObjects    ipp-2-9          -0
+  YYYYY  magic/remove           ipp-2-9          -0
+  YYYYY  console                ipp-2-9          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.2.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.2.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.2.libs	(revision 41109)
@@ -0,0 +1,98 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   force install by default?
+#   configure options
+#   make options
+#   make install options
+
+
+# Build tools
+bin m4                   NONE           NONE   m4-1.4.13.tar.gz         m4-1.4.13        N NONE NONE NONE
+bin autoconf             NONE           NONE   autoconf-2.63.tar.gz     autoconf-2.63    N NONE NONE NONE
+bin automake             NONE           NONE   automake-1.10.tar.gz     automake-1.10    N NONE NONE NONE
+bin libtool              NONE           NONE   libtool-2.2.6-p1.tar.gz  libtool-2.2.6-p1 N NONE NONE NONE
+bin pkg-config           NONE           NONE   pkg-config-0.23.tar.gz   pkg-config-0.23  N NONE NONE NONE
+
+lib libm                 NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      N NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2-p15.tar.gz  readline-5.2-p15 N NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v8c.tar.gz       jpeg-8c          N --enable-shared NONE NONE
+lib libcfitsio           NONE           NONE   cfitsio3100-p5.tar.gz    cfitsio3100-p5   N --enable-shared shared,all NONE
+lib libmysqlclient       NONE           mysql  mysql-5.6.40.tar.gz      mysql-5.6.40     N --with-unix-socket-path=/var/run/mysqld/mysqld.sock NONE NONE
+lib libgsl               NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fftw3.h              NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+inc fitsio.h             NONE           NONE   cfitsio3100-p3.tar.gz   cfitsio3100-p3  N --enable-shared shared NONE
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           jpeg   jpegsrc.v6b-p1.tar.gz    jpeg-6b          N --enable-shared NONE install-lib
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc mysql.h              NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    N NONE NONE NONE
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc readline/readline.h  NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.2.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.2.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.2.perl	(revision 41109)
@@ -0,0 +1,179 @@
+# notes:
+# Build.PL/Makefile.PL options are added to the line "perl Build.PL / perl Makefile.PL", a value of NONE is required if no options are desired
+# Build.PL/Makefile.PL responses are supplied via stdin to "perl Build.PL / perl Makefile.PL", a value of NONE is required if no responses are desired
+
+# NN    Name                           Tarball                                  Version        Build.PL/Makefile.PL Build.PL/Makefile.PL responses
+# a Version of 0 is required if no specific version is desired                                 options   responses
+
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            NONE      n
+# 00    Module::Build                  Module-Build-0.40.tar.gz                 0.38           NONE      NONE # special comment here
+  00    Module::Build                  Module-Build-0.3601.tar.gz               0.3601         NONE      NONE # special comment here
+
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.54.tar.gz           0              NONE      NONE
+  02a   Attribute::Handlers            Attribute-Handlers-0.87.tar.gz           0.79           NONE      NONE
+
+# Params::Validate 0.92 breaks with Perl >= 5.14 (and probably earlier) because 'ref' added RegExp as a type
+  02    Params::Validate               Params-Validate-0.96.tar.gz              0.96           NONE      NONE
+# 02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29           NONE      NONE
+  03a   Class::Singleton               Class-Singleton-1.4.tar.gz               0              NONE      NONE
+  03b   Class::ISA		       Class-ISA-0.36.tar.gz                    0              NONE	 NONE
+
+  03c   MRO::Compat		       MRO-Compat-0.13.tar.gz                   0              NONE	 NONE
+  03d   Role::Tiny		       Role-Tiny-2.000006.tar.gz                0              NONE	 NONE
+
+  03q   File::ShareDir::Install	       File-ShareDir-Install-0.13.tar.gz        0              NONE	 NONE
+
+  05a   Module::Runtime                Module-Runtime-0.016.tar.gz              0              NONE      NONE
+  05a   Test::Fatal                    Test-Fatal-0.014.tar.gz                  0              NONE      NONE
+  05a   Class::Inspector               Class-Inspector-1.32.tar.gz              0              NONE      NONE
+  05a   File::ShareDir                 File-ShareDir-1.116.tar.gz               0              NONE      NONE
+  05a   Test::File::ShareDir::Dist     Test-File-ShareDir-1.001002.tar.gz       0              NONE      NONE
+
+  05a   CPAN::Meta::Check 	       CPAN-Meta-Check-0.014.tar.gz             0              NONE      NONE # 0.011
+  05d   Dist::CheckConflicts	       Dist-CheckConflicts-0.11.tar.gz          0              NONE      NONE # 0.02
+  05f   Specio 			       Specio-0.42.tar.gz			0              NONE      NONE # 0.18
+
+  05l   Test::Fatal		       Test-Fatal-0.014.tar.gz                  0              NONE      NONE
+  05m   Test::Warnings		       Test-Warnings-0.026.tar.gz		0              NONE      NONE # 0.005
+
+  05y   Module::Implementation	       Module-Implementation-0.09.tar.gz 	0              NONE      NONE # 0.05
+  05y   Sub::Exporter::Progressive     Sub-Exporter-Progressive-0.001013.tar.gz 0              NONE      NONE # 0.001006
+  05y   Variable::Magic		       Variable-Magic-0.62.tar.gz		0              NONE      NONE # 0.48
+
+  05x   B::Hooks::EndOfScope           B-Hooks-EndOfScope-0.24.tar.gz           0              NONE      NONE
+  05x   Sub::Identify	    	       Sub-Identify-0.14.tar.gz                 0              NONE      NONE
+  05x   Test::Requires	    	       Test-Requires-0.10.tar.gz                0              NONE      NONE
+
+  05z   Package::Stash		       Package-Stash-0.37.tar.gz                0              NONE      NONE
+  05x   namespace::clean    	       namespace-clean-0.27.tar.gz              0              NONE      NONE
+
+  05n   namespace::autoclean	       namespace-autoclean-0.28.tar.gz 		0              NONE      NONE # 0.19
+
+  05z   Class::Data::Inheritable       Class-Data-Inheritable-0.08.tar.gz       0              NONE      NONE
+  05z   Devel::StackTrace	       Devel-StackTrace-2.03.tar.gz             0              NONE      NONE
+
+  05q   Eval::Closure		       Eval-Closure-0.14.tar.gz                 0              NONE      NONE
+  05q   Exception::Class	       Exception-Class-1.44.tar.gz              0              NONE      NONE
+  05q   Test2			       Test-Simple-1.302136.tar.gz              0              NONE      NONE
+  05e   Params::ValidationCompiler     Params-ValidationCompiler-0.27.tar.gz    0              NONE      NONE # 0.26
+
+# 03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0              NONE      NONE
+  05c   DateTime::TimeZone	       DateTime-TimeZone-2.19.tar.gz            2.02           NONE      NONE # 2.02
+
+# 04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0              NONE      NONE
+# 04    DateTime::Locale               DateTime-Locale-0.44.tar.gz              0              NONE      NONE
+  05b   DateTime::Locale	       DateTime-Locale-1.22.tar.gz              1.06           NONE      NONE # 1.06
+
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0              NONE      NONE
+
+# 06    DateTime                       DateTime-0.36.tar.gz                     0              NONE      NONE
+# 06    DateTime                       DateTime-0.50.tar.gz                     0              NONE      NONE
+  06    DateTime                       DateTime-1.49.tar.gz                     0              NONE      NONE
+
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0              NONE      NONE
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0              NONE      NONE
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0              NONE      NONE
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0              NONE      NONE
+
+  10x   Params::Util		       Params-Util-1.07.tar.gz                  0              NONE      NONE
+  10x   Sub::Install		       Sub-Install-0.928.tar.gz                 0              NONE      NONE
+  10a   Package::DeprecationManager    Package-DeprecationManager-0.17.tar.gz   0              NONE      NONE
+
+# 11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0              NONE      NONE
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.75.tar.gz     0              NONE      NONE
+
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0              NONE      NONE
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0              NONE      NONE
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0              NONE      NONE
+  15    Digest                         Digest-1.15.tar.gz                       0              NONE      NONE
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz            0              NONE      NONE
+  17    version                        version-0.70.tar.gz                      0              NONE      NONE
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz              0              NONE      NONE
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz    0              NONE      NONE
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz            0              NONE      NONE
+  21    URI                            URI-1.35.tar.gz                          1.30           NONE      NONE
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz         0              NONE      NONE
+  23    Test::Exception                Test-Exception-0.24.tar.gz               0              NONE      NONE
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz                0              NONE      NONE
+  25    Array::Compare                 Array-Compare-1.13.tar.gz                0              NONE      NONE
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz                  0              NONE      NONE
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                   0              NONE      NONE
+  28    Net::FTP                       libnet-1.19.tar.gz                       0              NONE      n
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz               0              NONE      NONE
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz       0              NONE      NONE
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz             1.94           NONE      NONE
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz               0.19           NONE      NONE
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06           NONE      NONE
+
+# 34    CGI                            CGI.pm-3.25.tar.gz                       3              NONE      NONE
+  34    CGI                            CGI-4.38.tar.gz                          4.38           NONE      NONE
+
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                     1.05           NONE      NONE
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz              1.1.1          NONE      NONE
+  37    LWP                            libwww-perl-5.805.tar.gz                 0              NONE      NONE
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz              0.03           NONE      NONE
+  39    File::Temp                     File-Temp-0.18.tar.gz                    0.16           NONE      NONE
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz            0.01           NONE      NONE
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                    0              NONE      NONE
+
+  41a   inc::Module::Install           Module-Install-1.19.tar.gz               0              NONE      NONE
+
+  42    YAML                           YAML-0.62.tar.gz                         0.58           NONE      y
+  43    Module::Load                   Module-Load-0.10.tar.gz                  0              NONE      NONE
+  44    Params::Check                  Params-Check-0.25.tar.gz                 0              NONE      NONE
+  45    Template                       Template-Toolkit-2.16.tar.gz             0              NONE      n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz        2.6            NONE      NONE
+  47    Storable                       Storable-2.15.tar.gz                     0              NONE      NONE
+  48    IO::String                     IO-String-1.08.tar.gz                    0              NONE      NONE
+  49    Date::Parse                    TimeDate-1.16.tar.gz                     0              NONE      NONE
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                  0              NONE      NONE
+  51    DB_File                        DB_File-1.814.tar.gz                     0              NONE      NONE
+
+# 52    File::NFSLock                  File-NFSLock-1.20.tar.gz                 0              NONE      NONE
+# 52    File::NFSLock                  File-NFSLock-1.27.tar.gz                 0              NONE      NONE
+
+  53    Heap                           Heap-0.71.tar.gz                         0              NONE      NONE
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz      0              NONE      NONE
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                      0              NONE      NONE
+  56    Cache                          Cache-2.04.tar.gz                        0              NONE      NONE
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                      0.36           NONE      NONE
+  58    SOAP::Lite                     SOAP-Lite-0.69.v1.tar.gz                 0              NONE      yes,yes,no
+# 59    Log::Log4perl                  Log-Log4perl-1.10.v1.tar.gz              0              NONE      NONE
+  59    Log::Log4perl                  Log-Log4perl-1.49.tar.gz                 0              NONE      NONE
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0              NONE      NONE
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08           NONE      NONE
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01           NONE      NONE
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30           NONE      NONE
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0              NONE      NONE
+# 65    Test::More                     Test-Simple-0.74.tar.gz                  0.49           NONE      NONE
+# 66    Apache::DBI                    Apache-DBI-1.06.tar.gz                   0              NONE      NONE
+# 67    Apache2::SOAP                  Apache2-SOAP-0.72.tar.gz                 0              NONE      NONE
+  68    Test::URI                      Test-URI-1.08.tar.gz                     0              NONE      NONE
+# 69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0              NONE      NONE
+  70    Config::YAML                   Config-YAML-1.42.tar.gz                  0              NONE      NONE
+
+# 72    File::ExtAttr                  File-ExtAttr-1.07.tar.gz                 0              NONE      NONE
+# version 1.622 updates sv_undef and related to new namespace (PL_*) (needed as of Perl 5.13.XX)
+  73    DBI                            DBI-1.622.tar.gz                         1.622          NONE      NONE
+
+# version 4.021 updates sv_undef and related to new namespace (PL_*) (needed as of Perl 5.13.XX)
+# 71    DBD::mysql                     DBD-mysql-4.021.tar.gz                   4.021          NONE      NONE
+  71    DBD::mysql                     DBD-mysql-4.046.tar.gz                   4.046          NONE      NONE
+
+# 74    Net::Server::Daemonize         Net-Server-0.97.tar.gz                   0.05           NONE      NONE
+  75    File::Path                      File-Path-2.04.tar.gz                   0              NONE      NONE
+  76    File::Mountpoint                File-Mountpoint-0.01.tar.gz             0.01           NONE      NONE
+  77    Filesys::Df                     Filesys-Df-0.92.tar.gz                  0.92           NONE      NONE
+  78    SQL::Interp                     SQL-Interp-1.06.tar.gz                  0              NONE      NONE
+  79a   Mail::Send                      MailTools-2.04.tar.gz                   0              NONE      NONE
+  79b   Log::Dispatch::Email::MailSend  Log-Dispatch-2.22.tar.gz                0              NONE      NONE
+  80    Abstract::Meta::Class          Abstract-Meta-Class-0.13.tar.gz          0              NONE      NONE
+  81    DBIx::Connection               DBIx-Connection-0.13.tar.gz              0              NONE      NONE
+  82a   Pod::Escapes                   Pod-Escapes-1.04.tar.gz                  0              NONE      NONE
+  82b   Pod::Simple                    Pod-Simple-3.14.tar.gz                   0              NONE      NONE
+  82c   Test::Pod                      Test-Pod-1.40.tar.gz                     0              NONE      NONE
+  82d   XML::NamespaceSupport          XML-NamespaceSupport-1.10.tar.gz         0              --skip    NONE
+  82e   XML::SAX                       XML-SAX-0.96.tar.gz                      0              NONE      Y
+  82f   Simple::SAX::Serializer        Simple-SAX-Serializer-0.05.tar.gz        0              NONE      NONE
+  83    Test::Distribution             Test-Distribution-2.00.tar.gz            0              NONE      NONE
+  84    Test::DBUnit                   Test-DBUnit-0.20.tar.gz                  0.20           NONE      NONE
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.3.dist
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.3.dist	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.3.dist	(revision 41109)
@@ -0,0 +1,87 @@
+# necessary fields:                    
+# |-- tag?
+# ||-- build?
+# |||-- package? 
+# ||||-- update directory from CVS?
+# |||||-- build for developer?
+# |||||
+# |||||  module                 branch name      tag version   
+# ||||| 
+  YYNNY  Ohana                  ipp-2-9          -0
+  NNYYN  ohana.base             ipp-2-9          -0
+  NNYYN  libohana               ipp-2-9          -0
+  NNYYN  libfits                ipp-2-9          -0
+  NNYYN  libautocode            ipp-2-9          -0
+  NNYYN  libdvo                 ipp-2-9          -0
+  NNYYN  libkapa                ipp-2-9          -0
+  NNYYN  libtap.ohana           ipp-2-9          -0
+  NNYYN  addstar                ipp-2-9          -0
+  NNYYN  delstar                ipp-2-9          -0
+  NNYYN  getstar                ipp-2-9          -0
+  NNYYN  ohana.tools            ipp-2-9          -0
+  NNYYN  kapa2                  ipp-2-9          -0
+  NNYYN  relphot                ipp-2-9          -0
+  NNYYN  relastro               ipp-2-9          -0
+  NNYYN  uniphot                ipp-2-9          -0
+  NNYYN  opihi.base             ipp-2-9          -0
+  NNYYN  mana                   ipp-2-9          -0
+  NNYYN  dvo                    ipp-2-9          -0
+  NNYYN  pantasks               ipp-2-9          -0
+  NNYYN  pcontrol               ipp-2-9          -0
+  NNYYN  pclient                ipp-2-9          -0      
+          
+# psLib-based code needs the nebclient library to interact with nebulous
+  YNNYY  Nebulous/nebclient     ipp-2-9          -0
+
+  YYYYY  psLib                  ipp-2-9          -0
+  YYYYY  psModules              ipp-2-9          -0
+  YYYYY  ppStats                ipp-2-9          -0
+  YYYYY  psphot                 ipp-2-9          -0
+  YYYYY  psastro                ipp-2-9          -0
+  YYYYY  ppConfigDump           ipp-2-9          -0
+  YYYYY  ppImage                ipp-2-9          -0
+  YYYYY  ppNoiseMap             ipp-2-9          -0
+  YYYYY  ppNorm                 ipp-2-9          -0
+  YYYYY  ppMerge                ipp-2-9          -0
+  YNNYN  pedestal               ipp-2-9          -0
+  YYYYY  dvoTools               ipp-2-9          -0
+  YYYYY  pswarp                 ipp-2-9          -0
+  YYYYY  ppArith                ipp-2-9          -0
+  YYYYY  ppStack                ipp-2-9          -0
+  YYYYY  ppSub                  ipp-2-9          -0
+  YYYYY  ppSim                  ipp-2-9          -0
+          
+  YNNYY  Nebulous               ipp-2-9          -0
+  YNNYY  Nebulous-Server        ipp-2-9          -0
+  YYYYY  PS-IPP-Metadata-Config ipp-2-9          -0
+  YYYYY  PS-IPP-Config          ipp-2-9          -0     
+          
+  YNNYY  glueforge              ipp-2-9          -0
+  YNNYY  dbconfig               ipp-2-9          -0
+  NNNNY  ippdb.src             
+  YYYNN  ippdb                  ipp-2-9          -0
+  YYYYY  PS-IPP-PStamp          ipp-2-9          -0
+  YYYYY  pstamp                 ipp-2-9          -0
+  YYYYY  ippTools               ipp-2-9          -0
+  YYYYY  ippScripts             ipp-2-9          -0
+  YYYYY  ippTasks               ipp-2-9          -0
+  YYYYY  ippToPsps              ipp-2-9          -0
+          
+  YYYYY  ippconfig              ipp-2-9          -0
+  YNYYN  psconfig               ipp-2-9          -0
+  YNYYN  ippMonitor             ipp-2-9          -0
+  YYYYY  DataStore              ipp-2-9          -0
+  YYYYY  DataStoreServer        ipp-2-9          -0
+
+  YYYYY  ppTranslate            ipp-2-9          -0
+  YYYYY  ppViz                  ipp-2-9          -0
+  YYYYY  ppBackground		ipp-2-9		 -0
+  YYYYY  ppSkycell              ipp-2-9          -0
+
+  YYYYY  extsrc/gpcsw           ipp-2-9          -0
+# YYYYY  magic                  ipp-2-9          -0
+  YYYYY  magic/censorObjects    ipp-2-9          -0
+  YYYYY  magic/remove           ipp-2-9          -0
+  YYYYY  console                ipp-2-9          -0
+
+# there are externally required C libraries and perl modules (see INSTALL)
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.3.libs
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.3.libs	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.3.libs	(revision 41109)
@@ -0,0 +1,98 @@
+# this file defines C libraries and C headers needed by the ipp, and information on finding them
+
+# directories to search: /lib, /usr/lib, /usr/X11R6/lib, etc.
+# modifications based on the architecture (eg, PATH/lib64, etc)
+# additional locations based on the env variables
+# dlltype to use
+
+# each entry contains:
+#   type : lib / include
+#   name 
+#   alternate names
+#   alternate paths
+#   tarball name
+#   tar directory
+#   force install by default?
+#   configure options
+#   make options
+#   make install options
+
+
+# Build tools
+bin m4                   NONE           NONE   m4-1.4.13.tar.gz         m4-1.4.13        N NONE NONE NONE
+bin autoconf             NONE           NONE   autoconf-2.63.tar.gz     autoconf-2.63    N NONE NONE NONE
+bin automake             NONE           NONE   automake-1.10.tar.gz     automake-1.10    N NONE NONE NONE
+bin libtool              NONE           NONE   libtool-2.2.6-p1.tar.gz  libtool-2.2.6-p1 N NONE NONE NONE
+bin pkg-config           NONE           NONE   pkg-config-0.23.tar.gz   pkg-config-0.23  N NONE NONE NONE
+
+lib libm                 NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libX11               NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libpthread           NONE           NONE   NONE                     NONE             N NONE NONE NONE
+lib libncurses           curses,termcap NONE   ncurses-5.6.tar.gz       ncurses-5.6      N NONE NONE NONE
+lib libreadline          NONE           NONE   readline-5.2-p15.tar.gz  readline-5.2-p15 Y NONE NONE NONE
+lib libz                 NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+lib libpng               NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+lib libjpeg              NONE           jpeg   jpegsrc.v8c.tar.gz       jpeg-8c          N --enable-shared NONE NONE
+lib libcfitsio           NONE           NONE   cfitsio3100-p5.tar.gz    cfitsio3100-p5   N --enable-shared shared,all NONE
+lib libmysqlclient       NONE           mysql  mysql-5.6.40.tar.gz      mysql-5.6.40     N --with-unix-socket-path=/var/run/mysqld/mysqld.sock NONE NONE
+lib libgsl               NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE
+lib libfftw3f            NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+
+
+inc X11/Xatom.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xlib.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xresource.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/Xutil.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/cursorfont.h     NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysym.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc X11/keysymdef.h      NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc arpa/inet.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc assert.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc complex.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc ctype.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc errno.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fcntl.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc fftw3.h              NONE           NONE   fftw-3.0.1.tar.gz        fftw-3.0.1       N --enable-float,--enable-shared,--disable-fortran NONE NONE
+inc fitsio.h             NONE           NONE   cfitsio3100-p3.tar.gz   cfitsio3100-p3  N --enable-shared shared NONE
+inc glob.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc gsl/gsl_randist.h    NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc gsl/gsl_rng.h        NONE           NONE   gsl-1.11.tar.gz          gsl-1.11         N NONE NONE NONE 
+inc inttypes.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc jpeglib.h            NONE           jpeg   jpegsrc.v6b-p1.tar.gz    jpeg-6b          N --enable-shared NONE install-lib
+inc limits.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc malloc.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc math.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc memory.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc mysql.h              NONE           mysql  mysql-5.0.51a.tar.gz     mysql-5.0.51a    N NONE NONE NONE
+inc netdb.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc netinet/ip.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc png.h                NONE           NONE   libpng-1.2.15.tar.gz     libpng-1.2.15    N NONE NONE NONE
+inc pthread.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc readline/history.h   NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc readline/readline.h  NONE           NONE   readline-5.2-p12.tar.gz  readline-5.2-p12 N NONE NONE NONE
+inc regex.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc signal.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdint.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdio.h              NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc stdlib.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc string.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/ipc.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/resource.h       NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/sem.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/socket.h         NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/stat.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/time.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/types.h          NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/uio.h            NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/un.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc sys/wait.h           NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc time.h               NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc unistd.h             NONE           NONE   NONE                     NONE             N NONE NONE NONE 
+inc zlib.h               NONE           NONE   zlib-1.2.3.tar.gz        zlib-1.2.3       N --shared NONE NONE
+
+# xml is currently not used by IPP
+# lib xml2       NONE           NONE   NONE                     NONE             Y NONE NONE NONE
+
+# doxygen is having some unknown build issues on alala
+# bin doxygen            NONE NONE doxygen-1.5.1.src.tar.gz doxygen-1.5.1    N NONE NONE NONE
+
Index: /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.3.perl
===================================================================
--- /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.3.perl	(revision 41109)
+++ /branches/ccl_branches/ipponly-20191108/psconfig/tagsets/ipp-3.3.perl	(revision 41109)
@@ -0,0 +1,158 @@
+# this is the full table of perl modules needed by IPP operations code.  modules needed only by Nebulous-Server
+# might not be in this file. The fields below are as follows:
+# |-- Group (sequence in a group should not be critical)
+# |   Name                          Tarball                                  Version        Build     Responses 
+# |                                 (in ../extperl/)                                        Opts      
+#
+
+# these modules needed by various modules below, so they need to be first
+  00  Module::Build                 Module-Build-0.4224.tar.gz               0              NONE      NONE
+  00  Module::Runtime               Module-Runtime-0.016.tar.gz              0              NONE      NONE
+  00  Exporter::Tiny                Exporter-Tiny-1.002001.tar.gz            0              NONE      NONE
+  00  Digest::HMAC_MD5              Digest-HMAC-1.03.tar.gz                  0              NONE      NONE
+  00  XML::Parser                   XML-Parser-2.44.tar.gz                   0              NONE      NONE
+  00  Net::Domain::TLD              Net-Domain-TLD-1.75.tar.gz               0              NONE      NONE
+  00  Test2::Plugin::UTF8           Test2-Suite-0.000119.tar.gz              0              NONE      NONE
+  00  HTTP::Date                    HTTP-Date-6.02.tar.gz		     0              NONE      NONE
+  00  Try::Tiny                     Try-Tiny-0.30.tar.gz		     0              NONE      NONE
+
+  00a LWP::MediaTypes               LWP-MediaTypes-6.04.tar.gz               0              NONE      NONE
+  00a URI                           URI-1.76.tar.gz                          1.76           NONE      NONE
+  00a Mail::Internet                MailTools-2.20.tar.gz           	     0              NONE      NONE
+  00a Net::HTTP                     Net-HTTP-6.18.tar.gz                     0              NONE      NONE
+
+  00b Class::Accessor::Fast           Class-Accessor-0.51.tar.gz      	     0              NONE      NONE
+  00  Parse::RecDescent               Parse-RecDescent-1.967015.tar.gz	     0              NONE      NONE
+
+# these modules are free of inter-dependencies:
+  01  AnyEvent                      AnyEvent-7.15.tar.gz                     0              NONE      NONE
+  01  Authen::NTLM                  NTLM-1.09.tar.gz			     0              NONE      NONE
+  01  AutoLoader                    AutoLoader-5.74.tar.gz		     0              NONE      NONE
+  01  CPAN::Meta::Check             CPAN-Meta-Check-0.014.tar.gz             0              NONE      NONE
+  01  Class::Data::Inheritable      Class-Data-Inheritable-0.08.tar.gz	     0              NONE      NONE
+  01  Class::Inspector              Class-Inspector-1.34.tar.gz		     1.34           NONE      NONE
+  01  Class::Prototyped             Class-Prototyped-1.13.tar.gz	     0              NONE      NONE
+  01  Class::Singleton              Class-Singleton-1.5.tar.gz		     0              NONE      NONE
+  01  Data::Dump                    Data-Dump-1.23.tar.gz		     0              NONE      NONE
+  01  Data::Validate::Domain        Data-Validate-Domain-0.14.tar.gz	     0              NONE      NONE
+  01  Date::Manip                   Date-Manip-6.76.tar.gz		     0              NONE      NONE
+  01  Date::Parse                   TimeDate-2.30.tar.gz		     0              NONE      NONE
+  01  Devel::CheckOS                Devel-CheckOS-1.81.tar.gz		     0              NONE      NONE
+  01  Devel::StackTrace             Devel-StackTrace-2.03.tar.gz	     0              NONE      NONE
+  01  Eval::Closure                 Eval-Closure-0.14.tar.gz		     0              NONE      NONE
+  01  ExtUtils::TBone               ExtUtils-TBone-1.124.tar.gz		     0              NONE      NONE
+  01  File::Listing                 File-Listing-6.04.tar.gz		     0              NONE      NONE
+  01  File::NFSLock                 File-NFSLock-1.29.tar.gz		     0              NONE      NONE
+  01  File::ShareDir                File-ShareDir-1.116.tar.gz               0              NONE      NONE
+  01  File::ShareDir::Install       File-ShareDir-Install-0.13.tar.gz	     0              NONE      NONE
+  01  HTTP::Request                 HTTP-Message-6.18.tar.gz		     6.18           NONE      NONE
+  01  Heap::Elem                    Heap-0.80.tar.gz			     0              NONE      NONE
+  01  IO::Pipely                    IO-Pipely-0.005.tar.gz		     0              NONE      NONE
+  01  IO::Pty                       IO-Tty-1.12.tar.gz			     1.12           NONE      NONE
+  01  IO::String                    IO-String-1.08.tar.gz		     1.08           NONE      NONE
+  01  IPC::Run3                     IPC-Run3-0.048.tar.gz		     0              NONE      NONE
+  01  List::MoreUtils               List-MoreUtils-0.428.tar.gz		     0.428          NONE      NONE
+  01  MIME::Entity                  MIME-tools-5.509.tar.gz		     0              NONE      NONE
+  01  MIME::Types                   MIME-Types-2.17.tar.gz		     0              NONE      NONE
+  01  MLDBM                         MLDBM-2.05.tar.gz			     0              NONE      NONE
+  01  MRO::Compat                   MRO-Compat-0.13.tar.gz		     0              NONE      NONE
+  01  Module::Implementation        Module-Implementation-0.09.tar.gz	     0              NONE      NONE
+  01  Module::Metadata              Module-Metadata-1.000033.tar.gz	     0              NONE      NONE
+  01  NetAddr::IP                   NetAddr-IP-4.079.tar.gz		     0              NONE      NONE
+  01  Number::Compare               Number-Compare-0.03.tar.gz		     0              NONE      NONE
+  01  POE::Test::Loops              POE-Test-Loops-1.360.tar.gz		     0              NONE      NONE
+  01  Params::Util                  Params-Util-1.07.tar.gz		     0              NONE      NONE
+  01  Path::Tiny                    Path-Tiny-0.108.tar.gz		     0              NONE      NONE
+  01  Perl::OSType                  Perl-OSType-1.010.tar.gz		     0              NONE      NONE
+  01  Pod::POM                      Pod-POM-2.01.tar.gz			     0              NONE      NONE
+  01  Role::Tiny                    Role-Tiny-2.000006.tar.gz                0              NONE      NONE
+  01  Specio                        Specio-0.43.tar.gz			     0              NONE      NONE
+  01  Spiffy                        Spiffy-0.46.tar.gz			     0              NONE      NONE
+  01  Sub::Exporter::Progressive    Sub-Exporter-Progressive-0.001013.tar.gz 0              NONE      NONE
+  01  Sub::Identify                 Sub-Identify-0.14.tar.gz		     0              NONE      NONE
+  01  Sub::Install                  Sub-Install-0.928.tar.gz		     0              NONE      NONE
+  01  Sub::Uplevel                  Sub-Uplevel-0.2800.tar.gz		     0              NONE      NONE
+  01  Test2::Plugin::NoWarnings     Test2-Plugin-NoWarnings-0.06.tar.gz	     0              NONE      NONE
+  01  Test2::Require::Module        Test2-Suite-0.000119.tar.gz		     0              NONE      NONE
+  01  Test::FailWarnings            Test-FailWarnings-0.008.tar.gz	     0              NONE      NONE
+  01  Test::Fatal                   Test-Fatal-0.014.tar.gz		     0              NONE      NONE
+  01  Test::File::ShareDir          Test-File-ShareDir-1.001002.tar.gz       0              NONE      NONE
+  01  Test::Needs                   Test-Needs-0.002006.tar.gz		     0              NONE      NONE
+  01  Test::Requires                Test-Requires-0.10.tar.gz		     0              NONE      NONE
+  01  Test::Warnings                Test-Warnings-0.026.tar.gz		     0              NONE      NONE
+  01  Test::Without::Module         Test-Without-Module-0.20.tar.gz	     0              NONE      NONE
+  01  Text::Diff                    Text-Diff-1.45.tar.gz		     0              NONE      NONE
+  01  Text::Glob                    Text-Glob-0.11.tar.gz		     0              NONE      NONE
+  01  Text::Template                Text-Template-1.55.tar.gz		     0              NONE      NONE
+  01  Tie::CPHash                   Tie-CPHash-2.000.tar.gz		     0              NONE      NONE
+  01  Variable::Magic               Variable-Magic-0.62.tar.gz               0              NONE      NONE
+  01  XML::Parser::PerlSAX          libxml-perl-0.08.tar.gz 		     0              NONE      NONE
+  01  XML::RegExp                   XML-RegExp-0.04.tar.gz		     0              NONE      NONE
+
+  00  HTTP::Message                 HTTP-Message-6.18.tar.gz		     0              NONE      NONE -- URI, LWP::MediaTypes, Try::Tiny
+  01  HTTP::Negotiate               HTTP-Negotiate-6.01.tar.gz		     6.01           NONE      NONE -- HTTP::Message
+
+  01  Dist::CheckConflicts          Dist-CheckConflicts-0.11.tar.gz	     0              NONE      NONE -- Module::Runtime, Test::Fatal
+
+  02  Package::Stash                Package-Stash-0.38.tar.gz		     0              NONE      NONE -- Dist::CheckConflicts, Module::Implementation, Package::Stash::XS, Test::Fatal, Test::Requires
+  02  Test::Base                    Test-Base-0.89.tar.gz		     0              NONE      NONE -- Spiffy, Text::Diff
+  02  Test::Warn                    Test-Warn-0.36.tar.gz		     0              NONE      NONE -- Sub::Uplevel
+
+# the order here matters due to dependency chain:
+  03a Data::OptList                 Data-OptList-0.110.tar.gz		     0              NONE      NONE -- Sub::Install
+  03b Sub::Exporter                 Sub-Exporter-0.987.tar.gz		     0              NONE      NONE -- Data::OptList, Params::Util, Sub::Install
+  03c Devel::GlobalDestruction      Devel-GlobalDestruction-0.14.tar.gz	     0              NONE      NONE -- Sub::Exporter::Progressive
+  03d Exception::Class              Exception-Class-1.44.tar.gz		     0              NONE      NONE -- Class::Data::Inheritable, Devel::StackTrace
+  03e B::Hooks::EndOfScope          B-Hooks-EndOfScope-0.24.tar.gz           0              NONE      NONE -- Sub::Exporter::Progressive, Variable::Magic
+  03f namespace::clean              namespace-clean-0.27.tar.gz              0              NONE      NONE -- B::Hooks::EndOfScope, Package::Stash
+  03g namespace::autoclean          namespace-autoclean-0.28.tar.gz	     0              NONE      NONE -- B::Hooks::EndOfScope, Sub::Identify, Test::Requires, namespace::clean
+  03h Params::ValidationCompiler    Params-ValidationCompiler-0.30.tar.gz    0              NONE      NONE -- Eval::Closure, Exception::Class, Specio, Test2::Plugin::NoWarnings, Test2::Require::Module, Test2::V0, Test::Without::Module
+  03i DateTime::Locale              DateTime-Locale-1.24.tar.gz		     1.24           NONE      NONE -- Role::Tiny, namespace::autoclean, Params::ValidationCompiler
+  03j DateTime::TimeZone            DateTime-TimeZone-2.34.tar.gz	     0              NONE      NONE -- Class::Singleton, Params::ValidationCompiler, Specio::Library::Builtins, Specio::Library::String, Test::Fatal, Test::Requires, namespace::autoclean,
+  03k DateTime                      DateTime-1.50.tar.gz                     0              NONE      NONE -- CPAN::Meta::Check, DateTime::Locale, Test::Warnings
+  03l DateTime::Format::Strptime    DateTime-Format-Strptime-1.76.tar.gz     1.76           NONE      NONE -- DateTime::Locale, Test::Warnings
+# DateTime complains about DateTime::Format::Strptime with unknown format but succeeds
+# DateTime::Format::Strptime requires DateTime
+
+  05  Params::Validate              Params-Validate-1.29.tar.gz              0              NONE      NONE
+  19  DateTime::Format::Builder     DateTime-Format-Builder-0.82.tar.gz      0              NONE      NONE -- Params::Validate
+  03m DateTime::Format::ISO8601     DateTime-Format-ISO8601-0.08.tar.gz      0              NONE      NONE -- DateTime?
+
+  04a Data::Validate::IP            Data-Validate-IP-0.27.tar.gz	     0              NONE      NONE -- NetAddr::IP, Test::Requires
+  04b Data::Validate::URI           Data-Validate-URI-0.07.tar.gz            0              NONE      NONE -- Data::Validate::IP
+
+# these modules are required by IPP and do NOT depend on modules above (REALLY? NONE?)
+  05  Astro::FITS::CFITSIO          Astro-FITS-CFITSIO-1.12.tar.gz           0              NONE      NONE -- libcfitsio
+  05  Cache                         Cache-2.11.tar.gz                        0              NONE      NONE
+  05  YAML                          YAML-1.27.tar.gz                         0              NONE      NONE
+  05  Config::YAML                  Config-YAML-1.42.tar.gz                  0              NONE      NONE
+  05  DBI                           DBI-1.642.tar.gz                         0              NONE      NONE
+  05  IPC::Run                      IPC-Run-20180523.0.tar.gz                20180523       NONE      NONE
+  05  IPC::Cmd                      IPC-Cmd-1.0201.tar.gz                    1.0201         NONE      NONE
+  05  LWP                           libwww-perl-6.38.tar.gz                  6.38           NONE      NONE
+  05  Log::Log4perl                 Log-Log4perl-1.49.tar.gz                 0              NONE      NONE
+  05  SOAP::Lite                    SOAP-Lite-1.27.tar.gz                    0              NONE      NONE
+  05  Statistics::Descriptive       Statistics-Descriptive-3.0702.tar.gz     0              NONE      NONE
+# a response is needed: (n,n) or (y,y) : (build XStash, use XStash)
+  05  Template                      Template-Toolkit-2.28.tar.gz             0              NONE      y,y  -- (build XStash, use XStash) : was n,n
+
+  05  Digest::MD5::File             Digest-MD5-File-0.08.tar.gz              0              NONE      NONE -- LWP
+
+# these modules depend on modules in groups 00 - 05
+  06  DBD::Mock                     DBD-Mock-1.45.tar.gz		     0              NONE      NONE -- DBI
+  06  DBIx::Interp                  SQL-Interp-1.24.tar.gz		     0              NONE      NONE -- DBI
+  06  DBIx::Simple                  DBIx-Simple-1.37.tar.gz		     0              NONE      NONE -- DBI
+  06  File::Find::Rule              File-Find-Rule-0.34.tar.gz		     0              NONE      NONE -- Number::Compare, Text::Glob
+
+  07  Log::Dispatch::File           Log-Dispatch-2.68.tar.gz		     0              NONE      NONE -- Devel::GlobalDestruction, IPC::Run3, Params::ValidationCompiler, Specio, Test::Fatal, Test::Needs, namespace::autoclean
+  07  Log::Dispatch::FileRotate     Log-Dispatch-FileRotate-1.36.tar.gz	     0              NONE      NONE -- Date::Manip, Path::Tiny, Test::Warn, Log::Dispatch::File
+  07  MIME::Lite                    MIME-Lite-3.030.tar.gz		     0              NONE      NONE -- MIME::Types
+  07  POE                           POE-1.367.tar.gz			     0              NONE      n    -- IO::Pipely, POE::Test::Loops
+
+## the response (n) says that we do not want to skip network tests
+  08  Test::YAML                    Test-YAML-1.07.tar.gz		     0              NONE      NONE -- Test::Base
+  08  XML::DOM                      XML-DOM-1.46.tar.gz                      0              NONE      NONE -- XML::Parser::PerlSAX, XML::RegExp
+
+  00c Devel::CheckLib               Devel-CheckLib-1.13.tar.gz               0              NONE      NONE -- unknown
+  00d DBD::mysql                    DBD-mysql-4.050.tar.gz                   0              NONE      NONE -- unknown
+
