diff options
author | 2009-12-23 23:36:24 +0000 | |
---|---|---|
committer | 2009-12-23 23:36:24 +0000 | |
commit | d3f8805a49aaeb89ecc2f3127d56aea16444cf3f (patch) | |
tree | 75edd7c3888769f5257473ba5491afa4b6d61021 /dev-python/pycrypto | |
parent | Version bump. Translation updates. (diff) | |
download | historical-d3f8805a49aaeb89ecc2f3127d56aea16444cf3f.tar.gz historical-d3f8805a49aaeb89ecc2f3127d56aea16444cf3f.tar.bz2 historical-d3f8805a49aaeb89ecc2f3127d56aea16444cf3f.zip |
Simplify generation of documentation.
Package-Manager: portage-15134-svn/cvs/Linux x86_64
Diffstat (limited to 'dev-python/pycrypto')
-rw-r--r-- | dev-python/pycrypto/Manifest | 2 | ||||
-rw-r--r-- | dev-python/pycrypto/pycrypto-2.1.0.ebuild | 12 |
2 files changed, 3 insertions, 11 deletions
diff --git a/dev-python/pycrypto/Manifest b/dev-python/pycrypto/Manifest index dd810b048c63..da67dc6fd152 100644 --- a/dev-python/pycrypto/Manifest +++ b/dev-python/pycrypto/Manifest @@ -15,7 +15,7 @@ EBUILD pycrypto-2.0.1-r5.ebuild 1501 RMD160 23fcf75215bacac43de0e254d216768a14ac EBUILD pycrypto-2.0.1-r6.ebuild 1532 RMD160 b96b870eceb138401f61bba45ef8021366da2e1c SHA1 d63f0abf22a9d3f59332e73a33fa3e1b03e7e5dc SHA256 d9fe3eac30683401eae64384b52653926c57c57945ad12ca59aba516e8fc5187 EBUILD pycrypto-2.0.1-r7.ebuild 1628 RMD160 003756f506596bedd5cc76142b84e26c38221e34 SHA1 52692ec4cd6e0c8b50fd48ee50e40ce31ae4eac7 SHA256 4e9a1a631ef9e9c8c7f4e5ebcc0ad0e6ec443abcc2ac8b468dc71d4ccd037863 EBUILD pycrypto-2.0.1-r8.ebuild 2052 RMD160 84bd582455c182c9f4fb642496d74d3e511fa0ea SHA1 6c301fe518051562c44d37f0fb8785d613514f30 SHA256 b36ab869b484ee46ec95acf02b21a7bf7d6ed0ae96cd77a43011d554880a07e1 -EBUILD pycrypto-2.1.0.ebuild 2090 RMD160 172a188e465db97d4de689b661fb8372617dbb8d SHA1 d5335d60e8f5eb7dc68f9656024dc712fcef8be2 SHA256 748aea80318974fa38d11e0e0d14f3c6f0f393a29e2e5fe284f6cf6f3a847cb7 +EBUILD pycrypto-2.1.0.ebuild 1839 RMD160 eef405f6394ce0a608a8636f99afd051b57874ca SHA1 3bee58f1b697243e098d9f4031e81df4d45a9d9e SHA256 63e9c6c7699a3f8466a7839ba8b2801339b7d89ce439ae2399fbd8c97ab1a3ec EBUILD pycrypto-2.1.0_beta1.ebuild 2128 RMD160 96445fdbc3f7a53ca7466b8bf7cff525f81f505a SHA1 6fe85b9b5bd19235929daa186fd5e00776de14e6 SHA256 2cca9b5bf1d6f8b9742c884fb45f7ec19e9e365eecd8b8c517cfd630eb2f688f MISC ChangeLog 11163 RMD160 976db67f4226ecf3e6edaec94e061e1d6f318e58 SHA1 d1a6ce8ec3b84ed129a1dc8d8942d6355f1a6a46 SHA256 1748e6679039fc7f078e79be5a90605efb06a954a153ed9d60a515759b0819e6 MISC metadata.xml 1774 RMD160 b0aeda4d69c1dc4ec798f05f617a2d0ddf8c29ab SHA1 00da4a85672688868003fecd52b3a9497a3c433c SHA256 b4fe5bcbed977469f626a33c8b9c16d860e53e16b02f78ce931f6afa67c98ac2 diff --git a/dev-python/pycrypto/pycrypto-2.1.0.ebuild b/dev-python/pycrypto/pycrypto-2.1.0.ebuild index ef656ab9233c..89406231f2a4 100644 --- a/dev-python/pycrypto/pycrypto-2.1.0.ebuild +++ b/dev-python/pycrypto/pycrypto-2.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.1.0.ebuild,v 1.1 2009/12/13 21:29:27 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.1.0.ebuild,v 1.2 2009/12/23 23:36:24 arfrever Exp $ EAPI="2" SUPPORT_PYTHON_ABIS="1" @@ -46,15 +46,7 @@ src_compile() { if use doc; then rst2html.py Doc/pycrypt.rst > Doc/index.html - # Build documentation only once. - documentation_built="0" - generate_documentation() { - [[ "${documentation_built}" == "1" ]] && return - PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed" - documentation_built="1" - } - python_execute_function -q generate_documentation - unset documentation_built + PYTHONPATH="$(ls -d build-$(PYTHON -A -f)/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed" fi } |