mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-09 04:51:27 +02:00
commit
886c10c710
7 changed files with 5 additions and 138 deletions
|
|
@ -1 +0,0 @@
|
|||
DIST cloud-init-23.4.tar.gz 1648908 BLAKE2B 0acec9c437c7a5a86ed9cd8718830a7311c257ae9f223a68959b8d1eccc693b35f6a716de5c04112d848c1e2e54f6461a3919fd733debba18989145f6669d359 SHA512 34966b173571764bf83779bef0e89a86971310ff0fa62feceef4fbe17c9fa6d1b69f11f57caaa32cc4ae4a74f598f157dfb3ce356221044666401230cfb1ad13
|
||||
|
|
@ -1,119 +0,0 @@
|
|||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{12..14} )
|
||||
inherit edo python-single-r1 udev
|
||||
|
||||
DESCRIPTION="Cloud instance initialisation magic"
|
||||
HOMEPAGE="https://launchpad.net/cloud-init"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://git.launchpad.net/cloud-init"
|
||||
else
|
||||
SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="selinux test"
|
||||
RESTRICT="!test? ( test )"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
COMMON_DEPEND="
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/jinja2[${PYTHON_USEDEP}]
|
||||
dev-python/oauthlib[${PYTHON_USEDEP}]
|
||||
dev-python/pyserial[${PYTHON_USEDEP}]
|
||||
>=dev-python/configobj-5.0.2[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/jsonpatch[${PYTHON_USEDEP}]
|
||||
dev-python/jsonschema[${PYTHON_USEDEP}]
|
||||
dev-python/netifaces[${PYTHON_USEDEP}]
|
||||
')
|
||||
"
|
||||
BDEPEND="
|
||||
${COMMON_DEPEND}
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
')
|
||||
test? (
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/mock[${PYTHON_USEDEP}]
|
||||
dev-python/passlib[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-mock[${PYTHON_USEDEP}]
|
||||
dev-python/responses[${PYTHON_USEDEP}]
|
||||
')
|
||||
)
|
||||
"
|
||||
RDEPEND="
|
||||
${COMMON_DEPEND}
|
||||
${PYTHON_DEPS}
|
||||
net-analyzer/macchanger
|
||||
net-analyzer/openbsd-netcat
|
||||
sys-apps/iproute2
|
||||
sys-fs/growpart
|
||||
virtual/logger
|
||||
selinux? ( sec-policy/selinux-cloudinit )
|
||||
"
|
||||
|
||||
EPYTEST_IGNORE=(
|
||||
# Can't find file
|
||||
tests/unittests/config/test_apt_configure_sources_list_v1.py
|
||||
tests/unittests/config/test_apt_configure_sources_list_v3.py
|
||||
# PORTAGE_TMPDIR too long for unix sockets
|
||||
tests/unittests/test_all_stages.py
|
||||
# TODO
|
||||
tests/unittests/config/test_schema.py
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Fix location of documentation installation
|
||||
sed -i "s:USR + \"/share/doc/cloud-init:USR + \"/share/doc/${PF}:" setup.py || die
|
||||
|
||||
if [[ ${PV} == *9999 ]] ; then
|
||||
sed -i 's/version=get_version(),/version=9999,/g' setup.py || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
edo ${EPYTHON} setup.py build
|
||||
}
|
||||
|
||||
src_test() {
|
||||
epytest
|
||||
}
|
||||
|
||||
src_install() {
|
||||
edo ${EPYTHON} setup.py install \
|
||||
--prefix="${EPREFIX}/usr" \
|
||||
--root="${D}" \
|
||||
--init-system=sysvinit_openrc,systemd \
|
||||
--distro gentoo
|
||||
python_optimize
|
||||
|
||||
keepdir /etc/cloud
|
||||
|
||||
# installs as non-executable
|
||||
chmod +x "${D}"/etc/init.d/* || die
|
||||
}
|
||||
|
||||
pkg_prerm() {
|
||||
udev_reload
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
udev_reload
|
||||
|
||||
elog "cloud-init-local needs to be run in the boot runlevel because it"
|
||||
elog "modifies services in the default runlevel. When a runlevel is started"
|
||||
elog "it is cached, so modifications that happen to the current runlevel"
|
||||
elog "while you are in it are not acted upon."
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>zerochaos@gentoo.org</email>
|
||||
<name>Rick Farina (Zero_Chaos)</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="launchpad">cloud-init</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
DIST lief-0.17.2.tar.gz 20660554 BLAKE2B d85b4c9b62e5460c698be6a67525c116871f9074b5118491152ec2f2959e9f1a53dbd33d8c9898c9ea30b809c961434e837373c4c2faa4334f352b7d201c396f SHA512 2594db78d7b26388ea12c54fc9691010fb9620c33d45f6124bd3988ea2ff844a8474dcef7199d81c2cded283c09582dbff6f090907fd34d40a791c5b9fc26f91
|
||||
DIST lief-0.17.3.tar.gz 20661130 BLAKE2B e7569120c7ea5fb29325951c0a9e84a62cca5772248025f95b8c03d2d1296478bbee7469ee244f785b3916b7c65a0687a9923212d9e9a8834e8abb5ae242cf11 SHA512 d9e51724249d720d76cf67b99d1f80d722e6bbef57ebf3cf4bf976e18901cd1bfe689db1eca615657cfea7727bb685ff7b3eebb1879a6174ed0ddfb89bfe2a8e
|
||||
DIST lief-0.17.4.tar.gz 20662158 BLAKE2B 4ad09e57078ec07d5215a2ba569630a9e843ac6ec725450510cc3724339b74b45786bf95ce7d60717efc9820d49c268a4656bcbc83ba62a301a31eeb3b201f97 SHA512 295f6270adeb4501ab31919a1d361bde0977dd65193eac45980a7aae15f1772306f2d186d1fd22679134a1f9077507c56aede6b4c4d2a68036965b3c60b46e88
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Copyright 2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
|
@ -7,7 +7,8 @@ DISTUTILS_OPTIONAL=1
|
|||
#DISTUTILS_USE_PEP517=scikit-build-core
|
||||
DISTUTILS_USE_PEP517=standalone
|
||||
DISTUTILS_EXT=1
|
||||
PYTHON_COMPAT=( python3_{12..13} )
|
||||
|
||||
PYTHON_COMPAT=( python3_{12..14} )
|
||||
inherit distutils-r1 cmake
|
||||
|
||||
DESCRIPTION="Library to instrument executable formats"
|
||||
|
|
@ -27,8 +28,7 @@ IUSE="examples +python static-libs"
|
|||
# lief requires a forked version of nanobind, see LIEF-0.15.1/api/python/CMakeLists.txt
|
||||
# So don't try to use a standard one
|
||||
RDEPEND="python? ( ${PYTHON_DEPS}
|
||||
dev-python/pydantic[${PYTHON_USEDEP}]
|
||||
dev-python/pydantic-core[${PYTHON_USEDEP}]
|
||||
>=dev-python/pydantic-2.12.3[${PYTHON_USEDEP}]
|
||||
dev-python/tomli[${PYTHON_USEDEP}]
|
||||
dev-python/xtract[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
|
@ -1 +0,0 @@
|
|||
move www-apps/seafile-server-bin www-apps/seafile-pro-server
|
||||
|
|
@ -1 +0,0 @@
|
|||
move dev-python/peewee_async dev-python/peewee-async
|
||||
Loading…
Reference in a new issue