public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ostree/
Date: Sat,  3 Jun 2023 17:21:16 +0000 (UTC)	[thread overview]
Message-ID: <1685812106.c288a5325ac39dae5b79f9c1f1d01ec9c0f1aeaf.arthurzam@gentoo> (raw)

commit:     c288a5325ac39dae5b79f9c1f1d01ec9c0f1aeaf
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  3 17:08:26 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  3 17:08:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c288a532

dev-util/ostree: add 2023.3

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-util/ostree/Manifest             |   1 +
 dev-util/ostree/ostree-2023.3.ebuild | 118 +++++++++++++++++++++++++++++++++++
 2 files changed, 119 insertions(+)

diff --git a/dev-util/ostree/Manifest b/dev-util/ostree/Manifest
index 1c02961b8818..fdf6f914fa65 100644
--- a/dev-util/ostree/Manifest
+++ b/dev-util/ostree/Manifest
@@ -1,2 +1,3 @@
 DIST ostree-2023.1.tar.xz 2079904 BLAKE2B 993570624cb43684d81fff9f3789a9cee3b998f945a78bc6eb99330eed45739d1e6fb66589cefba10eea608c5cd389cc121a890c27efa773a405a5d8b1f117d9 SHA512 a6a6e47d6cb9ec6826d48a50a2abac69e4a040f2b5830d39e8a006c738a163fb15fde8630bf271d92cec9470601281669cd4bf942e4b7c4d42441bd5d1730572
 DIST ostree-2023.2.tar.xz 2081320 BLAKE2B f773bf979b4bc97b9b8f96dc4385745bc386c29952a36c07cdd33a7db7802876ce154b5ac1f3669605ab3949a539aa8e2b3a3d94608557eb65249b5188f9d012 SHA512 549a2bdf8cef93d421aaf990e2d1c534063f0314b5933db7ce123bdd138229e24cc171d541296e45a7546a91d35149c1c8f29ea90949876200c574e7ec297b98
+DIST ostree-2023.3.tar.xz 2075168 BLAKE2B 6e699420a89b36520e60a5682a421fd8f10eb20702abe6af97be9ee78a04be98e8d164157d29726de9e63b869051f7e60f199776ea3d959d4f0ad4165ff780c6 SHA512 af3b80d55e15b515e860ab0ee5f061f1a4d649b21441d5cde66e71ff4349ef480565cb795838ebce2f42784d53e349c2443159d9ee452277001d930ba814fe40

diff --git a/dev-util/ostree/ostree-2023.3.ebuild b/dev-util/ostree/ostree-2023.3.ebuild
new file mode 100644
index 000000000000..32ce2d1f9766
--- /dev/null
+++ b/dev-util/ostree/ostree-2023.3.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools systemd tmpfiles
+
+DESCRIPTION="Operating system and container binary deployment and upgrades"
+HOMEPAGE="https://ostreedev.github.io/ostree/"
+SRC_URI="
+	https://github.com/ostreedev/ostree/releases/download/v${PV}/lib${P}.tar.xz
+		-> ${P}.tar.xz
+"
+S="${WORKDIR}/lib${P}"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+LICENSE="LGPL-2+"
+SLOT="0"
+
+IUSE="archive +curl doc dracut gnutls +gpg grub +http2 httpd introspection libmount selinux sodium ssl +soup systemd zeroconf"
+RESTRICT="test"
+REQUIRED_USE="
+	dracut? ( systemd )
+	http2? ( curl )
+	httpd? ( || ( curl soup ) )
+"
+
+RDEPEND="
+	app-arch/xz-utils
+	dev-libs/libassuan
+	dev-libs/glib:2
+	sys-fs/fuse:3
+	sys-libs/zlib
+	archive? ( app-arch/libarchive:= )
+	curl? ( net-misc/curl )
+	dracut? ( sys-kernel/dracut )
+	gpg? (
+		app-crypt/gpgme:=
+		dev-libs/libgpg-error
+	)
+	grub? ( sys-boot/grub:2= )
+	introspection? ( dev-libs/gobject-introspection )
+	libmount? ( sys-apps/util-linux )
+	selinux? ( sys-libs/libselinux )
+	sodium? ( >=dev-libs/libsodium-1.0.14:= )
+	soup? ( net-libs/libsoup:2.4 )
+	ssl? (
+		gnutls? ( net-libs/gnutls:= )
+		!gnutls? (
+			dev-libs/openssl:0=
+		)
+	)
+	systemd? ( sys-apps/systemd:0= )
+	zeroconf? ( net-dns/avahi[dbus] )
+"
+DEPEND="${RDEPEND}
+	app-text/docbook-xsl-stylesheets
+	dev-libs/libxslt
+	doc? ( dev-util/gtk-doc )
+"
+BDEPEND="
+	dev-util/glib-utils
+	sys-devel/flex
+	sys-devel/bison
+	virtual/pkgconfig
+"
+
+PATCHES=(
+	"${FILESDIR}"/ostree-2022.6-musl-allperms.patch
+)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	# Needs Bison (bug #884289)
+	unset YACC
+
+	local econfargs=(
+		--enable-man
+		--enable-shared
+		--with-grub2-mkconfig-path=grub-mkconfig
+		--with-modern-grub
+		$(use_with archive libarchive)
+		$(use_with curl)
+		$(use_with dracut dracut yesbutnoconf) #816867
+		$(use_enable doc gtk-doc)
+		$(usex introspection --enable-introspection={,} yes no)
+		$(use_with gpg gpgme)
+		$(use_enable http2)
+		$(use_enable httpd trivial-httpd-cmdline)
+		$(use_with selinux )
+		$(use_with soup)
+		$(use_with libmount)
+		$(use ssl && { use gnutls && echo --with-crypto=gnutls || echo --with-crypto=openssl; })
+		$(use_with sodium ed25519-libsodium)
+		$(use_with systemd libsystemd)
+		$(use_with zeroconf avahi)
+	)
+
+	if use systemd; then
+		econfargs+=( --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" )
+	fi
+
+	unset ${!XDG_*} #657346 g-ir-scanner sandbox violation
+	econf "${econfargs[@]}"
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+	tmpfiles_process ostree-tmpfiles.conf
+}


             reply	other threads:[~2023-06-03 17:21 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-03 17:21 Arthur Zamarin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-03  1:26 [gentoo-commits] repo/gentoo:master commit in: dev-util/ostree/ Zac Medico
2025-04-28 19:01 Arthur Zamarin
2025-04-23  9:17 Sam James
2025-03-25  8:14 Sam James
2024-09-20 14:32 Arthur Zamarin
2024-06-23  1:49 Sam James
2024-05-13 12:39 Arthur Zamarin
2024-05-11 15:16 Arthur Zamarin
2024-05-11 14:38 Arthur Zamarin
2024-02-24 15:26 Arthur Zamarin
2023-12-08 11:08 Sam James
2023-12-08  9:58 Arthur Zamarin
2023-12-08  9:02 Arthur Zamarin
2023-07-09 13:03 Matt Turner
2023-07-07 21:22 Sam James
2023-06-22 17:46 Arthur Zamarin
2023-06-22 17:46 Arthur Zamarin
2023-06-22 17:46 Arthur Zamarin
2023-05-10 18:30 Arthur Zamarin
2023-05-10 18:30 Arthur Zamarin
2023-05-10  0:29 Sam James
2023-05-01  5:29 Arthur Zamarin
2023-04-30 23:50 Sam James
2023-04-30 23:50 Sam James
2023-03-16 23:49 Zac Medico
2023-03-16 23:49 Zac Medico
2023-01-16 23:18 Zac Medico
2022-11-24  2:33 Zac Medico
2022-11-03  8:08 Agostino Sarubbo
2022-11-03  6:40 Sam James
2022-11-03  6:15 Sam James
2022-10-31  2:43 WANG Xuerui
2022-10-07 23:55 Zac Medico
2022-10-07 23:38 Zac Medico
2022-07-24 19:07 Zac Medico
2022-06-08  3:16 Zac Medico
2022-06-08  3:13 Zac Medico
2022-04-13  3:08 Zac Medico
2022-04-13  2:50 Zac Medico
2022-04-02 12:04 Arthur Zamarin
2022-04-01 15:17 Jakov Smolić
2022-04-01 15:17 Jakov Smolić
2022-03-05  0:22 Zac Medico
2022-02-16 22:11 David Seifert
2022-02-12 16:52 Zac Medico
2022-02-12 16:52 Zac Medico
2022-01-09 19:04 Zac Medico
2021-10-28  5:57 Zac Medico
2021-10-18  4:23 Zac Medico
2021-10-18  4:23 Zac Medico
2021-10-18  4:23 Zac Medico
2021-10-02 15:43 Sam James
2021-09-22  6:54 Agostino Sarubbo
2021-09-21  6:37 Agostino Sarubbo
2021-09-19 21:52 Zac Medico
2021-09-16 19:11 Sam James
2021-09-16 12:32 Marek Szuba
2021-08-18 14:59 Sam James
2021-08-04 21:01 Sam James
2021-07-30  0:31 Georgy Yakovlev
2021-05-02 17:56 Mikle Kolyada
2021-01-21  7:40 Agostino Sarubbo
2021-01-07 17:34 Sam James
2021-01-07 10:07 Sam James
2020-11-27 21:09 Zac Medico
2020-10-30 17:38 Zac Medico
2020-10-29 18:24 Georgy Yakovlev
2020-10-28 16:23 Sam James
2020-10-20  8:18 Sam James
2020-10-18  3:51 Zac Medico
2020-10-05 16:40 Zac Medico
2020-10-04 19:19 Zac Medico
2020-10-04 18:47 Zac Medico
2020-06-26  5:39 Zac Medico
2020-01-21 20:02 Zac Medico
2020-01-21  7:48 Zac Medico
2020-01-21  7:48 Zac Medico
2020-01-21  7:48 Zac Medico
2020-01-21  7:48 Zac Medico
2019-01-07 23:14 Zac Medico
2019-01-07 19:15 Lars Wendler
2018-11-28  3:57 Zac Medico
2018-06-05  1:48 Zac Medico
2018-06-03 20:45 Zac Medico

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=1685812106.c288a5325ac39dae5b79f9c1f1d01ec9c0f1aeaf.arthurzam@gentoo \
    --to=arthurzam@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