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 4A0D1158064 for ; Sun, 5 May 2024 23:25:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 832F52BC019; Sun, 5 May 2024 23:25:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5DC602BC019 for ; Sun, 5 May 2024 23:25:46 +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 8DFD2335D0F for ; Sun, 5 May 2024 23:25:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD6B693E for ; Sun, 5 May 2024 23:25:43 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1714951526.8bb8c53d5b9f9b24ce959f2e0399335e3f6b20f7.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ovs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ovs/Manifest dev-python/ovs/ovs-2.17.9.ebuild X-VCS-Directories: dev-python/ovs/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 8bb8c53d5b9f9b24ce959f2e0399335e3f6b20f7 X-VCS-Branch: master Date: Sun, 5 May 2024 23:25:43 +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: 9a121241-8a73-4a08-aec8-0c93d32798d1 X-Archives-Hash: a18962b6299cc7a0e56540948cbb7539 commit: 8bb8c53d5b9f9b24ce959f2e0399335e3f6b20f7 Author: Matthew Thode gentoo org> AuthorDate: Sun May 5 23:25:26 2024 +0000 Commit: Matthew Thode gentoo org> CommitDate: Sun May 5 23:25:26 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb8c53d dev-python/ovs: add 2.17.9 Signed-off-by: Matthew Thode gentoo.org> dev-python/ovs/Manifest | 1 + dev-python/ovs/ovs-2.17.9.ebuild | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/dev-python/ovs/Manifest b/dev-python/ovs/Manifest index 4eb688975582..96b79e70915a 100644 --- a/dev-python/ovs/Manifest +++ b/dev-python/ovs/Manifest @@ -1 +1,2 @@ DIST ovs-2.17.1.post1.tar.gz 104766 BLAKE2B e1cb471f7f3f3b8461292c79ee5318a36d70c2ee55947bfa0274277e36514d20ad9293cb8c602e0b2c82a590397869fe51f52ee2579255bb8163014d58dccaf7 SHA512 772e7b4768f1e7fe1f2be700a0eb6bc539459e4c70432c45e7f7877b060f4c845eaa5a974f2b2264af621f5f43b97da30a9fe344a53904ec0008393689e6b895 +DIST ovs-2.17.9.tar.gz 110350 BLAKE2B 68f6fb154c830877fa404a24e5283e17cbb9e9d0c138e26da897835741457bab53be99754959eb01bdc8c5ea61a67327655ad6b1deba941b37ba4e86dab61375 SHA512 05ba60f585b576757bf0d2799dda2d17f0b4fd06bbdeaf4810c64f48c1a74dbc8bdba4348800fcb0c343415317104556cf4f2ab2dcabd9d438a0c31de1c45cd6 diff --git a/dev-python/ovs/ovs-2.17.9.ebuild b/dev-python/ovs/ovs-2.17.9.ebuild new file mode 100644 index 000000000000..fee35f8f7973 --- /dev/null +++ b/dev-python/ovs/ovs-2.17.9.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..12} ) +inherit distutils-r1 pypi + +DESCRIPTION="OVS bindings for python" +HOMEPAGE="https://github.com/openvswitch/ovs/" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +RDEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]"