diff --git a/.github/workflows/portage-stable-packages-list b/.github/workflows/portage-stable-packages-list index 3e82d67738..27d62e1ef9 100644 --- a/.github/workflows/portage-stable-packages-list +++ b/.github/workflows/portage-stable-packages-list @@ -565,6 +565,7 @@ sys-apps/kexec-tools sys-apps/kmod sys-apps/less sys-apps/locale-gen +sys-apps/lsb-release sys-apps/lshw sys-apps/makedev sys-apps/man-db diff --git a/sdk_container/src/third_party/coreos-overlay/coreos/config/env/sys-apps/lsb-release b/sdk_container/src/third_party/coreos-overlay/coreos/config/env/sys-apps/lsb-release new file mode 100644 index 0000000000..0e5a9c7ded --- /dev/null +++ b/sdk_container/src/third_party/coreos-overlay/coreos/config/env/sys-apps/lsb-release @@ -0,0 +1 @@ +INSTALL_MASK+=" /etc/lsb-release" diff --git a/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/Manifest b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/Manifest new file mode 100644 index 0000000000..8bae0ae91b --- /dev/null +++ b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/Manifest @@ -0,0 +1,3 @@ +DIST lsb-release-1.4.tar.gz 10769 BLAKE2B d6c71d6604481a637f63fae00742ba77421345b36234fcfcae1da98bc1c80a8450bc569c2ea2f4b1c3a852de2fe24413fe397d4a60a0ca94eb70a9626871f4bb SHA512 84f6f8794380463587005043f601b7a40190cd9e3409abff7f5ce7658cf029a14346eff87838296d90307192bdeff68cc00480c5c04814da7acdb3e220640fde +DIST lsb-release-3.2.tar.gz 16246 BLAKE2B f790b52c403ff42ec1bf787100c6c9715b7bebf3feb1772a6c4caee40b09c121ba7522553d145c478c752b196109747e31b2d8c14764c67c4a7e57fbae06348d SHA512 5ccc2f38c3603b8261310d5f30d8304a95bd6c24fbbf00484609078839a68894b2ba761a7465fc3c22f55dd69d67612d3cc4cb453765e3eea6b9af96834d85fd +DIST lsb-release-3.3.tar.gz 16364 BLAKE2B 91b53df571ebebae67ea2fc5f1f31a11a42166d4a584f5a236cee2a108e965d02b676c7be175239b616e42bc454bcff86485896191522ce5d0c7744f7178a636 SHA512 123291295000d4ce827c692a9ab5ebe300a61cb1dabf9af8bfffdd5f20363159e61a98670aac37ae087aa3639b4ec7dfdb5528aa8c3520f43225e9eae50270db diff --git a/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/files/lsb-release-1.4-os-release.patch b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/files/lsb-release-1.4-os-release.patch new file mode 100644 index 0000000000..830726074c --- /dev/null +++ b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/files/lsb-release-1.4-os-release.patch @@ -0,0 +1,10 @@ +--- a/lsb_release ++++ b/lsb_release +@@ -250,6 +250,7 @@ + CHECKFIRST=$(find $INFO_ROOT/ -maxdepth 1 \ + -name \*$INFO_DISTRIB_SUFFIX \ + -and ! -name $INFO_LSB_FILE \ ++ -and ! -name os-release \ + -and -type f \ + 2>/dev/null \ + | head -1 ) # keep one of the files found (if many) diff --git a/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/lsb-release-1.4-r4.ebuild b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/lsb-release-1.4-r4.ebuild new file mode 100644 index 0000000000..647df6a14b --- /dev/null +++ b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/lsb-release-1.4-r4.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit prefix + +DESCRIPTION="LSB version query program" +HOMEPAGE="https://wiki.linuxfoundation.org/lsb/" +SRC_URI="https://downloads.sourceforge.net/lsb/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" + +# Perl isn't needed at runtime, it is just used to generate the man page. +BDEPEND="dev-lang/perl" + +PATCHES=( + "${FILESDIR}"/${P}-os-release.patch # bug 443116 +) + +src_prepare() { + default + + # use POSIX 'printf' instead of bash 'echo -e', bug #482370 + sed -i \ + -e "s:echo -e:printf '%b\\\n':g" \ + -e 's:--long:-l:g' \ + lsb_release || die + + hprefixify lsb_release +} + +src_install() { + emake \ + prefix="${ED}/usr" \ + mandir="${ED}/usr/share/man" \ + install + + # installs gz compressed manpage, https://bugs.gentoo.org/729140 + rm "${ED}/usr/share/man/man1/lsb_release.1.gz" || die + gunzip lsb_release.1.gz + doman lsb_release.1 + + dodir /etc + cat > "${ED}/etc/lsb-release" <<- EOF || die + DISTRIB_ID="Gentoo" + EOF +} diff --git a/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/lsb-release-3.2.ebuild b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/lsb-release-3.2.ebuild new file mode 100644 index 0000000000..4f1e219846 --- /dev/null +++ b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/lsb-release-3.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit prefix + +DESCRIPTION="LSB version query program" +HOMEPAGE="https://wiki.linuxfoundation.org/lsb/" +# https://downloads.sourceforge.net/lsb/${P}.tar.gz +SRC_URI="https://github.com/thkukuk/lsb-release_os-release/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}_os-release-${PV} + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" + +# Perl isn't needed at runtime, it is just used to generate the man page. +BDEPEND="dev-lang/perl" + +src_prepare() { + default + + # Use POSIX 'printf' instead of bash 'echo -e', bug #482370 + sed -i \ + -e "s:echo -e:printf '%b\\\n':g" \ + -e 's:--long:-l:g' \ + lsb_release || die + + # TODO: unbundle help2man? + hprefixify lsb_release help2man +} + +src_install() { + emake prefix="${ED}"/usr install + + dodir /etc + cat > "${ED}"/etc/lsb-release <<- EOF || die + DISTRIB_ID="Gentoo" + EOF +} diff --git a/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/lsb-release-3.3.ebuild b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/lsb-release-3.3.ebuild new file mode 100644 index 0000000000..fbf7d72147 --- /dev/null +++ b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/lsb-release-3.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit prefix + +DESCRIPTION="LSB version query program" +HOMEPAGE="https://wiki.linuxfoundation.org/lsb/" +# https://downloads.sourceforge.net/lsb/${P}.tar.gz +SRC_URI="https://github.com/thkukuk/lsb-release_os-release/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}_os-release-${PV} + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" + +# Perl isn't needed at runtime, it is just used to generate the man page via +# bundled sys-apps/help2man. +BDEPEND="dev-lang/perl" + +src_prepare() { + default + + # POSIX compat + sed -i -e 's:--long:-l:g' lsb_release || die + + # TODO: unbundle help2man? + hprefixify lsb_release help2man +} + +src_install() { + emake prefix="${ED}"/usr install + + insinto /etc + newins - lsb-release <<-EOF + DISTRIB_ID="Gentoo" + EOF +} diff --git a/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/metadata.xml b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/metadata.xml new file mode 100644 index 0000000000..2e70c73a3c --- /dev/null +++ b/sdk_container/src/third_party/portage-stable/sys-apps/lsb-release/metadata.xml @@ -0,0 +1,23 @@ + + + + + base-system@gentoo.org + Gentoo Base System + + + This program forms part of the required functionality of + the LSB (Linux Standard Base) specification. + + The program queries the installed state of the distribution + to display certain properties such as the version of the + LSB against which the distribution claims compliance as + well. It can also attempt to display the name and release + of the distribution along with an identifier of who produces + the distribution. + + + lsb + thkukuk/lsb-release_os-release + +