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: gui-apps/lavalauncher/
Date: Mon, 13 May 2024 14:53:20 +0000 (UTC)	[thread overview]
Message-ID: <1715611670.4b6b68aa40e9d12206dba0acbefdfe9f1688db5b.arthurzam@gentoo> (raw)

commit:     4b6b68aa40e9d12206dba0acbefdfe9f1688db5b
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Fri May 10 16:39:11 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon May 13 14:47:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b6b68aa

gui-apps/lavalauncher: add 2.1.1

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 gui-apps/lavalauncher/Manifest                  |  1 +
 gui-apps/lavalauncher/lavalauncher-2.1.1.ebuild | 47 +++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/gui-apps/lavalauncher/Manifest b/gui-apps/lavalauncher/Manifest
index 42c5f532f372..abe341b5a90f 100644
--- a/gui-apps/lavalauncher/Manifest
+++ b/gui-apps/lavalauncher/Manifest
@@ -1,3 +1,4 @@
 DIST lavalauncher-1.7.1.tar.gz 82550 BLAKE2B 043fd8a8fb977f89414b4c9eb5a29ae05cea6374ea7bdbf595a3c75eeee4c5273b2d84cd437a451b0a4fec4139e31dec6c520e4a0af745c06b438b1290c114b4 SHA512 e1848d29275a444aef2b85bd6b27ae056cfc76c337695da2f7061ca3d73f510b797f84663a5705d59615a2a4ea0be64388ce1d4d622379f86cfc23d82f2e51d8
 DIST lavalauncher-2.0.0.tar.gz 92083 BLAKE2B 723685eba36b89c2807619598af4eeec3c5783cf792d3ae68d30df6e4fab08a389c6c0d37e6f83df2d3e18217a08994d0fd38193034e037a094ede4190561c44 SHA512 e64e7cc394a5165a5b43c6c0db3f99b43d44b0b71cb75aa60d8a431ca7a39e1af50b822dc0d6ff86620029021852442a45fce302214e927929dbee627ec51c18
 DIST lavalauncher-2.1.0.tar.gz 101315 BLAKE2B 53dd855bbf2b24228adcda5bbc19b976a20ebb93eeefa953e92e18f010d8be4b29c1c2b053312be2578277645e84530535b820f3b487167886fecf5d137e281e SHA512 44d4ad9dc5a18af9926b93954b675114d95815a847e0f82ae940179138e7fe86243452c7d4287ff8a10e13bde8dded7ab6b551807d924f7b8f855c0c696984e9
+DIST lavalauncher-2.1.1.tar.gz 101263 BLAKE2B 7581176a81f6a076c5075c7b3abdf3fab04f7ca2c3d892b890f79580a4f61305ea55d83d5183002214409225386c4bf4a727523f33b786adf59dc3834ab93414 SHA512 803ada681f91f67e9de415d7ad3ef4f40d646eeeb21fbd784a4500b8d38708819c639ea926bdf4f01c892c116d6dd84d4d84ab97cf6fd371ce977ffa1b328737

diff --git a/gui-apps/lavalauncher/lavalauncher-2.1.1.ebuild b/gui-apps/lavalauncher/lavalauncher-2.1.1.ebuild
new file mode 100644
index 000000000000..8a1e7c55d21f
--- /dev/null
+++ b/gui-apps/lavalauncher/lavalauncher-2.1.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2019-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Simple launcher for wayland"
+HOMEPAGE="https://git.sr.ht/~leon_plickat/lavalauncher"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://git.sr.ht/~leon_plickat/lavalauncher"
+else
+	SRC_URI="https://git.sr.ht/~leon_plickat/lavalauncher/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	S="${WORKDIR}/${PN}-v${PV}"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+IUSE="+svg man"
+
+RDEPEND="
+	dev-libs/wayland
+	x11-libs/cairo
+	x11-libs/libxkbcommon
+	svg? ( gnome-base/librsvg )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	dev-libs/wayland-protocols
+	virtual/pkgconfig
+	man? ( >=app-text/scdoc-1.9.3 )
+"
+
+PATCHES=(
+	"${FILESDIR}/lavalauncher-remove-werror.patch"
+)
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+		$(meson_feature svg librsvg)
+	)
+	meson_src_configure
+}


             reply	other threads:[~2024-05-13 14:53 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-13 14:53 Arthur Zamarin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-11  6:52 [gentoo-commits] repo/gentoo:master commit in: gui-apps/lavalauncher/ Petr Vaněk
2024-05-13 14:53 Arthur Zamarin
2024-05-13 14:53 Arthur Zamarin
2022-08-14 20:06 Sam James
2021-05-04 14:05 Joonas Niilola
2021-05-04 14:05 Joonas Niilola
2021-05-04 14:05 Joonas Niilola
2020-10-17 14:04 Joonas Niilola
2020-10-17 14:04 Joonas Niilola

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=1715611670.4b6b68aa40e9d12206dba0acbefdfe9f1688db5b.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