public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
@ 2020-04-09  2:24 Alessandro Barbieri
  0 siblings, 0 replies; 11+ messages in thread
From: Alessandro Barbieri @ 2020-04-09  2:24 UTC (permalink / raw
  To: gentoo-commits

commit:     c70874428ee02acb4201b0ddd17178e497bb04a8
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu Apr  9 02:23:53 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Thu Apr  9 02:24:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c7087442

www-apps/twint: new package

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 www-apps/twint/Manifest            |  1 +
 www-apps/twint/metadata.xml        | 34 +++++++++++++++++++++++++++
 www-apps/twint/twint-2.1.18.ebuild | 47 ++++++++++++++++++++++++++++++++++++++
 3 files changed, 82 insertions(+)

diff --git a/www-apps/twint/Manifest b/www-apps/twint/Manifest
new file mode 100644
index 0000000..67f852a
--- /dev/null
+++ b/www-apps/twint/Manifest
@@ -0,0 +1 @@
+DIST twint-2.1.18.tar.gz 33213 BLAKE2B 74d8634ad178b40af726347ee144766bc5ae2480842ad617739a12ed469bf7692247bdc4dc5d979a081b88a223ce2649924cf89a6c0ff77acd10142f2290865c SHA512 0060d5f496bd19e74e72243ce83202204eacd28b57db7440ae83d112c96ea962512adf12e590e0843cf5231b1922cfcc943725aaeb2ab31127522be26e7fc9a7

diff --git a/www-apps/twint/metadata.xml b/www-apps/twint/metadata.xml
new file mode 100644
index 0000000..c62db26
--- /dev/null
+++ b/www-apps/twint/metadata.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+  <maintainer type="person">
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <longdescription>
+    No authentication. No API. No limits.
+
+Twint is an advanced Twitter scraping tool written in Python that allows for scraping Tweets from Twitter profiles without using Twitter's API.
+
+Twint utilizes Twitter's search operators to let you scrape Tweets from specific users, scrape Tweets relating to certain topics, hashtags &amp; trends, or sort out sensitive information from Tweets like e-mail and phone numbers. I find this very useful, and you can get really creative with it too.
+
+Twint also makes special queries to Twitter allowing you to also scrape a Twitter user's followers, Tweets a user has liked, and who they follow without any authentication, API, Selenium, or browser emulation.
+tl;dr Benefits
+
+Some of the benefits of using Twint vs Twitter API:
+
+    Can fetch almost all Tweets (Twitter API limits to last 3200 Tweets only);
+    Fast initial setup;
+    Can be used anonymously and without Twitter sign up;
+    No rate limitations.
+
+Limits imposed by Twitter
+
+Twitter limits scrolls while browsing the user timeline. This means that with .Profile or with .Favorites you will be able to get ~3200 tweets.
+  </longdescription>
+  <upstream>
+    <remote-id type="github">twintproject/twint</remote-id>
+    <remote-id type="pypi">twint</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/www-apps/twint/twint-2.1.18.ebuild b/www-apps/twint/twint-2.1.18.ebuild
new file mode 100644
index 0000000..47aa50d
--- /dev/null
+++ b/www-apps/twint/twint-2.1.18.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_6 )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
+HOMEPAGE="
+	https://github.com/twintproject/twint
+	https://pypi.org/project/twint
+"
+SRC_URI="https://github.com/twintproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+#tests require network
+RESTRICT="test"
+
+RDEPEND="
+	dev-python/aiohttp[${PYTHON_USEDEP}]
+	dev-python/aiohttp-socks[${PYTHON_USEDEP}]
+	dev-python/aiodns[${PYTHON_USEDEP}]
+	dev-python/beautifulsoup[${PYTHON_USEDEP}]
+	dev-python/cchardet[${PYTHON_USEDEP}]
+	dev-python/elasticsearch-py[${PYTHON_USEDEP}]
+	dev-python/fake-useragent[${PYTHON_USEDEP}]
+	dev-python/geopy[${PYTHON_USEDEP}]
+	dev-python/googletransx[${PYTHON_USEDEP}]
+	>=dev-python/pandas-0.23.0[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/schedule[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+python_test() {
+	"${EPYTHON}" test.py -v || die
+}
+
+src_test() {
+	python_foreach_impl python_test
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
  2020-04-09 11:58 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-04-09 11:56 ` Andrew Ammerlaan
  0 siblings, 0 replies; 11+ messages in thread
From: Andrew Ammerlaan @ 2020-04-09 11:56 UTC (permalink / raw
  To: gentoo-commits

commit:     c396318b02081d2b2e228961377eacb1378247e5
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Apr  9 11:55:56 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr  9 11:55:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c396318b

www-apps/twint: python_test is automatically added

to src_test

also, shortend the description a bit to make repoman
happy

Package-Manager: Portage-2.3.98, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 www-apps/twint/twint-2.1.18.ebuild | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/www-apps/twint/twint-2.1.18.ebuild b/www-apps/twint/twint-2.1.18.ebuild
index 47aa50d..0a31141 100644
--- a/www-apps/twint/twint-2.1.18.ebuild
+++ b/www-apps/twint/twint-2.1.18.ebuild
@@ -8,7 +8,7 @@ DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1
 
-DESCRIPTION="Advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
+DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
 HOMEPAGE="
 	https://github.com/twintproject/twint
 	https://pypi.org/project/twint
@@ -41,7 +41,3 @@ DEPEND="${RDEPEND}"
 python_test() {
 	"${EPYTHON}" test.py -v || die
 }
-
-src_test() {
-	python_foreach_impl python_test
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
@ 2020-04-27 21:24 Alessandro Barbieri
  0 siblings, 0 replies; 11+ messages in thread
From: Alessandro Barbieri @ 2020-04-27 21:24 UTC (permalink / raw
  To: gentoo-commits

commit:     c08c6b348c9d6c4ef98811cb8b64c3f074083a5c
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Apr 27 14:04:07 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Mon Apr 27 21:24:15 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c08c6b34

www-apps/twint: more metadata

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 www-apps/twint/metadata.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/www-apps/twint/metadata.xml b/www-apps/twint/metadata.xml
index 2aae8d6..1b56f8c 100644
--- a/www-apps/twint/metadata.xml
+++ b/www-apps/twint/metadata.xml
@@ -28,6 +28,12 @@ Limits imposed by Twitter
 Twitter limits scrolls while browsing the user timeline. This means that with .Profile or with .Favorites you will be able to get ~3200 tweets.
   </longdescription>
   <upstream>
+    <doc lang="en">https://github.com/twintproject/twint/wiki</doc>
+    <bugs-to>https://github.com/twintproject/twint/issues</bugs-to>
+    <maintainer status="active">
+      <email>codyzacharias@pm.me</email>
+      <name>Cody Zacharias</name>
+    </maintainer>
     <remote-id type="github">twintproject/twint</remote-id>
     <remote-id type="pypi">twint</remote-id>
   </upstream>


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

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
@ 2020-04-27 21:24 Alessandro Barbieri
  0 siblings, 0 replies; 11+ messages in thread
From: Alessandro Barbieri @ 2020-04-27 21:24 UTC (permalink / raw
  To: gentoo-commits

commit:     7e0aab3fadec2c5a9defc40c9ef7a365982c1599
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Apr 27 13:22:22 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Mon Apr 27 21:24:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7e0aab3f

www-apps/twint: version bump

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 www-apps/twint/Manifest            |  1 +
 www-apps/twint/twint-2.1.19.ebuild | 43 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/www-apps/twint/Manifest b/www-apps/twint/Manifest
index 67f852a..7ea75f5 100644
--- a/www-apps/twint/Manifest
+++ b/www-apps/twint/Manifest
@@ -1 +1,2 @@
 DIST twint-2.1.18.tar.gz 33213 BLAKE2B 74d8634ad178b40af726347ee144766bc5ae2480842ad617739a12ed469bf7692247bdc4dc5d979a081b88a223ce2649924cf89a6c0ff77acd10142f2290865c SHA512 0060d5f496bd19e74e72243ce83202204eacd28b57db7440ae83d112c96ea962512adf12e590e0843cf5231b1922cfcc943725aaeb2ab31127522be26e7fc9a7
+DIST twint-2.1.19.tar.gz 33142 BLAKE2B aca837c3473543414f57e728b67c46394959a51ecf4fc9b4b1be6f0914a6de79f3afcd725449eb25babfbbdc9786cc3ae74744414489efc4d01b5110c39bc306 SHA512 0318ba4432401f7deace23ca45060f3d380bf28fbdbeee554684606b92c163260cfe352d1c76f1e639aaf451e883b15b09d05b867af55394987503fbcb66d95b

diff --git a/www-apps/twint/twint-2.1.19.ebuild b/www-apps/twint/twint-2.1.19.ebuild
new file mode 100644
index 0000000..650e54b
--- /dev/null
+++ b/www-apps/twint/twint-2.1.19.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_6 )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
+HOMEPAGE="
+	https://github.com/twintproject/twint
+	https://pypi.org/project/twint
+"
+SRC_URI="https://github.com/twintproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+#tests require network
+RESTRICT="test"
+
+RDEPEND="
+	dev-python/aiohttp[${PYTHON_USEDEP}]
+	dev-python/aiohttp-socks[${PYTHON_USEDEP}]
+	dev-python/aiodns[${PYTHON_USEDEP}]
+	dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+	dev-python/cchardet[${PYTHON_USEDEP}]
+	dev-python/elasticsearch-py[${PYTHON_USEDEP}]
+	dev-python/fake-useragent[${PYTHON_USEDEP}]
+	dev-python/geopy[${PYTHON_USEDEP}]
+	dev-python/googletransx[${PYTHON_USEDEP}]
+	>=dev-python/pandas-0.23.0[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/schedule[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+python_test() {
+	"${EPYTHON}" test.py -v || die
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
  2020-06-09 16:37 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-06-09 12:59 ` Andrew Ammerlaan
  0 siblings, 0 replies; 11+ messages in thread
From: Andrew Ammerlaan @ 2020-06-09 12:59 UTC (permalink / raw
  To: gentoo-commits

commit:     4f918908e80b5140200a0564bd95e1e6608ce614
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jun  9 12:59:24 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jun  9 12:59:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4f918908

www-apps/twint: add py3_7 and version bump

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 www-apps/twint/Manifest            |  1 +
 www-apps/twint/twint-2.1.20.ebuild | 43 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/www-apps/twint/Manifest b/www-apps/twint/Manifest
index 7ea75f5..4538f25 100644
--- a/www-apps/twint/Manifest
+++ b/www-apps/twint/Manifest
@@ -1,2 +1,3 @@
 DIST twint-2.1.18.tar.gz 33213 BLAKE2B 74d8634ad178b40af726347ee144766bc5ae2480842ad617739a12ed469bf7692247bdc4dc5d979a081b88a223ce2649924cf89a6c0ff77acd10142f2290865c SHA512 0060d5f496bd19e74e72243ce83202204eacd28b57db7440ae83d112c96ea962512adf12e590e0843cf5231b1922cfcc943725aaeb2ab31127522be26e7fc9a7
 DIST twint-2.1.19.tar.gz 33142 BLAKE2B aca837c3473543414f57e728b67c46394959a51ecf4fc9b4b1be6f0914a6de79f3afcd725449eb25babfbbdc9786cc3ae74744414489efc4d01b5110c39bc306 SHA512 0318ba4432401f7deace23ca45060f3d380bf28fbdbeee554684606b92c163260cfe352d1c76f1e639aaf451e883b15b09d05b867af55394987503fbcb66d95b
+DIST twint-2.1.20.tar.gz 33518 BLAKE2B 6a7401357d7c08956a05d046cf5daec61c854b618c9cf647c2c014091b4be4b55337f598dccf772b146b215a740855449049600a6251cd7899a01afc82ba8dea SHA512 022c855b660d4a30eb7d4c864147a520b92b45048db2e6869df23cf9ab9b23b6812f74de6452d8b4b439ca02dd6742349a5c097f9b3d19222e7365034b21b864

diff --git a/www-apps/twint/twint-2.1.20.ebuild b/www-apps/twint/twint-2.1.20.ebuild
new file mode 100644
index 0000000..1e80811
--- /dev/null
+++ b/www-apps/twint/twint-2.1.20.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{6,7} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
+HOMEPAGE="
+	https://github.com/twintproject/twint
+	https://pypi.org/project/twint
+"
+SRC_URI="https://github.com/twintproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+#tests require network
+RESTRICT="test"
+
+RDEPEND="
+	dev-python/aiohttp[${PYTHON_USEDEP}]
+	dev-python/aiohttp-socks[${PYTHON_USEDEP}]
+	dev-python/aiodns[${PYTHON_USEDEP}]
+	dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+	dev-python/cchardet[${PYTHON_USEDEP}]
+	dev-python/elasticsearch-py[${PYTHON_USEDEP}]
+	dev-python/fake-useragent[${PYTHON_USEDEP}]
+	dev-python/geopy[${PYTHON_USEDEP}]
+	dev-python/googletransx[${PYTHON_USEDEP}]
+	>=dev-python/pandas-0.23.0[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/schedule[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+python_test() {
+	"${EPYTHON}" test.py -v || die
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
  2020-09-24 13:01 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-09-24 12:50 ` Andrew Ammerlaan
  0 siblings, 0 replies; 11+ messages in thread
From: Andrew Ammerlaan @ 2020-09-24 12:50 UTC (permalink / raw
  To: gentoo-commits

commit:     d8910214290a21965343c13431de1ed8eec27c27
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Sep 24 12:48:04 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Sep 24 12:48:04 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d8910214

www-apps/twint: drop old and py3.6

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 www-apps/twint/Manifest            |  2 --
 www-apps/twint/twint-2.1.18.ebuild | 43 --------------------------------------
 www-apps/twint/twint-2.1.19.ebuild | 43 --------------------------------------
 www-apps/twint/twint-2.1.20.ebuild |  2 +-
 4 files changed, 1 insertion(+), 89 deletions(-)

diff --git a/www-apps/twint/Manifest b/www-apps/twint/Manifest
index 4538f254..faf4eeff 100644
--- a/www-apps/twint/Manifest
+++ b/www-apps/twint/Manifest
@@ -1,3 +1 @@
-DIST twint-2.1.18.tar.gz 33213 BLAKE2B 74d8634ad178b40af726347ee144766bc5ae2480842ad617739a12ed469bf7692247bdc4dc5d979a081b88a223ce2649924cf89a6c0ff77acd10142f2290865c SHA512 0060d5f496bd19e74e72243ce83202204eacd28b57db7440ae83d112c96ea962512adf12e590e0843cf5231b1922cfcc943725aaeb2ab31127522be26e7fc9a7
-DIST twint-2.1.19.tar.gz 33142 BLAKE2B aca837c3473543414f57e728b67c46394959a51ecf4fc9b4b1be6f0914a6de79f3afcd725449eb25babfbbdc9786cc3ae74744414489efc4d01b5110c39bc306 SHA512 0318ba4432401f7deace23ca45060f3d380bf28fbdbeee554684606b92c163260cfe352d1c76f1e639aaf451e883b15b09d05b867af55394987503fbcb66d95b
 DIST twint-2.1.20.tar.gz 33518 BLAKE2B 6a7401357d7c08956a05d046cf5daec61c854b618c9cf647c2c014091b4be4b55337f598dccf772b146b215a740855449049600a6251cd7899a01afc82ba8dea SHA512 022c855b660d4a30eb7d4c864147a520b92b45048db2e6869df23cf9ab9b23b6812f74de6452d8b4b439ca02dd6742349a5c097f9b3d19222e7365034b21b864

diff --git a/www-apps/twint/twint-2.1.18.ebuild b/www-apps/twint/twint-2.1.18.ebuild
deleted file mode 100644
index 0a311419..00000000
--- a/www-apps/twint/twint-2.1.18.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_6 )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
-HOMEPAGE="
-	https://github.com/twintproject/twint
-	https://pypi.org/project/twint
-"
-SRC_URI="https://github.com/twintproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-#tests require network
-RESTRICT="test"
-
-RDEPEND="
-	dev-python/aiohttp[${PYTHON_USEDEP}]
-	dev-python/aiohttp-socks[${PYTHON_USEDEP}]
-	dev-python/aiodns[${PYTHON_USEDEP}]
-	dev-python/beautifulsoup[${PYTHON_USEDEP}]
-	dev-python/cchardet[${PYTHON_USEDEP}]
-	dev-python/elasticsearch-py[${PYTHON_USEDEP}]
-	dev-python/fake-useragent[${PYTHON_USEDEP}]
-	dev-python/geopy[${PYTHON_USEDEP}]
-	dev-python/googletransx[${PYTHON_USEDEP}]
-	>=dev-python/pandas-0.23.0[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/schedule[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-python_test() {
-	"${EPYTHON}" test.py -v || die
-}

diff --git a/www-apps/twint/twint-2.1.19.ebuild b/www-apps/twint/twint-2.1.19.ebuild
deleted file mode 100644
index 650e54b0..00000000
--- a/www-apps/twint/twint-2.1.19.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_6 )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
-HOMEPAGE="
-	https://github.com/twintproject/twint
-	https://pypi.org/project/twint
-"
-SRC_URI="https://github.com/twintproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-#tests require network
-RESTRICT="test"
-
-RDEPEND="
-	dev-python/aiohttp[${PYTHON_USEDEP}]
-	dev-python/aiohttp-socks[${PYTHON_USEDEP}]
-	dev-python/aiodns[${PYTHON_USEDEP}]
-	dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
-	dev-python/cchardet[${PYTHON_USEDEP}]
-	dev-python/elasticsearch-py[${PYTHON_USEDEP}]
-	dev-python/fake-useragent[${PYTHON_USEDEP}]
-	dev-python/geopy[${PYTHON_USEDEP}]
-	dev-python/googletransx[${PYTHON_USEDEP}]
-	>=dev-python/pandas-0.23.0[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/schedule[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-python_test() {
-	"${EPYTHON}" test.py -v || die
-}

diff --git a/www-apps/twint/twint-2.1.20.ebuild b/www-apps/twint/twint-2.1.20.ebuild
index 1e80811b..39b14054 100644
--- a/www-apps/twint/twint-2.1.20.ebuild
+++ b/www-apps/twint/twint-2.1.20.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_7 )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1


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

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
@ 2021-03-14  9:53 Alessandro Barbieri
  0 siblings, 0 replies; 11+ messages in thread
From: Alessandro Barbieri @ 2021-03-14  9:53 UTC (permalink / raw
  To: gentoo-commits

commit:     f97a6532d151a52702aaa95b20183661f17f7a5f
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Mar 14 09:52:57 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Mar 14 09:52:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f97a6532

www-apps/twint: bump py

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 www-apps/twint/twint-2.1.20-r1.ebuild | 43 +++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/www-apps/twint/twint-2.1.20-r1.ebuild b/www-apps/twint/twint-2.1.20-r1.ebuild
new file mode 100644
index 00000000..7d263f7a
--- /dev/null
+++ b/www-apps/twint/twint-2.1.20-r1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{7,8} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
+HOMEPAGE="
+	https://github.com/twintproject/twint
+	https://pypi.org/project/twint
+"
+SRC_URI="https://github.com/twintproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+#tests require network
+RESTRICT="test"
+
+RDEPEND="
+	dev-python/aiohttp[${PYTHON_USEDEP}]
+	dev-python/aiohttp-socks[${PYTHON_USEDEP}]
+	dev-python/aiodns[${PYTHON_USEDEP}]
+	dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+	dev-python/cchardet[${PYTHON_USEDEP}]
+	dev-python/elasticsearch-py[${PYTHON_USEDEP}]
+	dev-python/fake-useragent[${PYTHON_USEDEP}]
+	dev-python/geopy[${PYTHON_USEDEP}]
+	dev-python/googletransx[${PYTHON_USEDEP}]
+	>=dev-python/pandas-0.23.0[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/schedule[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+python_test() {
+	"${EPYTHON}" test.py -v || die
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
  2021-04-13 13:22 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2021-04-13 13:15 ` Andrew Ammerlaan
  0 siblings, 0 replies; 11+ messages in thread
From: Andrew Ammerlaan @ 2021-04-13 13:15 UTC (permalink / raw
  To: gentoo-commits

commit:     06579c2c7818de4cca02d81ffd7df8a0018acea6
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Apr 13 12:35:26 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 13 12:35:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=06579c2c

www-apps/twint: drop old

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 www-apps/twint/twint-2.1.20.ebuild | 43 --------------------------------------
 1 file changed, 43 deletions(-)

diff --git a/www-apps/twint/twint-2.1.20.ebuild b/www-apps/twint/twint-2.1.20.ebuild
deleted file mode 100644
index 39b14054e..000000000
--- a/www-apps/twint/twint-2.1.20.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_7 )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
-HOMEPAGE="
-	https://github.com/twintproject/twint
-	https://pypi.org/project/twint
-"
-SRC_URI="https://github.com/twintproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-#tests require network
-RESTRICT="test"
-
-RDEPEND="
-	dev-python/aiohttp[${PYTHON_USEDEP}]
-	dev-python/aiohttp-socks[${PYTHON_USEDEP}]
-	dev-python/aiodns[${PYTHON_USEDEP}]
-	dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
-	dev-python/cchardet[${PYTHON_USEDEP}]
-	dev-python/elasticsearch-py[${PYTHON_USEDEP}]
-	dev-python/fake-useragent[${PYTHON_USEDEP}]
-	dev-python/geopy[${PYTHON_USEDEP}]
-	dev-python/googletransx[${PYTHON_USEDEP}]
-	>=dev-python/pandas-0.23.0[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/schedule[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-python_test() {
-	"${EPYTHON}" test.py -v || die
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
@ 2021-10-09  2:50 Alessandro Barbieri
  0 siblings, 0 replies; 11+ messages in thread
From: Alessandro Barbieri @ 2021-10-09  2:50 UTC (permalink / raw
  To: gentoo-commits

commit:     25da7e4ab76164a88032a10d42570e14a08e7aa4
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Oct  9 02:38:02 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Oct  9 02:50:05 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=25da7e4a

www-apps/twint: EAPI 8

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 .../twint/{twint-2.1.20-r1.ebuild => twint-2.1.20-r2.ebuild}     | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/www-apps/twint/twint-2.1.20-r1.ebuild b/www-apps/twint/twint-2.1.20-r2.ebuild
similarity index 94%
rename from www-apps/twint/twint-2.1.20-r1.ebuild
rename to www-apps/twint/twint-2.1.20-r2.ebuild
index 323956274..e059ada66 100644
--- a/www-apps/twint/twint-2.1.20-r1.ebuild
+++ b/www-apps/twint/twint-2.1.20-r2.ebuild
@@ -1,10 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="7"
+EAPI=8
 
-PYTHON_COMPAT=( python3_{7,8} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{8..9} )
 
 inherit distutils-r1
 
@@ -19,8 +19,6 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test"
-#tests require network
-RESTRICT="test"
 
 RDEPEND="
 	dev-python/aiohttp[${PYTHON_USEDEP}]
@@ -38,6 +36,9 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
+RESTRICT="test"
+PROPERTIES="test_network"
+
 python_test() {
 	"${EPYTHON}" test.py -v || die
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
@ 2021-10-17  5:24 Anna Vyalkova
  0 siblings, 0 replies; 11+ messages in thread
From: Anna Vyalkova @ 2021-10-17  5:24 UTC (permalink / raw
  To: gentoo-commits

commit:     5f4ec6d4035ec9be25c4fd08fd8e89c9a9200f47
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sat Oct 16 19:29:28 2021 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Oct 17 05:22:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f4ec6d4

www-apps/twint: use geopy from ::gentoo

Closes: https://bugs.gentoo.org/817248
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 www-apps/twint/metadata.xml           | 3 +--
 www-apps/twint/twint-2.1.20-r2.ebuild | 6 ++----
 2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/www-apps/twint/metadata.xml b/www-apps/twint/metadata.xml
index 1b56f8c17..050abe23f 100644
--- a/www-apps/twint/metadata.xml
+++ b/www-apps/twint/metadata.xml
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
   <maintainer type="person">
     <email>lssndrbarbieri@gmail.com</email>

diff --git a/www-apps/twint/twint-2.1.20-r2.ebuild b/www-apps/twint/twint-2.1.20-r2.ebuild
index e059ada66..925735b9f 100644
--- a/www-apps/twint/twint-2.1.20-r2.ebuild
+++ b/www-apps/twint/twint-2.1.20-r2.ebuild
@@ -3,9 +3,7 @@
 
 EAPI=8
 
-DISTUTILS_USE_SETUPTOOLS=rdepend
 PYTHON_COMPAT=( python3_{8..9} )
-
 inherit distutils-r1
 
 DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
@@ -28,13 +26,13 @@ RDEPEND="
 	dev-python/cchardet[${PYTHON_USEDEP}]
 	dev-python/elasticsearch-py[${PYTHON_USEDEP}]
 	dev-python/fake-useragent[${PYTHON_USEDEP}]
-	dev-python/geopy[${PYTHON_USEDEP}]
 	dev-python/googletransx[${PYTHON_USEDEP}]
 	>=dev-python/pandas-0.23.0[${PYTHON_USEDEP}]
 	dev-python/PySocks[${PYTHON_USEDEP}]
 	dev-python/schedule[${PYTHON_USEDEP}]
+	sci-geosciences/geopy[${PYTHON_USEDEP}]
 "
-DEPEND="${RDEPEND}"
+BDEPEND="test? ( ${RDEPEND} )"
 
 RESTRICT="test"
 PROPERTIES="test_network"


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

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/
@ 2022-04-20 21:57 Alessandro Barbieri
  0 siblings, 0 replies; 11+ messages in thread
From: Alessandro Barbieri @ 2022-04-20 21:57 UTC (permalink / raw
  To: gentoo-commits

commit:     f6dc58ef9441437d63ea9d4e47be83f5f94c1954
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Apr 20 21:54:28 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Wed Apr 20 21:57:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f6dc58ef

www-apps/twint: add 2.1.20_p20220316

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 www-apps/twint/Manifest                      |  1 +
 www-apps/twint/twint-2.1.20_p20220316.ebuild | 42 ++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/www-apps/twint/Manifest b/www-apps/twint/Manifest
index faf4eefff..df254a3bb 100644
--- a/www-apps/twint/Manifest
+++ b/www-apps/twint/Manifest
@@ -1 +1,2 @@
 DIST twint-2.1.20.tar.gz 33518 BLAKE2B 6a7401357d7c08956a05d046cf5daec61c854b618c9cf647c2c014091b4be4b55337f598dccf772b146b215a740855449049600a6251cd7899a01afc82ba8dea SHA512 022c855b660d4a30eb7d4c864147a520b92b45048db2e6869df23cf9ab9b23b6812f74de6452d8b4b439ca02dd6742349a5c097f9b3d19222e7365034b21b864
+DIST twint-2.1.20_p20220316.tar.gz 39871 BLAKE2B 6e289940c7d96537fe60a345470c059819a548461fa48c2e329a0f50af89eb0c6f0dc7b0525190edc3cf8f16e9b733ae2480e60e365065bbd92a87f8a29ce17c SHA512 73b646f8717f3e3cb9e2909a74e36a1d917da874bcb00cc4827853e4bd552811d3b7382c9f245defb68ace7eddbb0e83c5e563037d6cb7383a844366b43bb489

diff --git a/www-apps/twint/twint-2.1.20_p20220316.ebuild b/www-apps/twint/twint-2.1.20_p20220316.ebuild
new file mode 100644
index 000000000..3c4020d64
--- /dev/null
+++ b/www-apps/twint/twint-2.1.20_p20220316.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+COMMIT="20dee4a397ff46e29d26545c000eb039ddb8dbd0"
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API"
+HOMEPAGE="https://github.com/minamotorin/twint"
+SRC_URI="https://github.com/minamotorin/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+	dev-python/aiohttp[${PYTHON_USEDEP}]
+	dev-python/aiohttp-socks[${PYTHON_USEDEP}]
+	dev-python/aiodns[${PYTHON_USEDEP}]
+	dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+	dev-python/cchardet[${PYTHON_USEDEP}]
+	dev-python/elasticsearch-py[${PYTHON_USEDEP}]
+	dev-python/fake-useragent[${PYTHON_USEDEP}]
+	dev-python/googletransx[${PYTHON_USEDEP}]
+	>=dev-python/pandas-0.23.0[${PYTHON_USEDEP}]
+	dev-python/PySocks[${PYTHON_USEDEP}]
+	dev-python/schedule[${PYTHON_USEDEP}]
+	sci-geosciences/geopy[${PYTHON_USEDEP}]
+"
+BDEPEND="test? ( ${RDEPEND} )"
+
+RESTRICT="test"
+PROPERTIES="test_network"
+
+python_test() {
+	"${EPYTHON}" test.py -v || die
+}


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

end of thread, other threads:[~2022-04-20 21:57 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-20 21:57 [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2021-10-17  5:24 Anna Vyalkova
2021-10-09  2:50 Alessandro Barbieri
2021-04-13 13:22 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-04-13 13:15 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-03-14  9:53 Alessandro Barbieri
2020-09-24 13:01 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-09-24 12:50 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-06-09 16:37 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-06-09 12:59 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-27 21:24 Alessandro Barbieri
2020-04-27 21:24 Alessandro Barbieri
2020-04-09 11:58 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-09 11:56 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-09  2:24 Alessandro Barbieri

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