Update be to git-2 and EAPI 4 (+ style fixes).
authorW. Trevor King <wking@drexel.edu>
Wed, 25 Jan 2012 15:14:11 +0000 (10:14 -0500)
committerW. Trevor King <wking@drexel.edu>
Wed, 25 Jan 2012 15:14:11 +0000 (10:14 -0500)
dev-util/be/ChangeLog
dev-util/be/Manifest
dev-util/be/be-9999.ebuild

index 62158b4225ecb756351f5d5ef368b4a49b711d13..6df1ded369d8b3c5c9b2919ac4b9d3ac3428cf09 100644 (file)
@@ -1,7 +1,12 @@
 # ChangeLog for dev-util/be
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*be-9999 (25 Jan 2012)
+  25 Jan 2012; W. Trevor King <wking@drexel.edu> be-9999.
+  Update to `git-2` eclass and EAPI 4, and make a couple of stylistic
+  cleanups.
+
 *be-9999 (25 May 2011)
   25 May 2011; W. Trevor King <wking@drexel.edu> be-9999.ebuild :
   - Add bash-completion USE flag.
index 7226ad44ee9cf4ef4b8304b2a03a4a8e1fc73bf2..2c8d430aa577bf322fd061f7778d4d85bd61577e 100644 (file)
@@ -1,3 +1,3 @@
-EBUILD be-9999.ebuild 1339 RMD160 97c98e08f7c001550b91c3a765b5edf9ff890076 SHA1 36ac7166327c0865555a46c48f6be607f1d9fcc5 SHA256 0cd5a4d01b2b760e4ab1f0c6e86950f798effd5e55ee2da9fad0bf9e3281c449
-MISC ChangeLog 2634 RMD160 0c8ef29e69fb152385b17e6748fb2139c22eb9b0 SHA1 48a3544aca3f41a6586155ab8a67207af261fae7 SHA256 61d0ec92ce89db22f6cf687b90d91bfc77a1d2456a084b0495ec3cd6ed4f2f70
+EBUILD be-9999.ebuild 1350 RMD160 d6784fe9b5d301f68317b9b25e32a4bf2c80498f SHA1 d8236c51f47f827c9d808fe36401b036087f9756 SHA256 15f14e89d6cc5a937dcdd115be08aad22f27705c59a3adbf97236a8f3781502a
+MISC ChangeLog 2798 RMD160 27fd740239c06a9eec96ed3bd278dd97471a6937 SHA1 1da3d92d05bb33bc071f658a657e59da77e894bf SHA256 45a8e2547f7b428d35ee02feefc32263be1c41a12a4ea3a42833642669670260
 MISC metadata.xml 321 RMD160 f1c228ca9454d018e84c7fa458cd8a1ddb4a22a0 SHA1 a21e5950c45f5bb268ab86c06f2d52c7a95d15fa SHA256 217043d3419af1b60adbd5e4028a57f1b1de1eebbe44afa9befe33faac60db37
index 628c8c0e2bd047d77106f9d73238e093f2973fba..312ee5fa1c7dd99bfce788432960521a2cda3282 100644 (file)
@@ -1,8 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI="3"
+EAPI="4"
 PYTHON_DEPEND="2:2.5"
 PYTHON_MODNAME="libbe"
 SUPPORT_PYTHON_ABIS="1"
@@ -10,8 +10,8 @@ RESTRICT_PYTHON_ABIS="2.4 3.*"
 
 inherit eutils distutils
 
-if [[ ${PV} == "9999" ]] ; then
-       inherit git
+if [[ "${PV}" == "9999" ]] ; then
+       inherit git-2
        EGIT_BRANCH="master"
        EGIT_REPO_URI="git://gitorious.org/be/be.git"
        SRC_URI=""
@@ -28,17 +28,17 @@ KEYWORDS="~amd64 ~x86"
 IUSE="bash-completion"
 
 RDEPEND="dev-lang/python
-  dev-python/jinja
+       dev-python/jinja
        dev-python/pyyaml"
 DEPEND="${RDEPEND}
        dev-vcs/git
        dev-python/docutils"
 
 src_unpack() {
-       if [[ ${PV} == "9999" ]] ; then
-               git_src_unpack
+       if [[ "${PV}" == "9999" ]] ; then
+               git-2_src_unpack
        else
-               unpack ${A}
+               unpack "${A}"
        fi
        cd "${S}"
 }
@@ -57,7 +57,7 @@ src_compile() {
 src_install() {
        distutils_src_install
        dodoc AUTHORS NEWS README || die "dodoc failed"
-       if [[ ${PV} != "9999" ]] ; then
+       if [[ "${PV}" != "9999" ]] ; then
                dodoc ChangeLog || die "dodoc failed"
        fi
        if use bash-completion ; then