diff options
author | Markus Ullmann <jokey@gentoo.org> | 2009-02-01 16:32:17 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2009-02-01 16:32:17 +0000 |
commit | 7f18cd422589bd3f95e171f34eeb68eba7b4364f (patch) | |
tree | 7ec49b400045c87a7c436507818f9145cb35b337 /app-portage | |
parent | www-apps/tt-rss: Version bump for tt-rss, minor corrections to the ebuild. (diff) | |
download | sunrise-7f18cd422589bd3f95e171f34eeb68eba7b4364f.tar.gz sunrise-7f18cd422589bd3f95e171f34eeb68eba7b4364f.tar.bz2 sunrise-7f18cd422589bd3f95e171f34eeb68eba7b4364f.zip |
app-portage/overlay-utils: EAPI magic
svn path=/sunrise/; revision=7831
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/overlay-utils/ChangeLog | 6 | ||||
-rw-r--r-- | app-portage/overlay-utils/Manifest | 4 | ||||
-rw-r--r-- | app-portage/overlay-utils/overlay-utils-0.2-r2.ebuild | 8 |
3 files changed, 11 insertions, 7 deletions
diff --git a/app-portage/overlay-utils/ChangeLog b/app-portage/overlay-utils/ChangeLog index 1dc4726cd..bafb46c44 100644 --- a/app-portage/overlay-utils/ChangeLog +++ b/app-portage/overlay-utils/ChangeLog @@ -1,7 +1,11 @@ # ChangeLog for app-portage/overlay-utils -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 01 Feb 2009; Markus Ullmann <jokey@gentoo.org> + overlay-utils-0.2-r2.ebuild: + EAPI magic + 05 Nov 2008; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> overlay-utils-0.2-r2.ebuild: Drop empty DEPEND and add || die to dobin diff --git a/app-portage/overlay-utils/Manifest b/app-portage/overlay-utils/Manifest index fd690680a..9447c542e 100644 --- a/app-portage/overlay-utils/Manifest +++ b/app-portage/overlay-utils/Manifest @@ -1,4 +1,4 @@ DIST overlay-utils-0.2.tar.bz2 9997 RMD160 d40e51c85e8eab34d5bf4f542db9401d77c82e0d SHA1 d1b3637cc943b90935c63ef5467680a096176445 SHA256 16fdabba962975d90484299badd1afd38e4921e0af7627120d9393e577155e5f -EBUILD overlay-utils-0.2-r2.ebuild 658 RMD160 f39a510413a3b2253014e4bba52ede75d8cbc992 SHA1 b3a4d3830029796bee52d416a78ffcc99f327dee SHA256 2f244682094a2d3569fbb1b8258fb7dcb92930688e7c2b21b7675f5ac8c57546 -MISC ChangeLog 2105 RMD160 ee670b16c77448e26ecb4a8448a5ea1fdb2e4df5 SHA1 559f5f385bb690e763eebd1e8b7f5b417998f133 SHA256 1c65aa96b4bc41b3c0c5f90babcda8e5a4f4b698f425d50d8f2fb690fc7d66db +EBUILD overlay-utils-0.2-r2.ebuild 643 RMD160 52bed47fb9a0ec3c60f59b423f36d6c64e0190d8 SHA1 19f6faa4379491a649ac97b0e280056e11a9923b SHA256 a290cbdcf923882d622cf6ed6423700b34a13eec3519ba5ddfd43a56dca03cc3 +MISC ChangeLog 2199 RMD160 f72944661f2dbc9c7c3d9800e6fa6c8679462297 SHA1 0728129e2cc3da6fac4980417056583c5fabbe21 SHA256 054be83f9223152289de4c6377c7ef1f2afd44957ce5c90dd5518cc5ebabc9e4 MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/app-portage/overlay-utils/overlay-utils-0.2-r2.ebuild b/app-portage/overlay-utils/overlay-utils-0.2-r2.ebuild index 8fdd237ac..4fba871c2 100644 --- a/app-portage/overlay-utils/overlay-utils-0.2-r2.ebuild +++ b/app-portage/overlay-utils/overlay-utils-0.2-r2.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ +EAPI=2 + DESCRIPTION="Utilities for Gentoo repository and overlay development" HOMEPAGE="http://gentooexperimental.org/~shillelagh/" SRC_URI="http://gentooexperimental.org/~shillelagh/${P}.tar.bz2" @@ -14,9 +16,7 @@ IUSE="" RDEPEND="dev-util/subversion >=sys-apps/portage-2.1" -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { sed -i -e 's:/sbin/functions.sh:/etc/init.d/functions.sh:' sunrise-commit || die "sed failed" } |