From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E8B4C1393EA for ; Mon, 7 Apr 2014 10:10:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7A3DE0B63; Mon, 7 Apr 2014 10:10:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D84C1E0B63 for ; Mon, 7 Apr 2014 10:10:50 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 05C4B33FEFC for ; Mon, 7 Apr 2014 10:10:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 5CE431818D for ; Mon, 7 Apr 2014 10:10:47 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1394615070.609ce0e7f3971da2b5fad4bd9a97456318b118a8.dev-zero@gentoo> Subject: [gentoo-commits] dev/dev-zero:master commit in: dev-python/mwclient/ X-VCS-Repository: dev/dev-zero X-VCS-Files: dev-python/mwclient/Manifest dev-python/mwclient/mwclient-scm.ebuild X-VCS-Directories: dev-python/mwclient/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: 609ce0e7f3971da2b5fad4bd9a97456318b118a8 X-VCS-Branch: master Date: Mon, 7 Apr 2014 10:10:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9237d503-05e3-4453-9b2d-62e603668958 X-Archives-Hash: c8dc3049eeff744231b6f9f39c6e6f7b commit: 609ce0e7f3971da2b5fad4bd9a97456318b118a8 Author: Tiziano Müller gentoo org> AuthorDate: Wed Mar 12 09:04:30 2014 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Wed Mar 12 09:04:30 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=609ce0e7 Add DOCS, tested py3 support, failed. --- dev-python/mwclient/Manifest | 2 +- dev-python/mwclient/mwclient-scm.ebuild | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-python/mwclient/Manifest b/dev-python/mwclient/Manifest index bd657f1..5bf0eb3 100644 --- a/dev-python/mwclient/Manifest +++ b/dev-python/mwclient/Manifest @@ -1 +1 @@ -EBUILD mwclient-scm.ebuild 761 SHA256 71847f97066131980ceccf34348917615d179b58709ad0ae3878512e479c02ec SHA512 085b846ac1dc649041417f6e4fa83f6dfb4cf2470c931af9de756bcfa5508f4dbbb60c4ffb247c574ae6c519749ac5a5b9c0ac1c4a400ee27ba74c23b51f32bb WHIRLPOOL 6a2b1d6ef35068681b6cafb9a1c07c5759f324beaa5b562979dcbde90fd9ca2758c6feb90b53443ed2a9e98335667ed9bd6d92d243d3ebda43778339c4cd2050 +EBUILD mwclient-scm.ebuild 752 SHA256 1fcacecb36727ab439d795074bf4f5e7d83009195d4b080c3836951a077e7d9d SHA512 8de4300ae1af6bc2d870f7b82b8e3ff1ec6a6ea8855e8c0be2c6ea70e26e9087b129ca75a7502c9373ea101b79cb0ee283f80d1e5c1674c7abfd23a1a1ad7bae WHIRLPOOL 889580e8cf5beb7f66300ffd354314b217ef3fa2189ea8c0271abb854d10860e9362f16788fed7782b84a288d7b84b349b2287c9330dc05e4d53cb1c4e05ed9e diff --git a/dev-python/mwclient/mwclient-scm.ebuild b/dev-python/mwclient/mwclient-scm.ebuild index cf233c8..c25d189 100644 --- a/dev-python/mwclient/mwclient-scm.ebuild +++ b/dev-python/mwclient/mwclient-scm.ebuild @@ -4,7 +4,7 @@ EAPI=5 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) +PYTHON_COMPAT=( python{2_6,2_7} ) inherit distutils-r1 git-r3 @@ -21,10 +21,11 @@ RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] ${RDEPEND}" +DOCS=( README.rst {REFERENCE,RELEASE-NOTES}.md ) + python_prepare_all() { sed -i \ -e "/use_setuptools/d" \ - -e "s|\(license='MIT',\)|\1 use_2to3 = True,|" \ setup.py || die }