summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeert Bevin <gbevin@gentoo.org>2002-02-26 07:07:32 +0000
committerGeert Bevin <gbevin@gentoo.org>2002-02-26 07:07:32 +0000
commit8017f9743dcbe44dbd83950d72e9d3b6fc62f6b5 (patch)
tree0a686a19ff6d152b38ff980da1c53a0fdf1fb3cf /dev-util/arch
parentForgot digest :) (diff)
downloadgentoo-2-8017f9743dcbe44dbd83950d72e9d3b6fc62f6b5.tar.gz
gentoo-2-8017f9743dcbe44dbd83950d72e9d3b6fc62f6b5.tar.bz2
gentoo-2-8017f9743dcbe44dbd83950d72e9d3b6fc62f6b5.zip
bumped up version to arch-1.0_pre9
Diffstat (limited to 'dev-util/arch')
-rw-r--r--dev-util/arch/ChangeLog11
-rw-r--r--dev-util/arch/arch-1.0_pre5.ebuild74
-rw-r--r--dev-util/arch/arch-1.0_pre9.ebuild (renamed from dev-util/arch/arch-1.0_pre7.ebuild)0
-rw-r--r--dev-util/arch/files/digest-arch-1.0_pre51
-rw-r--r--dev-util/arch/files/digest-arch-1.0_pre71
-rw-r--r--dev-util/arch/files/digest-arch-1.0_pre91
6 files changed, 10 insertions, 78 deletions
diff --git a/dev-util/arch/ChangeLog b/dev-util/arch/ChangeLog
index 4a6c61b4a12d..7fa65defd380 100644
--- a/dev-util/arch/ChangeLog
+++ b/dev-util/arch/ChangeLog
@@ -1,10 +1,17 @@
# ChangeLog for <CATEGORY>/<PACKAGE_NAME>
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/dev-util/arch/ChangeLog,v 1.1 2002/02/14 22:50:54 blocke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/arch/ChangeLog,v 1.2 2002/02/26 07:07:31 gbevin Exp $
+
+*arch-1.0_pre9 (26 Feb 2002)
+
+ 26 Feb 2002; Geert Bevin <gbevin@uwyn.org> arch-1.0_pre9.ebuild:
+
+ Bumped up version to arch-1.0_pre9.
+
*arch-1.0_pre7 (14 Feb 2002)
14 Feb 2002; Bruce A. Locke <blocke@shivan.org> arch-1.0_pre7.ebuild:
- Added Arch 1.0-pre7
+ Added Arch 1.0-pre7.
diff --git a/dev-util/arch/arch-1.0_pre5.ebuild b/dev-util/arch/arch-1.0_pre5.ebuild
deleted file mode 100644
index d7605f2bf3eb..000000000000
--- a/dev-util/arch/arch-1.0_pre5.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Maintainer: Chris Houser <chouser@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/dev-util/arch/arch-1.0_pre5.ebuild,v 1.1 2002/02/07 04:33:06 chouser Exp $
-
-P="${P//_/}"
-S="${WORKDIR}/${P}/src/=build"
-DESCRIPTION="revision control system ideal for widely distributed development"
-SRC_URI="ftp://regexps.com/pub/src/arch/${P}.tar.gz"
-HOMEPAGE="http://www.regexps.com/#arch"
-
-DEPEND="sys-apps/diffutils
- sys-apps/fileutils
- sys-apps/findutils
- sys-apps/gawk
- sys-apps/sh-utils
- sys-apps/tar
- sys-apps/textutils
- sys-apps/util-linux
- sys-devel/make
- sys-devel/patch"
-
-src_unpack() {
- unpack "${A}"
- mkdir -p "${P}/src/=build"
-
- # patch the arch command to put /usr/bin at the front of it's PATH
- # this allows us to survive with the existance of a /bin/arch too
- # could be done by requiring every user to set their .arch-params/path
- t="${P}/src/arch/arch/arch.sh.in"
- cp $t $t.orig
- sed 's-# Set the PATH.*-&\
-PATH="/usr/bin:$PATH"-' $t.orig > $t
- assert "Patch failed for $t"
-}
-
-src_compile() {
- # configure
- ../configure \
- --prefix "/usr" \
- --with-posix-shell "/bin/bash" \
- || die "configure failed"
-
- # build
- emake || die "emake failed"
-}
-
-src_install () {
- # install
- make install prefix="${D}/usr" \
- || die "make install failed"
-
- # make some symlinks relative instead of absolute
- find ${D}/usr/libexec/arch/arch -type l \
- | xargs ls -l \
- | sed "s:^.*-> ${D}/usr/libexec/arch/::" \
- | while read ls; do
- ln -sf "../$ls" "${D}/usr/libexec/arch/arch/${ls#*/}"
- assert "Fixing symlink for $ls failed"
- done
-
- # make a script so users can type "tlarch" instead of "/usr/bin/arch"
- # note that arch uses it's name, so this can't be a symlink or use exec
- echo -e '#!/bin/bash\n/usr/bin/arch "$@"' > "${D}/usr/bin/tlarch"
- chmod ugo+x "${D}/usr/bin/tlarch" || die "Creating tlarch failed"
-
- # get some docs
- cd ../..
- dodoc =NEWS =README COPYING
-}
-
-pkg_postinst() {
- echo "You may run Tom Lord's 'arch' command as 'tlarch'"
-}
diff --git a/dev-util/arch/arch-1.0_pre7.ebuild b/dev-util/arch/arch-1.0_pre9.ebuild
index 2e0943faa489..2e0943faa489 100644
--- a/dev-util/arch/arch-1.0_pre7.ebuild
+++ b/dev-util/arch/arch-1.0_pre9.ebuild
diff --git a/dev-util/arch/files/digest-arch-1.0_pre5 b/dev-util/arch/files/digest-arch-1.0_pre5
deleted file mode 100644
index c71ab4f0a331..000000000000
--- a/dev-util/arch/files/digest-arch-1.0_pre5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 5e439bbc9f93571afe942349b585cbf5 arch-1.0pre5.tar.gz 2429285
diff --git a/dev-util/arch/files/digest-arch-1.0_pre7 b/dev-util/arch/files/digest-arch-1.0_pre7
deleted file mode 100644
index 022479e1543f..000000000000
--- a/dev-util/arch/files/digest-arch-1.0_pre7
+++ /dev/null
@@ -1 +0,0 @@
-MD5 7d71fc2d8a661e64635fe8e217dad15c arch-1.0pre7.tar.gz 2460644
diff --git a/dev-util/arch/files/digest-arch-1.0_pre9 b/dev-util/arch/files/digest-arch-1.0_pre9
new file mode 100644
index 000000000000..3a435aee98c4
--- /dev/null
+++ b/dev-util/arch/files/digest-arch-1.0_pre9
@@ -0,0 +1 @@
+MD5 d95d2d914792f514fe0d0ffc1aabc608 arch-1.0pre9.tar.gz 2519236