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 E6E5313829C for ; Wed, 8 Jun 2016 19:02:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5724142E4; Wed, 8 Jun 2016 19:02:12 +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 B5F2014307 for ; Wed, 8 Jun 2016 19:02:11 +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 66D63340B6E for ; Wed, 8 Jun 2016 19:02:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DADC8342 for ; Wed, 8 Jun 2016 19:02:06 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1465412506.0b9d1ddd303ea708a02833ef284b081797c07b09.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/structlog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/structlog/Manifest dev-python/structlog/metadata.xml dev-python/structlog/structlog-16.1.0.ebuild X-VCS-Directories: dev-python/structlog/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 0b9d1ddd303ea708a02833ef284b081797c07b09 X-VCS-Branch: master Date: Wed, 8 Jun 2016 19:02:06 +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: 261fe143-b062-498c-a443-062b50c545b7 X-Archives-Hash: 4d29b01abcfcbf1cc92ed2456154951e commit: 0b9d1ddd303ea708a02833ef284b081797c07b09 Author: Austin English gentoo org> AuthorDate: Wed Jun 8 19:01:46 2016 +0000 Commit: Austin English gentoo org> CommitDate: Wed Jun 8 19:01:46 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b9d1ddd dev-python/structlog: add initial 16.1.0 ebuild Package-Manager: portage-2.2.28 dev-python/structlog/Manifest | 1 + dev-python/structlog/metadata.xml | 15 +++++++++++++++ dev-python/structlog/structlog-16.1.0.ebuild | 18 ++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/dev-python/structlog/Manifest b/dev-python/structlog/Manifest new file mode 100644 index 0000000..84e3ced --- /dev/null +++ b/dev-python/structlog/Manifest @@ -0,0 +1 @@ +DIST structlog-16.1.0.tar.gz 150604 SHA256 46883e8a48918f18ab99c6413e166dc544acd1ad8bba659d152ac6e82c81c2ca SHA512 eafa89516b99adb02527d0b374f12b438e83a961f08cf42aa10a7196ec81df6ad5492772ae7c52747ac926d8f5a7ca8d89cc12f4dc6d37d21b9935f009894a37 WHIRLPOOL c47376833046c89060cb5a4fdc63d1613d52ce920a8060fb5a736141abd61feb1ce7493334b7099fbc86fc007cf8472b5e2349801b4066bf203ae7f4bf385d6d diff --git a/dev-python/structlog/metadata.xml b/dev-python/structlog/metadata.xml new file mode 100644 index 0000000..f04762c --- /dev/null +++ b/dev-python/structlog/metadata.xml @@ -0,0 +1,15 @@ + + + + + wizardedit@gentoo.org + Austin English + + + Structured Logging for Python + + + structlog + hynek/structlog + + diff --git a/dev-python/structlog/structlog-16.1.0.ebuild b/dev-python/structlog/structlog-16.1.0.ebuild new file mode 100644 index 0000000..549813d --- /dev/null +++ b/dev-python/structlog/structlog-16.1.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=(python2_7 python3_{4,5} pypy) +inherit distutils-r1 + +DESCRIPTION="Structured Logging for Python" +HOMEPAGE="http://www.structlog.org/en/stable/" +SRC_URI="https://github.com/hynek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0 MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}"