public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-text/q-text-as-data/
@ 2016-03-04 20:17 Robin H. Johnson
  0 siblings, 0 replies; 7+ messages in thread
From: Robin H. Johnson @ 2016-03-04 20:17 UTC (permalink / raw
  To: gentoo-commits

commit:     a8ad7d82931934e4531d762b4f5e033065965f8e
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  4 17:16:59 2016 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Mar  4 20:17:04 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8ad7d82

app-text/q-text-as-data: new package.

Package-Manager: portage-2.2.27

 app-text/q-text-as-data/Manifest                   |  1 +
 app-text/q-text-as-data/metadata.xml               |  7 ++++
 .../q-text-as-data/q-text-as-data-1.5.0.ebuild     | 40 ++++++++++++++++++++++
 3 files changed, 48 insertions(+)

diff --git a/app-text/q-text-as-data/Manifest b/app-text/q-text-as-data/Manifest
new file mode 100644
index 0000000..8f2b6c6
--- /dev/null
+++ b/app-text/q-text-as-data/Manifest
@@ -0,0 +1 @@
+DIST q-1.5.0.tar.gz 58746 SHA256 69bde3fb75aa1d42ba306576b135b8a72121a995e6d865cc8c18db289c602c4b SHA512 d21dd16a31629e36f0dee72ebc574283c7937821cb2da7ccaacb8484a35b53193dad05fe9857d1498434a0c1083514ea5b9e5d8a636bcd51d4c5924cb7bb1b55 WHIRLPOOL 264ecbd3a064ba37fc581fea1f9c7b3e6a7f8985c6dcc1c6856193036e202ba3483b90502640f042a25b418eaecc881bc3246855812ffbf55126789b6e79a44f

diff --git a/app-text/q-text-as-data/metadata.xml b/app-text/q-text-as-data/metadata.xml
new file mode 100644
index 0000000..79d462e
--- /dev/null
+++ b/app-text/q-text-as-data/metadata.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+  <email>robbat2@gentoo.org</email>
+</maintainer>
+</pkgmetadata>

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
new file mode 100644
index 0000000..aa6fcbb
--- /dev/null
+++ b/app-text/q-text-as-data/q-text-as-data-1.5.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+# Does not yet support py3
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-r1
+
+DESCRIPTION="q: Text as Data is a CLI tool that allows direct execution of SQL-like queries on text"
+HOMEPAGE="http://harelba.github.io/q/"
+MY_P="q-${PV}"
+SRC_URI="https://github.com/harelba/q/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# No dependencies other than python >= 2.5
+# http://harelba.github.io/q/requirements.html
+RDEPEND="${PYTHON_DEPS}"
+DEPEND=""
+
+S="${WORKDIR}/${MY_P}"
+
+q_install() {
+	python_newexe bin/q q-text-as-data
+}
+
+src_install() {
+	python_foreach_impl q_install
+	newdoc bin/.qrc dot-qrc
+	dodoc doc/*
+}
+
+pkg_postinst() {
+	einfo "On Gentoo, the 'q' binary is most often provided by app-portage/portage-utils;"
+	einfo "Thus, this tool is install as 'q-text-as-data' rather than 'q'."
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-text/q-text-as-data/
@ 2016-12-05 18:36 Robin H. Johnson
  0 siblings, 0 replies; 7+ messages in thread
From: Robin H. Johnson @ 2016-12-05 18:36 UTC (permalink / raw
  To: gentoo-commits

commit:     746c33e24bdfe5de72c6908af689787f89528b6b
Author:     OGINO Masanori <masanori.ogino <AT> gmail <DOT> com>
AuthorDate: Sat Aug  6 05:09:07 2016 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Dec  5 18:36:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=746c33e2

app-text/q-text-as-data: Require Python w/ SQLite.

(cherry picked from commit 017a176f1ade171b93dc6052a2835b5251a922fb)
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 app-text/q-text-as-data/q-text-as-data-1.5.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

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
index aa6fcbb..373602a 100644
--- 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
@@ -5,6 +5,7 @@
 EAPI="5"
 # Does not yet support py3
 PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="sqlite"
 
 inherit python-r1
 


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-text/q-text-as-data/
@ 2017-02-18  9:54 David Seifert
  0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2017-02-18  9:54 UTC (permalink / raw
  To: gentoo-commits

commit:     d99b232f39256147812dbe70aeea5ba7ff4ea930
Author:     Harri Nieminen <moikkis <AT> gmail <DOT> com>
AuthorDate: Sat Feb 18 07:25:27 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 18 09:53:41 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d99b232f

app-text/q-text-as-data: Fix toolong.DESCRIPTION

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4003

 app-text/q-text-as-data/q-text-as-data-1.5.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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
index 373602ac72..05f1f7bf70 100644
--- 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
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -9,7 +9,7 @@ PYTHON_REQ_USE="sqlite"
 
 inherit python-r1
 
-DESCRIPTION="q: Text as Data is a CLI tool that allows direct execution of SQL-like queries on text"
+DESCRIPTION="A CLI tool that allows direct execution of SQL-like queries on text"
 HOMEPAGE="http://harelba.github.io/q/"
 MY_P="q-${PV}"
 SRC_URI="https://github.com/harelba/q/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-text/q-text-as-data/
@ 2020-06-24 21:22 Robin H. Johnson
  0 siblings, 0 replies; 7+ messages in thread
From: Robin H. Johnson @ 2020-06-24 21:22 UTC (permalink / raw
  To: gentoo-commits

commit:     51741a9540a75df0b3d7087e39dd5a17ac7ed435
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 24 21:21:49 2020 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Jun 24 21:22:00 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51741a95

app-text/q-text-as-data: cleanup py2-only version

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 .../q-text-as-data/q-text-as-data-1.5.0.ebuild     | 41 ----------------------
 1 file changed, 41 deletions(-)

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
deleted file mode 100644
index 3441091a994..00000000000
--- a/app-text/q-text-as-data/q-text-as-data-1.5.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-# Does not yet support py3
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="sqlite"
-
-inherit python-r1
-
-DESCRIPTION="A CLI tool that allows direct execution of SQL-like queries on text"
-HOMEPAGE="http://harelba.github.io/q/"
-MY_P="q-${PV}"
-SRC_URI="https://github.com/harelba/q/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# No dependencies other than python >= 2.5
-# http://harelba.github.io/q/requirements.html
-RDEPEND="${PYTHON_DEPS}"
-DEPEND=""
-
-S="${WORKDIR}/${MY_P}"
-
-q_install() {
-	python_newexe bin/q q-text-as-data
-}
-
-src_install() {
-	python_foreach_impl q_install
-	newdoc bin/.qrc dot-qrc
-	dodoc doc/*
-}
-
-pkg_postinst() {
-	einfo "On Gentoo, the 'q' binary is most often provided by app-portage/portage-utils;"
-	einfo "Thus, this tool is install as 'q-text-as-data' rather than 'q'."
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-text/q-text-as-data/
@ 2020-06-24 21:22 Robin H. Johnson
  0 siblings, 0 replies; 7+ messages in thread
From: Robin H. Johnson @ 2020-06-24 21:22 UTC (permalink / raw
  To: gentoo-commits

commit:     e2b549a82496d0f5c1daa29d9ea1b81ff0b68ec2
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 24 21:21:26 2020 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Jun 24 21:22:00 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2b549a8

app-text/q-text-as-data: bump, now with py3 support

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 app-text/q-text-as-data/Manifest                   |  1 +
 .../q-text-as-data/q-text-as-data-2.0.10.ebuild    | 48 ++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/app-text/q-text-as-data/Manifest b/app-text/q-text-as-data/Manifest
index 081b6340c15..9078adf23eb 100644
--- a/app-text/q-text-as-data/Manifest
+++ b/app-text/q-text-as-data/Manifest
@@ -1 +1,2 @@
 DIST q-1.5.0.tar.gz 58746 BLAKE2B a35f7ea605a42e81be1ee4899ed9e8c2b4e81e896b6e4c1eb6045b64cc7fa3ffdf6f754be168b3ebe25faa4c8b80f63e2ffff3174231357260263acf335b8d5c SHA512 d21dd16a31629e36f0dee72ebc574283c7937821cb2da7ccaacb8484a35b53193dad05fe9857d1498434a0c1083514ea5b9e5d8a636bcd51d4c5924cb7bb1b55
+DIST q-2.0.10.tar.gz 218824 BLAKE2B 91f6485d94325768d7bfd32223d379cd90f3ade3760e44c859ec25aee6aeb73c943b3dedbf56b378222f6bc094faf160d86dcacab3dd0ce5ebf93230ca61696d SHA512 ab503a555380b6d17500972256db5e9eb19066d7a1f480091e777681d694746d6d7743254f3839bfd2f08697308aee8cea60e4583a0b1a4d93caf522342f25b2

diff --git a/app-text/q-text-as-data/q-text-as-data-2.0.10.ebuild b/app-text/q-text-as-data/q-text-as-data-2.0.10.ebuild
new file mode 100644
index 00000000000..f3c988259f1
--- /dev/null
+++ b/app-text/q-text-as-data/q-text-as-data-2.0.10.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python2_7 python3_{6..9} )
+PYTHON_REQ_USE="sqlite"
+
+inherit python-r1
+
+DESCRIPTION="A CLI tool that allows direct execution of SQL-like queries on text"
+HOMEPAGE="http://harelba.github.io/q/"
+MY_P="q-${PV}"
+SRC_URI="https://github.com/harelba/q/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# Upstream is wrong
+# http://harelba.github.io/q/#requirements
+RDEPEND="${PYTHON_DEPS}
+	$(python_gen_any_dep '
+		dev-python/six[${PYTHON_USEDEP}]
+		dev-python/flake8[${PYTHON_USEDEP}]
+	')"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_compile() {
+	: # Do not use the Makefile
+}
+
+q_install() {
+	python_newexe bin/q.py q-text-as-data
+}
+
+src_install() {
+	python_foreach_impl q_install
+	newdoc bin/.qrc dot-qrc
+	dodoc doc/*
+}
+
+pkg_postinst() {
+	einfo "On Gentoo, the 'q' binary is most often provided by app-portage/portage-utils;"
+	einfo "Thus, this tool is install as 'q-text-as-data' rather than 'q'."
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-text/q-text-as-data/
@ 2020-06-24 21:53 Thomas Deutschmann
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Deutschmann @ 2020-06-24 21:53 UTC (permalink / raw
  To: gentoo-commits

commit:     64cc2b94e8498e46f3511bcd90af4f0e17dac47c
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 24 21:53:25 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Jun 24 21:53:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64cc2b94

app-text/q-text-as-data: fix Manifest

Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 app-text/q-text-as-data/Manifest | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-text/q-text-as-data/Manifest b/app-text/q-text-as-data/Manifest
index 9078adf23eb..0d554c36613 100644
--- a/app-text/q-text-as-data/Manifest
+++ b/app-text/q-text-as-data/Manifest
@@ -1,2 +1 @@
-DIST q-1.5.0.tar.gz 58746 BLAKE2B a35f7ea605a42e81be1ee4899ed9e8c2b4e81e896b6e4c1eb6045b64cc7fa3ffdf6f754be168b3ebe25faa4c8b80f63e2ffff3174231357260263acf335b8d5c SHA512 d21dd16a31629e36f0dee72ebc574283c7937821cb2da7ccaacb8484a35b53193dad05fe9857d1498434a0c1083514ea5b9e5d8a636bcd51d4c5924cb7bb1b55
 DIST q-2.0.10.tar.gz 218824 BLAKE2B 91f6485d94325768d7bfd32223d379cd90f3ade3760e44c859ec25aee6aeb73c943b3dedbf56b378222f6bc094faf160d86dcacab3dd0ce5ebf93230ca61696d SHA512 ab503a555380b6d17500972256db5e9eb19066d7a1f480091e777681d694746d6d7743254f3839bfd2f08697308aee8cea60e4583a0b1a4d93caf522342f25b2


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-text/q-text-as-data/
@ 2020-08-02 12:03 Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2020-08-02 12:03 UTC (permalink / raw
  To: gentoo-commits

commit:     aa6904ba7c77a90e84fba4e2d4b1465a70757cef
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  2 11:49:26 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug  2 12:02:47 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa6904ba

app-text/q-text-as-data: Remove py2.7

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-text/q-text-as-data/q-text-as-data-2.0.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/q-text-as-data/q-text-as-data-2.0.10.ebuild b/app-text/q-text-as-data/q-text-as-data-2.0.10.ebuild
index f3c988259f1..28dbf1e7a1b 100644
--- a/app-text/q-text-as-data/q-text-as-data-2.0.10.ebuild
+++ b/app-text/q-text-as-data/q-text-as-data-2.0.10.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
-PYTHON_COMPAT=( python2_7 python3_{6..9} )
+PYTHON_COMPAT=( python3_{6..9} )
 PYTHON_REQ_USE="sqlite"
 
 inherit python-r1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-08-02 12:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-02 12:03 [gentoo-commits] repo/gentoo:master commit in: app-text/q-text-as-data/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2020-06-24 21:53 Thomas Deutschmann
2020-06-24 21:22 Robin H. Johnson
2020-06-24 21:22 Robin H. Johnson
2017-02-18  9:54 David Seifert
2016-12-05 18:36 Robin H. Johnson
2016-03-04 20:17 Robin H. Johnson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox