* [gentoo-commits] repo/gentoo:master commit in: www-client/weboob/
@ 2018-02-19 11:46 Andreas Sturmlechner
0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2018-02-19 11:46 UTC (permalink / raw
To: gentoo-commits
commit: 007e6e11f29ca44a31c3c21f7ca739e5aade419a
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 19 11:33:00 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Feb 19 11:33:00 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=007e6e11
www-client/weboob: Drop very old versions 0g, 0h
These versions reportedly do not work anymore, anyway, and
still depended on deprecated PyQt4.
Bug: https://bugs.gentoo.org/510810
Package-Manager: Portage-2.3.24, Repoman-2.3.6
www-client/weboob/Manifest | 2 -
www-client/weboob/weboob-0g.ebuild | 79 --------------------------------------
www-client/weboob/weboob-0h.ebuild | 79 --------------------------------------
3 files changed, 160 deletions(-)
diff --git a/www-client/weboob/Manifest b/www-client/weboob/Manifest
index 848c92bf0a3..2d89b0fcd56 100644
--- a/www-client/weboob/Manifest
+++ b/www-client/weboob/Manifest
@@ -1,3 +1 @@
-DIST weboob-0.g.tar.gz 1465176 BLAKE2B 8b6efeb14e2233957844319de55c3f78665f89f95e88017bbbec983d1dc9525035a5d83fe5465d817d75267b1a8e5abcda5f0bc2c8c687100194f5c1d49ec03b SHA512 802b0f4cb10d1c2a13dc183d59aa642a9642b3b8f9417ce7bf66835a5f7028bc3fde9a8f3048b01cd5601585d37e6c95fa277b768723d05ab1b8eb4cb74a40bc
-DIST weboob-0.h.tar.gz 1700259 BLAKE2B e6971c8b498dd0478177334c42a39e871ee79c0171e33e7e7c8401cebfe7ea38dd7ca013b6eaa705ba5e422cf55292b8db8bc5deddce007827b3ef3af3ec7c0f SHA512 9ec34d184f965ec9124e7cb7e40e9337f781e2d79171fdc2f48b20d68bc21b8cabb349b56229b97f86257edb1d9f24886cbe3576a0fc80ed4440168119ea7e2b
DIST weboob-1.3.tar.gz 2688899 BLAKE2B a75a854137b117fd228959a6c5d19e93c5a0520a8e88227e2d6e8bf13795b2d3ba51173307563b5704be68fe680dd3573fc3b7308e29d422bc9ee6e3d4adaaa7 SHA512 c56704b9fc0d21c5d2b4d297f677f01d25d523c3d45acf7ed0b241fccd4b2477ddb60e58d2dd68886858dc8a50faa43d533c808b106546180552babf9c07543c
diff --git a/www-client/weboob/weboob-0g.ebuild b/www-client/weboob/weboob-0g.ebuild
deleted file mode 100644
index 8cc40ca6189..00000000000
--- a/www-client/weboob/weboob-0g.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 2010-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils versionator
-
-if [ "$PV" == "9999" ]; then
- EGIT_REPO_URI="git://git.symlink.me/pub/${PN}/devel.git"
- inherit git-2
- KEYWORDS=""
- SRC_URI=""
-elif [ "$PV" == "9998" ]; then
- EGIT_REPO_URI="git://git.symlink.me/pub/${PN}/stable.git"
- inherit git-2
- KEYWORDS=""
- SRC_URI=""
-else
- KEYWORDS="~x86 ~amd64"
- MY_P="${PN}-$(version_format_string '$1.$2')"
- SRC_URI="http://symlink.me/attachments/download/229/${MY_P}.tar.gz"
- S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Consume lots of websites without a browser (Web Outside Of Browsers)"
-HOMEPAGE="http://weboob.org/"
-
-LICENSE="AGPL-3"
-SLOT="0"
-IUSE="X +secure-updates fast-libs"
-
-DEPEND="X? ( >=dev-python/PyQt4-4.9.4-r1[X,phonon,${PYTHON_USEDEP}] )
- dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
- dev-python/prettytable[${PYTHON_USEDEP}]
- dev-python/html2text[${PYTHON_USEDEP}]
- dev-python/mechanize[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]
- dev-python/pyyaml[${PYTHON_USEDEP}]
- dev-python/pillow[${PYTHON_USEDEP}]
- dev-python/gdata[${PYTHON_USEDEP}]
- dev-python/feedparser[${PYTHON_USEDEP}]
- dev-python/termcolor[${PYTHON_USEDEP}]
- secure-updates? ( app-crypt/gnupg )
- fast-libs? (
- dev-python/simplejson[${PYTHON_USEDEP}]
- dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
- )
- >=dev-python/lxml-3.0[${PYTHON_USEDEP}]
- dev-python/cssselect[${PYTHON_USEDEP}]"
-
-DOCS=( AUTHORS COPYING ChangeLog README INSTALL )
-
-python_configure_all() {
- mydistutilsargs=(
- $(usex X '--qt' '--no-qt')
- $(usex X '--xdg' '--no-xdg')
- )
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- insinto /usr/share/${PN}/
- doins -r contrib/*
-}
-
-pkg_preinst() {
- use X && gnome2_icon_savelist
-}
-
-pkg_postinst() {
- use X && gnome2_icon_cache_update
- elog 'You should now run "weboob-config update" (as your login user).'
-}
-
-pkg_postrm() {
- use X && gnome2_icon_cache_update
-}
diff --git a/www-client/weboob/weboob-0h.ebuild b/www-client/weboob/weboob-0h.ebuild
deleted file mode 100644
index d3f6230fa0e..00000000000
--- a/www-client/weboob/weboob-0h.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 2010-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils versionator
-
-if [ "$PV" == "9999" ]; then
- EGIT_REPO_URI="git://git.symlink.me/pub/${PN}/devel.git"
- inherit git-2
- KEYWORDS=""
- SRC_URI=""
-elif [ "$PV" == "9998" ]; then
- EGIT_REPO_URI="git://git.symlink.me/pub/${PN}/stable.git"
- inherit git-2
- KEYWORDS=""
- SRC_URI=""
-else
- KEYWORDS="~x86 ~amd64"
- MY_P="${PN}-$(version_format_string '$1.$2')"
- SRC_URI="http://symlink.me/attachments/download/235/${MY_P}.tar.gz"
- S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Consume lots of websites without a browser (Web Outside Of Browsers)"
-HOMEPAGE="http://weboob.org/"
-
-LICENSE="AGPL-3"
-SLOT="0"
-IUSE="X +secure-updates fast-libs"
-
-DEPEND="X? ( >=dev-python/PyQt4-4.9.4-r1[X,phonon,${PYTHON_USEDEP}] )
- dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
- dev-python/prettytable[${PYTHON_USEDEP}]
- dev-python/html2text[${PYTHON_USEDEP}]
- dev-python/mechanize[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]
- dev-python/pyyaml[${PYTHON_USEDEP}]
- dev-python/pillow[${PYTHON_USEDEP}]
- dev-python/gdata[${PYTHON_USEDEP}]
- dev-python/feedparser[${PYTHON_USEDEP}]
- dev-python/termcolor[${PYTHON_USEDEP}]
- secure-updates? ( app-crypt/gnupg )
- fast-libs? (
- dev-python/simplejson[${PYTHON_USEDEP}]
- dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
- )
- >=dev-python/lxml-3.0[${PYTHON_USEDEP}]
- dev-python/cssselect[${PYTHON_USEDEP}]"
-
-DOCS=( AUTHORS COPYING ChangeLog README INSTALL )
-
-python_configure_all() {
- mydistutilsargs=(
- $(usex X '--qt' '--no-qt')
- $(usex X '--xdg' '--no-xdg')
- )
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- insinto /usr/share/${PN}/
- doins -r contrib/*
-}
-
-pkg_preinst() {
- use X && gnome2_icon_savelist
-}
-
-pkg_postinst() {
- use X && gnome2_icon_cache_update
- elog 'You should now run "weboob-config update" (as your login user).'
-}
-
-pkg_postrm() {
- use X && gnome2_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/weboob/
@ 2018-02-19 11:46 Andreas Sturmlechner
0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2018-02-19 11:46 UTC (permalink / raw
To: gentoo-commits
commit: da6eb2400f62de3b9f53b77de11c1617126e7a71
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 19 11:09:35 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Feb 19 11:29:50 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da6eb240
www-client/weboob: EAPI 6, switch to PyQt5, git-r3, add USE=deprecated
Thanks-to: Laurent Bachelier <laurent <AT> bachelier.name>
Bug: https://bugs.gentoo.org/510810
Package-Manager: Portage-2.3.24, Repoman-2.3.6
www-client/weboob/metadata.xml | 3 +-
www-client/weboob/weboob-9998.ebuild | 79 +++++++++++++++++++++---------------
www-client/weboob/weboob-9999.ebuild | 79 +++++++++++++++++++++---------------
3 files changed, 96 insertions(+), 65 deletions(-)
diff --git a/www-client/weboob/metadata.xml b/www-client/weboob/metadata.xml
index 906331ef879..3c664215f38 100644
--- a/www-client/weboob/metadata.xml
+++ b/www-client/weboob/metadata.xml
@@ -6,7 +6,8 @@
<name>Patrick Lauer</name>
</maintainer>
<use>
- <flag name="secure-updates">Enable secure updates</flag>
+ <flag name="deprecated">Enable <pkg>dev-python/mechanize</pkg> support (deprecated in favor of <pkg>dev-python/requests</pkg></flag>
<flag name="fast-libs">Enable fast libs</flag>
+ <flag name="secure-updates">Enable secure updates</flag>
</use>
</pkgmetadata>
diff --git a/www-client/weboob/weboob-9998.ebuild b/www-client/weboob/weboob-9998.ebuild
index 8cc40ca6189..13f4e208d43 100644
--- a/www-client/weboob/weboob-9998.ebuild
+++ b/www-client/weboob/weboob-9998.ebuild
@@ -1,56 +1,71 @@
-# Copyright 2010-2015 Gentoo Foundation
+# Copyright 2010-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
+EAPI=6
-inherit distutils-r1 gnome2-utils versionator
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="ssl"
-if [ "$PV" == "9999" ]; then
- EGIT_REPO_URI="git://git.symlink.me/pub/${PN}/devel.git"
- inherit git-2
- KEYWORDS=""
- SRC_URI=""
-elif [ "$PV" == "9998" ]; then
- EGIT_REPO_URI="git://git.symlink.me/pub/${PN}/stable.git"
- inherit git-2
- KEYWORDS=""
+EGIT_BASE="devel"
+if [[ ${PV} == *999* ]]; then
+ [[ ${PV} == 9998 ]] && EGIT_BASE="stable"
+ GIT_SCM=git-r3
SRC_URI=""
else
- KEYWORDS="~x86 ~amd64"
- MY_P="${PN}-$(version_format_string '$1.$2')"
- SRC_URI="http://symlink.me/attachments/download/229/${MY_P}.tar.gz"
- S="${WORKDIR}/${MY_P}"
+ REDMINE_ID="356"
+ SRC_URI="https://symlink.me/attachments/download/${REDMINE_ID}/${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
fi
+EGIT_REPO_URI="https://git.weboob.org/${PN}/${EGIT_BASE}.git"
+inherit distutils-r1 gnome2-utils ${GIT_SCM}
+unset EGIT_BASE GIT_SCM
+
DESCRIPTION="Consume lots of websites without a browser (Web Outside Of Browsers)"
HOMEPAGE="http://weboob.org/"
LICENSE="AGPL-3"
SLOT="0"
-IUSE="X +secure-updates fast-libs"
+IUSE="+deprecated fast-libs +secure-updates X"
-DEPEND="X? ( >=dev-python/PyQt4-4.9.4-r1[X,phonon,${PYTHON_USEDEP}] )
- dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
- dev-python/prettytable[${PYTHON_USEDEP}]
+COMMON_DEPEND="
+ X? ( dev-python/PyQt5[multimedia,${PYTHON_USEDEP}] )
+"
+RDEPEND="${COMMON_DEPEND}
+ dev-python/cssselect[${PYTHON_USEDEP}]
+ dev-python/feedparser[${PYTHON_USEDEP}]
dev-python/html2text[${PYTHON_USEDEP}]
- dev-python/mechanize[${PYTHON_USEDEP}]
+ dev-python/lxml[${PYTHON_USEDEP}]
+ dev-python/pillow[${PYTHON_USEDEP}]
+ dev-python/prettytable[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
- dev-python/pillow[${PYTHON_USEDEP}]
- dev-python/gdata[${PYTHON_USEDEP}]
- dev-python/feedparser[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP},ssl]
+ dev-python/six[${PYTHON_USEDEP}]
dev-python/termcolor[${PYTHON_USEDEP}]
- secure-updates? ( app-crypt/gnupg )
+ dev-python/unidecode[${PYTHON_USEDEP}]
+ virtual/python-futures[${PYTHON_USEDEP}]
+ deprecated? ( dev-python/mechanize[${PYTHON_USEDEP}] )
fast-libs? (
- dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
+ dev-python/simplejson[${PYTHON_USEDEP}]
)
- >=dev-python/lxml-3.0[${PYTHON_USEDEP}]
- dev-python/cssselect[${PYTHON_USEDEP}]"
+ secure-updates? ( app-crypt/gnupg )
+ X? ( dev-python/google-api-python-client[${PYTHON_USEDEP}] )
+"
+DEPEND="${COMMON_DEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+"
-DOCS=( AUTHORS COPYING ChangeLog README INSTALL )
+src_prepare() {
+ default
+
+ if [[ -L contrib/webextension-session-importer/logo.png ]]; then
+ cp -L contrib/webextension-session-importer/logo.png logo.tmp.png || die
+ rm contrib/webextension-session-importer/logo.png || die
+ mv logo.tmp.png contrib/webextension-session-importer/logo.png || die
+ fi
+}
python_configure_all() {
mydistutilsargs=(
@@ -62,7 +77,7 @@ python_configure_all() {
python_install_all() {
distutils-r1_python_install_all
insinto /usr/share/${PN}/
- doins -r contrib/*
+ doins -r contrib
}
pkg_preinst() {
diff --git a/www-client/weboob/weboob-9999.ebuild b/www-client/weboob/weboob-9999.ebuild
index 8cc40ca6189..13f4e208d43 100644
--- a/www-client/weboob/weboob-9999.ebuild
+++ b/www-client/weboob/weboob-9999.ebuild
@@ -1,56 +1,71 @@
-# Copyright 2010-2015 Gentoo Foundation
+# Copyright 2010-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
+EAPI=6
-inherit distutils-r1 gnome2-utils versionator
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="ssl"
-if [ "$PV" == "9999" ]; then
- EGIT_REPO_URI="git://git.symlink.me/pub/${PN}/devel.git"
- inherit git-2
- KEYWORDS=""
- SRC_URI=""
-elif [ "$PV" == "9998" ]; then
- EGIT_REPO_URI="git://git.symlink.me/pub/${PN}/stable.git"
- inherit git-2
- KEYWORDS=""
+EGIT_BASE="devel"
+if [[ ${PV} == *999* ]]; then
+ [[ ${PV} == 9998 ]] && EGIT_BASE="stable"
+ GIT_SCM=git-r3
SRC_URI=""
else
- KEYWORDS="~x86 ~amd64"
- MY_P="${PN}-$(version_format_string '$1.$2')"
- SRC_URI="http://symlink.me/attachments/download/229/${MY_P}.tar.gz"
- S="${WORKDIR}/${MY_P}"
+ REDMINE_ID="356"
+ SRC_URI="https://symlink.me/attachments/download/${REDMINE_ID}/${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
fi
+EGIT_REPO_URI="https://git.weboob.org/${PN}/${EGIT_BASE}.git"
+inherit distutils-r1 gnome2-utils ${GIT_SCM}
+unset EGIT_BASE GIT_SCM
+
DESCRIPTION="Consume lots of websites without a browser (Web Outside Of Browsers)"
HOMEPAGE="http://weboob.org/"
LICENSE="AGPL-3"
SLOT="0"
-IUSE="X +secure-updates fast-libs"
+IUSE="+deprecated fast-libs +secure-updates X"
-DEPEND="X? ( >=dev-python/PyQt4-4.9.4-r1[X,phonon,${PYTHON_USEDEP}] )
- dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
- dev-python/prettytable[${PYTHON_USEDEP}]
+COMMON_DEPEND="
+ X? ( dev-python/PyQt5[multimedia,${PYTHON_USEDEP}] )
+"
+RDEPEND="${COMMON_DEPEND}
+ dev-python/cssselect[${PYTHON_USEDEP}]
+ dev-python/feedparser[${PYTHON_USEDEP}]
dev-python/html2text[${PYTHON_USEDEP}]
- dev-python/mechanize[${PYTHON_USEDEP}]
+ dev-python/lxml[${PYTHON_USEDEP}]
+ dev-python/pillow[${PYTHON_USEDEP}]
+ dev-python/prettytable[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
- dev-python/pillow[${PYTHON_USEDEP}]
- dev-python/gdata[${PYTHON_USEDEP}]
- dev-python/feedparser[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP},ssl]
+ dev-python/six[${PYTHON_USEDEP}]
dev-python/termcolor[${PYTHON_USEDEP}]
- secure-updates? ( app-crypt/gnupg )
+ dev-python/unidecode[${PYTHON_USEDEP}]
+ virtual/python-futures[${PYTHON_USEDEP}]
+ deprecated? ( dev-python/mechanize[${PYTHON_USEDEP}] )
fast-libs? (
- dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
+ dev-python/simplejson[${PYTHON_USEDEP}]
)
- >=dev-python/lxml-3.0[${PYTHON_USEDEP}]
- dev-python/cssselect[${PYTHON_USEDEP}]"
+ secure-updates? ( app-crypt/gnupg )
+ X? ( dev-python/google-api-python-client[${PYTHON_USEDEP}] )
+"
+DEPEND="${COMMON_DEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+"
-DOCS=( AUTHORS COPYING ChangeLog README INSTALL )
+src_prepare() {
+ default
+
+ if [[ -L contrib/webextension-session-importer/logo.png ]]; then
+ cp -L contrib/webextension-session-importer/logo.png logo.tmp.png || die
+ rm contrib/webextension-session-importer/logo.png || die
+ mv logo.tmp.png contrib/webextension-session-importer/logo.png || die
+ fi
+}
python_configure_all() {
mydistutilsargs=(
@@ -62,7 +77,7 @@ python_configure_all() {
python_install_all() {
distutils-r1_python_install_all
insinto /usr/share/${PN}/
- doins -r contrib/*
+ doins -r contrib
}
pkg_preinst() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/weboob/
@ 2018-02-19 11:46 Andreas Sturmlechner
0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2018-02-19 11:46 UTC (permalink / raw
To: gentoo-commits
commit: 54235cf970c83542185f9091b242d1685f4da885
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 19 11:18:48 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Feb 19 11:29:51 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54235cf9
www-client/weboob: 1.3 version bump
Thanks-to: Laurent Bachelier <laurent <AT> bachelier.name>
Bug: https://bugs.gentoo.org/510810
Package-Manager: Portage-2.3.24, Repoman-2.3.6
www-client/weboob/Manifest | 1 +
www-client/weboob/weboob-1.3.ebuild | 94 +++++++++++++++++++++++++++++++++++++
2 files changed, 95 insertions(+)
diff --git a/www-client/weboob/Manifest b/www-client/weboob/Manifest
index 7042dc2313f..848c92bf0a3 100644
--- a/www-client/weboob/Manifest
+++ b/www-client/weboob/Manifest
@@ -1,2 +1,3 @@
DIST weboob-0.g.tar.gz 1465176 BLAKE2B 8b6efeb14e2233957844319de55c3f78665f89f95e88017bbbec983d1dc9525035a5d83fe5465d817d75267b1a8e5abcda5f0bc2c8c687100194f5c1d49ec03b SHA512 802b0f4cb10d1c2a13dc183d59aa642a9642b3b8f9417ce7bf66835a5f7028bc3fde9a8f3048b01cd5601585d37e6c95fa277b768723d05ab1b8eb4cb74a40bc
DIST weboob-0.h.tar.gz 1700259 BLAKE2B e6971c8b498dd0478177334c42a39e871ee79c0171e33e7e7c8401cebfe7ea38dd7ca013b6eaa705ba5e422cf55292b8db8bc5deddce007827b3ef3af3ec7c0f SHA512 9ec34d184f965ec9124e7cb7e40e9337f781e2d79171fdc2f48b20d68bc21b8cabb349b56229b97f86257edb1d9f24886cbe3576a0fc80ed4440168119ea7e2b
+DIST weboob-1.3.tar.gz 2688899 BLAKE2B a75a854137b117fd228959a6c5d19e93c5a0520a8e88227e2d6e8bf13795b2d3ba51173307563b5704be68fe680dd3573fc3b7308e29d422bc9ee6e3d4adaaa7 SHA512 c56704b9fc0d21c5d2b4d297f677f01d25d523c3d45acf7ed0b241fccd4b2477ddb60e58d2dd68886858dc8a50faa43d533c808b106546180552babf9c07543c
diff --git a/www-client/weboob/weboob-1.3.ebuild b/www-client/weboob/weboob-1.3.ebuild
new file mode 100644
index 00000000000..13f4e208d43
--- /dev/null
+++ b/www-client/weboob/weboob-1.3.ebuild
@@ -0,0 +1,94 @@
+# Copyright 2010-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="ssl"
+
+EGIT_BASE="devel"
+if [[ ${PV} == *999* ]]; then
+ [[ ${PV} == 9998 ]] && EGIT_BASE="stable"
+ GIT_SCM=git-r3
+ SRC_URI=""
+else
+ REDMINE_ID="356"
+ SRC_URI="https://symlink.me/attachments/download/${REDMINE_ID}/${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+EGIT_REPO_URI="https://git.weboob.org/${PN}/${EGIT_BASE}.git"
+inherit distutils-r1 gnome2-utils ${GIT_SCM}
+unset EGIT_BASE GIT_SCM
+
+DESCRIPTION="Consume lots of websites without a browser (Web Outside Of Browsers)"
+HOMEPAGE="http://weboob.org/"
+
+LICENSE="AGPL-3"
+SLOT="0"
+IUSE="+deprecated fast-libs +secure-updates X"
+
+COMMON_DEPEND="
+ X? ( dev-python/PyQt5[multimedia,${PYTHON_USEDEP}] )
+"
+RDEPEND="${COMMON_DEPEND}
+ dev-python/cssselect[${PYTHON_USEDEP}]
+ dev-python/feedparser[${PYTHON_USEDEP}]
+ dev-python/html2text[${PYTHON_USEDEP}]
+ dev-python/lxml[${PYTHON_USEDEP}]
+ dev-python/pillow[${PYTHON_USEDEP}]
+ dev-python/prettytable[${PYTHON_USEDEP}]
+ dev-python/python-dateutil[${PYTHON_USEDEP}]
+ dev-python/pyyaml[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP},ssl]
+ dev-python/six[${PYTHON_USEDEP}]
+ dev-python/termcolor[${PYTHON_USEDEP}]
+ dev-python/unidecode[${PYTHON_USEDEP}]
+ virtual/python-futures[${PYTHON_USEDEP}]
+ deprecated? ( dev-python/mechanize[${PYTHON_USEDEP}] )
+ fast-libs? (
+ dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
+ dev-python/simplejson[${PYTHON_USEDEP}]
+ )
+ secure-updates? ( app-crypt/gnupg )
+ X? ( dev-python/google-api-python-client[${PYTHON_USEDEP}] )
+"
+DEPEND="${COMMON_DEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+src_prepare() {
+ default
+
+ if [[ -L contrib/webextension-session-importer/logo.png ]]; then
+ cp -L contrib/webextension-session-importer/logo.png logo.tmp.png || die
+ rm contrib/webextension-session-importer/logo.png || die
+ mv logo.tmp.png contrib/webextension-session-importer/logo.png || die
+ fi
+}
+
+python_configure_all() {
+ mydistutilsargs=(
+ $(usex X '--qt' '--no-qt')
+ $(usex X '--xdg' '--no-xdg')
+ )
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+ insinto /usr/share/${PN}/
+ doins -r contrib
+}
+
+pkg_preinst() {
+ use X && gnome2_icon_savelist
+}
+
+pkg_postinst() {
+ use X && gnome2_icon_cache_update
+ elog 'You should now run "weboob-config update" (as your login user).'
+}
+
+pkg_postrm() {
+ use X && gnome2_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/weboob/
@ 2020-03-16 21:09 Michał Górny
0 siblings, 0 replies; 5+ messages in thread
From: Michał Górny @ 2020-03-16 21:09 UTC (permalink / raw
To: gentoo-commits
commit: d1097907f3600953b29d48443a780cadd81bb433
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 16 21:03:18 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Mar 16 21:09:40 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1097907
www-client/weboob: Replace virts with cond deps
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
www-client/weboob/weboob-1.3.ebuild | 4 +++-
www-client/weboob/weboob-9998.ebuild | 4 +++-
www-client/weboob/weboob-9999.ebuild | 4 +++-
3 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/www-client/weboob/weboob-1.3.ebuild b/www-client/weboob/weboob-1.3.ebuild
index 13f4e208d43..19b1a901b2f 100644
--- a/www-client/weboob/weboob-1.3.ebuild
+++ b/www-client/weboob/weboob-1.3.ebuild
@@ -44,7 +44,9 @@ RDEPEND="${COMMON_DEPEND}
dev-python/six[${PYTHON_USEDEP}]
dev-python/termcolor[${PYTHON_USEDEP}]
dev-python/unidecode[${PYTHON_USEDEP}]
- virtual/python-futures[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ dev-python/futures[${PYTHON_USEDEP}]
+ ' -2)
deprecated? ( dev-python/mechanize[${PYTHON_USEDEP}] )
fast-libs? (
dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
diff --git a/www-client/weboob/weboob-9998.ebuild b/www-client/weboob/weboob-9998.ebuild
index 13f4e208d43..19b1a901b2f 100644
--- a/www-client/weboob/weboob-9998.ebuild
+++ b/www-client/weboob/weboob-9998.ebuild
@@ -44,7 +44,9 @@ RDEPEND="${COMMON_DEPEND}
dev-python/six[${PYTHON_USEDEP}]
dev-python/termcolor[${PYTHON_USEDEP}]
dev-python/unidecode[${PYTHON_USEDEP}]
- virtual/python-futures[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ dev-python/futures[${PYTHON_USEDEP}]
+ ' -2)
deprecated? ( dev-python/mechanize[${PYTHON_USEDEP}] )
fast-libs? (
dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
diff --git a/www-client/weboob/weboob-9999.ebuild b/www-client/weboob/weboob-9999.ebuild
index 13f4e208d43..19b1a901b2f 100644
--- a/www-client/weboob/weboob-9999.ebuild
+++ b/www-client/weboob/weboob-9999.ebuild
@@ -44,7 +44,9 @@ RDEPEND="${COMMON_DEPEND}
dev-python/six[${PYTHON_USEDEP}]
dev-python/termcolor[${PYTHON_USEDEP}]
dev-python/unidecode[${PYTHON_USEDEP}]
- virtual/python-futures[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ dev-python/futures[${PYTHON_USEDEP}]
+ ' -2)
deprecated? ( dev-python/mechanize[${PYTHON_USEDEP}] )
fast-libs? (
dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/weboob/
@ 2020-04-27 8:14 Mikle Kolyada
0 siblings, 0 replies; 5+ messages in thread
From: Mikle Kolyada @ 2020-04-27 8:14 UTC (permalink / raw
To: gentoo-commits
commit: 469e9cdf10eaa4463981367d5340f364505d12b2
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 27 08:12:13 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Apr 27 08:13:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=469e9cdf
www-client/weboob: remove last-rited pkg
Closes: https://bugs.gentoo.org/674298
Closes: https://bugs.gentoo.org/674734
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
www-client/weboob/Manifest | 1 -
www-client/weboob/metadata.xml | 13 -----
www-client/weboob/weboob-1.3.ebuild | 96 ------------------------------------
www-client/weboob/weboob-9998.ebuild | 96 ------------------------------------
www-client/weboob/weboob-9999.ebuild | 96 ------------------------------------
5 files changed, 302 deletions(-)
diff --git a/www-client/weboob/Manifest b/www-client/weboob/Manifest
deleted file mode 100644
index 2d89b0fcd56..00000000000
--- a/www-client/weboob/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST weboob-1.3.tar.gz 2688899 BLAKE2B a75a854137b117fd228959a6c5d19e93c5a0520a8e88227e2d6e8bf13795b2d3ba51173307563b5704be68fe680dd3573fc3b7308e29d422bc9ee6e3d4adaaa7 SHA512 c56704b9fc0d21c5d2b4d297f677f01d25d523c3d45acf7ed0b241fccd4b2477ddb60e58d2dd68886858dc8a50faa43d533c808b106546180552babf9c07543c
diff --git a/www-client/weboob/metadata.xml b/www-client/weboob/metadata.xml
deleted file mode 100644
index 3c664215f38..00000000000
--- a/www-client/weboob/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>patrick@gentoo.org</email>
- <name>Patrick Lauer</name>
- </maintainer>
- <use>
- <flag name="deprecated">Enable <pkg>dev-python/mechanize</pkg> support (deprecated in favor of <pkg>dev-python/requests</pkg></flag>
- <flag name="fast-libs">Enable fast libs</flag>
- <flag name="secure-updates">Enable secure updates</flag>
- </use>
-</pkgmetadata>
diff --git a/www-client/weboob/weboob-1.3.ebuild b/www-client/weboob/weboob-1.3.ebuild
deleted file mode 100644
index 19b1a901b2f..00000000000
--- a/www-client/weboob/weboob-1.3.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 2010-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="ssl"
-
-EGIT_BASE="devel"
-if [[ ${PV} == *999* ]]; then
- [[ ${PV} == 9998 ]] && EGIT_BASE="stable"
- GIT_SCM=git-r3
- SRC_URI=""
-else
- REDMINE_ID="356"
- SRC_URI="https://symlink.me/attachments/download/${REDMINE_ID}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-EGIT_REPO_URI="https://git.weboob.org/${PN}/${EGIT_BASE}.git"
-inherit distutils-r1 gnome2-utils ${GIT_SCM}
-unset EGIT_BASE GIT_SCM
-
-DESCRIPTION="Consume lots of websites without a browser (Web Outside Of Browsers)"
-HOMEPAGE="http://weboob.org/"
-
-LICENSE="AGPL-3"
-SLOT="0"
-IUSE="+deprecated fast-libs +secure-updates X"
-
-COMMON_DEPEND="
- X? ( dev-python/PyQt5[multimedia,${PYTHON_USEDEP}] )
-"
-RDEPEND="${COMMON_DEPEND}
- dev-python/cssselect[${PYTHON_USEDEP}]
- dev-python/feedparser[${PYTHON_USEDEP}]
- dev-python/html2text[${PYTHON_USEDEP}]
- dev-python/lxml[${PYTHON_USEDEP}]
- dev-python/pillow[${PYTHON_USEDEP}]
- dev-python/prettytable[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]
- dev-python/pyyaml[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP},ssl]
- dev-python/six[${PYTHON_USEDEP}]
- dev-python/termcolor[${PYTHON_USEDEP}]
- dev-python/unidecode[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- dev-python/futures[${PYTHON_USEDEP}]
- ' -2)
- deprecated? ( dev-python/mechanize[${PYTHON_USEDEP}] )
- fast-libs? (
- dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
- dev-python/simplejson[${PYTHON_USEDEP}]
- )
- secure-updates? ( app-crypt/gnupg )
- X? ( dev-python/google-api-python-client[${PYTHON_USEDEP}] )
-"
-DEPEND="${COMMON_DEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
-"
-
-src_prepare() {
- default
-
- if [[ -L contrib/webextension-session-importer/logo.png ]]; then
- cp -L contrib/webextension-session-importer/logo.png logo.tmp.png || die
- rm contrib/webextension-session-importer/logo.png || die
- mv logo.tmp.png contrib/webextension-session-importer/logo.png || die
- fi
-}
-
-python_configure_all() {
- mydistutilsargs=(
- $(usex X '--qt' '--no-qt')
- $(usex X '--xdg' '--no-xdg')
- )
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- insinto /usr/share/${PN}/
- doins -r contrib
-}
-
-pkg_preinst() {
- use X && gnome2_icon_savelist
-}
-
-pkg_postinst() {
- use X && gnome2_icon_cache_update
- elog 'You should now run "weboob-config update" (as your login user).'
-}
-
-pkg_postrm() {
- use X && gnome2_icon_cache_update
-}
diff --git a/www-client/weboob/weboob-9998.ebuild b/www-client/weboob/weboob-9998.ebuild
deleted file mode 100644
index 19b1a901b2f..00000000000
--- a/www-client/weboob/weboob-9998.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 2010-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="ssl"
-
-EGIT_BASE="devel"
-if [[ ${PV} == *999* ]]; then
- [[ ${PV} == 9998 ]] && EGIT_BASE="stable"
- GIT_SCM=git-r3
- SRC_URI=""
-else
- REDMINE_ID="356"
- SRC_URI="https://symlink.me/attachments/download/${REDMINE_ID}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-EGIT_REPO_URI="https://git.weboob.org/${PN}/${EGIT_BASE}.git"
-inherit distutils-r1 gnome2-utils ${GIT_SCM}
-unset EGIT_BASE GIT_SCM
-
-DESCRIPTION="Consume lots of websites without a browser (Web Outside Of Browsers)"
-HOMEPAGE="http://weboob.org/"
-
-LICENSE="AGPL-3"
-SLOT="0"
-IUSE="+deprecated fast-libs +secure-updates X"
-
-COMMON_DEPEND="
- X? ( dev-python/PyQt5[multimedia,${PYTHON_USEDEP}] )
-"
-RDEPEND="${COMMON_DEPEND}
- dev-python/cssselect[${PYTHON_USEDEP}]
- dev-python/feedparser[${PYTHON_USEDEP}]
- dev-python/html2text[${PYTHON_USEDEP}]
- dev-python/lxml[${PYTHON_USEDEP}]
- dev-python/pillow[${PYTHON_USEDEP}]
- dev-python/prettytable[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]
- dev-python/pyyaml[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP},ssl]
- dev-python/six[${PYTHON_USEDEP}]
- dev-python/termcolor[${PYTHON_USEDEP}]
- dev-python/unidecode[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- dev-python/futures[${PYTHON_USEDEP}]
- ' -2)
- deprecated? ( dev-python/mechanize[${PYTHON_USEDEP}] )
- fast-libs? (
- dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
- dev-python/simplejson[${PYTHON_USEDEP}]
- )
- secure-updates? ( app-crypt/gnupg )
- X? ( dev-python/google-api-python-client[${PYTHON_USEDEP}] )
-"
-DEPEND="${COMMON_DEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
-"
-
-src_prepare() {
- default
-
- if [[ -L contrib/webextension-session-importer/logo.png ]]; then
- cp -L contrib/webextension-session-importer/logo.png logo.tmp.png || die
- rm contrib/webextension-session-importer/logo.png || die
- mv logo.tmp.png contrib/webextension-session-importer/logo.png || die
- fi
-}
-
-python_configure_all() {
- mydistutilsargs=(
- $(usex X '--qt' '--no-qt')
- $(usex X '--xdg' '--no-xdg')
- )
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- insinto /usr/share/${PN}/
- doins -r contrib
-}
-
-pkg_preinst() {
- use X && gnome2_icon_savelist
-}
-
-pkg_postinst() {
- use X && gnome2_icon_cache_update
- elog 'You should now run "weboob-config update" (as your login user).'
-}
-
-pkg_postrm() {
- use X && gnome2_icon_cache_update
-}
diff --git a/www-client/weboob/weboob-9999.ebuild b/www-client/weboob/weboob-9999.ebuild
deleted file mode 100644
index 19b1a901b2f..00000000000
--- a/www-client/weboob/weboob-9999.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 2010-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="ssl"
-
-EGIT_BASE="devel"
-if [[ ${PV} == *999* ]]; then
- [[ ${PV} == 9998 ]] && EGIT_BASE="stable"
- GIT_SCM=git-r3
- SRC_URI=""
-else
- REDMINE_ID="356"
- SRC_URI="https://symlink.me/attachments/download/${REDMINE_ID}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-EGIT_REPO_URI="https://git.weboob.org/${PN}/${EGIT_BASE}.git"
-inherit distutils-r1 gnome2-utils ${GIT_SCM}
-unset EGIT_BASE GIT_SCM
-
-DESCRIPTION="Consume lots of websites without a browser (Web Outside Of Browsers)"
-HOMEPAGE="http://weboob.org/"
-
-LICENSE="AGPL-3"
-SLOT="0"
-IUSE="+deprecated fast-libs +secure-updates X"
-
-COMMON_DEPEND="
- X? ( dev-python/PyQt5[multimedia,${PYTHON_USEDEP}] )
-"
-RDEPEND="${COMMON_DEPEND}
- dev-python/cssselect[${PYTHON_USEDEP}]
- dev-python/feedparser[${PYTHON_USEDEP}]
- dev-python/html2text[${PYTHON_USEDEP}]
- dev-python/lxml[${PYTHON_USEDEP}]
- dev-python/pillow[${PYTHON_USEDEP}]
- dev-python/prettytable[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]
- dev-python/pyyaml[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP},ssl]
- dev-python/six[${PYTHON_USEDEP}]
- dev-python/termcolor[${PYTHON_USEDEP}]
- dev-python/unidecode[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- dev-python/futures[${PYTHON_USEDEP}]
- ' -2)
- deprecated? ( dev-python/mechanize[${PYTHON_USEDEP}] )
- fast-libs? (
- dev-python/pyyaml[libyaml,${PYTHON_USEDEP}]
- dev-python/simplejson[${PYTHON_USEDEP}]
- )
- secure-updates? ( app-crypt/gnupg )
- X? ( dev-python/google-api-python-client[${PYTHON_USEDEP}] )
-"
-DEPEND="${COMMON_DEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
-"
-
-src_prepare() {
- default
-
- if [[ -L contrib/webextension-session-importer/logo.png ]]; then
- cp -L contrib/webextension-session-importer/logo.png logo.tmp.png || die
- rm contrib/webextension-session-importer/logo.png || die
- mv logo.tmp.png contrib/webextension-session-importer/logo.png || die
- fi
-}
-
-python_configure_all() {
- mydistutilsargs=(
- $(usex X '--qt' '--no-qt')
- $(usex X '--xdg' '--no-xdg')
- )
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- insinto /usr/share/${PN}/
- doins -r contrib
-}
-
-pkg_preinst() {
- use X && gnome2_icon_savelist
-}
-
-pkg_postinst() {
- use X && gnome2_icon_cache_update
- elog 'You should now run "weboob-config update" (as your login user).'
-}
-
-pkg_postrm() {
- use X && gnome2_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-04-27 8:14 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-19 11:46 [gentoo-commits] repo/gentoo:master commit in: www-client/weboob/ Andreas Sturmlechner
-- strict thread matches above, loose matches on Subject: below --
2020-04-27 8:14 Mikle Kolyada
2020-03-16 21:09 Michał Górny
2018-02-19 11:46 Andreas Sturmlechner
2018-02-19 11:46 Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox