diff options
author | Stefan Jones <cretin@gentoo.org> | 2002-12-27 17:15:33 +0000 |
---|---|---|
committer | Stefan Jones <cretin@gentoo.org> | 2002-12-27 17:15:33 +0000 |
commit | 7f4d4515e1add12efb93da5016b1d5ceb5af7e1e (patch) | |
tree | 5a2d13f0bc2f77f8d0bb76897be85b613f8dd58e /app-arch/upm | |
parent | new version (diff) | |
download | gentoo-2-7f4d4515e1add12efb93da5016b1d5ceb5af7e1e.tar.gz gentoo-2-7f4d4515e1add12efb93da5016b1d5ceb5af7e1e.tar.bz2 gentoo-2-7f4d4515e1add12efb93da5016b1d5ceb5af7e1e.zip |
Another package manager, much like gentoo!
Diffstat (limited to 'app-arch/upm')
-rw-r--r-- | app-arch/upm/ChangeLog | 9 | ||||
-rw-r--r-- | app-arch/upm/files/digest-upm-0.85 | 1 | ||||
-rw-r--r-- | app-arch/upm/files/upm-0.85-gentoo.diff | 24 | ||||
-rw-r--r-- | app-arch/upm/upm-0.85.ebuild | 39 |
4 files changed, 73 insertions, 0 deletions
diff --git a/app-arch/upm/ChangeLog b/app-arch/upm/ChangeLog new file mode 100644 index 000000000000..52ffbdcb29eb --- /dev/null +++ b/app-arch/upm/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for sys-apps/upm +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/upm/ChangeLog,v 1.1 2002/12/27 17:15:33 cretin Exp $ + +*upm-0.85 (27 Dec 2002) + + 27 Dec 2002; Stefan Jones <cretin@gentoo.org> : + Another package manager for your hacking pleasure + diff --git a/app-arch/upm/files/digest-upm-0.85 b/app-arch/upm/files/digest-upm-0.85 new file mode 100644 index 000000000000..14b3ff32c0eb --- /dev/null +++ b/app-arch/upm/files/digest-upm-0.85 @@ -0,0 +1 @@ +MD5 faedcb1390e7bda0bbfce6c67b5abf5b upm-0.85.tar.gz 110946 diff --git a/app-arch/upm/files/upm-0.85-gentoo.diff b/app-arch/upm/files/upm-0.85-gentoo.diff new file mode 100644 index 000000000000..a3d273ad8682 --- /dev/null +++ b/app-arch/upm/files/upm-0.85-gentoo.diff @@ -0,0 +1,24 @@ +--- upm-0.85/standard.def.jj 2002-12-27 15:39:29.000000000 +0000 ++++ upm-0.85/standard.def 2002-12-27 15:39:37.000000000 +0000 +@@ -42,8 +42,8 @@ + + # UserIDs for access to metadata and building + # uPM will build as root if these are commented out. +-upmuser=upm +-builduser=build ++upmuser=portage ++builduser=portage + + [mirror] + # List of mirrors to be used using S @<mirrorname>/path P @<mirrorname>/path +--- upm-0.85/upm.c.jj 2002-12-27 16:16:37.000000000 +0000 ++++ upm-0.85/upm.c 2002-12-27 16:17:00.000000000 +0000 +@@ -4509,7 +4509,7 @@ + if (!mdep_install(m)) { error("%s: Failed to build necessary components",p->name);goto buildfail; } + } + } +- if (base==NULL && p->base==FALSE) { error("%s: Cannot build without a base package.",p->name);goto buildfail; } ++ if (base==NULL && p->base==FALSE) { error("%s: Cannot build without a base package.",p->name);/*goto buildfail;*/ } + } + + /* set key environment variables describing locations and names */ diff --git a/app-arch/upm/upm-0.85.ebuild b/app-arch/upm/upm-0.85.ebuild new file mode 100644 index 000000000000..d0acee948ad5 --- /dev/null +++ b/app-arch/upm/upm-0.85.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/upm/upm-0.85.ebuild,v 1.1 2002/12/27 17:15:33 cretin Exp $ + +inherit eutils + +DESCRIPTION="The micro Package Manager" + +HOMEPAGE="http://u-os.org/upm.html" + +SRC_URI="http://www.ibiblio.org/pub/linux/distributions/uos/sputnik/sources/${P}.tar.gz" + +LICENSE="GPL-2" + +SLOT="0" + +KEYWORDS="~x86 ~ppc ~sparc ~alpha" + +IUSE="" + +DEPEND="" + +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${P}.tar.gz + epatch ${FILESDIR}/${P}-gentoo.diff +} + +src_compile() { + emake +} + +src_install() { + dodir /bin + make DESTDIR=${D} install || die + dodir /usr/upm/installed + dodir /var/upm/{binary,cache} +} |