%define with_python_subpackage 0 %define with_bzip2 1 %define with_apidocs 0 %define strip_binaries 0 %ifos darwin %define __prefix /usr/local %else %define __prefix /usr %endif # XXX legacy requires './' payload prefix to be omitted from rpm packages. %define _noPayloadPrefix 1 %{expand:%%define __share %(if [ -d %{__prefix}/share/man ]; then echo /share ; else echo %%{nil} ; fi)} %ifos darwin %define __etcdir /private/etc %define __vardir /private/var/local %define __rpmbindir %{__prefix}/bin %define __mandir %{__prefix}/man %else %define __etcdir /etc %define __vardir /var %define __rpmbindir /bin %define __mandir %{__prefix}%{__share}/man %endif Summary: The Red Hat package management system. Name: rpm %define rpmversion 4.0.2 %define poptversion 1.6.2 Version: %{rpmversion} Release: 0.34c Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpmversion}.tar.gz Patch0: localhost:/rpm-%{rpmversion}-db3.patch Patch1: localhost:/rpm-%{rpmversion}-macosx.patch Copyright: GPL Conflicts: patch < 2.5 %ifos linux Prereq: gawk fileutils textutils mktemp Requires: popt %endif BuildRequires: db3-devel # XXX glibc-2.1.92 has incompatible locale changes that affect statically # XXX linked binaries like /bin/rpm. %ifnarch ia64 %ifnos darwin Requires: glibc >= 2.1.92 # XXX needed to avoid libdb.so.2 satisfied by compat/libc5 provides. Requires: db1 = 1.85 %endif %endif # XXX Red Hat 5.2 has not bzip2 or python %if %{with_bzip2} %ifnos darwin BuildRequires: bzip2 >= 0.9.0c-2 %endif %endif %if %{with_python_subpackage} BuildRequires: python-devel >= 1.5.2 %endif BuildRoot: %{_tmppath}/%{name}-root %description The RPM Package Manager (RPM) is a powerful command line driven package management system capable of installing, uninstalling, verifying, querying, and updating software packages. Each software package consists of an archive of files along with information about the package like its version, a description, etc. %package devel Summary: Development files for applications which will manipulate RPM packages. Group: Development/Libraries Requires: rpm = %{rpmversion}, popt %description devel This package contains the RPM C library and header files. These development files will simplify the process of writing programs which manipulate RPM packages and databases. These files are intended to simplify the process of creating graphical package managers or any other tools that need an intimate knowledge of RPM packages in order to function. This package should be installed if you want to develop programs that will manipulate RPM packages and databases. %package build Summary: Scripts and executable programs used to build packages. Group: Development/Tools Requires: rpm = %{rpmversion} %description build This package contains scripts and executable programs that are used to build packages using RPM. %if %{with_python_subpackage} %package python Summary: Python bindings for apps which will manipulate RPM packages. Group: Development/Libraries BuildRequires: popt >= 1.5 Requires: popt >= 1.5 Requires: python >= 1.5.2 %description python The rpm-python package contains a module which permits applications written in the Python programming language to use the interface supplied by RPM (RPM Package Manager) libraries. This package should be installed if you want to develop Python programs that will manipulate RPM packages and databases. %endif %package -n popt Summary: A C library for parsing command line parameters. Group: Development/Libraries Version: %{poptversion} %description -n popt Popt is a C library for parsing command line parameters. Popt was heavily influenced by the getopt() and getopt_long() functions, but it improves on them by allowing more powerful argument expansion. Popt can parse arbitrary argv[] style arrays and automatically set variables based on command line arguments. Popt allows command line arguments to be aliased via configuration files and includes utility functions for parsing arbitrary strings into argv[] arrays using shell-like rules. Install popt if you're a C programmer and you'd like to use its capabilities. %prep %setup -q %patch0 -p1 %ifos darwin %patch1 -p1 %endif %build %ifos linux CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} --sysconfdir=%{__etcdir} --localstatedir=%{__vardir} --infodir='${prefix}%{__share}/info' --mandir='${prefix}%{__share}/man' %else %ifos darwin CFLAGS="$RPM_OPT_FLAGS" RANLIB='ranlib -s' ./configure --prefix=%{__prefix} --enable-broken-chown --with-included-gettext %else CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} %endif make %install rm -rf $RPM_BUILD_ROOT %ifos darwin mkdir -p $RPM_BUILD_ROOT%{__vardir}/tmp ln -s private/var $RPM_BUILD_ROOT/var %endif make DESTDIR="$RPM_BUILD_ROOT" install ln -s rpmpopt-%{rpmversion} $RPM_BUILD_ROOT%{__prefix}/lib/rpm/rpmpopt mkdir -p $RPM_BUILD_ROOT%{__etcdir}/rpm cat << E_O_F > $RPM_BUILD_ROOT%{__etcdir}/rpm/macros.db1 %%_dbapi 1 E_O_F %if %{with_apidocs} gzip -9n apidocs/man/man*/* || : %endif %if %{strip_binaries} { cd $RPM_BUILD_ROOT strip .%{__rpmbindir}/rpm strip .%{__prefix}/bin/rpm2cpio } %endif %clean rm -rf $RPM_BUILD_ROOT %pre if [ -f %{__vardir}/lib/rpm/Packages -a -f %{__vardir}/lib/rpm/packages.rpm ]; then # echo " #You have both # %{__vardir}/lib/rpm/packages.rpm db1 format installed package headers # %{__vardir}/lib/rpm/Packages db3 format installed package headers #Please remove (or at least rename) one of those files, and re-install. #" exit 1 fi exit 0 %post %ifos linux /sbin/ldconfig %endif if [ -f %{__vardir}/lib/rpm/packages.rpm ]; then : # do nothing elif [ -f %{__vardir}/lib/rpm/Packages ]; then # undo db1 configuration rm -f %{__etcdir}/rpm/macros.db1 else # initialize db3 database rm -f %{__etcdir}/rpm/macros.db1 %{__rpmbindir}/rpm --initdb fi %ifos linux %postun -p /sbin/ldconfig %post devel -p /sbin/ldconfig %postun devel -p /sbin/ldconfig %post -n popt -p /sbin/ldconfig %postun -n popt -p /sbin/ldconfig %endif %if %{with_python_subpackage} %post python -p /sbin/ldconfig %postun python -p /sbin/ldconfig %endif %files %ifos darwin %defattr(-,root,wheel) %else %defattr(-,root,root) %endif %doc RPM-PGP-KEY RPM-GPG-KEY CHANGES GROUPS doc/manual/[a-z]* %{__rpmbindir}/rpm %dir %{__etcdir}/rpm %config(missingok) %{__etcdir}/rpm/macros.db1 %ifos darwin %dir %{__vardir}/lib/rpm %attr (1777,root,wheel) %dir %{__vardir}/tmp %endif %{__prefix}/bin/rpm2cpio %{__prefix}/bin/gendiff %{__prefix}/bin/rpmdb %{__prefix}/bin/rpm[eiukqv] %{__prefix}/bin/rpmsign %{__prefix}/bin/rpmquery %{__prefix}/bin/rpmverify %ifnos darwin %{__prefix}/lib/librpm.so.* %{__prefix}/lib/librpmio.so.* %{__prefix}/lib/librpmbuild.so.* %endif %{__prefix}/lib/rpm/config.guess %{__prefix}/lib/rpm/config.sub %{__prefix}/lib/rpm/convertrpmrc.sh %{__prefix}/lib/rpm/macros %{__prefix}/lib/rpm/mkinstalldirs %{__prefix}/lib/rpm/rpmdb %{__prefix}/lib/rpm/rpm[eiukqv] %{__prefix}/lib/rpm/rpmpopt* %{__prefix}/lib/rpm/rpmrc %ifarch i386 i486 i586 i686 %{__prefix}/lib/rpm/i[3456]86* %endif %ifarch alpha %{__prefix}/lib/rpm/alpha* %endif %ifarch sparc sparc64 %{__prefix}/lib/rpm/sparc* %endif %ifarch ia64 %{__prefix}/lib/rpm/ia64* %endif %ifnos darwin %ifarch powerpc ppc %{__prefix}/lib/rpm/ppc* %endif %endif %ifarch armv3l armv4l %{__prefix}/lib/rpm/armv[34][lb]* %endif %lang(cs) %{__prefix}%{__share}/locale/cs/LC_MESSAGES/rpm.mo %lang(da) %{__prefix}%{__share}/locale/da/LC_MESSAGES/rpm.mo %lang(de) %{__prefix}%{__share}/locale/de/LC_MESSAGES/rpm.mo %lang(fi) %{__prefix}%{__share}/locale/fi/LC_MESSAGES/rpm.mo %lang(fr) %{__prefix}%{__share}/locale/fr/LC_MESSAGES/rpm.mo %lang(is) %{__prefix}%{__share}/locale/is/LC_MESSAGES/rpm.mo %lang(ja) %{__prefix}%{__share}/locale/ja/LC_MESSAGES/rpm.mo %lang(no) %{__prefix}%{__share}/locale/no/LC_MESSAGES/rpm.mo %lang(pl) %{__prefix}%{__share}/locale/pl/LC_MESSAGES/rpm.mo %lang(pt) %{__prefix}%{__share}/locale/pt/LC_MESSAGES/rpm.mo %lang(pt_BR) %{__prefix}%{__share}/locale/pt_BR/LC_MESSAGES/rpm.mo %lang(ro) %{__prefix}%{__share}/locale/ro/LC_MESSAGES/rpm.mo %lang(ru) %{__prefix}%{__share}/locale/ru/LC_MESSAGES/rpm.mo %lang(sk) %{__prefix}%{__share}/locale/sk/LC_MESSAGES/rpm.mo %lang(sl) %{__prefix}%{__share}/locale/sl/LC_MESSAGES/rpm.mo %lang(sr) %{__prefix}%{__share}/locale/sr/LC_MESSAGES/rpm.mo %lang(sv) %{__prefix}%{__share}/locale/sv/LC_MESSAGES/rpm.mo %lang(tr) %{__prefix}%{__share}/locale/tr/LC_MESSAGES/rpm.mo %{__mandir}/man[18]/*.[18]* %lang(pl) %{__mandir}/pl/man[18]/*.[18]* %lang(ru) %{__mandir}/ru/man[18]/*.[18]* %lang(sk) %{__mandir}/sk/man[18]/*.[18]* %files build %ifos darwin %defattr(-,root,wheel) %dir %{__prefix}/src/apple %dir %{__prefix}/src/apple/BUILD %dir %{__prefix}/src/apple/SPECS %dir %{__prefix}/src/apple/SOURCES %dir %{__prefix}/src/apple/SRPMS %dir %{__prefix}/src/apple/RPMS %{__prefix}/src/apple/RPMS/* %else %defattr(-,root,root) %dir %{__prefix}/lib/rpm/ %dir %{__prefix}/src/redhat %dir %{__prefix}/src/redhat/BUILD %dir %{__prefix}/src/redhat/SPECS %dir %{__prefix}/src/redhat/SOURCES %dir %{__prefix}/src/redhat/SRPMS %dir %{__prefix}/src/redhat/RPMS %{__prefix}/src/redhat/RPMS/* %endif %{__prefix}/bin/rpmbuild %{__prefix}/lib/rpm/brp-* %{__prefix}/lib/rpm/check-prereqs %{__prefix}/lib/rpm/cpanflute %{__prefix}/lib/rpm/find-lang.sh %{__prefix}/lib/rpm/find-prov.pl %{__prefix}/lib/rpm/find-provides %{__prefix}/lib/rpm/find-provides.perl %{__prefix}/lib/rpm/find-req.pl %{__prefix}/lib/rpm/find-requires %{__prefix}/lib/rpm/find-requires.perl %{__prefix}/lib/rpm/get_magic.pl %{__prefix}/lib/rpm/getpo.sh %{__prefix}/lib/rpm/http.req %{__prefix}/lib/rpm/javadeps %{__prefix}/lib/rpm/magic.prov %{__prefix}/lib/rpm/magic.req %{__prefix}/lib/rpm/perl.prov %{__prefix}/lib/rpm/perl.req %{__prefix}/lib/rpm/rpm[bt] %{__prefix}/lib/rpm/rpmdiff %{__prefix}/lib/rpm/rpmdiff.cgi %{__prefix}/lib/rpm/u_pkg.sh %{__prefix}/lib/rpm/vpkg-provides.sh %{__prefix}/lib/rpm/vpkg-provides2.sh %if %{with_python_subpackage} %files python %ifos darwin %defattr(-,root,wheel) %else %defattr(-,root,root) %endif %ifnos darwin %{__prefix}/lib/python1.5/site-packages/rpmmodule.so %endif %endif %files devel %ifos darwin %defattr(-,root,wheel) %else %defattr(-,root,root) %endif %if %{with_apidocs} %doc apidocs %endif %{__prefix}/include/rpm %{__prefix}/lib/librpm.a %{__prefix}/lib/librpm.la %ifnos darwin %{__prefix}/lib/librpm.so %endif %{__prefix}/lib/librpmio.a %{__prefix}/lib/librpmio.la %ifnos darwin %{__prefix}/lib/librpmio.so %endif %{__prefix}/lib/librpmbuild.a %{__prefix}/lib/librpmbuild.la %ifnos darwin %{__prefix}/lib/librpmbuild.so %endif %files -n popt %ifos darwin %defattr(-,root,wheel) %else %defattr(-,root,root) %endif %ifnos darwin %{__prefix}/lib/libpopt.so.* %endif %{__mandir}/man3/popt.3* %lang(cs) %{__prefix}%{__share}/locale/cs/LC_MESSAGES/popt.mo %lang(da) %{__prefix}%{__share}/locale/da/LC_MESSAGES/popt.mo %lang(gl) %{__prefix}%{__share}/locale/gl/LC_MESSAGES/popt.mo %lang(hu) %{__prefix}%{__share}/locale/hu/LC_MESSAGES/popt.mo %lang(is) %{__prefix}%{__share}/locale/is/LC_MESSAGES/popt.mo %lang(no) %{__prefix}%{__share}/locale/no/LC_MESSAGES/popt.mo %lang(pt) %{__prefix}%{__share}/locale/pt/LC_MESSAGES/popt.mo %lang(ro) %{__prefix}%{__share}/locale/ro/LC_MESSAGES/popt.mo %lang(ru) %{__prefix}%{__share}/locale/ru/LC_MESSAGES/popt.mo %lang(sk) %{__prefix}%{__share}/locale/sk/LC_MESSAGES/popt.mo %lang(sl) %{__prefix}%{__share}/locale/sl/LC_MESSAGES/popt.mo %lang(sv) %{__prefix}%{__share}/locale/sv/LC_MESSAGES/popt.mo %lang(tr) %{__prefix}%{__share}/locale/tr/LC_MESSAGES/popt.mo %lang(uk) %{__prefix}%{__share}/locale/uk/LC_MESSAGES/popt.mo %lang(wa) %{__prefix}%{__share}/locale/wa/LC_MESSAGES/popt.mo %lang(zh_CN) %{__prefix}%{__share}/locale/zh_CN.GB2312/LC_MESSAGES/popt.mo # XXX These may end up in popt-devel but it hardly seems worth the effort now. %{__prefix}/lib/libpopt.a %{__prefix}/lib/libpopt.la %ifnos darwin %{__prefix}/lib/libpopt.so %endif %{__prefix}/include/popt.h %changelog * Wed Oct 10 2001 Keisuke Fujii - 1st relase (Release 0.34c) for MacOS X Release 10.1 (darwin 1.4.1) * Fri Apr 20 2001 Keisuke Fujii - 1st relase (Release 0.34b) for MacOS X Release (darwin 1.3.1) - added --enable-broken-chown to configure args. - updated macosx patch: use awk instead of gawk exclude dylibs under /usr/lib/ suppress "failed to open /etc/mnttab" message * Fri Mar 30 2001 Keisuke Fujii - 1st relase for MacOS X PB (darwin 1.2) * Sun Jan 21 2001 Jeff Johnson - fix: check waitpid return code. * Fri Jan 19 2001 Jeff Johnson - ewt's cpio.c hack. - ewt's cpio.c hack reverted. - rebuild with i18n from rpm-4_0 branch. - rpmlint conformance. * Thu Jan 18 2001 Matt Wilson - fix: exit 0 at the end of %pre * Thu Jan 18 2001 Jeff Johnson - fix: insure that %lang scopes over hard links correctly. - fix: rpmCleanPath was nibbling at .. in macrofiles incorrectly. * Wed Jan 17 2001 Jeff Johnson - 1st crack at Mandrake specific per-platform macros. * Tue Jan 16 2001 Jeff Johnson - tsort prefers presentation order. * Mon Jan 15 2001 Jeff Johnson - fix: extra newline in many error messages (#23947). - fix: rpm -Va with db1 needs per-iterator, not per-index, offset. - add install/remove transaction id tags. * Sat Jan 13 2001 Jeff Johnson - fix the hack. * Fri Jan 12 2001 Jeff Johnson - hack: permit installer to determine package ordering using 1000003 tag. * Thu Jan 11 2001 Jeff Johnson - fix: don't hang on build error. - fix: remove "error: " prefix from signature verification message. * Wed Jan 10 2001 Jeff Johnson - successors from tsort are processed in presentation order. - fix: find-requires.perl needed update (#23450). * Tue Jan 9 2001 Jeff Johnson - fix: digests on input FD_t dinna work. - fix: remove rebuilddb debugging leakage. * Mon Jan 8 2001 Jeff Johnson - tsorted packages processed in successor count order. - fix: resurrect --excludepath (#19666). * Fri Jan 5 2001 Jeff Johnson - fix: 3 packages from Red Hat 5.2 had bogus %verifyscript tag. * Wed Jan 3 2001 Jeff Johnson - fix: avoid locale issues with strcasecmp/strncasecmp (#23199). - remove almost all explicit uses of stderr in rpmlib using rpmError(). - fix: pass scriptlet args, as in %post -p "/sbin/ldconfig -n /lib". (Rodrigo Barbosa) * Tue Jan 2 2001 Jeff Johnson - fix apidocs. * Mon Jan 1 2001 Jeff Johnson - use popt autohelp for rpm helper binaries. * Sun Dec 31 2000 Jeff Johnson - (popt): fix float/double handling (#19701). - (popt): non-linux needs (#22732). - (popt): add POPT_ARGFLAG_OPTIONAL for long options with optional arg. - (popt): diddle auto-help to include type of arg expected. * Sat Dec 30 2000 Jeff Johnson - (non-linux): move stubs.c to rpmio (#21132). - (python): bind initdb (#20988). * Fri Dec 29 2000 Jeff Johnson - fix: hack around alpha mis-compilation signature problems. - rpmmodule.c(handleDbResult): return empty list when nothing matches. * Thu Dec 28 2000 Jeff Johnson - fix: avoid FAT and other brain-dead file systems that have not inodes. * Wed Dec 27 2000 Jeff Johnson - use malloc'ed buffer for large queries. * Tue Dec 26 2000 Jeff Johnson - send query/verify output through rpmlog(). - resurrect rpmErrorSetCallback() and rpmErrorString(). * Thu Dec 21 2000 Jeff Johnson - immutable headers, once installed by rpm3, need to lose immutablity. - fix: removed headers from db need a headerCopy(). * Wed Dec 20 2000 Jeff Johnson - whiteout mozilla loop for 7.1. * Tue Dec 19 2000 Jeff Johnson - gendiff: generate ChangeLog patches more intelligently (#22356). - identify install scriptlet failures with the name of the scriptlet. - handle install chroot's identically throughout the install process. - add rpmlib(HeaderLoadSortsTags) for tracking header regions "just in case". - create _tmppath on the fly if not present. - remove /etc/rpm/macros.db1 configuration file if db3 rebuilt. * Wed Dec 13 2000 Jeff Johnson - bump popt version. - fix: (transaction.c) assume file state normal if tag is missing. - fix: failed signature read headerFree segfault. - fix: revert ALPHA_LOSSAGE, breaks 6.2/i386. - fix: segfault on build path, ignore deleted drips. - fix: synthesized callbacks for removed packages have not a pkgkey. * Tue Dec 12 2000 Jeff Johnson - bail on header regions. - change dependency loop message to RPMMESS_WARNING to use stderr, not stdout. * Sun Dec 10 2000 Jeff Johnson - handle added dirtoken tags (mostly) correctly with header regions. - add FHS doc/man/info dirs, diddle autoconf goo. - fix: headerUnload handles headers w/o regions correctly on rebuilddb. * Thu Dec 7 2000 Jeff Johnson - add rpmtransGetKeys() to retrieve transaction keys in tsort'ed order. - python bindings for rpmtransGetKeys(). - fix: include alignment in count when swabbing header region. * Wed Dec 6 2000 Jeff Johnson - improved find-{requires,provides} for aix4/hpux/irix6/osf. Tim Mooney - portability: remove use of GNU make subst in lib/Makefile (Joe Orton). - python: bind package removal (#21274). - autoconfigure building python bindings. - autoconfigure generating rpm API doco rpm-devel package. - fix: don't fdFree in rpmVerifyScript, rpmtransFree does already. - unify rpmError and rpmMessge interfaces through rpmlog. - collect and display rpm build error messages at end of build. - use package version 3 if --nodirtokens is specified. - add package names to problem sets early, don't save removed header. - make sure that replaced tags in region are counted in headerSizeof(). - support for dmalloc debugging. - filter region tags in headerNextIterator, exit throut headerReload. * Thu Nov 30 2000 Jeff Johnson - add missing headerFree for legacy signature header. - fix: removed packages leaked DIRINDEXES tag data. - reload tags added during install when loading header from rpmdb. - avoid brp-compress hang with both compressed/uncompressed man pages. * Tue Nov 21 2000 Jeff Johnson - add brp-strip-shared script . - better item/task progress bars . - load headers as single contiguous region. - add region marker as RPM_BIN_TYPE in packages and database. - fix: don't headerCopy() relocateable packages if not relocating. - merge signatures into header after reading from package. * Mon Nov 20 2000 Jeff Johnson - add doxygen and lclint annotations most everywhere. - consistent return for all signature verification. - use enums for almost all rpmlib #define's. - API: change rpmProblem typedef to pass by reference, not value. - don't trim leading ./ in rpmCleanPath() (#14961). - detect (still need to test) rdonly linux file systems. - check available inodes as well as blocks on mounted file systems. - pass rpmTransactionSet, not elements, to installBinaryPackage et al. - add cscope/ctags (Rodrigo Barbosa). - remove getMacroBody() from rpmio API. - add support for unzip * Thu Nov 16 2000 Jeff Johnson - don't verify src rpm MD5 sums (yet). - md5 sums are little endian (no swap) so big endian needs the swap. * Wed Nov 15 2000 Jeff Johnson - fix: segfault on exit of "rpm -qp --qf '%{#fsnames}' pkg" (#20595). - hpux w/o -D_OPEN_SOURCE has not h_errno. - verify MD5 sums of payload files when unpacking archive. - hide libio lossage in prototype, not API. - add support for SHA1 as well as MD5 message digests. * Mon Nov 13 2000 Jeff Johnson - fix: work around for (mis-compilation?!) segfaults on signature paths. * Sun Nov 12 2000 Jeff Johnson - fix: duplicate headerFree() on instalBinaryPackage() error return. * Sat Nov 11 2000 Jeff Johnson - fix: runTriggers was not adding countCorrection. - add rpmGetRpmlibProvides() to retrieve rpmlib(...) provides "Pawel A. Gajda" . - syntax to specify source of Requires: (PreReq: now legacy). - rip out rpm{get,put}text, use getpo.sh and specspo instead. - fine-grained Requires, remove install PreReq's from Requires db. * Wed Oct 11 2000 Jeff Johnson - fix: rpm2cpio error check wrong on non-libio platforms. * Fri Sep 29 2000 Jeff Johnson - fix: more (possible) xstrdup side effects. * Wed Sep 27 2000 Jeff Johnson - bump popt version to 1.6.1. * Tue Sep 26 2000 Jeff Johnson - fix: avoid calling getpass twice as side effect of xstrdup macro (#17672). - order packages using tsort, clipping PreReq:'s in dependency loops. - handle possible db3 dependency on -lpthread more gracefully. * Thu Sep 14 2000 Jeff Johnson - start rpm-4.0.1.