public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/rofi-emoji/
@ 2024-06-28 22:00 Mathijs Saey
  0 siblings, 0 replies; 4+ messages in thread
From: Mathijs Saey @ 2024-06-28 22:00 UTC (permalink / raw
  To: gentoo-commits

commit:     2a42fb40ea3a5a8773de239e1a89aa9598b7d466
Author:     Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
AuthorDate: Fri Jun 28 21:59:56 2024 +0000
Commit:     Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
CommitDate: Fri Jun 28 21:59:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2a42fb40

x11-misc/rofi-emoji: new package, add 3.3.0

Signed-off-by: Mathijs Saey <mathijs <AT> mathsaey.be>

 x11-misc/rofi-emoji/Manifest                |  1 +
 x11-misc/rofi-emoji/metadata.xml            | 11 +++++++
 x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild | 46 +++++++++++++++++++++++++++++
 3 files changed, 58 insertions(+)

diff --git a/x11-misc/rofi-emoji/Manifest b/x11-misc/rofi-emoji/Manifest
new file mode 100644
index 000000000..e2c392f95
--- /dev/null
+++ b/x11-misc/rofi-emoji/Manifest
@@ -0,0 +1 @@
+DIST rofi-emoji-3.3.0.tar.gz 371365 BLAKE2B 7132c287f87c97a64ee7da2ce39352541e2bf8dc17c5fb3ae38c5de3be353b5aaca0ad13be8e2ab71d760d98d6cb957d96b815cff9582d1317d7fd2c290a1f96 SHA512 60d0904ec2099e2651441177a735536d11f13dacd6cafe8ec0bbc14b707b237d807f2655fea05f842d86d74bb1957a00a089b1119c3f7c8fb2b0a5d944ddad72

diff --git a/x11-misc/rofi-emoji/metadata.xml b/x11-misc/rofi-emoji/metadata.xml
new file mode 100644
index 000000000..76307f57d
--- /dev/null
+++ b/x11-misc/rofi-emoji/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <maintainer type="person">
+      <email>mathijs@mathsaey.be</email>
+      <name>Mathijs Saey</name>
+    </maintainer>
+    <upstream>
+        <remote-id type="github">Mange/rofi-emoji</remote-id>
+    </upstream>
+</pkgmetadata>

diff --git a/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild b/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild
new file mode 100644
index 000000000..90d627a43
--- /dev/null
+++ b/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Emoji selector plugin for Rofi"
+HOMEPAGE="https://github.com/Mange/rofi-emoji"
+SRC_URI="https://github.com/Mange/rofi-emoji/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="X wayland"
+
+DEPEND="
+	wayland? (
+		gui-apps/rofi-wayland
+	)
+	X? (
+		x11-misc/rofi
+	)
+"
+RDEPEND="
+	${DEPEND}
+	wayland? (
+		gui-apps/wl-clipboard
+		gui-apps/wtype
+	)
+	X? (
+		|| ( x11-misc/xsel x11-misc/xclip x11-misc/copyq )
+		x11-misc/xdotool
+	)
+"
+
+src_prepare() {
+	default
+	eautoreconf -i
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/rofi-emoji/
@ 2024-06-30 15:17 Mathijs Saey
  0 siblings, 0 replies; 4+ messages in thread
From: Mathijs Saey @ 2024-06-30 15:17 UTC (permalink / raw
  To: gentoo-commits

commit:     6c7d54149b8551d32ba59ad15d3b9513d2ed0b45
Author:     Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
AuthorDate: Sun Jun 30 15:13:31 2024 +0000
Commit:     Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
CommitDate: Sun Jun 30 15:13:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6c7d5414

x11-misc/rofi-emoji: fix USE flags

The ebuild required either the X or wayland USE flag to be set, but did
not enforce this. This commit removes the X flag and installs X
dependencies by default (i.e. if the wayland USE flag is not set).

Closes: https://bugs.gentoo.org/935159
Signed-off-by: Mathijs Saey <mathijs <AT> mathsaey.be>

 x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild b/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild
index 90d627a43..94263d5d9 100644
--- a/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild
+++ b/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild
@@ -13,26 +13,22 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 
-IUSE="X wayland"
+IUSE="wayland"
 
 DEPEND="
-	wayland? (
-		gui-apps/rofi-wayland
-	)
-	X? (
-		x11-misc/rofi
-	)
+	!wayland? ( x11-misc/rofi )
+	wayland? ( gui-apps/rofi-wayland )
 "
 RDEPEND="
 	${DEPEND}
+	!wayland? (
+		|| ( x11-misc/xsel x11-misc/xclip x11-misc/copyq )
+		x11-misc/xdotool
+	)
 	wayland? (
 		gui-apps/wl-clipboard
 		gui-apps/wtype
 	)
-	X? (
-		|| ( x11-misc/xsel x11-misc/xclip x11-misc/copyq )
-		x11-misc/xdotool
-	)
 "
 
 src_prepare() {


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/rofi-emoji/
@ 2024-07-25 19:13 Mathijs Saey
  0 siblings, 0 replies; 4+ messages in thread
From: Mathijs Saey @ 2024-07-25 19:13 UTC (permalink / raw
  To: gentoo-commits

commit:     f641bb9325a36732732f6d6f4da97e877b7ec51a
Author:     Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
AuthorDate: Thu Jul 25 19:12:14 2024 +0000
Commit:     Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
CommitDate: Thu Jul 25 19:12:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f641bb93

x11-misc/rofi-emoji: add 3.4.1

Signed-off-by: Mathijs Saey <mathijs <AT> mathsaey.be>

 x11-misc/rofi-emoji/Manifest                |  1 +
 x11-misc/rofi-emoji/rofi-emoji-3.4.1.ebuild | 42 +++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/x11-misc/rofi-emoji/Manifest b/x11-misc/rofi-emoji/Manifest
index e2c392f95..627137a75 100644
--- a/x11-misc/rofi-emoji/Manifest
+++ b/x11-misc/rofi-emoji/Manifest
@@ -1 +1,2 @@
 DIST rofi-emoji-3.3.0.tar.gz 371365 BLAKE2B 7132c287f87c97a64ee7da2ce39352541e2bf8dc17c5fb3ae38c5de3be353b5aaca0ad13be8e2ab71d760d98d6cb957d96b815cff9582d1317d7fd2c290a1f96 SHA512 60d0904ec2099e2651441177a735536d11f13dacd6cafe8ec0bbc14b707b237d807f2655fea05f842d86d74bb1957a00a089b1119c3f7c8fb2b0a5d944ddad72
+DIST rofi-emoji-3.4.1.tar.gz 371579 BLAKE2B b07139bb5bac666295da282382c9a41eb91b933a93fcfca8916c65e30739a32864917d3c8ab853330fe1afb318554de9cbce9ea0aef07ce508dea5dfe565bc74 SHA512 1834450848a0dd07448063bd2d074faba93246ff68ffde7df06359f312434551d46b9ce8df6626ff913feff938b8f160eb75bb06d01a406bf1d0803d5e99d220

diff --git a/x11-misc/rofi-emoji/rofi-emoji-3.4.1.ebuild b/x11-misc/rofi-emoji/rofi-emoji-3.4.1.ebuild
new file mode 100644
index 000000000..94263d5d9
--- /dev/null
+++ b/x11-misc/rofi-emoji/rofi-emoji-3.4.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Emoji selector plugin for Rofi"
+HOMEPAGE="https://github.com/Mange/rofi-emoji"
+SRC_URI="https://github.com/Mange/rofi-emoji/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="wayland"
+
+DEPEND="
+	!wayland? ( x11-misc/rofi )
+	wayland? ( gui-apps/rofi-wayland )
+"
+RDEPEND="
+	${DEPEND}
+	!wayland? (
+		|| ( x11-misc/xsel x11-misc/xclip x11-misc/copyq )
+		x11-misc/xdotool
+	)
+	wayland? (
+		gui-apps/wl-clipboard
+		gui-apps/wtype
+	)
+"
+
+src_prepare() {
+	default
+	eautoreconf -i
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/rofi-emoji/
@ 2024-07-26 15:26 Mathijs Saey
  0 siblings, 0 replies; 4+ messages in thread
From: Mathijs Saey @ 2024-07-26 15:26 UTC (permalink / raw
  To: gentoo-commits

commit:     d8ca669de5df8545df8c537d4bb284a36196b79e
Author:     Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
AuthorDate: Fri Jul 26 15:24:12 2024 +0000
Commit:     Mathijs Saey <mathijs <AT> mathsaey <DOT> be>
CommitDate: Fri Jul 26 15:24:12 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d8ca669d

x11-misc/rofi-emoji: remove eautoreconf flag

Removes useless -i option to eautoreconf

Signed-off-by: Mathijs Saey <mathijs <AT> mathsaey.be>

 x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild | 2 +-
 x11-misc/rofi-emoji/rofi-emoji-3.4.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild b/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild
index 94263d5d9..305a1b828 100644
--- a/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild
+++ b/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild
@@ -33,7 +33,7 @@ RDEPEND="
 
 src_prepare() {
 	default
-	eautoreconf -i
+	eautoreconf
 }
 
 src_install() {

diff --git a/x11-misc/rofi-emoji/rofi-emoji-3.4.1.ebuild b/x11-misc/rofi-emoji/rofi-emoji-3.4.1.ebuild
index 94263d5d9..305a1b828 100644
--- a/x11-misc/rofi-emoji/rofi-emoji-3.4.1.ebuild
+++ b/x11-misc/rofi-emoji/rofi-emoji-3.4.1.ebuild
@@ -33,7 +33,7 @@ RDEPEND="
 
 src_prepare() {
 	default
-	eautoreconf -i
+	eautoreconf
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-07-26 15:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-28 22:00 [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/rofi-emoji/ Mathijs Saey
  -- strict thread matches above, loose matches on Subject: below --
2024-06-30 15:17 Mathijs Saey
2024-07-25 19:13 Mathijs Saey
2024-07-26 15:26 Mathijs Saey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox