commit:     af262e0e0e91f06f8ac9e1d516f5e65b301fbbc6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 13 13:27:30 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 13 13:57:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af262e0e

sys-apps/moreutils: add 0.70

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/moreutils/Manifest              |  1 +
 sys-apps/moreutils/moreutils-0.70.ebuild | 78 ++++++++++++++++++++++++++++++++
 2 files changed, 79 insertions(+)

diff --git a/sys-apps/moreutils/Manifest b/sys-apps/moreutils/Manifest
index 5ce85268c049..95fc2f29ced9 100644
--- a/sys-apps/moreutils/Manifest
+++ b/sys-apps/moreutils/Manifest
@@ -1,2 +1,3 @@
 DIST moreutils-0.68.tar.gz 93732 BLAKE2B 
f6bac790a294f6a05624ca33906a41e60a0dcc5c25ef31f62dc501ecf39913299f6ecd64130ed4da1896342ae4bfc286b02217f68c76d0e915cd2d8f684237b1
 SHA512 
8d2ee4ab1e2409a4adde018c558884ff6c642c7426b1d07d5d15bf89ba42ea5aec279c01d7d80815a825adc527ceddf0de8db9c05b0392fccc8e76bcae032558
 DIST moreutils-0.69.tar.gz 93899 BLAKE2B 
3bbe031c230aa22f737a661f2e9fab4f5fb6d5bb2d21807bf7207ab382c9a439ca0e9425594d98dee04714038cb2214fbc9852268b4669dd9a0f0eac5f9ad07c
 SHA512 
0f9033a860bbbc72d50331809c94e7d29c1125339b68434d68d95039ec075b46daff642ad4a08303444fa7873f04a894c4f2010b6ce74e92f868cfc246e39a6f
+DIST moreutils-0.70.tar.gz 94043 BLAKE2B 
2c315e447b4c2bd329ec306644f578e2d33ffdde4d775a429a49477bd96e39c928e0febd5c7a61948dd4c83050d86582d736d2c61fb63758a94bfdc9d574e99a
 SHA512 
7e6623d4ecf50a79d1301f0c63b991f5eb32e4edccb46a99df5c39a7d5cb4d5965fb7d00214afd094f7ac4db311fe49b2a785e7429da99b4324214f0ace5c7d4

diff --git a/sys-apps/moreutils/moreutils-0.70.ebuild 
b/sys-apps/moreutils/moreutils-0.70.ebuild
new file mode 100644
index 000000000000..21d861330d68
--- /dev/null
+++ b/sys-apps/moreutils/moreutils-0.70.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Collection of tools that nobody thought to write when Unix was 
young"
+HOMEPAGE="https://joeyh.name/code/moreutils/ 
https://git.joeyh.name/index.cgi/moreutils.git/";
+# Not available at time of release
+#SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.orig.tar.xz"
+SRC_URI="https://git.joeyh.name/index.cgi/moreutils.git/snapshot/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~x86-linux 
~x64-macos"
+IUSE="+doc +perl"
+
+RDEPEND="
+       !<dev-util/pwntools-4.10.0_beta0-r2
+       perl? (
+               dev-lang/perl
+               dev-perl/IPC-Run
+               dev-perl/Time-Duration
+               dev-perl/TimeDate
+       )
+       "
+BDEPEND="
+       doc? (
+               >=app-text/docbook2X-0.8.8-r2
+               app-text/docbook-xml-dtd:4.4
+               dev-lang/perl
+       )
+"
+IDEPEND="app-admin/eselect"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-0.64-respect-env.patch
+)
+
+src_prepare() {
+       # don't build manpages
+       if ! use doc ; then
+               sed -i -e '/^all:/s/$(MANS)//' -e '/man1/d' Makefile || die
+       fi
+
+       # don't install perl scripts
+       if ! use perl ; then
+               sed -i -e '/PERLSCRIPTS/d' Makefile || die
+       fi
+
+       default
+}
+
+src_compile() {
+       tc-export CC
+
+       emake \
+               CFLAGS="${CFLAGS}" \
+               DOCBOOKXSL="${BROOT}"/usr/share/sgml/docbook/xsl-stylesheets \
+               PREFIX="${EPREFIX}/usr"
+}
+
+src_install() {
+       emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" INSTALL_BIN=install install
+
+       # sys-process is more advanced than parallel from moreutils, rename it
+       if use doc; then
+               mv "${ED}"/usr/share/man/man1/{,${PN}_}parallel.1 || die
+       fi
+
+       mv "${ED}"/usr/bin/{,${PN}_}parallel || die
+}
+
+pkg_postinst() {
+       # Try to make sure ${EDITOR} is valid for vipe (bug #604630)
+       eselect editor update
+}

Reply via email to