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: app-portage/eix/
Date: Tue, 07 Jun 2022 07:15:40
Message-Id: 1654586102.2a394db9d88d694a1fb08b3a50f577d7753c3f26.mgorny@gentoo
1 commit: 2a394db9d88d694a1fb08b3a50f577d7753c3f26
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 7 07:13:13 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 7 07:15:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a394db9
7
8 app-portage/eix: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-portage/eix/Manifest | 1 -
13 app-portage/eix/eix-0.36.1.ebuild | 104 --------------------------------------
14 2 files changed, 105 deletions(-)
15
16 diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
17 index 6da2b28a007c..7454bfc77fd8 100644
18 --- a/app-portage/eix/Manifest
19 +++ b/app-portage/eix/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST eix-0.36.1.tar.xz 640084 BLAKE2B 10014bb847d71b803967354f3a415dc1c74ad37385b7b440f0c162c573453042d06bbc575582831ffc0aad6b0f7abeedbcb4e23b869505d4f85d6bd6b7cfbba4 SHA512 915a364b0f63124c53e43eb35165ce553f6eadaf8708f0c075dc2f4871fe83378cd0c8650d5605c1f87c512563fdd62f28efdc586b358fc7cd63ae42a404981d
22 DIST eix-0.36.2.tar.xz 639632 BLAKE2B 962b998f91233e799421c1ea3325d5b9c727bdfdda6a9567ba4a9ea0f4f36798f5ba32ef2ba43043668aaf0829d9c2f50158f97d5ebfca40a58da612141c47a8 SHA512 813a19f9561bfd65a401a4dcf9884e39eedf5f971be1800411ba977d84af0c5b5498cab50f69566bff75cf254f1d4971acc5dab72af34162f8b5dd29cd6ffaea
23 DIST eix-0.36.3.tar.xz 639864 BLAKE2B f74b7c4087e5145f3a2e6ee8b0034e5104de8ef81ec810f2d9fc75d161181f71396f27dc635466685650182473fdfb542f4cec6509ddee0a3bb0d7d620b7d42d SHA512 9fd7c64df6acf27e9ed07ee77ee7f209fb0fb2db9a3dbbc78c1f5b25e6d4786dffeea64bf8ddee3bfe4fe35445c8173103428e184c966964b2973d5737152679
24
25 diff --git a/app-portage/eix/eix-0.36.1.ebuild b/app-portage/eix/eix-0.36.1.ebuild
26 deleted file mode 100644
27 index 106e1079762c..000000000000
28 --- a/app-portage/eix/eix-0.36.1.ebuild
29 +++ /dev/null
30 @@ -1,104 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools bash-completion-r1 tmpfiles
37 -
38 -DESCRIPTION="Search and query ebuilds"
39 -HOMEPAGE="https://github.com/vaeth/eix/"
40 -SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
45 -IUSE="debug doc nls sqlite"
46 -
47 -DEPEND="
48 - nls? ( virtual/libintl )
49 - sqlite? ( >=dev-db/sqlite-3:= )"
50 -RDEPEND="${DEPEND}
51 - >=app-shells/push-2.0-r1
52 - >=app-shells/quoter-3.0_p2-r1"
53 -BDEPEND="
54 - app-arch/xz-utils
55 - virtual/pkgconfig
56 - nls? ( sys-devel/gettext )"
57 -
58 -pkg_setup() {
59 - # remove stale cache file to prevent collisions
60 - local old_cache=${EROOT}/var/cache/${PN}
61 - if [[ -f ${old_cache} ]]; then
62 - rm "${old_cache}" || die
63 - fi
64 -}
65 -
66 -src_prepare() {
67 - default
68 - sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
69 -
70 - sed -e "/eixf_source=/s:push.sh:cat \"${EPREFIX}/usr/share/push/push.sh\":" \
71 - -e "/eixf_source=/s:quoter_pipe.sh:cat \"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
72 - -i src/eix-functions.sh.in || die
73 - sed -e "s:'\$(bindir)/eix-functions.sh':cat \\\\\"${EPREFIX}/usr/share/eix/eix-functions\\\\\":" \
74 - -i src/Makefile.am || die
75 -
76 - eautoreconf
77 -}
78 -
79 -src_configure() {
80 - local myconf=(
81 - $(use_enable debug paranoic-asserts)
82 - $(use_enable nls)
83 - $(use_with doc extra-doc)
84 - $(use_with sqlite)
85 - --without-protobuf
86 -
87 - # default configuration
88 - $(use_with prefix always-accept-keywords)
89 - --with-dep-default
90 - --with-required-use-default
91 -
92 - # paths
93 - --with-portage-rootpath="${ROOTPATH}"
94 - --with-eprefix-default="${EPREFIX}"
95 -
96 - # build a single executable with symlinks
97 - --disable-separate-binaries
98 - --disable-separate-tools
99 -
100 - # used purely to control/disrespect *FLAGS
101 - --disable-debugging
102 - --disable-new_dialect
103 - --disable-optimization
104 - --disable-strong-optimization
105 - --disable-security
106 - --disable-nopie-security
107 - --disable-strong-security
108 - )
109 -
110 - econf "${myconf[@]}"
111 -}
112 -
113 -src_install() {
114 - default
115 - dobashcomp bash/eix
116 - dotmpfiles tmpfiles.d/eix.conf
117 -
118 - rm -r "${ED}"/usr/bin/eix-functions.sh || die
119 -}
120 -
121 -pkg_postinst() {
122 - tmpfiles_process eix.conf
123 -
124 - local obs=${EROOT}/var/cache/eix.previous
125 - if [[ -f ${obs} ]]; then
126 - ewarn "Found obsolete ${obs}, please remove it"
127 - fi
128 -}
129 -
130 -pkg_postrm() {
131 - if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
132 - rm -rf "${EROOT}/var/cache/${PN}" || die
133 - fi
134 -}