From owner-cvs-all@FreeBSD.ORG Thu Mar 4 18:26:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8947516A4CE; Thu, 4 Mar 2004 18:26:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CF8843D3F; Thu, 4 Mar 2004 18:26:11 -0800 (PST) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i252QBGe015726; Thu, 4 Mar 2004 18:26:11 -0800 (PST) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i252QBgM015725; Thu, 4 Mar 2004 18:26:11 -0800 (PST) (envelope-from glewis) Message-Id: <200403050226.i252QBgM015725@repoman.freebsd.org> From: Greg Lewis Date: Thu, 4 Mar 2004 18:26:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers Makefile ports/archivers/rpm4 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist patch-beecrypt::Makefile.in... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2004 02:26:11 -0000 glewis 2004/03/04 18:26:11 PST FreeBSD ports repository Modified files: archivers Makefile Added files: archivers/rpm4 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist archivers/rpm4/files patch-Makefile.in patch-beecrypt::Makefile.in patch-beecrypt::configure patch-build::Makefile.in patch-configure patch-db3::configure patch-doc::Makefile.in patch-lib::Makefile.in patch-lib::signature.c patch-python::Makefile.in patch-python::rpmmodule.c patch-rpmdb::Makefile.in patch-rpmio::Makefile.in patch-tools::Makefile.in Log: Add a port of rpm 4.0.4: "The Red Hat Package Manager (RPM) is a powerful command line driven package management system capable of installing, uninstalling, verifying, querying, and updating computer software packages. Each software package consists of an archive of files along with information about the package like its version, a description, and the like. There is also a related API ("Application Program Interface"), permitting advanced developers to bypass 'shelling out' to a command line, and to manage such transactions from within a native coding language. WWW: http://www.rpm.org/" 4.0.4 was chosen because: . The only newer version available as a tarball (4.1) is buggy. . This version closely corresponds to our current default linux_base. . This version uses the version of popt we have in the tree (unfortunately it uses an earlier version of beecrypt). . This version is a lot less work to port than 4.2 (elfutils). However, I am considering how best this port could be updated to a more recent version (e.g. 4.1.1 or 4.2, probably the latter). This wasn't an update to the current rpm port as I haven't done enough testing of other ports that use rpm with it. Tested on 4.9/i386, 5.2/sparc64 and 5.2/alpha. Revision Changes Path 1.92 +1 -0 ports/archivers/Makefile 1.1 +61 -0 ports/archivers/rpm4/Makefile (new) 1.1 +1 -0 ports/archivers/rpm4/distinfo (new) 1.1 +99 -0 ports/archivers/rpm4/files/patch-Makefile.in (new) 1.1 +22 -0 ports/archivers/rpm4/files/patch-beecrypt::Makefile.in (new) 1.1 +20 -0 ports/archivers/rpm4/files/patch-beecrypt::configure (new) 1.1 +29 -0 ports/archivers/rpm4/files/patch-build::Makefile.in (new) 1.1 +283 -0 ports/archivers/rpm4/files/patch-configure (new) 1.1 +11 -0 ports/archivers/rpm4/files/patch-db3::configure (new) 1.1 +11 -0 ports/archivers/rpm4/files/patch-doc::Makefile.in (new) 1.1 +34 -0 ports/archivers/rpm4/files/patch-lib::Makefile.in (new) 1.1 +13 -0 ports/archivers/rpm4/files/patch-lib::signature.c (new) 1.1 +20 -0 ports/archivers/rpm4/files/patch-python::Makefile.in (new) 1.1 +10 -0 ports/archivers/rpm4/files/patch-python::rpmmodule.c (new) 1.1 +34 -0 ports/archivers/rpm4/files/patch-rpmdb::Makefile.in (new) 1.1 +85 -0 ports/archivers/rpm4/files/patch-rpmio::Makefile.in (new) 1.1 +98 -0 ports/archivers/rpm4/files/patch-tools::Makefile.in (new) 1.1 +17 -0 ports/archivers/rpm4/pkg-deinstall (new) 1.1 +11 -0 ports/archivers/rpm4/pkg-descr (new) 1.1 +19 -0 ports/archivers/rpm4/pkg-install (new) 1.1 +155 -0 ports/archivers/rpm4/pkg-plist (new)