diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-02-06 14:32:25 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-02-06 14:32:25 +0000 |
commit | a6f5b012066b893f5d98bc0f07e1d091b6125f5a (patch) | |
tree | c0e0d7a959cb14752bd76bfb5de1e8090d5793b2 /dev-python/elixir | |
parent | Delete older ebuild. (diff) | |
download | historical-a6f5b012066b893f5d98bc0f07e1d091b6125f5a.tar.gz historical-a6f5b012066b893f5d98bc0f07e1d091b6125f5a.tar.bz2 historical-a6f5b012066b893f5d98bc0f07e1d091b6125f5a.zip |
Use $(PYTHON -f) instead of ${python}.
Package-Manager: portage-15324-svn/cvs/Linux x86_64
Diffstat (limited to 'dev-python/elixir')
-rw-r--r-- | dev-python/elixir/Manifest | 4 | ||||
-rw-r--r-- | dev-python/elixir/elixir-0.7.1.ebuild | 10 |
2 files changed, 6 insertions, 8 deletions
diff --git a/dev-python/elixir/Manifest b/dev-python/elixir/Manifest index 79082bc37c0d..27fc696d85d5 100644 --- a/dev-python/elixir/Manifest +++ b/dev-python/elixir/Manifest @@ -1,6 +1,4 @@ -DIST Elixir-0.6.1.tar.gz 111188 RMD160 317d906c56f9175f5143d7743f89f5e0c673129c SHA1 7ba8ae5a8cb3a70201ed97aca3a3acf89255c6a2 SHA256 5323ff827a0700e323deaed5815b78b007cc7c8fa87201b1093046b4e04fbace DIST Elixir-0.7.1.tar.gz 47110 RMD160 a52872aace0db06864ec8ee14263988a9e5886da SHA1 22a1fbdc0163532b7cfbbd54c074a0a5ccf7d060 SHA256 a7ef437f25b544e4f74fb3236fc43cd25f5d6feb6037dd7c66931046d75439e9 -EBUILD elixir-0.6.1.ebuild 1338 RMD160 03e6c050c7b418de3a77e6610544a85657feb84c SHA1 1d1b7aa8108e4cc2d3f38baa0460553193d568b7 SHA256 d7ce7e6efa35125f5423640230131c880dc99b17ecaa4a129d8a7fde30b255dd -EBUILD elixir-0.7.1.ebuild 1259 RMD160 75b641954aa1f750514a42c91d721f05be261c35 SHA1 7a128a6311d25f2d850b454fe4a582056c13d1b7 SHA256 5767d929bf2bd81ad9bbc516cf45719db6b6fd6d0a0404020fbf3497e5bbe8e5 +EBUILD elixir-0.7.1.ebuild 1266 RMD160 3e51543bc60852558365e69623cf3a19e559f874 SHA1 714afc8627d479b412c625f7fc1b265a95a9c2f4 SHA256 dbb30c93045eb60e7396a6b4551c6fc29a33cdaf5061f847cbc4f8b8e7205e08 MISC ChangeLog 1027 RMD160 b354880b46678a5f2abbebf5334e50dcfd6bb652 SHA1 b4e53b3a3d4440bb7dc5b4bd0314a3ddc5d580c7 SHA256 cdd642cec3ca3ffe59cf63b168ee17fc556a2c9c955ab18dedb73991d3646fe5 MISC metadata.xml 159 RMD160 900a8c55d7a7d2f6312594769aaf941bf9e99c7f SHA1 c8e604d56dae898258b5254d78cfeac0b981e288 SHA256 9f01104d3484792496faff4805eed0ecea2352a897151f3397d49a13800037b4 diff --git a/dev-python/elixir/elixir-0.7.1.ebuild b/dev-python/elixir/elixir-0.7.1.ebuild index f964751669f8..52322d2d07dd 100644 --- a/dev-python/elixir/elixir-0.7.1.ebuild +++ b/dev-python/elixir/elixir-0.7.1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/elixir/elixir-0.7.1.ebuild,v 1.1 2009/12/21 06:37:53 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/elixir/elixir-0.7.1.ebuild,v 1.2 2010/02/06 14:32:25 arfrever Exp $ EAPI="2" +PYTHON_DEPEND="2" SUPPORT_PYTHON_ABIS="1" inherit distutils @@ -36,10 +37,9 @@ src_compile() { distutils_src_compile if use doc; then - python_version einfo "Generation of documentation" - "${python}" setup.py addcommand -p buildutils.pudge_command - PYTHONPATH=. "${python}" setup.py pudge || die "Generation of documentation failed" + "$(PYTHON -f)" setup.py addcommand -p buildutils.pudge_command + PYTHONPATH=. "$(PYTHON -f)" setup.py pudge || die "Generation of documentation failed" fi } |