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 02418158041 for ; Fri, 23 Feb 2024 13:11:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7B7342BC040; Fri, 23 Feb 2024 13:11:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 16B7A2BC040 for ; Fri, 23 Feb 2024 13:11:03 +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 2FD8334306E for ; Fri, 23 Feb 2024 13:11:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5656114D3 for ; Fri, 23 Feb 2024 13:10:59 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1708677433.1b57a207330b9ec4746ef5f9bb25a8d3b289bc3f.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 1b57a207330b9ec4746ef5f9bb25a8d3b289bc3f X-VCS-Branch: master Date: Fri, 23 Feb 2024 13:10:59 +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: e3f5f148-fa68-457a-99dd-41b19933a9f0 X-Archives-Hash: 0e9cd23bb472dfc6b87896bdd540f944 commit: 1b57a207330b9ec4746ef5f9bb25a8d3b289bc3f Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Fri Feb 23 08:36:50 2024 +0000 Commit: David Roman gmail com> 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 }