diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-05-14 08:49:14 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-05-14 08:49:14 +0000 |
| commit | 416b69e88dccd53b54eb1dfa8e91ebc06c45fa2e (patch) | |
| tree | 0f5ac4b01ec07df6989764cdaba4666701db57ba /sys-apps | |
| parent | 33b1502bb3d163709fff312aca31b2b997e203a4 (diff) | |
| download | baldeagleos-repo-416b69e88dccd53b54eb1dfa8e91ebc06c45fa2e.tar.gz baldeagleos-repo-416b69e88dccd53b54eb1dfa8e91ebc06c45fa2e.tar.xz baldeagleos-repo-416b69e88dccd53b54eb1dfa8e91ebc06c45fa2e.zip | |
Adding metadata
Diffstat (limited to 'sys-apps')
| -rw-r--r-- | sys-apps/coreutils/coreutils-9.11.ebuild | 5 | ||||
| -rw-r--r-- | sys-apps/coreutils/coreutils-9999.ebuild | 7 | ||||
| -rw-r--r-- | sys-apps/findutils/findutils-4.10.0.ebuild | 6 | ||||
| -rw-r--r-- | sys-apps/hexyl/hexyl-0.17.0.ebuild | 26 | ||||
| -rw-r--r-- | sys-apps/hexyl/metadata.xml | 6 | ||||
| -rw-r--r-- | sys-apps/man-db/man-db-2.13.1-r1.ebuild | 5 | ||||
| -rw-r--r-- | sys-apps/util-linux/util-linux-2.41.4.ebuild | 5 |
7 files changed, 34 insertions, 26 deletions
diff --git a/sys-apps/coreutils/coreutils-9.11.ebuild b/sys-apps/coreutils/coreutils-9.11.ebuild index 2ac38d7e6635..0230dbf90ef9 100644 --- a/sys-apps/coreutils/coreutils-9.11.ebuild +++ b/sys-apps/coreutils/coreutils-9.11.ebuild @@ -174,6 +174,11 @@ src_configure() { myconf+=( --with-libgmp-prefix="${ESYSROOT}"/usr ) fi + # https://savannah.gnu.org/support/?111394 + # This can be removed when we patch dev-build/autoconf, though + # packages w/o eautoreconf will still need it. + [[ ${enable_year2038} == "no" ]] && myconf+=( --disable-year2038 ) + if tc-is-cross-compiler && [[ ${CHOST} == *linux* ]] ; then # bug #311569 export fu_cv_sys_stat_statfs2_bsize=yes diff --git a/sys-apps/coreutils/coreutils-9999.ebuild b/sys-apps/coreutils/coreutils-9999.ebuild index 32b2bca06232..0230dbf90ef9 100644 --- a/sys-apps/coreutils/coreutils-9999.ebuild +++ b/sys-apps/coreutils/coreutils-9999.ebuild @@ -23,7 +23,7 @@ if [[ ${PV} == 9999 ]] ; then elif [[ ${PV} == *_p* ]] ; then # Note: could put this in devspace, but if it's gone, we don't want # it in tree anyway. It's just for testing. - MY_SNAPSHOT="$(ver_cut 1-2).289-a8598" + MY_SNAPSHOT="$(ver_cut 1-2).299-27a7c" SRC_URI="https://www.pixelbeat.org/cu/coreutils-${MY_SNAPSHOT}.tar.xz -> ${P}.tar.xz" SRC_URI+=" verify-sig? ( https://www.pixelbeat.org/cu/coreutils-${MY_SNAPSHOT}.tar.xz.sig -> ${P}.tar.xz.sig )" S="${WORKDIR}"/${PN}-${MY_SNAPSHOT} @@ -174,6 +174,11 @@ src_configure() { myconf+=( --with-libgmp-prefix="${ESYSROOT}"/usr ) fi + # https://savannah.gnu.org/support/?111394 + # This can be removed when we patch dev-build/autoconf, though + # packages w/o eautoreconf will still need it. + [[ ${enable_year2038} == "no" ]] && myconf+=( --disable-year2038 ) + if tc-is-cross-compiler && [[ ${CHOST} == *linux* ]] ; then # bug #311569 export fu_cv_sys_stat_statfs2_bsize=yes diff --git a/sys-apps/findutils/findutils-4.10.0.ebuild b/sys-apps/findutils/findutils-4.10.0.ebuild index 7ef0a7a1c234..5cc71f5de0a9 100644 --- a/sys-apps/findutils/findutils-4.10.0.ebuild +++ b/sys-apps/findutils/findutils-4.10.0.ebuild @@ -70,6 +70,12 @@ src_configure() { # rename to gfind, gxargs for better BSD compatibility --program-prefix=g ) + + # https://savannah.gnu.org/support/?111394 + # This can be removed when we patch dev-build/autoconf, though + # packages w/o eautoreconf will still need it. + [[ ${enable_year2038} == "no" ]] && myeconfargs+=( --disable-year2038 ) + econf "${myeconfargs[@]}" } diff --git a/sys-apps/hexyl/hexyl-0.17.0.ebuild b/sys-apps/hexyl/hexyl-0.17.0.ebuild index 0225cbb7eace..ac667b6697fb 100644 --- a/sys-apps/hexyl/hexyl-0.17.0.ebuild +++ b/sys-apps/hexyl/hexyl-0.17.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2017-2026 Gentoo Authors +# Copyright 2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -75,12 +75,12 @@ CRATES=" yansi@1.0.1 " -inherit cargo shell-completion +inherit cargo DESCRIPTION="A command-line hex viewer" HOMEPAGE="https://github.com/sharkdp/hexyl" SRC_URI=" - https://github.com/sharkdp/hexyl/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://github.com/sharkdp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz ${CARGO_CRATE_URIS} " @@ -89,28 +89,10 @@ LICENSE="|| ( Apache-2.0 MIT )" LICENSE+=" Apache-2.0 ISC MIT Unicode-DFS-2016 ZLIB" SLOT="0" KEYWORDS="~amd64" -QA_FLAGS_IGNORED="usr/bin/hexyl" -RESTRICT="mirror" - -BDEPEND=" - virtual/pandoc -" - -src_compile() { - cargo_src_compile - pandoc -s -f markdown -t man -o "doc/${PN}.1" "doc/${PN}.1.md" -} +DOCS=( README.md CHANGELOG.md ) src_install() { cargo_src_install einstalldocs - doman "doc/${PN}.1" - - "target/release/${PN}" --completion bash > "${PN}" - dobashcomp "${PN}" - "target/release/${PN}" --completion zsh > "_${PN}" - dozshcomp "_${PN}" - "target/release/${PN}" --completion fish > "${PN}.fish" - dofishcomp "${PN}.fish" } diff --git a/sys-apps/hexyl/metadata.xml b/sys-apps/hexyl/metadata.xml index 1bd26735cdca..24ccbb8a7ce2 100644 --- a/sys-apps/hexyl/metadata.xml +++ b/sys-apps/hexyl/metadata.xml @@ -2,9 +2,9 @@ <!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> <pkgmetadata> <maintainer type="person"> - <email>Wuzy01@qq.com</email> - <name>Wu, Zhenyu</name> + <email>thomas@binaryden.de</email> + <name>Thomas Kemmer</name> </maintainer> - <origin>gentoo-guru-overlay</origin> + <origin>binaryden-overlay</origin> </pkgmetadata>
\ No newline at end of file diff --git a/sys-apps/man-db/man-db-2.13.1-r1.ebuild b/sys-apps/man-db/man-db-2.13.1-r1.ebuild index ba959d8e68c5..7e5e7fa97578 100644 --- a/sys-apps/man-db/man-db-2.13.1-r1.ebuild +++ b/sys-apps/man-db/man-db-2.13.1-r1.ebuild @@ -154,6 +154,11 @@ src_configure() { --with-zstd=zstd ) + # https://savannah.gnu.org/support/?111394 + # This can be removed when we patch dev-build/autoconf, though + # packages w/o eautoreconf will still need it. + [[ ${enable_year2038} == "no" ]] && myeconfargs+=( --disable-year2038 ) + case ${CHOST} in *-solaris*|*-darwin*) myeconfargs+=( diff --git a/sys-apps/util-linux/util-linux-2.41.4.ebuild b/sys-apps/util-linux/util-linux-2.41.4.ebuild index dd533a95cf6a..2c8c4adc0795 100644 --- a/sys-apps/util-linux/util-linux-2.41.4.ebuild +++ b/sys-apps/util-linux/util-linux-2.41.4.ebuild @@ -356,6 +356,11 @@ multilib_src_configure() { ) fi + # https://savannah.gnu.org/support/?111394 + # This can be removed when we patch dev-build/autoconf, though + # packages w/o eautoreconf will still need it. + [[ ${enable_year2038} == "no" ]] && myeconfargs+=( --disable-year2038 ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" if multilib_is_native_abi && use python ; then |
