diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-02-19 13:35:24 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-02-19 13:35:24 +0000 |
commit | cea2c319153144718eacb795707e71a8ee32f464 (patch) | |
tree | e1ef82fce27e204d90527597a3bf19fbda0deee3 /net-libs/telepathy-farsight | |
parent | Maintenance release. Remove old versions. (diff) | |
download | historical-cea2c319153144718eacb795707e71a8ee32f464.tar.gz historical-cea2c319153144718eacb795707e71a8ee32f464.tar.bz2 historical-cea2c319153144718eacb795707e71a8ee32f464.zip |
Fix dependencies. Call functions from python.eclass only with USE="python".
Package-Manager: portage-2.2.0_alpha24_p11/cvs/Linux x86_64
Diffstat (limited to 'net-libs/telepathy-farsight')
-rw-r--r-- | net-libs/telepathy-farsight/Manifest | 12 | ||||
-rw-r--r-- | net-libs/telepathy-farsight/telepathy-farsight-0.0.15.ebuild | 13 |
2 files changed, 10 insertions, 15 deletions
diff --git a/net-libs/telepathy-farsight/Manifest b/net-libs/telepathy-farsight/Manifest index cd0a87a63b14..e3f600d999ce 100644 --- a/net-libs/telepathy-farsight/Manifest +++ b/net-libs/telepathy-farsight/Manifest @@ -1,16 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - DIST telepathy-farsight-0.0.11.tar.gz 580406 RMD160 bb2c18852a1b8c539b02db51a423938d97defc7c SHA1 c7a9548b4e4b0f7645fec8fe97c5f6e4f6066797 SHA256 8a3e9dee0308ef83229906de29155bf9b9e4564e9b3fa322d7b9d3a12f09ea96 DIST telepathy-farsight-0.0.15.tar.gz 555835 RMD160 376da9dd5d1d34121671e16b9a7acd0ee751d718 SHA1 20217842746c0507f2f1fe42a6bd613422a738cf SHA256 3dc3d9cdb43fb9ef772d16917e50e3cc95f71b1585d26d740f3148f4fdb6eb0f EBUILD telepathy-farsight-0.0.11.ebuild 917 RMD160 da683d53b108398a895ab084ebcaf5de3c75b228 SHA1 44ff6f556ce5d005c3633e1114df4e763d7e0d5f SHA256 79973a904ed93a17c7a2a77334a4388124115d31f7e48ae69f85ac77e02744de -EBUILD telepathy-farsight-0.0.15.ebuild 1061 RMD160 1bb54bee7e25ba32ce25ea61beaf1139338103d2 SHA1 1d2e1d426f2a295bc6b48447570f1b517280e981 SHA256 9321b4d949528f830cb8aabc5a6477f879de64276928b48f07f672c7c206fe27 +EBUILD telepathy-farsight-0.0.15.ebuild 1147 RMD160 3a8629e8ada67c52cbe2efcbcd00e1b2ead97da0 SHA1 7265f4eba4e806ab3db315693d59b8dcc9588afe SHA256 3c242e9a9e0990f9388e5a75a2e5275eaca63df573f7c866d785f2854e798591 MISC ChangeLog 2485 RMD160 266c5edfca4457ef8a3b47a6db02bdf9e65b80d7 SHA1 7391a02807a4d569417496881201a2c077d201c7 SHA256 87e35e57e06bd3ed1f1a0bea30283558c6bb8ceccadc5f58d347018def688b1e MISC metadata.xml 458 RMD160 c91b30a9078edb28e1d1549f778c8accf4da945e SHA1 ffc41b2aca884683fd4dd19dadbcfe892b82ef6c SHA256 b5f69f979f51a8e63a1c5b23462b0ef8ff971ff3e295836233274eb12209e7e7 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2.0.16 (GNU/Linux) - -iEYEARECAAYFAk1fqHwACgkQCaWpQKGI+9TvVQCfWYOqybuIDB0D9136rYwoG9H3 -PlgAnAidNTUt9XcT8ypydb1gPPZ6xPhs -=Uvg/ ------END PGP SIGNATURE----- diff --git a/net-libs/telepathy-farsight/telepathy-farsight-0.0.15.ebuild b/net-libs/telepathy-farsight/telepathy-farsight-0.0.15.ebuild index 5cc5895a53c4..c92937cc1f23 100644 --- a/net-libs/telepathy-farsight/telepathy-farsight-0.0.15.ebuild +++ b/net-libs/telepathy-farsight/telepathy-farsight-0.0.15.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farsight/telepathy-farsight-0.0.15.ebuild,v 1.2 2011/02/19 11:24:38 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farsight/telepathy-farsight-0.0.15.ebuild,v 1.3 2011/02/19 13:35:24 arfrever Exp $ EAPI="3" -PYTHON_DEPEND="2" +PYTHON_DEPEND="python? 2:2.6" inherit python @@ -28,11 +28,16 @@ RDEPEND=">=dev-libs/glib-2.16:2 DEPEND="${RDEPEND}" pkg_setup() { - python_set_active_version 2 + if use python; then + python_set_active_version 2 + python_pkg_setup + fi } src_prepare() { - python_convert_shebangs -r 2 . + if use python; then + python_convert_shebangs -r 2 . + fi } src_configure() { |