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 1457B15ACFB for ; Sun, 9 Apr 2023 10:05:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E2D9E0837; Sun, 9 Apr 2023 10:05:22 +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 23D5DE0837 for ; Sun, 9 Apr 2023 10:05:22 +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 EC3FC340C54 for ; Sun, 9 Apr 2023 10:05:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C7E9A41 for ; Sun, 9 Apr 2023 10:05:18 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1680957139.22657545bb94d03d89b325d2a6923bc9507180bc.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/uhashring/, profiles/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/uhashring/Manifest dev-python/uhashring/metadata.xml dev-python/uhashring/uhashring-2.1.ebuild profiles/package.mask X-VCS-Directories: dev-python/uhashring/ profiles/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 22657545bb94d03d89b325d2a6923bc9507180bc X-VCS-Branch: master Date: Sun, 9 Apr 2023 10:05:18 +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: e836f8c5-0ebf-49f9-b6e1-a7f8345a59e7 X-Archives-Hash: d4246f4893b6ac757b3a5dbfda7f7afc commit: 22657545bb94d03d89b325d2a6923bc9507180bc Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sat Apr 8 12:32:19 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Sat Apr 8 12:32:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=22657545 dev-python/uhashring: treeclean Closes: https://bugs.gentoo.org/862768 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/uhashring/Manifest | 1 - dev-python/uhashring/metadata.xml | 30 ------------------------------ dev-python/uhashring/uhashring-2.1.ebuild | 25 ------------------------- profiles/package.mask | 5 ----- 4 files changed, 61 deletions(-) diff --git a/dev-python/uhashring/Manifest b/dev-python/uhashring/Manifest deleted file mode 100644 index a910ed1d2..000000000 --- a/dev-python/uhashring/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST uhashring-2.1.tar.gz 18288 BLAKE2B 95d76b1999d21b52ff33b5f76b2eee125d22fa02c51281d6b72058b9d608ea69cca11608f41f50b9348d46a26cc8931c40a6873f0fe17b72d76891b51dcaa1cb SHA512 0e3b3647f1b8b648389fa1018f5903d880947556244633e0b2b4809ccab3d14cf8e742cd14a99e2e88972a84c8fb97956dc290b023e514de63c7793a21b6c294 diff --git a/dev-python/uhashring/metadata.xml b/dev-python/uhashring/metadata.xml deleted file mode 100644 index 098828d4b..000000000 --- a/dev-python/uhashring/metadata.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - comaintainers welcome - lssndrbarbieri@gmail.com - Alessandro Barbieri - - -uhashring implements consistent hashing in pure Python. - -Consistent hashing is mostly used on distributed systems/caches/databases as this avoid the total reshuffling of your key-node mappings when adding or removing a node in your ring (called continuum on libketama). More information and details about this can be found in the literature section. - -This full featured implementation offers: - -a lot of convenient methods to use your consistent hash ring in real world applications. -simple integration with other libs such as memcache through monkey patching. -a full ketama compatibility if you need to use it (see important mention below). -all the missing functions in the libketama C python binding (which is not even available on pypi) for ketama users. -possibility to use your own weight and hash functions if you don't care about the ketama compatibility. -instance-oriented usage so you can use your consistent hash ring object directly in your code (see advanced usage). -native pypy support, since this is a pure python library. -tests of implementation, key distribution and ketama compatibility. -Per node weight is also supported and will affect the nodes distribution on the ring. - - - ultrabug/uhashring - uhashring - - diff --git a/dev-python/uhashring/uhashring-2.1.ebuild b/dev-python/uhashring/uhashring-2.1.ebuild deleted file mode 100644 index 966a8ef8c..000000000 --- a/dev-python/uhashring/uhashring-2.1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..10} pypy3 ) - -inherit distutils-r1 pypi - -DESCRIPTION="Full featured consistent hashing python library compatible with ketama" -HOMEPAGE="https://github.com/ultrabug/uhashring" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND="" -DEPEND=" - ${RDEPEND} - test? ( - >=dev-python/python-memcached-1.59[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest diff --git a/profiles/package.mask b/profiles/package.mask index 951809d21..f106c7b96 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -74,11 +74,6 @@ dev-python/skills media-libs/skcms media-libs/skia -# Anna Vyalkova (2023-03-08) -# Python library with no consumers left in tree. -# Masked for removal in 30 days. -dev-python/uhashring - # Anna Vyalkova (2023-03-04) # Depend on masked gconf. net-p2p/lbry