Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/q-text-as-data/
Date: Wed, 24 Jun 2020 21:22:08
Message-Id: 1593033720.51741a9540a75df0b3d7087e39dd5a17ac7ed435.robbat2@gentoo
1 commit: 51741a9540a75df0b3d7087e39dd5a17ac7ed435
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 24 21:21:49 2020 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 24 21:22:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51741a95
7
8 app-text/q-text-as-data: cleanup py2-only version
9
10 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
11
12 .../q-text-as-data/q-text-as-data-1.5.0.ebuild | 41 ----------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/app-text/q-text-as-data/q-text-as-data-1.5.0.ebuild b/app-text/q-text-as-data/q-text-as-data-1.5.0.ebuild
16 deleted file mode 100644
17 index 3441091a994..00000000000
18 --- a/app-text/q-text-as-data/q-text-as-data-1.5.0.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="5"
25 -# Does not yet support py3
26 -PYTHON_COMPAT=( python2_7 )
27 -PYTHON_REQ_USE="sqlite"
28 -
29 -inherit python-r1
30 -
31 -DESCRIPTION="A CLI tool that allows direct execution of SQL-like queries on text"
32 -HOMEPAGE="http://harelba.github.io/q/"
33 -MY_P="q-${PV}"
34 -SRC_URI="https://github.com/harelba/q/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
35 -
36 -LICENSE="GPL-3"
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~x86"
39 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 -
41 -# No dependencies other than python >= 2.5
42 -# http://harelba.github.io/q/requirements.html
43 -RDEPEND="${PYTHON_DEPS}"
44 -DEPEND=""
45 -
46 -S="${WORKDIR}/${MY_P}"
47 -
48 -q_install() {
49 - python_newexe bin/q q-text-as-data
50 -}
51 -
52 -src_install() {
53 - python_foreach_impl q_install
54 - newdoc bin/.qrc dot-qrc
55 - dodoc doc/*
56 -}
57 -
58 -pkg_postinst() {
59 - einfo "On Gentoo, the 'q' binary is most often provided by app-portage/portage-utils;"
60 - einfo "Thus, this tool is install as 'q-text-as-data' rather than 'q'."
61 -}