diff options
author | Carlos Silva <r3pek@gentoo.org> | 2005-04-21 16:32:20 +0000 |
---|---|---|
committer | Carlos Silva <r3pek@gentoo.org> | 2005-04-21 16:32:20 +0000 |
commit | 50d897a6be6f5b3b8d252e14ebe36c386e7a12fa (patch) | |
tree | 88bc0ad7a22c9c7033e5db35d572d973308ec83c | |
parent | Mark ~x86 per security bug #89862 (diff) | |
download | historical-50d897a6be6f5b3b8d252e14ebe36c386e7a12fa.tar.gz historical-50d897a6be6f5b3b8d252e14ebe36c386e7a12fa.tar.bz2 historical-50d897a6be6f5b3b8d252e14ebe36c386e7a12fa.zip |
Version bump
Package-Manager: portage-2.0.51.19
-rw-r--r-- | dev-util/git/ChangeLog | 11 | ||||
-rw-r--r-- | dev-util/git/Manifest | 14 | ||||
-rw-r--r-- | dev-util/git/files/digest-git-0.5 | 1 | ||||
-rw-r--r-- | dev-util/git/git-0.5.ebuild | 28 |
4 files changed, 40 insertions, 14 deletions
diff --git a/dev-util/git/ChangeLog b/dev-util/git/ChangeLog index c19094e2682c..a9840a6b9e62 100644 --- a/dev-util/git/ChangeLog +++ b/dev-util/git/ChangeLog @@ -1,12 +1,17 @@ # ChangeLog for dev-util/git # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/git/ChangeLog,v 1.2 2005/04/15 15:44:52 r3pek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/git/ChangeLog,v 1.3 2005/04/21 16:32:20 r3pek Exp $ -*git-0.04 (15 Apr 2005) +*git-0.5 (21 Apr 2005) + + 21 Apr 2005; Carlos Silva <r3pek@gentoo.org> +git-0.5.ebuild: + Version bump - 15 Apr 2005; Carlos Silva <r3pek@gentoo.org> git-0.04.ebuild: + 15 Apr 2005; Carlos Silva <r3pek@gentoo.org> : Cleaning up the ebuild +*git-0.04 (15 Apr 2005) + 15 Apr 2005; Carlos Silva <r3pek@gentoo.org> +metadata.xml: Initial import diff --git a/dev-util/git/Manifest b/dev-util/git/Manifest index bc51b37a4b17..6ef041aff8fb 100644 --- a/dev-util/git/Manifest +++ b/dev-util/git/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - +MD5 a760476a53574133c5e85b9bd1723ebc ChangeLog 480 MD5 e314dcd9e12a240a1bacf64a09274619 git-0.04.ebuild 758 -MD5 a5c58112d9b1247a1e3c0687487dff9e ChangeLog 391 +MD5 7e0e9474f6a5d7493e0457b296ac9a63 git-0.5.ebuild 942 MD5 78c1b34edd1399c24d7d9e59212bc17a metadata.xml 221 MD5 0bae979049fa3a3e17771211bf2d8f87 files/digest-git-0.04 60 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFCYBd6I1lqEGTUzyQRApKiAJ99846NKSsdQuMl0yqj3G2kYos72QCdF1Nm -u+e2Cc347B+wwm8yJxABNVI= -=tXt3 ------END PGP SIGNATURE----- +MD5 7e37a5be54393792343eeec02ff19c1e files/digest-git-0.5 59 diff --git a/dev-util/git/files/digest-git-0.5 b/dev-util/git/files/digest-git-0.5 new file mode 100644 index 000000000000..57cde7e65641 --- /dev/null +++ b/dev-util/git/files/digest-git-0.5 @@ -0,0 +1 @@ +MD5 b617aa2ab2f39ffbba4661634808ade9 git-0.5.tar.gz 699725 diff --git a/dev-util/git/git-0.5.ebuild b/dev-util/git/git-0.5.ebuild new file mode 100644 index 000000000000..36adda2bdd09 --- /dev/null +++ b/dev-util/git/git-0.5.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/git/git-0.5.ebuild,v 1.1 2005/04/21 16:32:20 r3pek Exp $ + +DESCRIPTION="GIT - the stupid content tracker" +HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/torvalds/" +SRC_URI="http://www.kernel.org/pub/linux/kernel/people/torvalds/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="dev-libs/openssl + sys-libs/zlib" + +src_compile() { + emake CFLAGS="${CFLAGS}" || die "make failed" +} + +src_install() { + dobin cat-file checkout-cache commit-tree diff-tree fsck-cache init-db \ + read-tree show-diff update-cache write-tree check-files \ + convert-cache diff-cache git-export git-merge-one-file-script \ + git-prune-script git-pull-script ls-tree merge-base merge-cache \ + rev-tree show-files unpack-file || die "dobin failed" + dodoc README || die "dodoc failed" +} |