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 8C21415800A for ; Wed, 30 Aug 2023 23:39:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EC5D2BC018; Wed, 30 Aug 2023 23:39:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6270A2BC018 for ; Wed, 30 Aug 2023 23:39:29 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8E2DE340BC0 for ; Wed, 30 Aug 2023 23:39:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B6A2710EF for ; Wed, 30 Aug 2023 23:39:26 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1693438550.b6e24cf4511d6324c072f880c0d910392db19d51.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/yambar/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/yambar/yambar-9999.ebuild X-VCS-Directories: gui-apps/yambar/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: b6e24cf4511d6324c072f880c0d910392db19d51 X-VCS-Branch: dev Date: Wed, 30 Aug 2023 23:39: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: 0d5fa19c-81ae-44fd-9030-e5c75c83197e X-Archives-Hash: 0092c9efc361faa415852f0d4cb70ef9 commit: b6e24cf4511d6324c072f880c0d910392db19d51 Author: CaptainBlood yahoo fr> AuthorDate: Wed Aug 30 23:29:53 2023 +0000 Commit: Julien Roy jroy ca> CommitDate: Wed Aug 30 23:35:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b6e24cf4 gui-apps/yambar: update -9999 Signed-off-by: Julien Roy jroy.ca> gui-apps/yambar/yambar-9999.ebuild | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/gui-apps/yambar/yambar-9999.ebuild b/gui-apps/yambar/yambar-9999.ebuild index a269aa2d42..80a0d0a88e 100644 --- a/gui-apps/yambar/yambar-9999.ebuild +++ b/gui-apps/yambar/yambar-9999.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit meson -if [[ ${PV} == 9999 ]]; then +if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://codeberg.org/dnkl/${PN}.git" else @@ -94,5 +94,14 @@ src_configure() { src_install() { meson_src_install - rm -rf "${D}/usr/share/doc/${PN}" + if use core; then + mv "${D}"/usr/lib64/yambar/libdynlist.so "${D}"/usr/lib64/libdynlist.so || die + fi + rm -rf "${D}/usr/share/doc/${PN}" || die +} + +pkg_postinst() { + ewarn "Warning: if you are upgrading from 1.8.0, please note that there are breaking changes that might affect your config.yml file." + ewarn "See the changelog for more information" + ewarn "https://codeberg.org/dnkl/yambar/releases/tag/1.9.0" }