2
0
mirror of https://github.com/gentoo-mirror/gentoo.git synced 2026-02-05 00:00:22 +03:00
Files
gentoo/dev-python/ioctl-opt/ioctl-opt-1.3.ebuild
James Le Cuirot 0283a62688 dev-python/ioctl-opt: Fix SRC_URI
My bad.

Closes: https://bugs.gentoo.org/951157
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
2025-03-11 13:04:45 +00:00

24 lines
587 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..13} python3_13t )
inherit distutils-r1
MY_PN="python-${PN}"
DESCRIPTION="Linux's ioctl.h for Python"
HOMEPAGE="https://github.com/vpelletier/python-ioctl-opt"
SRC_URI="https://github.com/vpelletier/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${MY_PN}-${PV}.gh.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
python_test() {
"${EPYTHON}" ioctl_opt/__init__.py || die
}