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 87FAB158010 for ; Sat, 4 Feb 2023 21:30:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68B65E041F; Sat, 4 Feb 2023 21:30:12 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 50D36E070D for ; Sat, 4 Feb 2023 21:30:12 +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 5BB12340AEC for ; Sat, 4 Feb 2023 21:30:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FAAB89B for ; Sat, 4 Feb 2023 21:30:09 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1675545800.09a2d244da8d7119a2a65da611223876fcc4eb43.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/zope-cachedescriptors/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/zope-cachedescriptors/Manifest dev-python/zope-cachedescriptors/metadata.xml dev-python/zope-cachedescriptors/zope-cachedescriptors-4.4.ebuild X-VCS-Directories: dev-python/zope-cachedescriptors/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 09a2d244da8d7119a2a65da611223876fcc4eb43 X-VCS-Branch: dev Date: Sat, 4 Feb 2023 21:30:09 +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: ddde06cd-0393-48ed-a715-3cbc49f58fca X-Archives-Hash: 51d4e74daa196aa83278c2e11a5d75e5 commit: 09a2d244da8d7119a2a65da611223876fcc4eb43 Author: Julien Roy jroy ca> AuthorDate: Sat Feb 4 21:23:20 2023 +0000 Commit: Julien Roy jroy ca> CommitDate: Sat Feb 4 21:23:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=09a2d244 dev-python/zope-cachedescriptors: new package, add 4.4 Signed-off-by: Julien Roy jroy.ca> dev-python/zope-cachedescriptors/Manifest | 1 + dev-python/zope-cachedescriptors/metadata.xml | 41 ++++++++++++++++++++++ .../zope-cachedescriptors-4.4.ebuild | 29 +++++++++++++++ 3 files changed, 71 insertions(+) diff --git a/dev-python/zope-cachedescriptors/Manifest b/dev-python/zope-cachedescriptors/Manifest new file mode 100644 index 000000000..675c0a5c6 --- /dev/null +++ b/dev-python/zope-cachedescriptors/Manifest @@ -0,0 +1 @@ +DIST zope-cachedescriptors-4.4.gh.tar.gz 10194 BLAKE2B e5d505beef056610c4980d66bd8e183bd883e730aaf4cbfec0b1648be34ef7cd5547c20de465f173f9b54072014f4aa337337178d11a8c2ab1d8ad997f64d68d SHA512 22ba430ac899131512c4a69933155d06ade8a607a874c9cf733171148f7f9e50d4fde9976ab28aec19f19871a654cb78ba09d8fea0799cf0bb73bbbbe5680554 diff --git a/dev-python/zope-cachedescriptors/metadata.xml b/dev-python/zope-cachedescriptors/metadata.xml new file mode 100644 index 000000000..6f1a2df8f --- /dev/null +++ b/dev-python/zope-cachedescriptors/metadata.xml @@ -0,0 +1,41 @@ + + + + + Julien Roy + julien@jroy.ca + + + Cached descriptors cache their output. They take into account instance attributes that they depend on, so when the instance attributes change, the descriptors will change the values they return. + + Cached descriptors cache their data in _v_ attributes, so they are also useful for managing the computation of volatile attributes for persistent objects. + + Persistent descriptors: + + property + + A simple computed property. + + See src/zope/cachedescriptors/property.rst. + + method + + Idempotent method. The return values are cached based on method arguments and on any instance attributes that the methods are defined to depend on. + + Note + + Only a cache based on arguments has been implemented so far. + + See src/zope/cachedescriptors/method.rst. + + + + Zope Foundation and Contributors + zope-dev@zope.org + + https://github.com/zopefoundation/zope.cachedescriptors/blob/master/CHANGES.rst + https://github.com/zopefoundation/zope.cachedescriptors/issues + zopefoundation/zope.cachedescriptors + zope.cachedescriptors + + diff --git a/dev-python/zope-cachedescriptors/zope-cachedescriptors-4.4.ebuild b/dev-python/zope-cachedescriptors/zope-cachedescriptors-4.4.ebuild new file mode 100644 index 000000000..b48c8cbe8 --- /dev/null +++ b/dev-python/zope-cachedescriptors/zope-cachedescriptors-4.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 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} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Python descriptors which cache their output" +HOMEPAGE="https://github.com/zopefoundation/zope.cachedescriptors" +SRC_URI="https://github.com/zopefoundation/zope.cachedescriptors/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" +S="${WORKDIR}/${PN/-/\.}-${PV}" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64" + +src_prepare() { + # strip rdep specific to namespaces + sed -i -e "/'setuptools'/d" setup.py || die + distutils-r1_src_prepare +} + +python_compile() { + distutils-r1_python_compile + find "${BUILD_DIR}" -name '*.pth' -delete || die +}