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 3AFFD1381F3 for ; Fri, 30 Aug 2013 16:58:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F93FE0D13; Fri, 30 Aug 2013 16:58:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1AF2E0D13 for ; Fri, 30 Aug 2013 16:58:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A1A5333EB97 for ; Fri, 30 Aug 2013 16:58:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 56928E468F for ; Fri, 30 Aug 2013 16:58:37 +0000 (UTC) From: "Jauhien Piatlicki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jauhien Piatlicki" Message-ID: <1377881897.d848d85e2f47131c17193d3f0b8c191446ee3c91.jauhien@gentoo> Subject: [gentoo-commits] proj/g-sorcery:master commit in: /, gs_pypi/ X-VCS-Repository: proj/g-sorcery X-VCS-Files: gs_pypi/ebuild.py setup.py X-VCS-Directories: / gs_pypi/ X-VCS-Committer: jauhien X-VCS-Committer-Name: Jauhien Piatlicki X-VCS-Revision: d848d85e2f47131c17193d3f0b8c191446ee3c91 X-VCS-Branch: master Date: Fri, 30 Aug 2013 16:58:37 +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: 64b56b40-ebbc-4ba1-b735-2b2cf74b53de X-Archives-Hash: f1edfb5f313e4ca6e965f20fd9f64eb9 commit: d848d85e2f47131c17193d3f0b8c191446ee3c91 Author: Jauhien Piatlicki (jauhien) gmail com> AuthorDate: Fri Aug 30 16:58:17 2013 +0000 Commit: Jauhien Piatlicki gmail com> CommitDate: Fri Aug 30 16:58:17 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/g-sorcery.git;a=commit;h=d848d85e fixes --- gs_pypi/ebuild.py | 6 +++--- setup.py | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/gs_pypi/ebuild.py b/gs_pypi/ebuild.py index 08ca188..7f8fb5f 100644 --- a/gs_pypi/ebuild.py +++ b/gs_pypi/ebuild.py @@ -24,8 +24,8 @@ class PypiEbuildWithoutDigestGenerator(DefaultEbuildGenerator): def __init__(self, package_db): vars_before_inherit = \ - [("repo_uri", '"http://pypi.python.org/packages/source/${PN:0:1}/${PN}/"'), - ("sourcefile", '"${P}.tar.gz"')] + [("repo_uri", 'http://pypi.python.org/packages/source/${PN:0:1}/${PN}/'), + ("sourcefile", '${P}.tar.gz')] inherit = ["gs-pypi"] @@ -49,7 +49,7 @@ class PypiEbuildWithDigestGenerator(DefaultEbuildGenerator): vars_after_description = \ ["homepage", - ("src_uri", '"http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"')] + ("src_uri", 'http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz')] vars_after_keywords = \ [] diff --git a/setup.py b/setup.py index e8a43e4..a447f82 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,9 @@ setup(name = 'g-sorcery', author = 'Jauhien Piatlicki', author_email = 'piatlicki@gmail.com', packages = ['g_sorcery', 'gs_db_tool', 'gs_elpa', 'gs_ctan', 'gs_pypi'], - package_data = {'gs_elpa': ['data/*'], + package_data = {'g_sorcery': ['data/*'], + 'gs_pypy': ['data/*'], + 'gs_elpa': ['data/*'], 'gs_ctan': ['data/*']}, scripts = ['bin/g-sorcery', 'bin/gs-db-tool', 'bin/gs-elpa', 'bin/gs-ctan', 'bin/gs-pypi-generate-db', 'bin/gs-pypi'],