Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pkgcore/
Date: Fri, 30 Sep 2022 15:41:46
Message-Id: 1664552494.5fc3e8f6aaeec996deac4c54b14829f3bb6dad23.arthurzam@gentoo
1 commit: 5fc3e8f6aaeec996deac4c54b14829f3bb6dad23
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 30 15:37:23 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 30 15:41:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fc3e8f6
7
8 sys-apps/pkgcore: drop 0.12.14
9
10 Closes: https://bugs.gentoo.org/873517
11 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
12
13 sys-apps/pkgcore/Manifest | 1 -
14 sys-apps/pkgcore/pkgcore-0.12.14.ebuild | 56 ---------------------------------
15 2 files changed, 57 deletions(-)
16
17 diff --git a/sys-apps/pkgcore/Manifest b/sys-apps/pkgcore/Manifest
18 index e7e6b34fff24..5205da439d61 100644
19 --- a/sys-apps/pkgcore/Manifest
20 +++ b/sys-apps/pkgcore/Manifest
21 @@ -1,3 +1,2 @@
22 DIST pkgcore-0.12.13.tar.gz 625121 BLAKE2B add4e54c9d92570f4a4e9dad1af45f7c10e4fa48a312f1dd07b24bede5bf796d523d0a8b8d069234e92db5cf64bfb2911c57e5161ebdb7325bfb336237066b73 SHA512 26267f8ac2c79408467a20decd5fa5b12c075269b3bec155f185349186d920b5273ad1666879ac59caf08af022c2395fe737e2d51f26f9674996767bfbfb9bc6
23 -DIST pkgcore-0.12.14.tar.gz 623778 BLAKE2B 2ac96b45f1aa7b480e5c721c6d354b9b248f1c9111302a1734e33884ada2e7cd62900f6a2162f445f36576beed8fb866952c29728d2084feef7ee492d75b8724 SHA512 760e4491b8613c37e6b88fbded67494a314789fddb78729c7833b7d1678559618c42d9fa10d0c58af1fc9e659766e26b2d9d6d98bf7e90654a2991569defcbff
24 DIST pkgcore-0.12.15.tar.gz 623988 BLAKE2B cea8187ec5f02990b5501c0d1d97a1d228de58c78e2be733074f312f1d3a1016722a0a7765b8c4284381082144164f39691c1118e6f5b509e76cf86fb9c410ff SHA512 cc70b9e0afda4958d7dd3889276f3cb3eb3873c3e866c862330ca4e935e022d742bb0e218b09a0ef584a411ef4924ae45da65db9d28147263a578157dae67c7f
25
26 diff --git a/sys-apps/pkgcore/pkgcore-0.12.14.ebuild b/sys-apps/pkgcore/pkgcore-0.12.14.ebuild
27 deleted file mode 100644
28 index 533d30e95bf9..000000000000
29 --- a/sys-apps/pkgcore/pkgcore-0.12.14.ebuild
30 +++ /dev/null
31 @@ -1,56 +0,0 @@
32 -# Copyright 1999-2022 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -DISTUTILS_USE_PEP517=setuptools
38 -PYTHON_COMPAT=( python3_{8..11} )
39 -inherit distutils-r1
40 -
41 -if [[ ${PV} == *9999 ]] ; then
42 - EGIT_REPO_URI="https://github.com/pkgcore/pkgcore.git"
43 - inherit git-r3
44 -else
45 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
46 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 -fi
48 -
49 -DESCRIPTION="a framework for package management"
50 -HOMEPAGE="https://github.com/pkgcore/pkgcore"
51 -
52 -LICENSE="BSD MIT"
53 -SLOT="0"
54 -
55 -RDEPEND="
56 - >=app-shells/bash-5.0
57 - dev-python/lxml[${PYTHON_USEDEP}]
58 -"
59 -if [[ ${PV} == *9999 ]]; then
60 - RDEPEND+=" ~dev-python/snakeoil-9999[${PYTHON_USEDEP}]"
61 -else
62 - RDEPEND+=" >=dev-python/snakeoil-0.9.12[${PYTHON_USEDEP}]"
63 -fi
64 -BDEPEND="
65 - test? (
66 - >=dev-python/pytest-6[${PYTHON_USEDEP}]
67 - dev-vcs/git
68 - )
69 -"
70 -
71 -distutils_enable_tests setup.py
72 -
73 -src_test() {
74 - # With PYTHONDONTWRITEBYTECODE=, python will try rebuild all sorts of modules.
75 - # https://bugs.gentoo.org/840266
76 - local -x SANDBOX_PREDICT=${SANDBOX_PREDICT}
77 - addpredict /
78 -
79 - local -x PYTHONDONTWRITEBYTECODE=
80 - distutils-r1_src_test
81 -}
82 -
83 -python_install_all() {
84 - local DOCS=( NEWS.rst )
85 - [[ ${PV} == *9999 ]] || doman man/*
86 - distutils-r1_python_install_all
87 -}