www-client/qutebrowser: Drop old 1.6.3 and 1.7.0
authorGuillaume Seren <guillaumeseren@gmail.com>
Mon, 9 Dec 2019 16:01:00 +0000 (17:01 +0100)
committerJoonas Niilola <juippis@gentoo.org>
Tue, 10 Dec 2019 17:25:28 +0000 (19:25 +0200)
Closes: https://bugs.gentoo.org/700372
Signed-off-by: Guillaume Seren <guillaumeseren@gmail.com>
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Closes: https://github.com/gentoo/gentoo/pull/13691
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
www-client/qutebrowser/Manifest
www-client/qutebrowser/qutebrowser-1.6.3.ebuild [deleted file]
www-client/qutebrowser/qutebrowser-1.7.0.ebuild [deleted file]

index 780e5b7a8f76d208f770b5d1b134401f1d2f2ccc..b9cb17b7e30945b74d353a127c1b0fe182995795 100644 (file)
@@ -1,3 +1 @@
-DIST qutebrowser-1.6.3.tar.gz 3582973 BLAKE2B 950f77612b5476a2026669890fe6568f2fc2e808cd2439aae47e3836b66424136269b639eef98599064c57f506b927ecb2391d8a8f48391f9a67c8e460cc9019 SHA512 6bb0a5d3d39b7ea0fdbf48fae6b70d4b2be7b7f065a9933b9933f11bcf6373798ea31c100808cd445b12fc163ad6c578b0eef723418c1d6e0c251c24f9cd089e
-DIST qutebrowser-1.7.0.tar.gz 3595849 BLAKE2B 5ace5f756550fe10a3bd09819a3d5562927ec55624dcdc05e8963abc0550d9eaadcc10436e9e36725e44b0eb16bc733ab00ed3ff78acb00ab52aeeec1068d79c SHA512 4f437a38748f6143a4c2f5d8f00588b33aebbf3c68129151dd00270cf3ff5da5e3ccda5022b1328d75c072b29c0fc0ce53ca7f7d414708c33e129f45abf35e28
 DIST qutebrowser-1.8.1.tar.gz 3605606 BLAKE2B 5f60de24738aa9cab88149193c6ce884c663edaed6e018ce56d582eac5489af2f889d8a8074949165e4302847dda61695039d95df4dc992516d3b4e42b2abe8e SHA512 5fff6a8590bb4fd26815984310e5ce57201eed9a4a1fb788594d70e64e00a666563851b376bbac78cb175d64ffbe34a032521db31ae389958fab796ee9c26c78
diff --git a/www-client/qutebrowser/qutebrowser-1.6.3.ebuild b/www-client/qutebrowser/qutebrowser-1.6.3.ebuild
deleted file mode 100644 (file)
index 6cc99d5..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{3_5,3_6} )
-
-inherit distutils-r1 eutils gnome2-utils xdg-utils
-
-if [[ ${PV} == "9999" ]] ; then
-       EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
-       inherit git-r3
-else
-       SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz"
-       KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="A keyboard-driven, vim-like browser based on PyQt5 and QtWebEngine"
-HOMEPAGE="https://www.qutebrowser.org/ https://github.com/qutebrowser/qutebrowser"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="scripts test"
-
-COMMON_DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${COMMON_DEPEND}
-       app-text/asciidoc
-       test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-RDEPEND="${COMMON_DEPEND}
-       dev-python/attrs[${PYTHON_USEDEP}]
-       >=dev-python/jinja-2.8[${PYTHON_USEDEP}]
-       >=dev-python/pygments-2.1.3[${PYTHON_USEDEP}]
-       >=dev-python/pypeg2-2.15.2[${PYTHON_USEDEP}]
-       || (  (
-                       >=dev-python/PyQt5-5.12[${PYTHON_USEDEP},declarative,multimedia,gui,network,opengl,printsupport,sql,widgets]
-                       dev-python/PyQtWebEngine[${PYTHON_USEDEP}] )
-               <dev-python/PyQt5-5.12[${PYTHON_USEDEP},declarative,multimedia,gui,network,opengl,printsupport,sql,webengine,widgets]
-       )
-       >=dev-python/pyyaml-3.12[${PYTHON_USEDEP},libyaml]
-"
-
-# Tests restricted as the deplist (misc/requirements/requirements-tests.txt)
-# isn't complete and X11 is required in order to start up qutebrowser.
-RESTRICT="test"
-
-python_compile_all() {
-       if [[ ${PV} == "9999" ]]; then
-               "${PYTHON}" scripts/asciidoc2html.py || die "Failed generating docs"
-       fi
-
-       a2x -f manpage doc/${PN}.1.asciidoc || die "Failed generating man page"
-}
-
-python_test() {
-       py.test tests || die "Tests failed with ${EPYTHON}"
-}
-
-python_install_all() {
-       doman doc/${PN}.1
-       domenu misc/${PN}.desktop
-       doicon -s scalable icons/${PN}.svg
-
-       if use scripts; then
-               # Install only those userscripts that have an explicit license header
-               exeinto /usr/share/qutebrowser/userscripts/
-               doexe misc/userscripts/dmenu_qutebrowser
-               doexe misc/userscripts/openfeeds
-               doexe misc/userscripts/qute-keepass
-               doexe misc/userscripts/qute-pass
-               doexe misc/userscripts/rss
-               doexe misc/userscripts/tor_identity
-       fi
-
-       distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-       optfeature "PDF display support" www-plugins/pdfjs
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-       gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-       gnome2_icon_cache_update
-}
diff --git a/www-client/qutebrowser/qutebrowser-1.7.0.ebuild b/www-client/qutebrowser/qutebrowser-1.7.0.ebuild
deleted file mode 100644 (file)
index 9808d79..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{3_5,3_6} )
-
-inherit distutils-r1 eutils gnome2-utils xdg-utils
-
-if [[ ${PV} == "9999" ]] ; then
-       EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
-       inherit git-r3
-else
-       SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz"
-       KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="A keyboard-driven, vim-like browser based on PyQt5 and QtWebEngine"
-HOMEPAGE="https://www.qutebrowser.org/ https://github.com/qutebrowser/qutebrowser"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="scripts test"
-
-COMMON_DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${COMMON_DEPEND}
-       app-text/asciidoc
-       test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-RDEPEND="${COMMON_DEPEND}
-       dev-python/attrs[${PYTHON_USEDEP}]
-       >=dev-python/jinja-2.8[${PYTHON_USEDEP}]
-       >=dev-python/pygments-2.1.3[${PYTHON_USEDEP}]
-       >=dev-python/pypeg2-2.15.2[${PYTHON_USEDEP}]
-       || (  (
-                       >=dev-python/PyQt5-5.12[${PYTHON_USEDEP},declarative,multimedia,gui,network,opengl,printsupport,sql,widgets]
-                       dev-python/PyQtWebEngine[${PYTHON_USEDEP}] )
-               <dev-python/PyQt5-5.12[${PYTHON_USEDEP},declarative,multimedia,gui,network,opengl,printsupport,sql,webengine,widgets]
-       )
-       >=dev-python/pyyaml-3.12[${PYTHON_USEDEP},libyaml]
-"
-
-# Tests restricted as the deplist (misc/requirements/requirements-tests.txt)
-# isn't complete and X11 is required in order to start up qutebrowser.
-RESTRICT="test"
-
-python_compile_all() {
-       if [[ ${PV} == "9999" ]]; then
-               "${PYTHON}" scripts/asciidoc2html.py || die "Failed generating docs"
-       fi
-
-       a2x -f manpage doc/${PN}.1.asciidoc || die "Failed generating man page"
-}
-
-python_test() {
-       py.test tests || die "Tests failed with ${EPYTHON}"
-}
-
-python_install_all() {
-       doman doc/${PN}.1
-       domenu misc/org.${PN}.${PN}.desktop
-       doicon -s scalable icons/${PN}.svg
-
-       if use scripts; then
-               # Install only those userscripts that have an explicit license header
-               exeinto /usr/share/qutebrowser/userscripts/
-               doexe misc/userscripts/dmenu_qutebrowser
-               doexe misc/userscripts/openfeeds
-               doexe misc/userscripts/qute-keepass
-               doexe misc/userscripts/qute-pass
-               doexe misc/userscripts/rss
-               doexe misc/userscripts/tor_identity
-       fi
-
-       distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-       optfeature "PDF display support" www-plugins/pdfjs
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-       gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-       gnome2_icon_cache_update
-}