holgersson-overlay/net-mail/urlscan/urlscan-1.0.3.ebuild
Nils Freydank 11dd0fb3c3
*/*: Drop all KEYWORDS beside ~amd64
Currently I am only able to seriously test for ~amd64. This also
evectivly reverts the commit that added ~riscv to sys-fs/gocryptfs:
535421924b18f602b971e605782a47cf2fd522ab
2024-08-19 05:00:00 +02:00

36 lines
762 B
Bash

# Copyright 2020-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( python3_{11..12} )
inherit distutils-r1 pypi
DESCRIPTION="Mutt and terminal url selector (similar to urlview)"
HOMEPAGE="
https://github.com/firecat53/urlscan
https://pypi.org/project/urlscan/
"
SRC_URI+=" https://raw.githubusercontent.com/firecat53/urlscan/${PV}/urlscan.1 -> ${P}-manpage"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="dev-python/urwid[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"
BDEPEND=""
DOCS=( README.md )
PATCHES=( "${FILESDIR}/${PN}-1.0.0-respect-paths.patch" )
src_install() {
default
distutils-r1_src_install
newman "${DISTDIR}/${P}-manpage" "${PN}.1"
}