mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
www-client/qutebrowser: bump 1.4.1
CVE-2018-10895: Fix CSRF issue on the qute://settings page, leading to possible arbitrary code execution. See the related GitHub issue for details. https://github.com/qutebrowser/qutebrowser/issues/4060 Removing all prior versions due to the above. Package-Manager: Portage-2.3.40, Repoman-2.3.9
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST qutebrowser-1.3.3.tar.gz 3536053 BLAKE2B 6adbf010a4f8377476f254a81868296a689148df0901653f2f7cbfd683a842cca842c3e40169a1faee88bb5e199762cab89820b89fd2be8558fe213b54e86509 SHA512 db34f8e559471f43f2d567ade36595504c4d1dc804230fae30bdb29a6af9b306e570d9f5b91bdc166ee78367d48912229c46bb48e917ead1e51258d8af18cf39
|
||||
DIST qutebrowser-1.4.0.tar.gz 3550874 BLAKE2B 7e2b97faa8220d40d4a85cef11fc7baeb91e02fdfdbd3fdab3aa9e4c944e59687d6274b254f2551c00a38466f63b88942d46fa063c11377843ceac14462ff2a1 SHA512 0d89b859c09c3cee711d739b5f1584bea5b25ad29b18091b69e58b23b33c9c8a62c46df2f455c66ecfbf6617a10088251cb80e29e1ad3ebf8f7e8b7b34ecc482
|
||||
DIST qutebrowser-1.4.1.tar.gz 3552660 BLAKE2B 66398ec5480cd229b6ca00ac46b5cea0476c58c00335c68167bb62981a040ce91c0f3ab83bdde19ba0d35cbc5e791ee070fc992f8aba71cb4ceb644203330594 SHA512 a77b786980326f67ffb933d019438933de3a6f43244bfc0f42f22a8f189480b093757b2d5d81de58ab774f39ee4442c2482be4f78ffcad7b73f03d028e2b455d
|
||||
|
||||
@@ -1,76 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# 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="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.7.1[${PYTHON_USEDEP},declarative,gui,network,opengl,printsupport,sql,webengine,widgets]
|
||||
>=dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
# 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
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
gnome2_icon_savelist
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user