public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-07-28  9:12 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-07-28  9:12 UTC (permalink / raw
  To: gentoo-commits

commit:     73213ffb5d0da2b1a05c0573f2c511ac0e18225e
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Mon Jul 27 22:27:56 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Jul 27 22:27:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=73213ffb

net-misc/gallery-dl: restrict tests

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/gallery-dl-1.14.3.ebuild | 3 ++-
 net-misc/gallery-dl/gallery-dl-9999.ebuild   | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
index 3d34bec..b8344db 100644
--- a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
@@ -19,6 +19,7 @@ else
 	KEYWORDS="~amd64"
 fi
 
+RESTRICT="test"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="bash-completion zsh-completion"
@@ -28,7 +29,7 @@ RDEPEND="
 "
 
 # tests require network access
-#distutils_enable_tests setup.py
+distutils_enable_tests setup.py
 
 src_compile() {
 	if use bash-completion || use zsh-completion

diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild
index 3d34bec..b8344db 100644
--- a/net-misc/gallery-dl/gallery-dl-9999.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-9999.ebuild
@@ -19,6 +19,7 @@ else
 	KEYWORDS="~amd64"
 fi
 
+RESTRICT="test"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="bash-completion zsh-completion"
@@ -28,7 +29,7 @@ RDEPEND="
 "
 
 # tests require network access
-#distutils_enable_tests setup.py
+distutils_enable_tests setup.py
 
 src_compile() {
 	if use bash-completion || use zsh-completion


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-07-28  9:12 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-07-28  9:12 UTC (permalink / raw
  To: gentoo-commits

commit:     b937683d6f15e78e519f0234ddfe348b5ce1d6d5
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Mon Jul 27 21:44:37 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Jul 27 21:44:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b937683d

net-misc/gallery-dl: new package; add version 1.14.3 and 9999

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/Manifest                 |  1 +
 net-misc/gallery-dl/gallery-dl-1.14.3.ebuild | 49 ++++++++++++++++++++++++++++
 net-misc/gallery-dl/gallery-dl-9999.ebuild   | 49 ++++++++++++++++++++++++++++
 net-misc/gallery-dl/metadata.xml             | 14 ++++++++
 4 files changed, 113 insertions(+)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
new file mode 100644
index 0000000..d505f12
--- /dev/null
+++ b/net-misc/gallery-dl/Manifest
@@ -0,0 +1 @@
+DIST v1.14.3.tar.gz 317004 BLAKE2B 9ff327dde9e4fb361e87e40b835cf5324f639b0f2d61ff762854d685a381c0f2b098545c295eae0b92fdb67aea23cd03379af3bae22a9a928e4dcb3d5b40f689 SHA512 66971ed49c7d90bf249fe5b48848c05f2e085cca04a448fd818b69a0fcd27b8739414ec506f429ef4ca9ae45f7a8919fdfefbd9206bb5bb475ca3e783f5ef494

diff --git a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
new file mode 100644
index 0000000..3d34bec
--- /dev/null
+++ b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=(python3_{6,7,8})
+
+inherit eutils distutils-r1
+
+DESCRIPTION="Download image galleries and collections from several image hosting sites"
+HOMEPAGE="https://github.com/mikf/gallery-dl"
+
+if [[ "${PV}" == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
+	KEYWORDS=""
+else
+	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="bash-completion zsh-completion"
+
+RDEPEND="
+	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
+"
+
+# tests require network access
+#distutils_enable_tests setup.py
+
+src_compile() {
+	if use bash-completion || use zsh-completion
+	then
+		emake completion
+	fi
+
+	emake man
+
+	# this will install shell completion and man pages generated above (if any)
+	distutils-r1_src_compile
+}
+
+pkg_postinst() {
+	elog "Optionad dependencies:"
+	elog "media-video/ffmpeg - for Pixiv Ugoira to WebM conversion"
+	elog "net-misc/youtube-dl - for video downloads"
+}

diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild
new file mode 100644
index 0000000..3d34bec
--- /dev/null
+++ b/net-misc/gallery-dl/gallery-dl-9999.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=(python3_{6,7,8})
+
+inherit eutils distutils-r1
+
+DESCRIPTION="Download image galleries and collections from several image hosting sites"
+HOMEPAGE="https://github.com/mikf/gallery-dl"
+
+if [[ "${PV}" == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
+	KEYWORDS=""
+else
+	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="bash-completion zsh-completion"
+
+RDEPEND="
+	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
+"
+
+# tests require network access
+#distutils_enable_tests setup.py
+
+src_compile() {
+	if use bash-completion || use zsh-completion
+	then
+		emake completion
+	fi
+
+	emake man
+
+	# this will install shell completion and man pages generated above (if any)
+	distutils-r1_src_compile
+}
+
+pkg_postinst() {
+	elog "Optionad dependencies:"
+	elog "media-video/ffmpeg - for Pixiv Ugoira to WebM conversion"
+	elog "net-misc/youtube-dl - for video downloads"
+}

diff --git a/net-misc/gallery-dl/metadata.xml b/net-misc/gallery-dl/metadata.xml
new file mode 100644
index 0000000..5346852
--- /dev/null
+++ b/net-misc/gallery-dl/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>xgqt@protonmail.com</email>
+    <name>Maciej Barć</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">cdr/code-server</remote-id>
+  </upstream>
+  <longdescription>
+gallery-dl is a command-line program to download image-galleries and -collections from several image hosting sites (see Supported Sites). It is a cross-platform tool with many configuration options and powerful filenaming capabilities.
+  </longdescription>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-07-28  9:12 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-07-28  9:12 UTC (permalink / raw
  To: gentoo-commits

commit:     17c40d87ae6647c1ff76c9b1f48743df20d535f5
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jul 28 09:11:59 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jul 28 09:11:59 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=17c40d87

net-misc/gallery-dl: fix typo

also add DISTUTILS_USE_SETUPTOOLS to prevent warning
during prepare phase

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

 net-misc/gallery-dl/gallery-dl-1.14.3.ebuild | 3 ++-
 net-misc/gallery-dl/gallery-dl-9999.ebuild   | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
index b8344db..9e9053b 100644
--- a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
@@ -4,6 +4,7 @@
 EAPI=7
 
 PYTHON_COMPAT=(python3_{6,7,8})
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit eutils distutils-r1
 
@@ -44,7 +45,7 @@ src_compile() {
 }
 
 pkg_postinst() {
-	elog "Optionad dependencies:"
+	elog "Optional dependencies:"
 	elog "media-video/ffmpeg - for Pixiv Ugoira to WebM conversion"
 	elog "net-misc/youtube-dl - for video downloads"
 }

diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild
index b8344db..9e9053b 100644
--- a/net-misc/gallery-dl/gallery-dl-9999.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-9999.ebuild
@@ -4,6 +4,7 @@
 EAPI=7
 
 PYTHON_COMPAT=(python3_{6,7,8})
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit eutils distutils-r1
 
@@ -44,7 +45,7 @@ src_compile() {
 }
 
 pkg_postinst() {
-	elog "Optionad dependencies:"
+	elog "Optional dependencies:"
 	elog "media-video/ffmpeg - for Pixiv Ugoira to WebM conversion"
 	elog "net-misc/youtube-dl - for video downloads"
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-07-28  9:12 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-07-28  9:12 UTC (permalink / raw
  To: gentoo-commits

commit:     5f72262e86181b04cc015bc3b87e2b256b6fb6c3
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Mon Jul 27 21:46:38 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Jul 27 21:46:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f72262e

net-misc/gallery-dl: fix metadata

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/metadata.xml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/net-misc/gallery-dl/metadata.xml b/net-misc/gallery-dl/metadata.xml
index 5346852..9a5ad89 100644
--- a/net-misc/gallery-dl/metadata.xml
+++ b/net-misc/gallery-dl/metadata.xml
@@ -6,9 +6,10 @@
     <name>Maciej Barć</name>
   </maintainer>
   <upstream>
-    <remote-id type="github">cdr/code-server</remote-id>
+    <remote-id type="github">mikf/gallery-dl</remote-id>
   </upstream>
   <longdescription>
-gallery-dl is a command-line program to download image-galleries and -collections from several image hosting sites (see Supported Sites). It is a cross-platform tool with many configuration options and powerful filenaming capabilities.
+      gallery-dl is a command-line program to download image-galleries and -collections from several image hosting sites.
+      It is a cross-platform tool with many configuration options and powerful filenaming capabilities.
   </longdescription>
 </pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-07-28 14:32 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-07-28 14:32 UTC (permalink / raw
  To: gentoo-commits

commit:     3812f7154f2b2c0708a0432041c03a5b00e4d5d6
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Tue Jul 28 10:41:40 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jul 28 10:41:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3812f715

net-misc/gallery-dl: use optfeature

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/gallery-dl-1.14.3.ebuild | 8 +++++---
 net-misc/gallery-dl/gallery-dl-9999.ebuild   | 8 +++++---
 2 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
index 9e9053b..edcab4b 100644
--- a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
@@ -45,7 +45,9 @@ src_compile() {
 }
 
 pkg_postinst() {
-	elog "Optional dependencies:"
-	elog "media-video/ffmpeg - for Pixiv Ugoira to WebM conversion"
-	elog "net-misc/youtube-dl - for video downloads"
+	elog "To get additional features, some optional runtime dependencies"
+	elog "may be installed:"
+	elog ""
+	optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
+	optfeature "video downloads" net-misc/youtube-dl
 }

diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild
index 9e9053b..edcab4b 100644
--- a/net-misc/gallery-dl/gallery-dl-9999.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-9999.ebuild
@@ -45,7 +45,9 @@ src_compile() {
 }
 
 pkg_postinst() {
-	elog "Optional dependencies:"
-	elog "media-video/ffmpeg - for Pixiv Ugoira to WebM conversion"
-	elog "net-misc/youtube-dl - for video downloads"
+	elog "To get additional features, some optional runtime dependencies"
+	elog "may be installed:"
+	elog ""
+	optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
+	optfeature "video downloads" net-misc/youtube-dl
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-08-17 10:17 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-08-17 10:17 UTC (permalink / raw
  To: gentoo-commits

commit:     019a49670fd6c303e70ecf9b33c16215c4b0efa0
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Sun Aug 16 12:54:31 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Aug 16 12:54:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=019a4967

net-misc/gallery-dl: bump to version 1.14.4

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/Manifest                 |  1 +
 net-misc/gallery-dl/gallery-dl-1.14.4.ebuild | 53 ++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index d505f12..077bc6e 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1 +1,2 @@
 DIST v1.14.3.tar.gz 317004 BLAKE2B 9ff327dde9e4fb361e87e40b835cf5324f639b0f2d61ff762854d685a381c0f2b098545c295eae0b92fdb67aea23cd03379af3bae22a9a928e4dcb3d5b40f689 SHA512 66971ed49c7d90bf249fe5b48848c05f2e085cca04a448fd818b69a0fcd27b8739414ec506f429ef4ca9ae45f7a8919fdfefbd9206bb5bb475ca3e783f5ef494
+DIST v1.14.4.tar.gz 319657 BLAKE2B dfcd0b02bf50f232f00e13b1ff762820d4e89d95933bd4ad6635018231de49c98a1097381c1ee5d22e9b9aec9ecd4c6e49a6078b2e26f0291fc216cf8546e1ee SHA512 617c5f938495143388a32583ae712d93b34ffcf1523f04b2fea1ada06c628d49f83eb88527d7c8a67049005961a3eadac5090de418da0e9503904d2ba8a453ff

diff --git a/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild
new file mode 100644
index 0000000..edcab4b
--- /dev/null
+++ b/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=(python3_{6,7,8})
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit eutils distutils-r1
+
+DESCRIPTION="Download image galleries and collections from several image hosting sites"
+HOMEPAGE="https://github.com/mikf/gallery-dl"
+
+if [[ "${PV}" == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
+	KEYWORDS=""
+else
+	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+RESTRICT="test"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="bash-completion zsh-completion"
+
+RDEPEND="
+	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
+"
+
+# tests require network access
+distutils_enable_tests setup.py
+
+src_compile() {
+	if use bash-completion || use zsh-completion
+	then
+		emake completion
+	fi
+
+	emake man
+
+	# this will install shell completion and man pages generated above (if any)
+	distutils-r1_src_compile
+}
+
+pkg_postinst() {
+	elog "To get additional features, some optional runtime dependencies"
+	elog "may be installed:"
+	elog ""
+	optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
+	optfeature "video downloads" net-misc/youtube-dl
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-09-22 11:13 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-09-22 11:13 UTC (permalink / raw
  To: gentoo-commits

commit:     59aa9d95251fc8e9c508a47a80dcf8342bd2394e
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Mon Sep 21 18:41:30 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Sep 21 18:41:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=59aa9d95

net-misc/gallery-dl: bump to 1.15.0

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/Manifest                 |  1 +
 net-misc/gallery-dl/gallery-dl-1.15.0.ebuild | 53 ++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index 077bc6e1..f13e8d03 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1,2 +1,3 @@
 DIST v1.14.3.tar.gz 317004 BLAKE2B 9ff327dde9e4fb361e87e40b835cf5324f639b0f2d61ff762854d685a381c0f2b098545c295eae0b92fdb67aea23cd03379af3bae22a9a928e4dcb3d5b40f689 SHA512 66971ed49c7d90bf249fe5b48848c05f2e085cca04a448fd818b69a0fcd27b8739414ec506f429ef4ca9ae45f7a8919fdfefbd9206bb5bb475ca3e783f5ef494
 DIST v1.14.4.tar.gz 319657 BLAKE2B dfcd0b02bf50f232f00e13b1ff762820d4e89d95933bd4ad6635018231de49c98a1097381c1ee5d22e9b9aec9ecd4c6e49a6078b2e26f0291fc216cf8546e1ee SHA512 617c5f938495143388a32583ae712d93b34ffcf1523f04b2fea1ada06c628d49f83eb88527d7c8a67049005961a3eadac5090de418da0e9503904d2ba8a453ff
+DIST v1.15.0.tar.gz 323180 BLAKE2B 2b0bac0e0a3a3c1c3cab1860f1f584fd09e5f6163a69a94419f2924bd62e1fb9464f8139f6cdce4a7020accaaa44cf1e60c03dab2db7d9568d35693a8f935c4e SHA512 3d15ebeaa088130efb4c33ad2bc2d7ed2af78eafc68ef00b451d65db7f6b589cf10e248c309677dbbfe7202885d602afdbcab330dae0ebce190bd1f5dce25834

diff --git a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
new file mode 100644
index 00000000..edcab4bd
--- /dev/null
+++ b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=(python3_{6,7,8})
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit eutils distutils-r1
+
+DESCRIPTION="Download image galleries and collections from several image hosting sites"
+HOMEPAGE="https://github.com/mikf/gallery-dl"
+
+if [[ "${PV}" == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
+	KEYWORDS=""
+else
+	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+RESTRICT="test"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="bash-completion zsh-completion"
+
+RDEPEND="
+	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
+"
+
+# tests require network access
+distutils_enable_tests setup.py
+
+src_compile() {
+	if use bash-completion || use zsh-completion
+	then
+		emake completion
+	fi
+
+	emake man
+
+	# this will install shell completion and man pages generated above (if any)
+	distutils-r1_src_compile
+}
+
+pkg_postinst() {
+	elog "To get additional features, some optional runtime dependencies"
+	elog "may be installed:"
+	elog ""
+	optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
+	optfeature "video downloads" net-misc/youtube-dl
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-09-22 11:13 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-09-22 11:13 UTC (permalink / raw
  To: gentoo-commits

commit:     512de45fd71f78d7fd81c382449faf2033a87d85
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Mon Sep 21 18:49:38 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Sep 21 18:49:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=512de45f

net-misc/gallery-dl: proper dist name; add missing inherit

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/Manifest                 | 2 +-
 net-misc/gallery-dl/gallery-dl-1.15.0.ebuild | 4 ++--
 net-misc/gallery-dl/gallery-dl-9999.ebuild   | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index c99382cf..602da0ea 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1 +1 @@
-DIST v1.15.0.tar.gz 323180 BLAKE2B 2b0bac0e0a3a3c1c3cab1860f1f584fd09e5f6163a69a94419f2924bd62e1fb9464f8139f6cdce4a7020accaaa44cf1e60c03dab2db7d9568d35693a8f935c4e SHA512 3d15ebeaa088130efb4c33ad2bc2d7ed2af78eafc68ef00b451d65db7f6b589cf10e248c309677dbbfe7202885d602afdbcab330dae0ebce190bd1f5dce25834
+DIST gallery-dl-1.15.0.tar.gz 323180 BLAKE2B 2b0bac0e0a3a3c1c3cab1860f1f584fd09e5f6163a69a94419f2924bd62e1fb9464f8139f6cdce4a7020accaaa44cf1e60c03dab2db7d9568d35693a8f935c4e SHA512 3d15ebeaa088130efb4c33ad2bc2d7ed2af78eafc68ef00b451d65db7f6b589cf10e248c309677dbbfe7202885d602afdbcab330dae0ebce190bd1f5dce25834

diff --git a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
index edcab4bd..da864b88 100644
--- a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=(python3_{6,7,8})
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
-inherit eutils distutils-r1
+inherit eutils distutils-r1 optfeature
 
 DESCRIPTION="Download image galleries and collections from several image hosting sites"
 HOMEPAGE="https://github.com/mikf/gallery-dl"
@@ -16,7 +16,7 @@ if [[ "${PV}" == *9999* ]]; then
 	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
 	KEYWORDS=""
 else
-	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz"
+	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64"
 fi
 

diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild
index edcab4bd..da864b88 100644
--- a/net-misc/gallery-dl/gallery-dl-9999.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-9999.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=(python3_{6,7,8})
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
-inherit eutils distutils-r1
+inherit eutils distutils-r1 optfeature
 
 DESCRIPTION="Download image galleries and collections from several image hosting sites"
 HOMEPAGE="https://github.com/mikf/gallery-dl"
@@ -16,7 +16,7 @@ if [[ "${PV}" == *9999* ]]; then
 	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
 	KEYWORDS=""
 else
-	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz"
+	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64"
 fi
 


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-09-22 11:13 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-09-22 11:13 UTC (permalink / raw
  To: gentoo-commits

commit:     e41360b410f3e8f40a720e326895e5dd67ec0026
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Mon Sep 21 18:43:57 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Sep 21 18:43:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e41360b4

net-misc/gallery-dl: drop old

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/Manifest                 |  2 --
 net-misc/gallery-dl/gallery-dl-1.14.3.ebuild | 53 ----------------------------
 net-misc/gallery-dl/gallery-dl-1.14.4.ebuild | 53 ----------------------------
 3 files changed, 108 deletions(-)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index f13e8d03..c99382cf 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1,3 +1 @@
-DIST v1.14.3.tar.gz 317004 BLAKE2B 9ff327dde9e4fb361e87e40b835cf5324f639b0f2d61ff762854d685a381c0f2b098545c295eae0b92fdb67aea23cd03379af3bae22a9a928e4dcb3d5b40f689 SHA512 66971ed49c7d90bf249fe5b48848c05f2e085cca04a448fd818b69a0fcd27b8739414ec506f429ef4ca9ae45f7a8919fdfefbd9206bb5bb475ca3e783f5ef494
-DIST v1.14.4.tar.gz 319657 BLAKE2B dfcd0b02bf50f232f00e13b1ff762820d4e89d95933bd4ad6635018231de49c98a1097381c1ee5d22e9b9aec9ecd4c6e49a6078b2e26f0291fc216cf8546e1ee SHA512 617c5f938495143388a32583ae712d93b34ffcf1523f04b2fea1ada06c628d49f83eb88527d7c8a67049005961a3eadac5090de418da0e9503904d2ba8a453ff
 DIST v1.15.0.tar.gz 323180 BLAKE2B 2b0bac0e0a3a3c1c3cab1860f1f584fd09e5f6163a69a94419f2924bd62e1fb9464f8139f6cdce4a7020accaaa44cf1e60c03dab2db7d9568d35693a8f935c4e SHA512 3d15ebeaa088130efb4c33ad2bc2d7ed2af78eafc68ef00b451d65db7f6b589cf10e248c309677dbbfe7202885d602afdbcab330dae0ebce190bd1f5dce25834

diff --git a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
deleted file mode 100644
index edcab4bd..00000000
--- a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=(python3_{6,7,8})
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit eutils distutils-r1
-
-DESCRIPTION="Download image galleries and collections from several image hosting sites"
-HOMEPAGE="https://github.com/mikf/gallery-dl"
-
-if [[ "${PV}" == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
-	KEYWORDS=""
-else
-	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-RESTRICT="test"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="bash-completion zsh-completion"
-
-RDEPEND="
-	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
-"
-
-# tests require network access
-distutils_enable_tests setup.py
-
-src_compile() {
-	if use bash-completion || use zsh-completion
-	then
-		emake completion
-	fi
-
-	emake man
-
-	# this will install shell completion and man pages generated above (if any)
-	distutils-r1_src_compile
-}
-
-pkg_postinst() {
-	elog "To get additional features, some optional runtime dependencies"
-	elog "may be installed:"
-	elog ""
-	optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
-	optfeature "video downloads" net-misc/youtube-dl
-}

diff --git a/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild
deleted file mode 100644
index edcab4bd..00000000
--- a/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=(python3_{6,7,8})
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit eutils distutils-r1
-
-DESCRIPTION="Download image galleries and collections from several image hosting sites"
-HOMEPAGE="https://github.com/mikf/gallery-dl"
-
-if [[ "${PV}" == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
-	KEYWORDS=""
-else
-	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-RESTRICT="test"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="bash-completion zsh-completion"
-
-RDEPEND="
-	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
-"
-
-# tests require network access
-distutils_enable_tests setup.py
-
-src_compile() {
-	if use bash-completion || use zsh-completion
-	then
-		emake completion
-	fi
-
-	emake man
-
-	# this will install shell completion and man pages generated above (if any)
-	distutils-r1_src_compile
-}
-
-pkg_postinst() {
-	elog "To get additional features, some optional runtime dependencies"
-	elog "may be installed:"
-	elog ""
-	optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
-	optfeature "video downloads" net-misc/youtube-dl
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-10-26 18:49 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-10-26 18:49 UTC (permalink / raw
  To: gentoo-commits

commit:     4c662d2c0f785f9ceaeda2e4d17c1bb0e39ed43d
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Mon Oct 26 13:22:38 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Oct 26 13:22:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4c662d2c

net-misc/gallery-dl: bring QA fixes from PR review

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/gallery-dl-1.15.0.ebuild | 15 ++++-----------
 net-misc/gallery-dl/gallery-dl-9999.ebuild   | 15 ++++-----------
 2 files changed, 8 insertions(+), 22 deletions(-)

diff --git a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
index cd69e03d..1fc6f3ea 100644
--- a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=(python3_{7,8})
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
-inherit eutils distutils-r1 optfeature
+inherit distutils-r1 optfeature
 
 DESCRIPTION="Download image galleries and collections from several image hosting sites"
 HOMEPAGE="https://github.com/mikf/gallery-dl"
@@ -14,33 +14,26 @@ HOMEPAGE="https://github.com/mikf/gallery-dl"
 if [[ "${PV}" == *9999* ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
-	KEYWORDS=""
 else
 	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64"
 fi
 
+# tests require network access
 RESTRICT="test"
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="bash-completion zsh-completion"
 
 RDEPEND="
 	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
 "
 
-# tests require network access
 distutils_enable_tests setup.py
 
 src_compile() {
-	if use bash-completion || use zsh-completion
-	then
-		emake completion
-	fi
-
+	emake data/completion/gallery-dl
+	emake data/completion/_gallery-dl
 	emake man
-
-	# this will install shell completion and man pages generated above (if any)
 	distutils-r1_src_compile
 }
 

diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild
index cd69e03d..1fc6f3ea 100644
--- a/net-misc/gallery-dl/gallery-dl-9999.ebuild
+++ b/net-misc/gallery-dl/gallery-dl-9999.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=(python3_{7,8})
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
-inherit eutils distutils-r1 optfeature
+inherit distutils-r1 optfeature
 
 DESCRIPTION="Download image galleries and collections from several image hosting sites"
 HOMEPAGE="https://github.com/mikf/gallery-dl"
@@ -14,33 +14,26 @@ HOMEPAGE="https://github.com/mikf/gallery-dl"
 if [[ "${PV}" == *9999* ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
-	KEYWORDS=""
 else
 	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64"
 fi
 
+# tests require network access
 RESTRICT="test"
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="bash-completion zsh-completion"
 
 RDEPEND="
 	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
 "
 
-# tests require network access
 distutils_enable_tests setup.py
 
 src_compile() {
-	if use bash-completion || use zsh-completion
-	then
-		emake completion
-	fi
-
+	emake data/completion/gallery-dl
+	emake data/completion/_gallery-dl
 	emake man
-
-	# this will install shell completion and man pages generated above (if any)
 	distutils-r1_src_compile
 }
 


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-10-26 18:49 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-10-26 18:49 UTC (permalink / raw
  To: gentoo-commits

commit:     0d278df7e4563bcca1d28cb67d073fb17dac9a0d
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Mon Oct 26 13:25:18 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Oct 26 13:25:18 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0d278df7

net-misc/gallery-dl: bump to 1.15.2

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/Manifest                 |  1 +
 net-misc/gallery-dl/gallery-dl-1.15.2.ebuild | 46 ++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index 602da0ea..a4788c76 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1 +1,2 @@
 DIST gallery-dl-1.15.0.tar.gz 323180 BLAKE2B 2b0bac0e0a3a3c1c3cab1860f1f584fd09e5f6163a69a94419f2924bd62e1fb9464f8139f6cdce4a7020accaaa44cf1e60c03dab2db7d9568d35693a8f935c4e SHA512 3d15ebeaa088130efb4c33ad2bc2d7ed2af78eafc68ef00b451d65db7f6b589cf10e248c309677dbbfe7202885d602afdbcab330dae0ebce190bd1f5dce25834
+DIST gallery-dl-1.15.2.tar.gz 323739 BLAKE2B 99a06331bd7dc6ec951749129ad0ac797d9ce2d9f98e75a29198fd47d0481c43b96922ea08149abfe990e8994a19b3170853618de9b51465264d100dba777f32 SHA512 7f31c0485d9de6eaf76e7b0772e66049f9aa8fd7d77d3ef6fd2803d7ec7dddbf3419051c9d8b3984eb86a8fbbf9a168cf8ec69a55082a38e2ca23cfc3574b1f4

diff --git a/net-misc/gallery-dl/gallery-dl-1.15.2.ebuild b/net-misc/gallery-dl/gallery-dl-1.15.2.ebuild
new file mode 100644
index 00000000..1fc6f3ea
--- /dev/null
+++ b/net-misc/gallery-dl/gallery-dl-1.15.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 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 optfeature
+
+DESCRIPTION="Download image galleries and collections from several image hosting sites"
+HOMEPAGE="https://github.com/mikf/gallery-dl"
+
+if [[ "${PV}" == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
+else
+	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+# tests require network access
+RESTRICT="test"
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="
+	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests setup.py
+
+src_compile() {
+	emake data/completion/gallery-dl
+	emake data/completion/_gallery-dl
+	emake man
+	distutils-r1_src_compile
+}
+
+pkg_postinst() {
+	elog "To get additional features, some optional runtime dependencies"
+	elog "may be installed:"
+	elog ""
+	optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
+	optfeature "video downloads" net-misc/youtube-dl
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/
@ 2020-11-12 19:46 Andrew Ammerlaan
  0 siblings, 0 replies; 12+ messages in thread
From: Andrew Ammerlaan @ 2020-11-12 19:46 UTC (permalink / raw
  To: gentoo-commits

commit:     5e38ef48179229afe4d625ddb054648e16c8bd79
Author:     Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Wed Nov 11 15:25:58 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Nov 11 15:26:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e38ef48

net-misc/gallery-dl: move to ::gentoo

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>

 net-misc/gallery-dl/Manifest                 |  2 --
 net-misc/gallery-dl/gallery-dl-1.15.0.ebuild | 46 ----------------------------
 net-misc/gallery-dl/gallery-dl-1.15.2.ebuild | 46 ----------------------------
 net-misc/gallery-dl/gallery-dl-9999.ebuild   | 46 ----------------------------
 net-misc/gallery-dl/metadata.xml             | 15 ---------
 5 files changed, 155 deletions(-)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
deleted file mode 100644
index a4788c76..00000000
--- a/net-misc/gallery-dl/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST gallery-dl-1.15.0.tar.gz 323180 BLAKE2B 2b0bac0e0a3a3c1c3cab1860f1f584fd09e5f6163a69a94419f2924bd62e1fb9464f8139f6cdce4a7020accaaa44cf1e60c03dab2db7d9568d35693a8f935c4e SHA512 3d15ebeaa088130efb4c33ad2bc2d7ed2af78eafc68ef00b451d65db7f6b589cf10e248c309677dbbfe7202885d602afdbcab330dae0ebce190bd1f5dce25834
-DIST gallery-dl-1.15.2.tar.gz 323739 BLAKE2B 99a06331bd7dc6ec951749129ad0ac797d9ce2d9f98e75a29198fd47d0481c43b96922ea08149abfe990e8994a19b3170853618de9b51465264d100dba777f32 SHA512 7f31c0485d9de6eaf76e7b0772e66049f9aa8fd7d77d3ef6fd2803d7ec7dddbf3419051c9d8b3984eb86a8fbbf9a168cf8ec69a55082a38e2ca23cfc3574b1f4

diff --git a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
deleted file mode 100644
index 1fc6f3ea..00000000
--- a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 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 optfeature
-
-DESCRIPTION="Download image galleries and collections from several image hosting sites"
-HOMEPAGE="https://github.com/mikf/gallery-dl"
-
-if [[ "${PV}" == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
-else
-	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-# tests require network access
-RESTRICT="test"
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="
-	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests setup.py
-
-src_compile() {
-	emake data/completion/gallery-dl
-	emake data/completion/_gallery-dl
-	emake man
-	distutils-r1_src_compile
-}
-
-pkg_postinst() {
-	elog "To get additional features, some optional runtime dependencies"
-	elog "may be installed:"
-	elog ""
-	optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
-	optfeature "video downloads" net-misc/youtube-dl
-}

diff --git a/net-misc/gallery-dl/gallery-dl-1.15.2.ebuild b/net-misc/gallery-dl/gallery-dl-1.15.2.ebuild
deleted file mode 100644
index 1fc6f3ea..00000000
--- a/net-misc/gallery-dl/gallery-dl-1.15.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 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 optfeature
-
-DESCRIPTION="Download image galleries and collections from several image hosting sites"
-HOMEPAGE="https://github.com/mikf/gallery-dl"
-
-if [[ "${PV}" == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
-else
-	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-# tests require network access
-RESTRICT="test"
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="
-	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests setup.py
-
-src_compile() {
-	emake data/completion/gallery-dl
-	emake data/completion/_gallery-dl
-	emake man
-	distutils-r1_src_compile
-}
-
-pkg_postinst() {
-	elog "To get additional features, some optional runtime dependencies"
-	elog "may be installed:"
-	elog ""
-	optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
-	optfeature "video downloads" net-misc/youtube-dl
-}

diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild
deleted file mode 100644
index 1fc6f3ea..00000000
--- a/net-misc/gallery-dl/gallery-dl-9999.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 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 optfeature
-
-DESCRIPTION="Download image galleries and collections from several image hosting sites"
-HOMEPAGE="https://github.com/mikf/gallery-dl"
-
-if [[ "${PV}" == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/mikf/${PN}.git"
-else
-	SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-# tests require network access
-RESTRICT="test"
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="
-	>=dev-python/requests-2.11.0[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests setup.py
-
-src_compile() {
-	emake data/completion/gallery-dl
-	emake data/completion/_gallery-dl
-	emake man
-	distutils-r1_src_compile
-}
-
-pkg_postinst() {
-	elog "To get additional features, some optional runtime dependencies"
-	elog "may be installed:"
-	elog ""
-	optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
-	optfeature "video downloads" net-misc/youtube-dl
-}

diff --git a/net-misc/gallery-dl/metadata.xml b/net-misc/gallery-dl/metadata.xml
deleted file mode 100644
index 9a5ad896..00000000
--- a/net-misc/gallery-dl/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>xgqt@protonmail.com</email>
-    <name>Maciej Barć</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">mikf/gallery-dl</remote-id>
-  </upstream>
-  <longdescription>
-      gallery-dl is a command-line program to download image-galleries and -collections from several image hosting sites.
-      It is a cross-platform tool with many configuration options and powerful filenaming capabilities.
-  </longdescription>
-</pkgmetadata>


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

end of thread, other threads:[~2020-11-12 19:46 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-28  9:12 [gentoo-commits] repo/proj/guru:master commit in: net-misc/gallery-dl/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2020-11-12 19:46 Andrew Ammerlaan
2020-10-26 18:49 Andrew Ammerlaan
2020-10-26 18:49 Andrew Ammerlaan
2020-09-22 11:13 Andrew Ammerlaan
2020-09-22 11:13 Andrew Ammerlaan
2020-09-22 11:13 Andrew Ammerlaan
2020-08-17 10:17 Andrew Ammerlaan
2020-07-28 14:32 Andrew Ammerlaan
2020-07-28  9:12 Andrew Ammerlaan
2020-07-28  9:12 Andrew Ammerlaan
2020-07-28  9:12 Andrew Ammerlaan

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