net-mail/urlscan: Add new package

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Manifest-Sign-Key: 00EFD31F1B60D5DBADB831C1C0ECE6960E54475B
Signed-off-by: Nils Freydank <holgersson@posteo.de>
This commit is contained in:
Nils Freydank 2020-04-18 19:49:05 +02:00
parent 7aa96b28f4
commit b357de37ee
No known key found for this signature in database
GPG Key ID: BC5DC2998AAD2B21
4 changed files with 72 additions and 0 deletions

22
net-mail/urlscan/Manifest Normal file
View File

@ -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-----

View File

@ -0,0 +1,18 @@
# Nils Freydank <holgersson@posteo.de> (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"]
)

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>holgersson@posteo.de</email>
<name>Nils Freydank</name>
</maintainer>
</pkgmetadata>

View File

@ -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" )