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 EA13E58975 for ; Tue, 2 Feb 2016 20:14:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9B0721C032; Tue, 2 Feb 2016 20:14:00 +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 6759921C032 for ; Tue, 2 Feb 2016 20:14:00 +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 7458F340E08 for ; Tue, 2 Feb 2016 20:13:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA38E8F2 for ; Tue, 2 Feb 2016 20:13:54 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1454425928.c3f265d8d81c6d1c58888391ae449077feb9c70b.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-gammu/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-gammu/Manifest dev-python/python-gammu/metadata.xml dev-python/python-gammu/python-gammu-2.5.ebuild X-VCS-Directories: dev-python/python-gammu/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: c3f265d8d81c6d1c58888391ae449077feb9c70b X-VCS-Branch: master Date: Tue, 2 Feb 2016 20:13:54 +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: 780bbe64-eafa-4432-bb73-9dff9e53fd09 X-Archives-Hash: 370e9aeec766cda8312cdcf41079d857 commit: c3f265d8d81c6d1c58888391ae449077feb9c70b Author: Louis Sautier gmail com> AuthorDate: Tue Feb 2 14:38:10 2016 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Tue Feb 2 15:12:08 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3f265d8 dev-python/python-gammu: provides Python support for gammu, fixes #566168 Package-Manager: portage-2.2.27 dev-python/python-gammu/Manifest | 1 + dev-python/python-gammu/metadata.xml | 20 ++++++++++++++ dev-python/python-gammu/python-gammu-2.5.ebuild | 36 +++++++++++++++++++++++++ 3 files changed, 57 insertions(+) diff --git a/dev-python/python-gammu/Manifest b/dev-python/python-gammu/Manifest new file mode 100644 index 0000000..5b8a5c1 --- /dev/null +++ b/dev-python/python-gammu/Manifest @@ -0,0 +1 @@ +DIST python-gammu-2.5.tar.gz 133090 SHA256 871e3450a26397d555c92926382edf0e6a58431fe53613563f5a313ad752ff88 SHA512 e61bb340546cf3f98c20ff5d4ef25ca05676b4dea91e02aeee2856f091ac12fbf07a597637f9562432e298bf9678ff4445d24d8cdf96274b735aa9754b364e58 WHIRLPOOL f2ec5af883de298d71f220eb319c9df8d496328db461ba9e501e4d4d7ce150bbf19f5a07a7560804e46b21e1d848244e932f9b8eb15a60b6cf5d9a86892e45bd diff --git a/dev-python/python-gammu/metadata.xml b/dev-python/python-gammu/metadata.xml new file mode 100644 index 0000000..d72e9d8 --- /dev/null +++ b/dev-python/python-gammu/metadata.xml @@ -0,0 +1,20 @@ + + + + + Python bindings for Gammu + + + python-gammu + gammu/python-gammu + + + awilfox.gentoo@foxkit.us + Andrew Wilcox + Proxy (user) maintainer, bugs to be assigned to him + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/dev-python/python-gammu/python-gammu-2.5.ebuild b/dev-python/python-gammu/python-gammu-2.5.ebuild new file mode 100644 index 0000000..a2c1279 --- /dev/null +++ b/dev-python/python-gammu/python-gammu-2.5.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="Python bindings for Gammu" +HOMEPAGE="http://wammu.eu/python-gammu/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples test" + +RDEPEND=">=app-mobilephone/gammu-1.34.0" +DEPEND="${RDEPEND} + virtual/pkgconfig + test? ( + $(python_gen_impl_dep sqlite) + app-mobilephone/gammu[dbi] + )" + +DOCS=( AUTHORS NEWS.rst README.rst ) + +python_test() { + esetup.py test +} + +python_install_all() { + use examples && local EXAMPLES=( examples/. ) + distutils-r1_python_install_all +}