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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3806515808B for ; Sun, 29 Sep 2024 13:33:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C6C4E2A14; Sun, 29 Sep 2024 13:33:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2D326E2A14 for ; Sun, 29 Sep 2024 13:33:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 241D03431FA for ; Sun, 29 Sep 2024 13:33:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C39B1EF3 for ; Sun, 29 Sep 2024 13:33:41 +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: <1727616807.9fe55c139ea0af511852aba3f3d764d8e9263b50.alexxy@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/xopen/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/xopen/metadata.xml dev-python/xopen/xopen-2.0.2.ebuild X-VCS-Directories: dev-python/xopen/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 9fe55c139ea0af511852aba3f3d764d8e9263b50 X-VCS-Branch: master Date: Sun, 29 Sep 2024 13:33:41 +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: 52b1f3bd-ee30-4c7c-83f7-892a86a6e64b X-Archives-Hash: 69b2a899034f81c0d3366c1d7c8dd7ee commit: 9fe55c139ea0af511852aba3f3d764d8e9263b50 Author: Alexey Shvetsov gentoo org> AuthorDate: Sun Sep 29 13:23:41 2024 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Sun Sep 29 13:33:27 2024 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=9fe55c13 dev-python/xopen: new package, add 2.0.2 Signed-off-by: Alexey Shvetsov gentoo.org> dev-python/xopen/metadata.xml | 12 ++++++++++++ dev-python/xopen/xopen-2.0.2.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/dev-python/xopen/metadata.xml b/dev-python/xopen/metadata.xml new file mode 100644 index 000000000..9d5d13024 --- /dev/null +++ b/dev-python/xopen/metadata.xml @@ -0,0 +1,12 @@ + + + + + sci@gentoo.org + Gentoo Science + + + Xopen + marcelm/xopen + + diff --git a/dev-python/xopen/xopen-2.0.2.ebuild b/dev-python/xopen/xopen-2.0.2.ebuild new file mode 100644 index 000000000..3e94dcbb3 --- /dev/null +++ b/dev-python/xopen/xopen-2.0.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..13} ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 pypi + +DESCRIPTION="Open compressed files transparently" +HOMEPAGE="https://github.com/marcelm/xopen/" +SRC_URI="$(pypi_sdist_url "${PN^}" "${PV}")" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="test" +DEPEND=" + dev-python/isal[${PYTHON_USEDEP}] + sys-libs/zlib-ng +" +RDEPEND=" + ${DEPEND} + test? ( dev-python/pytest ) +" +distutils_enable_tests pytest