Add ~amd64 keyword to pypid, and update to git-2 and EAPI 4.
authorW. Trevor King <wking@drexel.edu>
Fri, 9 Dec 2011 19:41:54 +0000 (14:41 -0500)
committerW. Trevor King <wking@drexel.edu>
Fri, 9 Dec 2011 19:41:54 +0000 (14:41 -0500)
dev-python/pypid/ChangeLog
dev-python/pypid/Manifest
dev-python/pypid/pypid-9999.ebuild

index e00bb06856ffc98b603799f99092d63ce06215d8..edb22a273f52dc9d2615269c6617e42f8226ecbf 100644 (file)
@@ -3,6 +3,11 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
+*pypid-9999 (09 Dec 2011)
+  09 Dec 2011; W. Trevor King <wking@drexel.edu> pypid-9999.ebuild :
+  Add ~amd64 keyword, now that I'm testing pypid on an AMD C-60.
+  Also update to `git-2` eclass and EAPI 4.
+
 *pypid-9999 (27 Jul 2011)
   27 Jul 2011; W. Trevor King <wking@drexel.edu> ChangeLog, metadata.xml, pypid-9999.ebuild :
   - Created ebuild suite for Pypid.
index d50efc5efa6e2214820af4437210e6e3b9e85d83..83d3a5ddab0a029a66915da5ef71a748c62f8666 100644 (file)
@@ -1,3 +1,3 @@
-EBUILD pypid-9999.ebuild 992 RMD160 283aa5be3f8af7c5ff922e072683fc10bb113fa0 SHA1 4340ad27c7ca6a7612451623234a58a54710aa0f SHA256 596f8617328701975d4809b3de7d997d90dad7d120bd044cc3f272d385abac6d
-MISC ChangeLog 689 RMD160 3a386b334c2731092c1c0a8ee23655488d77746b SHA1 ed6e65e04750c748ef8b7ae59ec1536b2892910c SHA256 84cafc4ba4e8321f2ad27579c31938b5314a73156011fa792dd8ce59d2f38758
+EBUILD pypid-9999.ebuild 987 RMD160 e49826eeee631131035f94caafd49d223412f58f SHA1 76008e48e28eb019819c1161b4eb20a791e756c2 SHA256 ae018702767b4ab65eea373f1e54b4e0103408ac15c698daa9e06ac809858e8b
+MISC ChangeLog 894 RMD160 f694d98468514b0fcc547616def69347cddcb2d2 SHA1 51db72593c363ed0b1e257922522a2fcbaf82345 SHA256 fc6fba3423302eb459918a250165050b852562bce607012c6b8880cae15544aa
 MISC metadata.xml 247 RMD160 6735f3a5dd2d7a2b70589d1693f35d54291b7147 SHA1 c015969fe50967340dd050a44cb9f8a30b5e34a5 SHA256 9e65060e5f9d0a50d28c7a69d9c27fed6c3037fdd3e420cc276627fde2794f72
index 94ed3231d432e95d322954ccf04863111e404461..5967d7eeea209c56d5dd082889b6fc7367655139 100644 (file)
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI="3"
+EAPI="4"
+
 PYTHON_DEPEND="2:2.7"
 SUPPORT_PYTHON_ABIS="1"
 RESTRICT_PYTHON_ABIS="3.*"
@@ -10,7 +11,7 @@ RESTRICT_PYTHON_ABIS="3.*"
 inherit eutils distutils
 
 if [[ ${PV} == "9999" ]] ; then
-       inherit git
+       inherit git-2
        EGIT_REPO_URI="http://physics.drexel.edu/~wking/code/git/${PN}.git"
        SRC_URI=""
 else
@@ -22,7 +23,7 @@ HOMEPAGE="http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/${PN}/"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~x86"
+KEYWORDS="~x86 ~amd64"
 IUSE="modbus serial"
 
 RDEPEND="dev-python/numpy
@@ -35,7 +36,7 @@ DEPEND="${RDEPEND}"
 
 src_unpack() {
        if [[ ${PV} == "9999" ]] ; then
-               git_src_unpack
+               git-2_src_unpack
        else
                unpack ${A}
        fi
@@ -45,6 +46,5 @@ src_unpack() {
 src_install() {
        distutils_src_install
        dodoc README
-       docinto examples
-       dodoc examples/*
+       dodoc -r examples
 }