mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 23:46:14 -04:00
32 lines
857 B
Bash
32 lines
857 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Lib and CLI for archive.org - for search, uploading, downloading, rename..."
|
|
HOMEPAGE="https://github.com/jjjake/internetarchive"
|
|
SRC_URI="https://github.com/jjjake/$PN/archive/refs/tags/v$PV.tar.gz"
|
|
|
|
LICENSE="AGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="
|
|
dev-python/charset-normalizer[${PYTHON_USEDEP}]
|
|
dev-python/docopt[${PYTHON_USEDEP}]
|
|
dev-python/jsonpatch[${PYTHON_USEDEP}]
|
|
dev-python/requests[${PYTHON_USEDEP}]
|
|
dev-python/schema[${PYTHON_USEDEP}]
|
|
dev-python/tqdm[${PYTHON_USEDEP}]
|
|
dev-python/urllib3[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
pkg_postinst() {
|
|
einfo "See documentation at https://archive.org/developers/internetarchive/"
|
|
}
|