public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/tup/
Date: Fri, 11 Feb 2022 14:56:57 +0000 (UTC)	[thread overview]
Message-ID: <1644591403.ad203f6a5b91b8fdb98f91a472a567402c071af3.juippis@gentoo> (raw)

commit:     ad203f6a5b91b8fdb98f91a472a567402c071af3
Author:     Pierre-Nicolas Clauss <pinicarus <AT> protonmail <DOT> com>
AuthorDate: Wed Jan 12 23:45:01 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 14:56:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad203f6a

dev-util/tup: upgrade to 0.7.11

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Pierre-Nicolas Clauss <pinicarus <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23782
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/tup/Manifest          |   1 +
 dev-util/tup/tup-0.7.11.ebuild | 116 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 117 insertions(+)

diff --git a/dev-util/tup/Manifest b/dev-util/tup/Manifest
index 63bcf2f318d0..d96de485f711 100644
--- a/dev-util/tup/Manifest
+++ b/dev-util/tup/Manifest
@@ -1,2 +1,3 @@
 DIST tup-0.7.10.tar.gz 4651047 BLAKE2B 067730f8fa202dfff7fbf566fef609038839a47ddb9f9029155b4eee428eae9fd088bab1c5373155de0b445700cc8b7cbe0c40dd3d9665504c9e37de24b01ed4 SHA512 65009e57be2ae85187779f5b9317f2850b007bfbfef92c7191648ba4e927a5709a0d48e8a1ad8b8480e7340568f4b207e8d0e8874f896bbbb65983e80f8b5c24
+DIST tup-0.7.11.tar.gz 4683309 BLAKE2B 2914339499e80cf52318aaf9d682ac482f17c2acf6eeebb2dac84776cd4407fc23fbb1c61e5e7634ce6f18563e24ff524b284cbe8b46306f82870fdb32166efb SHA512 b923366bb15ce6e5be027b6b3e98b1029cd7dbe6ce2a8dd37a8e4b71521c8ff6d95d88fe296f5ca4719bbc048c6aaa5eacdd8cac1410d46df54ac674d6fd8aee
 DIST tup-0.7.8.tar.gz 4540974 BLAKE2B b6724113fac9920b029604af3bf4fd875c1651b89b6c772bfecef9e8d9612574265fafd0a8eac217a51e3b3fe1d4776e97174d4c89cbf97ee3203dddc0e53f6c SHA512 17d4b76c508749ca011b3c0209bc779d617a091ed2d067bf1095fc840f62ac23145071395892170390ac6217f18bcaabb0cff582aa782838eab190244313d7f5

diff --git a/dev-util/tup/tup-0.7.11.ebuild b/dev-util/tup/tup-0.7.11.ebuild
new file mode 100644
index 000000000000..74a30dda33e3
--- /dev/null
+++ b/dev-util/tup/tup-0.7.11.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info toolchain-funcs
+
+DESCRIPTION="A file-based build system"
+HOMEPAGE="http://gittup.org/tup"
+# Tup itself is GPLv2, but it bundles differently licensed software:
+# - lua: MIT
+# - sqlite (unused in this ebuild): public domain
+# - inih: 3-clause BSD
+# - red-black tree implementation: 2-clause BSD
+# - queue implementation: 3-clause BSD
+LICENSE="GPL-2 MIT public-domain BSD BSD-2"
+SLOT="0"
+
+if [[ "${PV}" == 9999 ]]; then
+	EGIT_REPO_URI="https://github.com/gittup/tup.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/gittup/tup/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+DEPEND="
+	dev-db/sqlite:=
+	dev-libs/libpcre:=
+	sys-fs/fuse:3=
+"
+RDEPEND="${DEPEND}"
+
+CONFIG_CHECK="~FUSE_FS ~NAMESPACES"
+WARNING_FUSE_FS="CONFIG_FUSE_FS is required for tup to work"
+WARNING_NAMESPACES="CONFIG_NAMESPACES is required for tup to work as intended (workaround: set TUP_NO_NAMESPACING env var when running tup)"
+
+src_prepare() {
+	# Use our toolchain
+	sed -i Tuprules.tup \
+		-e "s|CC = gcc|CC = $(tc-getCC) ${CFLAGS} ${LDFLAGS}|" \
+		-e "s|ar crs|$(tc-getAR) crs|" || die
+
+	if [[ ${PV} != 9999 ]]; then
+		# Avoid invoking `git` to find version, use ours
+		sed -i src/tup/link.sh \
+			-e 's|`git describe`|v'"${PV}|" || die
+	fi
+
+	echo "CONFIG_TUP_USE_SYSTEM_SQLITE=y" >> tup.config
+
+	default
+}
+
+src_compile() {
+	# Disabling namespacing because it leads to accessing /proc/<pid>/setgroups
+	# which violates sandboxing.
+	export TUP_NO_NAMESPACING=1
+	./bootstrap-nofuse.sh || die
+	unset TUP_NO_NAMESPACING
+}
+
+src_install() {
+	dobin tup
+	dolib.a libtup_client.a
+	doheader tup_client.h
+	doman tup.1
+}
+
+src_test() {
+	[[ -e /dev/fuse ]] || die "/dev/fuse is required for tests to work"
+	# tup uses fuse when tracking dependencies.
+	addwrite /dev/fuse
+
+	# Disabling namespacing because it leads to accessing /proc/<pid>/setgroups
+	# which violates sandboxing.
+	export TUP_NO_NAMESPACING=1
+
+	# Skip tests which require namespacing or root privileges.
+	pushd test || die
+	rm -v t2150-lua-tupdefault.sh \
+	      t2172-lua-relativedir.sh \
+	      t2187-tupdefault.sh \
+	      t2197-tupdefault-ghost.sh \
+	      t2220-lua-open-external.sh \
+	      t4062-full-deps.sh \
+	      t4063-full-deps2.sh \
+	      t4064-full-deps3.sh \
+	      t4065-full-deps-proc.sh \
+	      t4067-full-deps5.sh \
+	      t4069-gcc-coverage.sh \
+	      t4072-proc-self.sh \
+	      t4074-getpwd.sh \
+	      t4131-proc-self-exe.sh \
+	      t4132-proc-meminfo.sh \
+	      t4171-dev-null.sh \
+	      t4200-ccache.sh \
+	      t4201-ccache2.sh \
+	      t4202-clang.sh \
+	      t4205-full-deps6.sh \
+	      t4206-full-deps7.sh \
+	      t4207-full-deps8.sh \
+	      t4208-full-deps-external.sh \
+	      t4209-full-deps-external2.sh \
+	      t4210-full-deps-getaddrinfo.sh \
+	      t4215-full-deps-get-nprocs.sh \
+	      t5083-symlink-fullpath.sh \
+	      t5084-symlink-fullpath2.sh \
+	      t5103-python-sh.sh \
+	      t7048-full-deps.sh \
+	      t8105-variant-parse-progress.sh || die
+	./test.sh || die
+	popd || die
+
+	unset TUP_NO_NAMESPACING
+}


             reply	other threads:[~2022-02-11 14:57 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-11 14:56 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-01-08  7:43 [gentoo-commits] repo/gentoo:master commit in: dev-util/tup/ Joonas Niilola
2022-07-02 17:35 Joonas Niilola
2022-04-17 19:00 Sam James
2022-02-11 14:56 Joonas Niilola
2021-12-05  7:49 Jakov Smolić
2021-07-20 10:25 Joonas Niilola
2020-07-27 23:48 Andrey Utkin
2019-07-10 17:38 Andrey Utkin
2019-04-08 18:22 Andrey Utkin
2019-02-08 13:59 Mikle Kolyada
2018-12-02  3:19 Andrey Utkin
2018-12-02  3:19 Andrey Utkin
2018-12-02  3:19 Andrey Utkin
2018-12-02  2:47 Andrey Utkin
2018-12-02  2:47 Andrey Utkin
2018-07-29  1:43 Andrey Utkin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1644591403.ad203f6a5b91b8fdb98f91a472a567402c071af3.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox