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 426CB138334 for ; Thu, 28 Jun 2018 12:20:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6567CE087D; Thu, 28 Jun 2018 12:20:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37727E087C for ; Thu, 28 Jun 2018 12:20:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D2CE8335CB5 for ; Thu, 28 Jun 2018 12:20:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A444B34E for ; Thu, 28 Jun 2018 12:20:39 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1530188403.ad1b6b5b7a5199c8eec386d59316263c32794581.alexxy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mmtf-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mmtf-python/Manifest dev-python/mmtf-python/metadata.xml dev-python/mmtf-python/mmtf-python-1.1.2.ebuild X-VCS-Directories: dev-python/mmtf-python/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: ad1b6b5b7a5199c8eec386d59316263c32794581 X-VCS-Branch: master Date: Thu, 28 Jun 2018 12:20:39 +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: 4ab692de-5994-4aa4-ad1f-c5a037599d3c X-Archives-Hash: 9c7c9a2de905a802d7e1bd410e75f60d commit: ad1b6b5b7a5199c8eec386d59316263c32794581 Author: Alexey Shvetsov gentoo org> AuthorDate: Thu Jun 28 12:09:13 2018 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Thu Jun 28 12:20:03 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad1b6b5b dev-python/mmtf-python: initial import Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/mmtf-python/Manifest | 1 + dev-python/mmtf-python/metadata.xml | 15 +++++++++++++++ dev-python/mmtf-python/mmtf-python-1.1.2.ebuild | 19 +++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/dev-python/mmtf-python/Manifest b/dev-python/mmtf-python/Manifest new file mode 100644 index 00000000000..97c7c7aea85 --- /dev/null +++ b/dev-python/mmtf-python/Manifest @@ -0,0 +1 @@ +DIST mmtf-python-1.1.2.tar.gz 46309 BLAKE2B b21d53f7cfbdf6f6bd4f0f3ac31a846e83ce0ee98faf77fa8d06de7520c4aa64a259e8b43a744a440a6cf1a10ad461697334683364698a68222b690301bc5554 SHA512 92afcce48c2de186cbf9c2cb39c94c5df14ae0eb613862d41b674b7d2f338855ed81be23fb14d16d2dfc8d33415d3904537ef4a422e3a52b78d461b609e968ca diff --git a/dev-python/mmtf-python/metadata.xml b/dev-python/mmtf-python/metadata.xml new file mode 100644 index 00000000000..e4904232b6f --- /dev/null +++ b/dev-python/mmtf-python/metadata.xml @@ -0,0 +1,15 @@ + + + + + python@gentoo.org + Python + + + alexxy@gentoo.org + Alexey Shvetsov + + + rcsb/mmtf-python + + diff --git a/dev-python/mmtf-python/mmtf-python-1.1.2.ebuild b/dev-python/mmtf-python/mmtf-python-1.1.2.ebuild new file mode 100644 index 00000000000..ed4888bc9a1 --- /dev/null +++ b/dev-python/mmtf-python/mmtf-python-1.1.2.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) +inherit distutils-r1 + +DESCRIPTION="The python implementation of the MMTF API, decoder and encoder" +HOMEPAGE="http://mmtf.rcsb.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-python/msgpack[${PYTHON_USEDEP}]"