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 A11A4158086 for ; Sun, 10 Oct 2021 06:45:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA4ABE083E; Sun, 10 Oct 2021 06:45:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D33AEE083E for ; Sun, 10 Oct 2021 06:45:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EAC65342EA9 for ; Sun, 10 Oct 2021 06:45:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1310914C for ; Sun, 10 Oct 2021 06:45:26 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1633848321.9ff0c7487bad3e2185935ec1ee0de729f25eaabd.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-cstruct/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-cstruct/Manifest dev-python/python-cstruct/python-cstruct-2.1.ebuild X-VCS-Directories: dev-python/python-cstruct/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9ff0c7487bad3e2185935ec1ee0de729f25eaabd X-VCS-Branch: master Date: Sun, 10 Oct 2021 06:45:26 +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: d67a793f-0640-4fbe-889e-8ecca921690d X-Archives-Hash: 0170cb012c1dc71004c9440b43967c3f commit: 9ff0c7487bad3e2185935ec1ee0de729f25eaabd Author: Michał Górny gentoo org> AuthorDate: Sun Oct 10 06:40:14 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 10 06:45:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ff0c748 dev-python/python-cstruct: Bump to 2.1 Signed-off-by: Michał Górny gentoo.org> dev-python/python-cstruct/Manifest | 1 + dev-python/python-cstruct/python-cstruct-2.1.ebuild | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/dev-python/python-cstruct/Manifest b/dev-python/python-cstruct/Manifest index 393db50fead..f0bf48ec78d 100644 --- a/dev-python/python-cstruct/Manifest +++ b/dev-python/python-cstruct/Manifest @@ -1 +1,2 @@ DIST python-cstruct-1.8.tar.gz 9911 BLAKE2B 88e091274495034c05d66e4ac808b3884a766017da92bb661cb6c90111cdb5e0d11f93a83e59be74acba9ba408c37b8cbaac88a1bb4fbbed120a2d0aaccd0979 SHA512 9ca9abf388965af06be6ab455652c60aaf2738a08bd7fcc32a8be57c19b2d705784618fd108bfa727a1c05c5749f761d698adc6550bffa1ebcaaedadd7d56a62 +DIST python-cstruct-2.1.tar.gz 17298 BLAKE2B 9acc10f0d386c4413634945fc94b3e44210617c408ee18cf6533f70e7d64c609d463e9beceeea7c79b125e0bf0ab67a720d9ff98f45b4e7ce1f51d9280b55733 SHA512 c56c87d291c4aa2afcfdbcbbc19c03ec634b6fb0dcde9d516ef2a9079be2fea52a053c47cd20dfc0fe6537ac90939364da659d8eb4763069a9990681207d432c diff --git a/dev-python/python-cstruct/python-cstruct-2.1.ebuild b/dev-python/python-cstruct/python-cstruct-2.1.ebuild new file mode 100644 index 00000000000..ccdcbbfbf89 --- /dev/null +++ b/dev-python/python-cstruct/python-cstruct-2.1.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="C-style structs for Python" +HOMEPAGE="https://github.com/andreax79/python-cstruct https://pypi.org/project/cstruct/" +SRC_URI="https://github.com/andreax79/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DOCS=( README.md ) + +distutils_enable_tests pytest