mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-16 09:26:58 +02:00
dev-util/catalyst: Add from gentoo
It's from gentoo commit d118e22483ef33e517af245eb27eb50c827de4b9. It replaces the catalyst package we had in overlay. While at it, update it to recent version.
This commit is contained in:
parent
bf3f7415a1
commit
c5e360c45b
2
sdk_container/src/third_party/portage-stable/dev-util/catalyst/Manifest
vendored
Normal file
2
sdk_container/src/third_party/portage-stable/dev-util/catalyst/Manifest
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
DIST catalyst-3.0.18.tar.bz2 621208 BLAKE2B 63f76634b96006ef4a751b0ce166ab36dcba3016234251b2e44e89b43b0c6909e57914007d6287e54584094ff7f064c0251a79f095c87e4c7957925e9d4605cd SHA512 94a30304b242b4e63cc14f34916acd68c03700876ba1cc2f516880f4e8365258de8b62db85cddc9492229414484ba6908edc91991b70b13da0578792b8b96aa3
|
||||||
|
DIST catalyst-3.0.20.tar.bz2 620395 BLAKE2B 24e1e1def627bccebea4da7b4c0f787d1b7e06cc3a830847896d71e997d859ecc2131a85d328f2d58226bbf2d459ca349d50b1af68b95bb06bfe8e1843f4c4aa SHA512 f2f2b0003a70b7843006155edca0971508d19199dfe803b85477d2f2fd0365304b9e65531cc19bfb06b83fa98dac11960b72001e899bed0f9b55c0f6881a853e
|
71
sdk_container/src/third_party/portage-stable/dev-util/catalyst/catalyst-3.0.18.ebuild
vendored
Normal file
71
sdk_container/src/third_party/portage-stable/dev-util/catalyst/catalyst-3.0.18.ebuild
vendored
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=6
|
||||||
|
|
||||||
|
if [[ ${PV} == *9999* ]]; then
|
||||||
|
SRC_ECLASS="git-r3"
|
||||||
|
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/catalyst.git"
|
||||||
|
EGIT_BRANCH="master"
|
||||||
|
else
|
||||||
|
SRC_URI="https://gitweb.gentoo.org/proj/catalyst.git/snapshot/${P}.tar.bz2"
|
||||||
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
|
||||||
|
fi
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{8,9} )
|
||||||
|
DISTUTILS_USE_SETUPTOOLS=no
|
||||||
|
|
||||||
|
inherit distutils-r1 ${SRC_ECLASS}
|
||||||
|
|
||||||
|
DESCRIPTION="Release metatool used for creating releases based on Gentoo Linux"
|
||||||
|
HOMEPAGE="https://wiki.gentoo.org/wiki/Catalyst"
|
||||||
|
|
||||||
|
LICENSE="GPL-2+"
|
||||||
|
SLOT="0"
|
||||||
|
IUSE="ccache doc +iso kernel_linux system-bootloader"
|
||||||
|
|
||||||
|
DEPEND="
|
||||||
|
app-text/asciidoc
|
||||||
|
>=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
|
||||||
|
<dev-python/snakeoil-0.9.6[${PYTHON_USEDEP}]
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
>=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
|
||||||
|
<dev-python/snakeoil-0.9.6[${PYTHON_USEDEP}]
|
||||||
|
>=dev-python/pydecomp-0.3[${PYTHON_USEDEP}]
|
||||||
|
app-arch/lbzip2
|
||||||
|
app-crypt/shash
|
||||||
|
sys-fs/dosfstools
|
||||||
|
!kernel_FreeBSD? ( || ( app-arch/tar[xattr] app-arch/libarchive[xattr] ) )
|
||||||
|
kernel_FreeBSD? ( app-arch/libarchive[xattr] )
|
||||||
|
amd64? ( >=sys-boot/syslinux-3.72 )
|
||||||
|
x86? ( >=sys-boot/syslinux-3.72 )
|
||||||
|
ccache? ( dev-util/ccache )
|
||||||
|
iso? ( app-cdr/cdrtools )
|
||||||
|
kernel_linux? ( app-misc/zisofs-tools >=sys-fs/squashfs-tools-2.1 )
|
||||||
|
"
|
||||||
|
PDEPEND="system-bootloader? ( >=sys-apps/memtest86+-5.01-r4
|
||||||
|
sys-boot/grub:2
|
||||||
|
amd64? ( sys-boot/grub[grub_platforms_efi-32,grub_platforms_efi-64] )
|
||||||
|
x86? ( sys-boot/grub[grub_platforms_efi-32] )
|
||||||
|
sys-boot/syslinux
|
||||||
|
sys-boot/shim )"
|
||||||
|
|
||||||
|
python_prepare_all() {
|
||||||
|
python_setup
|
||||||
|
echo VERSION="${PV}" "${PYTHON}" setup.py set_version
|
||||||
|
VERSION="${PV}" "${PYTHON}" setup.py set_version || die
|
||||||
|
distutils-r1_python_prepare_all
|
||||||
|
}
|
||||||
|
|
||||||
|
python_compile_all() {
|
||||||
|
# build the man pages and docs
|
||||||
|
emake
|
||||||
|
}
|
||||||
|
|
||||||
|
python_install_all() {
|
||||||
|
distutils-r1_python_install_all
|
||||||
|
if use doc; then
|
||||||
|
dodoc files/HOWTO.html files/docbook-xsl.css
|
||||||
|
fi
|
||||||
|
}
|
71
sdk_container/src/third_party/portage-stable/dev-util/catalyst/catalyst-3.0.20.ebuild
vendored
Normal file
71
sdk_container/src/third_party/portage-stable/dev-util/catalyst/catalyst-3.0.20.ebuild
vendored
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=6
|
||||||
|
|
||||||
|
if [[ ${PV} == *9999* ]]; then
|
||||||
|
SRC_ECLASS="git-r3"
|
||||||
|
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/catalyst.git"
|
||||||
|
EGIT_BRANCH="master"
|
||||||
|
else
|
||||||
|
SRC_URI="https://gitweb.gentoo.org/proj/catalyst.git/snapshot/${P}.tar.bz2"
|
||||||
|
# KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
|
||||||
|
fi
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{8,9} )
|
||||||
|
DISTUTILS_USE_SETUPTOOLS=no
|
||||||
|
|
||||||
|
inherit distutils-r1 ${SRC_ECLASS}
|
||||||
|
|
||||||
|
DESCRIPTION="Release metatool used for creating releases based on Gentoo Linux"
|
||||||
|
HOMEPAGE="https://wiki.gentoo.org/wiki/Catalyst"
|
||||||
|
|
||||||
|
LICENSE="GPL-2+"
|
||||||
|
SLOT="0"
|
||||||
|
IUSE="ccache doc +iso kernel_linux system-bootloader"
|
||||||
|
|
||||||
|
DEPEND="
|
||||||
|
app-text/asciidoc
|
||||||
|
>=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
|
||||||
|
dev-python/fasteners[${PYTHON_USEDEP}]
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
>=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
|
||||||
|
dev-python/fasteners[${PYTHON_USEDEP}]
|
||||||
|
>=dev-python/pydecomp-0.3[${PYTHON_USEDEP}]
|
||||||
|
app-arch/lbzip2
|
||||||
|
app-crypt/shash
|
||||||
|
sys-fs/dosfstools
|
||||||
|
!kernel_FreeBSD? ( || ( app-arch/tar[xattr] app-arch/libarchive[xattr] ) )
|
||||||
|
kernel_FreeBSD? ( app-arch/libarchive[xattr] )
|
||||||
|
amd64? ( >=sys-boot/syslinux-3.72 )
|
||||||
|
x86? ( >=sys-boot/syslinux-3.72 )
|
||||||
|
ccache? ( dev-util/ccache )
|
||||||
|
iso? ( app-cdr/cdrtools )
|
||||||
|
kernel_linux? ( app-misc/zisofs-tools >=sys-fs/squashfs-tools-2.1 )
|
||||||
|
"
|
||||||
|
PDEPEND="system-bootloader? ( >=sys-apps/memtest86+-5.01-r4
|
||||||
|
sys-boot/grub:2
|
||||||
|
amd64? ( sys-boot/grub[grub_platforms_efi-32,grub_platforms_efi-64] )
|
||||||
|
x86? ( sys-boot/grub[grub_platforms_efi-32] )
|
||||||
|
sys-boot/syslinux
|
||||||
|
sys-boot/shim )"
|
||||||
|
|
||||||
|
python_prepare_all() {
|
||||||
|
python_setup
|
||||||
|
echo VERSION="${PV}" "${PYTHON}" setup.py set_version
|
||||||
|
VERSION="${PV}" "${PYTHON}" setup.py set_version || die
|
||||||
|
distutils-r1_python_prepare_all
|
||||||
|
}
|
||||||
|
|
||||||
|
python_compile_all() {
|
||||||
|
# build the man pages and docs
|
||||||
|
emake
|
||||||
|
}
|
||||||
|
|
||||||
|
python_install_all() {
|
||||||
|
distutils-r1_python_install_all
|
||||||
|
if use doc; then
|
||||||
|
dodoc files/HOWTO.html files/docbook-xsl.css
|
||||||
|
fi
|
||||||
|
}
|
109
sdk_container/src/third_party/portage-stable/dev-util/catalyst/catalyst-9999.ebuild
vendored
Normal file
109
sdk_container/src/third_party/portage-stable/dev-util/catalyst/catalyst-9999.ebuild
vendored
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
if [[ ${PV} == *9999* ]]; then
|
||||||
|
SRC_ECLASS="git-r3"
|
||||||
|
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/catalyst.git"
|
||||||
|
EGIT_BRANCH="master"
|
||||||
|
else
|
||||||
|
SRC_URI="https://gitweb.gentoo.org/proj/catalyst.git/snapshot/${P}.tar.bz2"
|
||||||
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
|
||||||
|
fi
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{8..9} )
|
||||||
|
DISTUTILS_USE_SETUPTOOLS=no
|
||||||
|
|
||||||
|
inherit distutils-r1 linux-info optfeature ${SRC_ECLASS}
|
||||||
|
|
||||||
|
DESCRIPTION="Release metatool used for creating releases based on Gentoo Linux"
|
||||||
|
HOMEPAGE="https://wiki.gentoo.org/wiki/Catalyst"
|
||||||
|
|
||||||
|
LICENSE="GPL-2+"
|
||||||
|
SLOT="0"
|
||||||
|
IUSE="doc +iso"
|
||||||
|
|
||||||
|
BDEPEND="
|
||||||
|
app-text/asciidoc
|
||||||
|
"
|
||||||
|
DEPEND="
|
||||||
|
sys-apps/portage[${PYTHON_USEDEP}]
|
||||||
|
>=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
|
||||||
|
dev-python/fasteners[${PYTHON_USEDEP}]
|
||||||
|
dev-python/toml[${PYTHON_USEDEP}]
|
||||||
|
sys-apps/util-linux[python,${PYTHON_USEDEP}]
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
>=dev-python/pydecomp-0.3[${PYTHON_USEDEP}]
|
||||||
|
app-arch/lbzip2
|
||||||
|
app-arch/pixz
|
||||||
|
app-arch/tar[xattr]
|
||||||
|
dev-vcs/git
|
||||||
|
sys-fs/dosfstools
|
||||||
|
sys-fs/squashfs-tools-ng[tools]
|
||||||
|
|
||||||
|
iso? (
|
||||||
|
app-cdr/cdrtools
|
||||||
|
dev-libs/libisoburn
|
||||||
|
|
||||||
|
amd64? (
|
||||||
|
sys-boot/grub[grub_platforms_efi-32,grub_platforms_efi-64]
|
||||||
|
sys-fs/mtools
|
||||||
|
)
|
||||||
|
arm64? (
|
||||||
|
sys-boot/grub[grub_platforms_efi-64]
|
||||||
|
sys-fs/mtools
|
||||||
|
)
|
||||||
|
ia64? (
|
||||||
|
sys-boot/grub[grub_platforms_efi-64]
|
||||||
|
sys-fs/mtools
|
||||||
|
)
|
||||||
|
ppc? (
|
||||||
|
sys-boot/grub:2[grub_platforms_ieee1275]
|
||||||
|
)
|
||||||
|
ppc64? (
|
||||||
|
sys-boot/grub:2[grub_platforms_ieee1275]
|
||||||
|
)
|
||||||
|
sparc? (
|
||||||
|
sys-boot/grub:2[grub_platforms_ieee1275]
|
||||||
|
)
|
||||||
|
x86? (
|
||||||
|
sys-boot/grub[grub_platforms_efi-32]
|
||||||
|
)
|
||||||
|
)
|
||||||
|
"
|
||||||
|
|
||||||
|
pkg_setup() {
|
||||||
|
CONFIG_CHECK="
|
||||||
|
~UTS_NS ~IPC_NS
|
||||||
|
~SQUASHFS ~SQUASHFS_ZLIB
|
||||||
|
"
|
||||||
|
linux-info_pkg_setup
|
||||||
|
}
|
||||||
|
|
||||||
|
python_prepare_all() {
|
||||||
|
python_setup
|
||||||
|
echo VERSION="${PV}" "${PYTHON}" setup.py set_version
|
||||||
|
VERSION="${PV}" "${PYTHON}" setup.py set_version || die
|
||||||
|
distutils-r1_python_prepare_all
|
||||||
|
}
|
||||||
|
|
||||||
|
python_compile_all() {
|
||||||
|
# build the man pages and docs
|
||||||
|
emake
|
||||||
|
}
|
||||||
|
|
||||||
|
python_install_all() {
|
||||||
|
distutils-r1_python_install_all
|
||||||
|
if use doc; then
|
||||||
|
dodoc files/HOWTO.html files/docbook-xsl.css
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postinst() {
|
||||||
|
if [[ -z ${REPLACING_VERSIONS} ]]; then
|
||||||
|
optfeature "ccache support" dev-util/ccache
|
||||||
|
fi
|
||||||
|
}
|
12
sdk_container/src/third_party/portage-stable/dev-util/catalyst/metadata.xml
vendored
Normal file
12
sdk_container/src/third_party/portage-stable/dev-util/catalyst/metadata.xml
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="project">
|
||||||
|
<email>catalyst@gentoo.org</email>
|
||||||
|
</maintainer>
|
||||||
|
<use>
|
||||||
|
<flag name="ccache">Enables ccache support</flag>
|
||||||
|
<flag name="iso">Pulls in the depends for building iso images</flag>
|
||||||
|
<flag name="system-bootloader">Pulls in the depends needed to setup livecd bootloader from the host system rather than using a cdtar</flag>
|
||||||
|
</use>
|
||||||
|
</pkgmetadata>
|
Loading…
Reference in New Issue
Block a user