Add ~amd64 keyword to stepper, and update to git-2 and EAPI 4.
authorW. Trevor King <wking@drexel.edu>
Wed, 25 Jan 2012 15:20:50 +0000 (10:20 -0500)
committerW. Trevor King <wking@drexel.edu>
Wed, 25 Jan 2012 15:20:50 +0000 (10:20 -0500)
ChangeLog
Manifest
stepper-9999.ebuild

index 82b404b7b239f55e53fd169781f85a06b01525d7..94d33c242a3a1caff45d393149508387291038eb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,14 @@
 # ChangeLog for sci-libs/stepper
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
-*Stepper-9999 (31 Mar 2011)
+*stepper-9999 (25 Jan 2012)
+  25 Jan 2012; W. Trevor King <wking@drexel.edu> stepper-9999:ebuild:
+  Add ~amd64 keyword, now that I'm testing stepper on an AMD C-60.
+  Also update to `git-2` eclass and EAPI 4, and make a couple of
+  stylistic cleanups.
+
+*stepper-9999 (31 Mar 2011)
   31 Mar 2011; W. Trevor King <wking@drexel.edu> ChangeLog, metadata.xml, stepper-9999.ebuild :
   - Created ebuild suite for stepper.
   - Added initial ChangeLog which should be updated whenever the
index 0439f611856962e0f8578f9f9570fe5b9ded4c76..deadf751cd0cea86857ba1b5199159131d1febc2 100644 (file)
--- a/Manifest
+++ b/Manifest
@@ -1,3 +1,3 @@
-EBUILD stepper-9999.ebuild 893 RMD160 5e9c2e2c9045e3c8ef6f2ed9a8a2c7be720b284e SHA1 d2e27a8c88c4dfcadf69ad0c1643583edd524f0d SHA256 ad466beeab4e0414d9aeca4a575dd8924cada4a3fdf2633fa73d4c1c7f3fb2f8
-MISC ChangeLog 658 RMD160 2e6f34bfadf8d7476fe5e7b1233a491f32e0a2ce SHA1 fcd776b00dd91bd41c00cded582a8977da9a51ba SHA256 809e10c4d723cacb919f80c21aa536c4c3ba26c993c78995085cee2db99d290e
+EBUILD stepper-9999.ebuild 910 RMD160 0e696b601707d2d5571a1bb0a6be138125ac05b0 SHA1 5ad9b78b400905406e135095e715fdb48a491f0f SHA256 3a97f3dc867a53c95d9a6401107fdc90d7d5e5dceee1b82954ddd21aea8ab857
+MISC ChangeLog 911 RMD160 887623dae02503893cee69c823e7f04a93244c0c SHA1 7fa8d216726fd5172b5b9a1e7c89611248472879 SHA256 f91fd954ccefdaa269525479181b79d5abc95a9af44f47dc51f1ab35c93a78ff
 MISC metadata.xml 247 RMD160 6735f3a5dd2d7a2b70589d1693f35d54291b7147 SHA1 c015969fe50967340dd050a44cb9f8a30b5e34a5 SHA256 9e65060e5f9d0a50d28c7a69d9c27fed6c3037fdd3e420cc276627fde2794f72
index e2c6ff70cf9db7cfd8062520c15273f6432146bd..1f82adacb30ab72e96a63fed3c58286a1a3ac49e 100644 (file)
@@ -1,16 +1,16 @@
-# Copyright 1999-2010 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.6"
 SUPPORT_PYTHON_ABIS="1"
 RESTRICT_PYTHON_ABIS="3.*"
 
 inherit eutils distutils
 
-if [[ ${PV} == "9999" ]] ; then
-       inherit git
+if [[ "${PV}" == "9999" ]] ; then
+       inherit git-2
        EGIT_REPO_URI="http://www.physics.drexel.edu/~wking/code/git/${PN}.git"
        SRC_URI=""
 else
@@ -22,7 +22,7 @@ HOMEPAGE="http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/${PN}/"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="test"
 
 DEPEND="test? (
@@ -32,10 +32,10 @@ DEPEND="test? (
 RDEPEND=""
 
 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}"
 }