Description of problem: This bug is a follow-up of "234893: Build SetupUtil with autotools"
Created attachment 152005 [details] specs/RHEL/setuputil.spec Spec file for RHEL. How to create an RPM package on RHEL: # go to one level above setuputil $ ls -d setuputil setuputil/ $ \rm -f setuputil-1.1.0 $ \rm -rf SPECS SOURCES RPMS BUILD $ mkdir SPECS SOURCES RPMS BUILD $ cp setuputil/specs/RHEL/setuputil.spec SPECS $ ln -s setuputil setuputil-1.1.0 $ tar chjf SOURCES/setuputil-1.1.0.tar.bz2 setuputil-1.1.0/ $ rpmbuild --define="_topdir `pwd`" --target i386 --bb SPECS/setuputil.spec $ ls RPMS/i386/ setuputil-1.1.0-1.i386.rpm setuputil-devel-1.1.0-1.i386.rpm setuputil-debuginfo-1.1.0-1.i386.rpm
Created attachment 152006 [details] specs/SOLARIS/setuputil.spec Spec file for Solaris. How to create a PKG package on Solaris: # go to one level above setuputil $ ls -d setuputil setuputil/ $ \rm -f setuputil-1.1.0 $ \rm -rf SPECS SOURCES PKGS BUILD $ mkdir SPECS SOURCES PKGS BUILD $ \rm -f setuputil-1.1.0 $ ln -s setuputil/ setuputil-1.1.0 $ cp setuputil/specs/SOLARIS/setuputil.spec SPECS $ tar chjf SOURCES/setuputil-1.1.0.tar.bz2 setuputil-1.1.0/ $ /opt/pkgbuild/bin/pkgbuild --pkgformat=datastream --define="_topdir `pwd`" --define "optflags -xs -X04" --define "_target sparcv9" -bb SPECS/setuputil.spec > pkgbuild.out 2>&1& $ ls -R PKGS PKGS: RHATsetuputilx-1.1.0.sparcv9.pkg RHATsetuputilx-devel-1.1.0.sparcv9.pkg
Created attachment 152007 [details] cvs commit message Reviewed by Rich (Thank you!!) Checked in into HEAD.
Spec files were created for setuputil, but we no longer use setuputil (it has been replaced with some setup Perl modules). Marking as VERIFIED.