From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4907B139694 for ; Wed, 8 Mar 2017 15:57:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1065121C038; Wed, 8 Mar 2017 15:57:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E2ACF21C038 for ; Wed, 8 Mar 2017 15:57:02 +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 E2F6E3416B9 for ; Wed, 8 Mar 2017 15:57:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2583C6131 for ; Wed, 8 Mar 2017 15:57:00 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1488988606.4bf9be6de7a1290091d73453a1b9f151afe86ad2.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zstandard/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/zstandard/Manifest dev-python/zstandard/metadata.xml dev-python/zstandard/zstandard-0.7.0.ebuild X-VCS-Directories: dev-python/zstandard/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 4bf9be6de7a1290091d73453a1b9f151afe86ad2 X-VCS-Branch: master Date: Wed, 8 Mar 2017 15:57:00 +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: d560730e-ceab-49a2-a090-bca976cd1b9d X-Archives-Hash: 5fdf8fe51b6aa56b2dad9140e969bbd2 commit: 4bf9be6de7a1290091d73453a1b9f151afe86ad2 Author: Manuel Rüger gentoo org> AuthorDate: Wed Mar 8 15:56:46 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Wed Mar 8 15:56:46 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bf9be6d dev-python/zstandard: Initial version Package-Manager: Portage-2.3.4, Repoman-2.3.2 dev-python/zstandard/Manifest | 1 + dev-python/zstandard/metadata.xml | 11 +++++++++++ dev-python/zstandard/zstandard-0.7.0.ebuild | 20 ++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-python/zstandard/Manifest b/dev-python/zstandard/Manifest new file mode 100644 index 00000000000..14cea32f20e --- /dev/null +++ b/dev-python/zstandard/Manifest @@ -0,0 +1 @@ +DIST zstandard-0.7.0.tar.gz 427288 SHA256 29f2babe5828b257a793e077543150e64ab944b9f3cc071fb5cbb6892243645a SHA512 016a8142a504757beb99b681386e7d8ea81b91a3a10b44894fa16443c21b567fce1101283e1967a2895e504045d84173b512fe7144a6a962ef64a509fcd83a4a WHIRLPOOL 7a4f27201cc5a274e7e0e5f2b5c1836fdcf24474b78af8deba503b7e27add5f262762ac5f6a8eb8653a8123318eaceb2f94339a162dc2df5b62f2e9cf83b48a2 diff --git a/dev-python/zstandard/metadata.xml b/dev-python/zstandard/metadata.xml new file mode 100644 index 00000000000..eb66e157ec1 --- /dev/null +++ b/dev-python/zstandard/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + zstandard + + diff --git a/dev-python/zstandard/zstandard-0.7.0.ebuild b/dev-python/zstandard/zstandard-0.7.0.ebuild new file mode 100644 index 00000000000..49d2780b47d --- /dev/null +++ b/dev-python/zstandard/zstandard-0.7.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="Zstandard Bindings for Python" +HOMEPAGE="https://pypi.python.org/pypi/zstandard https://github.com/indygreg/python-zstandard" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64" + +RDEPEND="dev-python/cffi:=[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + ${RDEPEND}"