Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/yum/, profiles/
Date: Sun, 14 Apr 2019 07:10:19
Message-Id: 1555225798.6b2a23b9684c1ec4211be279b0b1c5b1444c6b7f.mgorny@gentoo
1 commit: 6b2a23b9684c1ec4211be279b0b1c5b1444c6b7f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 14 07:08:41 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 14 07:09:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b2a23b9
7
8 sys-apps/yum: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/643308
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 profiles/package.mask | 1 -
14 sys-apps/yum/Manifest | 1 -
15 sys-apps/yum/metadata.xml | 11 --------
16 sys-apps/yum/yum-3.4.3_p20170619.ebuild | 46 ---------------------------------
17 4 files changed, 59 deletions(-)
18
19 diff --git a/profiles/package.mask b/profiles/package.mask
20 index 0821c2c8261..098297d8b0e 100644
21 --- a/profiles/package.mask
22 +++ b/profiles/package.mask
23 @@ -777,7 +777,6 @@ dev-util/staruml-bin
24 #
25 # Removal in 30 days. Bug #643308.
26 dev-python/pyliblzma
27 -sys-apps/yum
28
29 # Eray Aslan <eras@g.o> (01 Mar 2019)
30 # Mask experimental software
31
32 diff --git a/sys-apps/yum/Manifest b/sys-apps/yum/Manifest
33 deleted file mode 100644
34 index 941cf6aec44..00000000000
35 --- a/sys-apps/yum/Manifest
36 +++ /dev/null
37 @@ -1 +0,0 @@
38 -DIST yum-3.4.3_p20170619.tar.gz 1525362 BLAKE2B b2519fef3260f8c10bc2ac26f24b15cf7751d3620cb328fc4bf2db27fbf7cd23be86b474263887b6a5170e8896ce74627b868ccd2fc5b3ddd0679c1a21ca1be7 SHA512 4dddc3e30be8e86162b7786d7cf4e4e6f00e67c03bc3b16f347df1e54c3c67e5eaa01456e19952452a4eeaa4bc40c9a82a042d43772ad304c87c44bdc36e7ea3
39
40 diff --git a/sys-apps/yum/metadata.xml b/sys-apps/yum/metadata.xml
41 deleted file mode 100644
42 index 22eb5e1427e..00000000000
43 --- a/sys-apps/yum/metadata.xml
44 +++ /dev/null
45 @@ -1,11 +0,0 @@
46 -<?xml version="1.0" encoding="UTF-8"?>
47 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
48 -<pkgmetadata>
49 - <maintainer type="person">
50 - <email>pinkbyte@g.o</email>
51 - <name>Sergey Popov</name>
52 - </maintainer>
53 - <longdescription>
54 - Automatic updater and package installer/remover for rpm systems
55 - </longdescription>
56 -</pkgmetadata>
57
58 diff --git a/sys-apps/yum/yum-3.4.3_p20170619.ebuild b/sys-apps/yum/yum-3.4.3_p20170619.ebuild
59 deleted file mode 100644
60 index 25ff9b059b5..00000000000
61 --- a/sys-apps/yum/yum-3.4.3_p20170619.ebuild
62 +++ /dev/null
63 @@ -1,46 +0,0 @@
64 -# Copyright 1999-2017 Gentoo Foundation
65 -# Distributed under the terms of the GNU General Public License v2
66 -
67 -EAPI=6
68 -
69 -PYTHON_COMPAT=( python2_7 )
70 -PYTHON_REQ_USE="sqlite"
71 -inherit python-single-r1 systemd
72 -
73 -DESCRIPTION="automatic updater and package installer/remover for rpm systems"
74 -HOMEPAGE="http://yum.baseurl.org/"
75 -SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.gz"
76 -
77 -LICENSE="GPL-2"
78 -SLOT="0"
79 -KEYWORDS="~amd64 ~ppc64 ~ppc ~x86"
80 -
81 -IUSE="test"
82 -
83 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
84 -
85 -RDEPEND="
86 - ${PYTHON_DEPS}
87 - app-arch/rpm[python,${PYTHON_USEDEP}]
88 - dev-python/sqlitecachec[${PYTHON_USEDEP}]
89 - dev-libs/libxml2[python,${PYTHON_USEDEP}]
90 - dev-python/pyliblzma[${PYTHON_USEDEP}]
91 - dev-python/urlgrabber[${PYTHON_USEDEP}]"
92 -
93 -DEPEND="${RDEPEND}
94 - dev-util/intltool
95 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
96 -
97 -src_prepare() {
98 - sed -i -e 's/make/$(MAKE)/' Makefile || die
99 - sed -i -e "s:lib:$(get_libdir):g" rpmUtils/Makefile yum/Makefile || die
100 - default
101 -}
102 -
103 -src_install() {
104 - emake INIT=systemd UNITDIR="$(systemd_get_systemunitdir)" DESTDIR="${ED}" install
105 - python_optimize "${D%/}$(python_get_sitedir)" "${ED%/}/usr/share/yum-cli"
106 - rm -r "${ED%/}/etc/rc.d" || die
107 - # bug #563850
108 - python_fix_shebang "${ED}/usr/bin/yum"
109 -}