Danek Duvall wrote: > I'm curious how this is supposed to work with both 7.1 and 8.1. You're > now, on every unbundled import, adding a "[EMAIL PROTECTED]" and a > "[EMAIL PROTECTED]" -- do we need to be publishing the former anymore? > > Also, is the versioned package name needed any longer? Do the packages > install in versioned directories, or was the duo of clustertools and > clustertools_7.1 merely an afterthought because the unversioned package > name wasn't conceived of before the versioned package name was first > published?
My reasoning for doing it this way was as follows: ClusterTools 7.1 installs under /opt/SUNWhpc/HPC7.1 ClusterTools 8.1 installs under /opt/SUNWhpc/HPC8.1 The .../src/util/distro-import/unbundleds/ClusterTools file defined two packages: package clustertools classification "Development/High Performance Computing" description "Sun HPC ClusterTools" version 7.1 depend clustertools_7.1 end package package clustertools_7.1 classification "Development/High Performance Computing" description "Sun HPC ClusterTools 7.1" version 7.1 import SUNWompi import SUNWompiat import SUNWompimn import SUNWomsc end package The new .../src/util/distro-import/unbundleds/ClusterTools8 file defines these two packages: package clustertools classification "Development/High Performance Computing" version 8.1 depend clustertools_8.1 end package package clustertools_8.1 classification "Development/High Performance Computing" version 8.1 import SUNWompi import SUNWompiat import SUNWompimn import SUNWompir import SUNWomsc end package You'll notice that 4/5 SVR4 packages have the same name. If you have ClusterTools 7.1 installed and you'd previously installed it via the "clustertools" package, then doing a: $ pfexec pkg image-update means that you will now get ClusterTools 8.1 installed along side it. If there is a better way to do this, please let me know and I'll adjust accordingly. Thanks. _______________________________________________ pkg-discuss mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/pkg-discuss
