mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 13:41:05 +00:00
23 lines
632 B
Bash
23 lines
632 B
Bash
# Copyright 2022-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{11..14} )
|
|
inherit python-single-r1
|
|
|
|
DESCRIPTION="Script to migrate from split-usr to merged-usr"
|
|
HOMEPAGE="https://github.com/floppym/merge-usr"
|
|
SRC_URI="https://github.com/floppym/merge-usr/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
BDEPEND="${PYTHON_DEPS}"
|
|
RDEPEND="${PYTHON_DEPS}"
|
|
|
|
src_install() {
|
|
python_doscript merge-usr
|
|
}
|