From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F2A36158041 for ; Fri, 23 Feb 2024 08:37:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23975E2A24; Fri, 23 Feb 2024 08:37:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 053BDE2A24 for ; Fri, 23 Feb 2024 08:37:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82B0634318C for ; Fri, 23 Feb 2024 08:37:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17D36B2F for ; Fri, 23 Feb 2024 08:37:26 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1708677433.1b57a207330b9ec4746ef5f9bb25a8d3b289bc3f.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: www-apps/pleroma/ X-VCS-Repository: repo/proj/guru X-VCS-Files: www-apps/pleroma/pleroma-9999.ebuild X-VCS-Directories: www-apps/pleroma/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: 1b57a207330b9ec4746ef5f9bb25a8d3b289bc3f X-VCS-Branch: dev Date: Fri, 23 Feb 2024 08:37:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1c6f185d-f708-41ed-8bd2-7b79572a2154 X-Archives-Hash: 16a742c64e58a2778b121f240a18c848 commit: 1b57a207330b9ec4746ef5f9bb25a8d3b289bc3f Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Fri Feb 23 08:36:50 2024 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Fri Feb 23 08:37:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1b57a207 www-apps/pleroma-9999: Use system vips Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> www-apps/pleroma/pleroma-9999.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/www-apps/pleroma/pleroma-9999.ebuild b/www-apps/pleroma/pleroma-9999.ebuild index fa8957b176..292dcac0f6 100644 --- a/www-apps/pleroma/pleroma-9999.ebuild +++ b/www-apps/pleroma/pleroma-9999.ebuild @@ -32,8 +32,9 @@ BDEPEND=" dev-elixir/hex " DEPEND=" - sys-libs/ncurses:= + media-libs/vips:= sys-apps/file + sys-libs/ncurses:= " RDEPEND=" ${DEPEND} @@ -59,7 +60,9 @@ src_prepare() { sed -i "s!source_url: .*!source_url: \"${EGIT_OVERRIDE_REPO}\",!" mix.exs || die fi - sed -i -e '/include_executables_for:/a\ strip_beams: false,\n\ include_erts: false,' mix.exs || die + # strip_beams: Keep debug information in Erlang BEAM bytecode + # include_erts: Depend on system erlang for the runtime + sed -i '/include_executables_for:/a\ strip_beams: false,\n\ include_erts: false,' mix.exs || die sed -i \ -e '/update \[OPTIONS\]/,/--tmp-dir/d' \ @@ -74,6 +77,9 @@ src_prepare() { src_compile() { mkdir -p pleroma || die + + export VIX_COMPILATION_MODE="PLATFORM_PROVIDED_LIBVIPS" + emix release --overwrite --path pleroma }