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 19C5059CAF for ; Tue, 5 Apr 2016 12:09:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 188C8E0882; Tue, 5 Apr 2016 12:09:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6AE4E0882 for ; Tue, 5 Apr 2016 12:09:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7FCDC340DDA for ; Tue, 5 Apr 2016 12:09:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4619881 for ; Tue, 5 Apr 2016 12:09:34 +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: <1459858167.175b033e9765f0ac0621f45de444f67770a05e35.dev-zero@gentoo> Subject: [gentoo-commits] dev/dev-zero:master commit in: dev-python/daemonize/ X-VCS-Repository: dev/dev-zero X-VCS-Files: dev-python/daemonize/Manifest dev-python/daemonize/daemonize-2.4.6.ebuild X-VCS-Directories: dev-python/daemonize/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: 175b033e9765f0ac0621f45de444f67770a05e35 X-VCS-Branch: master Date: Tue, 5 Apr 2016 12:09:34 +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: 459e32b0-79b5-4a07-a575-14617e81b89a X-Archives-Hash: 48cfbf8177755f1c91e1e7d8bfdc4a0d commit: 175b033e9765f0ac0621f45de444f67770a05e35 Author: Tiziano Müller gentoo org> AuthorDate: Tue Apr 5 12:09:27 2016 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Tue Apr 5 12:09:27 2016 +0000 URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=175b033e dev-python/daemonize: initial commit, required by errbot dev-python/daemonize/Manifest | 1 + dev-python/daemonize/daemonize-2.4.6.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-python/daemonize/Manifest b/dev-python/daemonize/Manifest new file mode 100644 index 0000000..455f113 --- /dev/null +++ b/dev-python/daemonize/Manifest @@ -0,0 +1 @@ +DIST daemonize-2.4.6.tar.gz 10090 SHA256 3d7959b5285bf0d4cd3ca6e68aa3bf68e8dca36e3a780b1f23219571612beb77 SHA512 77ea2e78f23834ac099e1852da272c19186cf97e49fd0df6e7abbdd406c77d5c9daec7be77a18171de55d9b11d6d32a2a18b41e6ec7f3f956392d868673b0ea9 WHIRLPOOL 31f3faa4b854bbb54d3911a5043435c4f4a9f39ad94003d5aa921f3797d0c5ff0eec82c34c465dc7ae855d57e5a9752bbd59fd30308415da08ae66fd5fcd7fd0 diff --git a/dev-python/daemonize/daemonize-2.4.6.ebuild b/dev-python/daemonize/daemonize-2.4.6.ebuild new file mode 100644 index 0000000..05ebe01 --- /dev/null +++ b/dev-python/daemonize/daemonize-2.4.6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="Library to enable your code run as a daemon process on Unix-like systems" +HOMEPAGE="https://github.com/thesharp/daemonize https://pypi.python.org/pypi/daemonize/" +SRC_URI="https://github.com/thesharp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +# ^^ package on pypi does not contain tests + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND="" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +python_test() { + nosetests -v || die "Testing failed with ${EPYTHON}" +}