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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9F05715800F for ; Fri, 17 Feb 2023 09:48:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5AF4E0827; Fri, 17 Feb 2023 09:48:39 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CC301E0827 for ; Fri, 17 Feb 2023 09:48:39 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DDE57341109 for ; Fri, 17 Feb 2023 09:48:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65BA78AE for ; Fri, 17 Feb 2023 09:48:37 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1676627300.e015868ec8a52a4ee7b253801535d932a0e43bf0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/pypacker/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/pypacker/Manifest net-analyzer/pypacker/pypacker-5.2.ebuild X-VCS-Directories: net-analyzer/pypacker/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e015868ec8a52a4ee7b253801535d932a0e43bf0 X-VCS-Branch: master Date: Fri, 17 Feb 2023 09:48:37 +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: 1ac734ee-9037-4eb8-b3b8-e8ba31233c32 X-Archives-Hash: 6341c07dbca60d052453c21a6c2133e9 commit: e015868ec8a52a4ee7b253801535d932a0e43bf0 Author: Sam James gentoo org> AuthorDate: Fri Feb 17 09:22:10 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 17 09:48:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e015868e net-analyzer/pypacker: add 5.2 Closes: https://bugs.gentoo.org/893482 Signed-off-by: Sam James gentoo.org> net-analyzer/pypacker/Manifest | 1 + net-analyzer/pypacker/pypacker-5.2.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/net-analyzer/pypacker/Manifest b/net-analyzer/pypacker/Manifest index a25819448386..df9f53f48a94 100644 --- a/net-analyzer/pypacker/Manifest +++ b/net-analyzer/pypacker/Manifest @@ -1 +1,2 @@ DIST pypacker-5.1.tar.gz 623638 BLAKE2B 329e8ec2af336118a4ff8d200ced2e356a10dae5217582fb69b77be336e830d3c2356165ea42be6224ef8fd2291637b23fde35733652969affae1f81eb2411dc SHA512 427d2afc45735e920867098c77be8256e28840031a7a01dfae5c9817ff78d2ddb699bf94721eda3b1f4b568bb70bd3bd25ccb8cb77076b84e2aa71898ba0bf57 +DIST pypacker-v5.2.tar.bz2 544026 BLAKE2B 3401b47a496e8c76d2b925e63c43838d2a05af01655a3e470ddfd0c2c57ab6b37ba1b9acd49386232b5c0fb4bc8d061f8992eac07f5729306502fa76413c51f5 SHA512 3ccb82ff2a352553819991c0e24fb6da8a26091f5cdced3d3358192ecf6598153fb3b36d48b1f51cdc1dd7f54e136c073e8e5a2f3fb050af24f83c77e1bda3b4 diff --git a/net-analyzer/pypacker/pypacker-5.2.ebuild b/net-analyzer/pypacker/pypacker-5.2.ebuild new file mode 100644 index 000000000000..a6c1afe33845 --- /dev/null +++ b/net-analyzer/pypacker/pypacker-5.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 vcs-snapshot + +DESCRIPTION="Fast and simple packet creation and parsing library for Python" +HOMEPAGE="https://gitlab.com/mike01/pypacker" +SRC_URI="https://gitlab.com/mike01/pypacker/-/archive/v${PV}/pypacker-v${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +DOCS=( AUTHORS CHANGES HACKING README.md ) + +python_test() { + "${EPYTHON}" tests/test_pypacker.py || die +} + +python_install_all() { + distutils-r1_python_install_all + use examples && dodoc -r examples +}