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 F35C0138359 for ; Mon, 21 Sep 2020 23:41:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 328E3E0866; Mon, 21 Sep 2020 23:41:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F5BCE0866 for ; Mon, 21 Sep 2020 23:41:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 05B0F33BEAC for ; Mon, 21 Sep 2020 23:41:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BD44373 for ; Mon, 21 Sep 2020 23:41:48 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1600731693.7ade6038cc6267b433f9b5ce9c419e7fbd9aa445.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/pickleshare/metadata.xml dev-python/pickleshare/pickleshare-9999.ebuild X-VCS-Directories: dev-python/pickleshare/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 7ade6038cc6267b433f9b5ce9c419e7fbd9aa445 X-VCS-Branch: master Date: Mon, 21 Sep 2020 23:41:48 +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: 97e67a3b-0c99-4a4e-95b5-e6534e8fc52f X-Archives-Hash: d9f60f7567c2af5a6718182d90c5a835 commit: 7ade6038cc6267b433f9b5ce9c419e7fbd9aa445 Author: Aisha Tammy aisha cc> AuthorDate: Mon Sep 21 23:41:21 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Mon Sep 21 23:41:33 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7ade6038 dev-python/pickleshare: drop package present in ::gentoo Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> dev-python/pickleshare/metadata.xml | 20 ------------------ dev-python/pickleshare/pickleshare-9999.ebuild | 29 -------------------------- 2 files changed, 49 deletions(-) diff --git a/dev-python/pickleshare/metadata.xml b/dev-python/pickleshare/metadata.xml deleted file mode 100644 index 4898921bd..000000000 --- a/dev-python/pickleshare/metadata.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - sci@gentoo.org - Gentoo Science Project - - -Like shelve, a PickleShareDB object acts like a normal dictionary. -Unlike shelve, many processes can access the database -simultaneously. Changing a value in database is immediately visible -to other processes accessing the same database. -Concurrency is possible because the values are stored in separate -files. Hence the "database" is a directory where all files are -governed by PickleShare. - - - pickleshare/pickleshare - - diff --git a/dev-python/pickleshare/pickleshare-9999.ebuild b/dev-python/pickleshare/pickleshare-9999.ebuild deleted file mode 100644 index 95306c174..000000000 --- a/dev-python/pickleshare/pickleshare-9999.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5} ) - -inherit distutils-r1 git-r3 - -DESCRIPTION="A small 'shelve' like datastore with concurrency support" -HOMEPAGE="https://github.com/pickleshare/pickleshare" -EGIT_REPO_URI="https://github.com/${PN}/${PN}.git git://github.com/${PN}/${PN}.git" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" -IUSE="test" - -RDEPEND=" - dev-python/path-py[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -python_test() { - distutils_install_for_testing - cd "${TEST_DIR}"/lib || die - cp "${S}"/test_pickleshare.py "${TEST_DIR}"/lib/ || die - py.test || die -}