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 8D865138359 for ; Tue, 22 Sep 2020 20:43:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0260E0845; Tue, 22 Sep 2020 20:43:58 +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 A131FE0845 for ; Tue, 22 Sep 2020 20:43:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A9E5A340C76 for ; Tue, 22 Sep 2020 20:43:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A4762EC for ; Tue, 22 Sep 2020 20:43:56 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1600807412.fa4cc4e47fa3f3298a0362bbd0379c9df4a0a11a.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/hdf5storage/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/hdf5storage/hdf5storage-0.1.15_p1.ebuild dev-python/hdf5storage/hdf5storage-9999.ebuild X-VCS-Directories: dev-python/hdf5storage/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: fa4cc4e47fa3f3298a0362bbd0379c9df4a0a11a X-VCS-Branch: master Date: Tue, 22 Sep 2020 20:43:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f5ab6f53-bca2-4c5b-b398-52aee86e590b X-Archives-Hash: 53447713f2d5d3a475999dcf8a3e84d5 commit: fa4cc4e47fa3f3298a0362bbd0379c9df4a0a11a Author: Aisha Tammy aisha cc> AuthorDate: Tue Sep 22 20:41:55 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Tue Sep 22 20:43:32 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fa4cc4e4 dev-python/hdf5storage: version bump to 0.1.15 Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> .../hdf5storage/hdf5storage-0.1.15_p1.ebuild | 31 ++++++++++++++++++++++ dev-python/hdf5storage/hdf5storage-9999.ebuild | 25 ++++++++++++----- 2 files changed, 49 insertions(+), 7 deletions(-) diff --git a/dev-python/hdf5storage/hdf5storage-0.1.15_p1.ebuild b/dev-python/hdf5storage/hdf5storage-0.1.15_p1.ebuild new file mode 100644 index 000000000..844e22534 --- /dev/null +++ b/dev-python/hdf5storage/hdf5storage-0.1.15_p1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="Read/write Python types to/from HDF5 files, including MATLAB v7.3 MAT files" +HOMEPAGE="https://github.com/frejanordsiek/hdf5storage" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/frejanordsiek/hdf5storage" +else + COMMIT=09dfc5fb3a6a3f9c32c2479a896c7f14d3c8d830 + SRC_URI="https://github.com/frejanordsiek/hdf5storage/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}"/${PN}-${COMMIT} + KEYWORDS="~amd64" +fi + +LICENSE="BSD" +SLOT="0" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/h5py[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" + +distutils_enable_tests nose diff --git a/dev-python/hdf5storage/hdf5storage-9999.ebuild b/dev-python/hdf5storage/hdf5storage-9999.ebuild index 194a845ce..844e22534 100644 --- a/dev-python/hdf5storage/hdf5storage-9999.ebuild +++ b/dev-python/hdf5storage/hdf5storage-9999.ebuild @@ -1,14 +1,23 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{4,5} ) +EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) -inherit distutils-r1 git-r3 +inherit distutils-r1 DESCRIPTION="Read/write Python types to/from HDF5 files, including MATLAB v7.3 MAT files" HOMEPAGE="https://github.com/frejanordsiek/hdf5storage" -EGIT_REPO_URI="https://github.com/frejanordsiek/${PN}.git git://github.com/frejanordsiek/${PN}.git" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/frejanordsiek/hdf5storage" +else + COMMIT=09dfc5fb3a6a3f9c32c2479a896c7f14d3c8d830 + SRC_URI="https://github.com/frejanordsiek/hdf5storage/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}"/${PN}-${COMMIT} + KEYWORDS="~amd64" +fi LICENSE="BSD" SLOT="0" @@ -16,5 +25,7 @@ SLOT="0" RDEPEND=" dev-python/numpy[${PYTHON_USEDEP}] dev-python/h5py[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND}" \ No newline at end of file +" +DEPEND="${RDEPEND}" + +distutils_enable_tests nose