]> Pileus Git - ~andy/sunrise/commitdiff
x11-misc/pymonitorix: Corrected for multiple PyABI installation
authorJustin Lecher <jlec@gentoo.org>
Fri, 29 Apr 2011 08:31:32 +0000 (08:31 +0000)
committerJustin Lecher <jlec@gentoo.org>
Fri, 29 Apr 2011 08:31:32 +0000 (08:31 +0000)
svn path=/sunrise/; revision=11918

x11-misc/pymonitorix/ChangeLog
x11-misc/pymonitorix/Manifest
x11-misc/pymonitorix/pymonitorix-0.1.0.ebuild

index 04fcd99a69d8efb500a6d2b84977741769a34bc3..727824ae5e3df389d6eb7fa12c533edb3da64fc3 100644 (file)
@@ -1,7 +1,10 @@
 # ChangeLog for x11-misc/pymonitorix
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  29 Apr 2011; Justin Lecher <jlec@gentoo.org> pymonitorix-0.1.0.ebuild:
+  Corrected for multiple PyABI installation
+
   13 Sep 2009; Markus Rennings (mren) <mren@mrmx.de>
   +pymonitorix-0.1.0.ebuild, +files/config.py, +metadata.xml:
   initial commit, new ebuild for bug 284627
index c15464f3d48f13e5f67ae2e352594a5333188c87..2337f3a27dda09e48efdedde9e1e5bae684746f9 100644 (file)
@@ -1,5 +1,5 @@
 AUX config.py 21 RMD160 a929545018742f6d00539d6e160009df270dda48 SHA1 dfb6fdd37da74a31e0208f71ace51afe48ae8bf6 SHA256 7bbeb0652aa170f0a6dc535fff0a38a7a1051753cc884c2506c86363ef83e089
 DIST pymonitorix-0.1.0.tar.gz 26540 RMD160 f6012fe8886097fcfce00d371e683e70d9ea1804 SHA1 a865d172b1cbe287d15ad3f3e070b0b661be03fe SHA256 50bcb301ebc2d8c3a24a7776a965a1e10cab334266fe72097cc782f610a2fd54
-EBUILD pymonitorix-0.1.0.ebuild 660 RMD160 e57f3ce0a6d42e08084154524109e6700dd00dbb SHA1 212e489ad8bf9a0bcf45d4908c64a82f5c182a83 SHA256 d11724fed46edaed09bd7ec82fb3f0e20f98821333bdd3fc4e06e220aee31205
-MISC ChangeLog 281 RMD160 6b3a2ed930ed1cfec4b3c8566d7971c7bc5f8e47 SHA1 594a3b6a8313b5de6522d7c8e42f31248432c6b5 SHA256 b730ca5fc497f0b58ac261ff3c4b8a0d7a9fe23150aeabf0a703f0ef313eb1e7
+EBUILD pymonitorix-0.1.0.ebuild 801 RMD160 1902f2c2846904694d866392240da3922c08d8b3 SHA1 f556754ccfa513dcd3e033d79ec3f7fdb1f332bf SHA256 4e027c22040e2c2881cfcca9f9f753462b546a78fe3ec8e50899eab7867ec43c
+MISC ChangeLog 399 RMD160 6d9356542743efedac5bb6c72f68a7897110f29e SHA1 db582075b19a1163f3a7b93b7fd94542dd08c3c4 SHA256 bd7ffe8a984b14ce02412ac40fa64d16b251c4a60c892de209660156ef076505
 MISC metadata.xml 229 RMD160 f0f6417bec31ce8baba6d476664f7210c8c84c98 SHA1 e5f94f5caadc6f843fc90bb7959570cd503676fd SHA256 3b08fca3c878bdfc4e7639f477dd542d55a4ab5dce39a475e82633071d13eb3f
index 702ddc78bb1530768c7bd56dd5c57cc2659b9b65..f4e710a498c70ff6a4723c067c9275e048c9af49 100644 (file)
@@ -1,7 +1,13 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
+EAPI="3"
+
+PYTHON_DEPEND="2"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
+
 inherit distutils
 
 DESCRIPTION="Panel applet for a local or remote monitorix installation"
@@ -18,8 +24,11 @@ RDEPEND="dev-python/pygtk"
 src_install() {
        distutils_src_install
 
-       insinto "$(python_get_sitedir)/${PN}"
-       doins "${FILESDIR}/config.py" || die "doins failed"
+       installation() {
+               insinto "$(python_get_sitedir)/${PN}"
+               doins "${FILESDIR}/config.py" || die "doins failed"
+       }
+       python_execute_function installation
 }
 
 pkg_postinst() {