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 5567C1384B4 for ; Tue, 22 Dec 2015 05:31:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0AE4EE08D3; Tue, 22 Dec 2015 05:31:08 +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 A9A00E08D3 for ; Tue, 22 Dec 2015 05:31:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9D988340545 for ; Tue, 22 Dec 2015 05:31:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21309C7A for ; Tue, 22 Dec 2015 05:31:02 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1450762254.e0316949e47c8cc3031a5d0f3e0c433f94e84223.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pybookreader/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/pybookreader/pybookreader-0.5.0-r1.ebuild X-VCS-Directories: app-text/pybookreader/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e0316949e47c8cc3031a5d0f3e0c433f94e84223 X-VCS-Branch: master Date: Tue, 22 Dec 2015 05:31:02 +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: 0e8256f1-e2e4-4611-85e8-4fb452f140f6 X-Archives-Hash: a396d0d97c54247125455db5e165dfd3 commit: e0316949e47c8cc3031a5d0f3e0c433f94e84223 Author: Michał Górny gentoo org> AuthorDate: Tue Dec 22 05:30:44 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Dec 22 05:30:54 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0316949 app-text/pybookreader: Convert to distutils-r1 app-text/pybookreader/pybookreader-0.5.0-r1.ebuild | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/app-text/pybookreader/pybookreader-0.5.0-r1.ebuild b/app-text/pybookreader/pybookreader-0.5.0-r1.ebuild new file mode 100644 index 0000000..649f504 --- /dev/null +++ b/app-text/pybookreader/pybookreader-0.5.0-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +MY_P="PyBookReader-${PV}" + +DESCRIPTION="A book reader for .fb2 .html and plain text (possibly gzipped)" +HOMEPAGE="http://pybookreader.narod.ru/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/pygtk[${PYTHON_USEDEP}] + dev-libs/libxml2[python,${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}"