diff --git a/net-mail/urlscan/Manifest b/net-mail/urlscan/Manifest new file mode 100644 index 0000000..ac02c38 --- /dev/null +++ b/net-mail/urlscan/Manifest @@ -0,0 +1,22 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA256 + +DIST urlscan-0.9.4.tar.gz 31705 BLAKE2B 86abf9952b0fcedfa79459c2b44787e3a2f5c4e76682eab49fb64c1e4ea0bbf68590f30e268e4997e9aac0de9b80f88036f493f0f806f1afb45c518791ab3416 SHA512 7d3a3481133ff763b4cd348efa4193a6c5be2dc99d211f603965ef6e88f0b6d953590d09f3d35e5bde427d16287b7f7c71d3d90cd01421b61406f6b4e9562e61 +-----BEGIN PGP SIGNATURE----- + +iQKTBAEBCAB9FiEEcg3s4uUa4XE72XWQvF3CmYqtKyEFAl6bPNJfFIAAAAAALgAo +aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDcy +MERFQ0UyRTUxQUUxNzEzQkQ5NzU5MEJDNURDMjk5OEFBRDJCMjEACgkQvF3CmYqt +KyEmYw/8DOtz78PdO1giRejX8y6OtQ3VzUerRRTqcurGca8knG9VnaZDONO9vZxw +BcqoAHo8wbqjhkRF/AUYapOHTiRGrIKPKVfpLXSP8WlmjrRcTo3nb9qM8j9M7ay8 +HfZUqWgEmXAbZk7xmwdTqQt8CDHzqBLm1l7fz6zKW4jmSuHwk0cJywyAr+sl5PXu +07LjA6D+p0dKqH8uTSIEebJ8y9gqEamcrov5yCPE5MY4U/B1v0Pf7X3I7B9OJrJ5 +X/1HuGc1hhfvCPvBEO1xUlK3NSVGghPleO8OCj5ka0AkO3wmvBrQzh0mEnVyTcLR +uuI49B/Q+PJz5r8iAMeHbG92IpttrtJNJy8VRJQ04hjot49h3st09vkFXpyaHAbu +7rdQGISXR0An1iTEdrtKOcUZt0njtiRyY1IRw6XHYsxKfbpLce6tUOPVGdMgNyCC +9GGphO1Z6SlB74VLKHVyhPgZRaSVG7q08FxHHKwyjJjrxZGRGkwlur1fG7xsnAu/ +C2C3gaPwiuW/QtS+V9WdBY9ylL/3C9bdbP2yoHCvdCDl8WOI51r8y0hUeuQ4F3Nk +yFnNnxoOKCMz1kV9AlZCpLSRkm0SejfOlW9RL0M+MgubQCDP9+FVbg3+jbhGr72B +l50D4JgTfBCK/XIT6B3MI/Q/1j+OxDP2my+k6uh6bfE3sIzMrlI= +=Mboq +-----END PGP SIGNATURE----- diff --git a/net-mail/urlscan/files/urlscan-0.9.4-respect-paths.patch b/net-mail/urlscan/files/urlscan-0.9.4-respect-paths.patch new file mode 100644 index 0000000..e075c42 --- /dev/null +++ b/net-mail/urlscan/files/urlscan-0.9.4-respect-paths.patch @@ -0,0 +1,18 @@ +# Nils Freydank (2020-04-18) + +Respect the gentoo paths for documentation - i.e. manual +installation of the documents. + +--- a/setup.py 2020-04-18 19:19:30.000000000 +0200 ++++ b/setup.py 2020-04-18 19:19:30.000000001 +0200 +@@ -12,8 +12,7 @@ + packages=['urlscan'], + scripts=['bin/urlscan'], + package_data={'urlscan': ['assets/*']}, +- data_files=[('share/doc/urlscan', ['README.rst', 'COPYING']), +- ('share/man/man1', ['urlscan.1'])], ++ data_files=[('share/man/man1', ['urlscan.1'])], + license="GPLv2", + install_requires=["urwid>=1.2.1"] + ) + diff --git a/net-mail/urlscan/metadata.xml b/net-mail/urlscan/metadata.xml new file mode 100644 index 0000000..14d02b2 --- /dev/null +++ b/net-mail/urlscan/metadata.xml @@ -0,0 +1,8 @@ + + + + + holgersson@posteo.de + Nils Freydank + + diff --git a/net-mail/urlscan/urlscan-0.9.4.ebuild b/net-mail/urlscan/urlscan-0.9.4.ebuild new file mode 100644 index 0000000..ff90f9e --- /dev/null +++ b/net-mail/urlscan/urlscan-0.9.4.ebuild @@ -0,0 +1,24 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..8} ) + +inherit distutils-r1 + +DESCRIPTION="Mutt and terminal url selector (similar to urlview)" +HOMEPAGE="https://github.com/firecat53/urlscan" +SRC_URI="https://github.com/firecat53/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/urwid[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" +BDEPEND="" + +DOCS=( README.rst ) +PATCHES=( "${FILESDIR}/${PN}-0.9.4-respect-paths.patch" )