* [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi-file-browser-extended/
@ 2021-11-21 9:47 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2021-11-21 9:47 UTC (permalink / raw
To: gentoo-commits
commit: 43ef95a7b0b1acdeb96e2c019e16460c9fcc033a
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 21 09:45:57 2021 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Nov 21 09:45:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43ef95a7
x11-misc/rofi-file-browser-extended: stabilize 1.2.0-r2 for amd64
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
.../rofi-file-browser-extended-1.2.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.2.0-r2.ebuild b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.2.0-r2.ebuild
index a049936302e6..5dd899576fa2 100644
--- a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.2.0-r2.ebuild
+++ b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.2.0-r2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="https://github.com/marvinkreis/${PN}.git"
else
SRC_URI="https://github.com/marvinkreis/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi-file-browser-extended/
@ 2022-01-24 11:44 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2022-01-24 11:44 UTC (permalink / raw
To: gentoo-commits
commit: 00eea60e967a77f07baf4b69e62d02f52f5a1979
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 24 11:43:46 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Jan 24 11:44:10 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00eea60e
x11-misc/rofi-file-browser-extended: add 1.3.0
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
x11-misc/rofi-file-browser-extended/Manifest | 1 +
.../rofi-file-browser-extended-1.3.0.ebuild | 43 ++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/x11-misc/rofi-file-browser-extended/Manifest b/x11-misc/rofi-file-browser-extended/Manifest
index c3a86416068a..040f5945b5be 100644
--- a/x11-misc/rofi-file-browser-extended/Manifest
+++ b/x11-misc/rofi-file-browser-extended/Manifest
@@ -1 +1,2 @@
DIST rofi-file-browser-extended-1.2.0.tar.gz 23560 BLAKE2B bb5637e9a56009949b4241c218a73fdb79cf5065906b7f48874ee64e3d38d4b68a751eec937eededd040086b2560f6e6f92440d9cc0900be3f3dee54a03f8f83 SHA512 74e5adeadaa0322e1d489bda79db58b416553daefbbc353012b82855529875aefd42c53458efe059ee1aa7ea6b7550b791dd56a11c207c5cc6f4ed46d17bdb81
+DIST rofi-file-browser-extended-1.3.0.tar.gz 24742 BLAKE2B 17ad12e3a0ea571be3abc2a258d0b2fc22e0a650ab977b58d8f08d9ed494e90edb2507476b33e209787d9ffdac6197bdb6b7ceeadf95abc31171ae2e5bcb27f0 SHA512 8d41c4f0750e2196b52448529c0ded99afb8c443cc817778b6e8924674111e83a580861206ce62a58e4ddb091f93ff835cc9f27e7ee3fe9a4496c5afc050201a
diff --git a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.0.ebuild b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.0.ebuild
new file mode 100644
index 000000000000..4a41926c517f
--- /dev/null
+++ b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="A file browser for rofi"
+HOMEPAGE="https://github.com/marvinkreis/rofi-file-browser-extended"
+
+if [[ ${PV} == "9999" ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/marvinkreis/${PN}.git"
+else
+ SRC_URI="https://github.com/marvinkreis/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+BDEPEND="virtual/pkgconfig"
+COMMON_DEPEND="
+ dev-libs/glib:2
+ x11-misc/rofi
+"
+DEPEND="
+ ${COMMON_DEPEND}
+ x11-libs/cairo
+"
+RDEPEND="${COMMON_DEPEND}"
+
+src_prepare() {
+ # Delete the lines in CMakeLists.txt that install the man page.
+ sed -i "31,42d" CMakeLists.txt || die
+ default
+ cmake_src_prepare
+}
+
+src_install() {
+ cmake_src_install
+ doman "doc/${PN}.1"
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi-file-browser-extended/
@ 2022-02-08 10:11 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2022-02-08 10:11 UTC (permalink / raw
To: gentoo-commits
commit: efff371763120781b3908c19381ea3fc549080a7
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 8 10:10:46 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Feb 8 10:10:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efff3717
x11-misc/rofi-file-browser-extended: add 1.3.1
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
x11-misc/rofi-file-browser-extended/Manifest | 1 +
.../rofi-file-browser-extended-1.3.1.ebuild | 43 ++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/x11-misc/rofi-file-browser-extended/Manifest b/x11-misc/rofi-file-browser-extended/Manifest
index 040f5945b5be..2bf178b8f15c 100644
--- a/x11-misc/rofi-file-browser-extended/Manifest
+++ b/x11-misc/rofi-file-browser-extended/Manifest
@@ -1,2 +1,3 @@
DIST rofi-file-browser-extended-1.2.0.tar.gz 23560 BLAKE2B bb5637e9a56009949b4241c218a73fdb79cf5065906b7f48874ee64e3d38d4b68a751eec937eededd040086b2560f6e6f92440d9cc0900be3f3dee54a03f8f83 SHA512 74e5adeadaa0322e1d489bda79db58b416553daefbbc353012b82855529875aefd42c53458efe059ee1aa7ea6b7550b791dd56a11c207c5cc6f4ed46d17bdb81
DIST rofi-file-browser-extended-1.3.0.tar.gz 24742 BLAKE2B 17ad12e3a0ea571be3abc2a258d0b2fc22e0a650ab977b58d8f08d9ed494e90edb2507476b33e209787d9ffdac6197bdb6b7ceeadf95abc31171ae2e5bcb27f0 SHA512 8d41c4f0750e2196b52448529c0ded99afb8c443cc817778b6e8924674111e83a580861206ce62a58e4ddb091f93ff835cc9f27e7ee3fe9a4496c5afc050201a
+DIST rofi-file-browser-extended-1.3.1.tar.gz 27169 BLAKE2B ced5ae91a865b136bcb2182a17c7a49cbdfcc861f8d1063415691afb13f5bdf3f1c2c0fc56a21a0dec31ee656c2379e55a4f60899c59ca7e056438142675aeb2 SHA512 269e33d62e5fdf7f6c48763ae4309fac53873d53af4ebf78f731b709ac6ff41d8f8cf21de917866fe5a80f4949d70d3be6e516c3825a8768106c706438a5b3d1
diff --git a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild
new file mode 100644
index 000000000000..4a41926c517f
--- /dev/null
+++ b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="A file browser for rofi"
+HOMEPAGE="https://github.com/marvinkreis/rofi-file-browser-extended"
+
+if [[ ${PV} == "9999" ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/marvinkreis/${PN}.git"
+else
+ SRC_URI="https://github.com/marvinkreis/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+BDEPEND="virtual/pkgconfig"
+COMMON_DEPEND="
+ dev-libs/glib:2
+ x11-misc/rofi
+"
+DEPEND="
+ ${COMMON_DEPEND}
+ x11-libs/cairo
+"
+RDEPEND="${COMMON_DEPEND}"
+
+src_prepare() {
+ # Delete the lines in CMakeLists.txt that install the man page.
+ sed -i "31,42d" CMakeLists.txt || die
+ default
+ cmake_src_prepare
+}
+
+src_install() {
+ cmake_src_install
+ doman "doc/${PN}.1"
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi-file-browser-extended/
@ 2022-02-08 10:14 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2022-02-08 10:14 UTC (permalink / raw
To: gentoo-commits
commit: 1903f745ddc1f9b88aa697deed7f17f463e2d251
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 8 10:14:36 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Feb 8 10:14:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1903f745
x11-misc/rofi-file-browser-extended: adjust sed in src_prepare
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
.../rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild
index 4a41926c517f..2e20e8b368d0 100644
--- a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild
+++ b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild
@@ -32,7 +32,7 @@ RDEPEND="${COMMON_DEPEND}"
src_prepare() {
# Delete the lines in CMakeLists.txt that install the man page.
- sed -i "31,42d" CMakeLists.txt || die
+ sed -i "45,56d" CMakeLists.txt || die
default
cmake_src_prepare
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi-file-browser-extended/
@ 2022-03-16 12:59 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2022-03-16 12:59 UTC (permalink / raw
To: gentoo-commits
commit: 587b0a3e9c4e82e6150278b9ab121033a5d926ce
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 12:56:22 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 12:59:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=587b0a3e
x11-misc/rofi-file-browser-extended: stabilize 1.3.1 for amd64
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
.../rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild
index 2e20e8b368d0..2be17da588a0 100644
--- a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild
+++ b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="https://github.com/marvinkreis/${PN}.git"
else
SRC_URI="https://github.com/marvinkreis/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi-file-browser-extended/
@ 2022-03-16 12:59 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2022-03-16 12:59 UTC (permalink / raw
To: gentoo-commits
commit: 9ea29bda850c6614a00e7ffc58bf1ef00c18d162
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 12:56:43 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 12:59:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ea29bda
x11-misc/rofi-file-browser-extended: drop 1.3.0
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
x11-misc/rofi-file-browser-extended/Manifest | 1 -
.../rofi-file-browser-extended-1.3.0.ebuild | 43 ----------------------
2 files changed, 44 deletions(-)
diff --git a/x11-misc/rofi-file-browser-extended/Manifest b/x11-misc/rofi-file-browser-extended/Manifest
index 2bf178b8f15c..51c29886b887 100644
--- a/x11-misc/rofi-file-browser-extended/Manifest
+++ b/x11-misc/rofi-file-browser-extended/Manifest
@@ -1,3 +1,2 @@
DIST rofi-file-browser-extended-1.2.0.tar.gz 23560 BLAKE2B bb5637e9a56009949b4241c218a73fdb79cf5065906b7f48874ee64e3d38d4b68a751eec937eededd040086b2560f6e6f92440d9cc0900be3f3dee54a03f8f83 SHA512 74e5adeadaa0322e1d489bda79db58b416553daefbbc353012b82855529875aefd42c53458efe059ee1aa7ea6b7550b791dd56a11c207c5cc6f4ed46d17bdb81
-DIST rofi-file-browser-extended-1.3.0.tar.gz 24742 BLAKE2B 17ad12e3a0ea571be3abc2a258d0b2fc22e0a650ab977b58d8f08d9ed494e90edb2507476b33e209787d9ffdac6197bdb6b7ceeadf95abc31171ae2e5bcb27f0 SHA512 8d41c4f0750e2196b52448529c0ded99afb8c443cc817778b6e8924674111e83a580861206ce62a58e4ddb091f93ff835cc9f27e7ee3fe9a4496c5afc050201a
DIST rofi-file-browser-extended-1.3.1.tar.gz 27169 BLAKE2B ced5ae91a865b136bcb2182a17c7a49cbdfcc861f8d1063415691afb13f5bdf3f1c2c0fc56a21a0dec31ee656c2379e55a4f60899c59ca7e056438142675aeb2 SHA512 269e33d62e5fdf7f6c48763ae4309fac53873d53af4ebf78f731b709ac6ff41d8f8cf21de917866fe5a80f4949d70d3be6e516c3825a8768106c706438a5b3d1
diff --git a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.0.ebuild b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.0.ebuild
deleted file mode 100644
index 4a41926c517f..000000000000
--- a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="A file browser for rofi"
-HOMEPAGE="https://github.com/marvinkreis/rofi-file-browser-extended"
-
-if [[ ${PV} == "9999" ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/marvinkreis/${PN}.git"
-else
- SRC_URI="https://github.com/marvinkreis/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-BDEPEND="virtual/pkgconfig"
-COMMON_DEPEND="
- dev-libs/glib:2
- x11-misc/rofi
-"
-DEPEND="
- ${COMMON_DEPEND}
- x11-libs/cairo
-"
-RDEPEND="${COMMON_DEPEND}"
-
-src_prepare() {
- # Delete the lines in CMakeLists.txt that install the man page.
- sed -i "31,42d" CMakeLists.txt || die
- default
- cmake_src_prepare
-}
-
-src_install() {
- cmake_src_install
- doman "doc/${PN}.1"
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi-file-browser-extended/
@ 2024-10-25 7:08 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2024-10-25 7:08 UTC (permalink / raw
To: gentoo-commits
commit: fa45824a6e721047fd8aaec4a4fe0071c1684df4
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 25 07:07:55 2024 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Oct 25 07:07:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa45824a
x11-misc/rofi-file-browser-extended: add github upstream metadata
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
x11-misc/rofi-file-browser-extended/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/x11-misc/rofi-file-browser-extended/metadata.xml b/x11-misc/rofi-file-browser-extended/metadata.xml
index 75209e7cb520..c5b4a5fe71cc 100644
--- a/x11-misc/rofi-file-browser-extended/metadata.xml
+++ b/x11-misc/rofi-file-browser-extended/metadata.xml
@@ -5,4 +5,7 @@
<email>flow@gentoo.org</email>
<name>Florian Schmaus</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">marvinkreis/rofi-file-browser-extended</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi-file-browser-extended/
@ 2024-11-02 8:49 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2024-11-02 8:49 UTC (permalink / raw
To: gentoo-commits
commit: 5ac0b2d8f9106d405672bfffdf943a438b1c9a6a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 2 08:49:14 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 2 08:49:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ac0b2d8
x11-misc/rofi-file-browser-extended: Stabilize 1.3.1-r2 amd64, #942654
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../rofi-file-browser-extended-1.3.1-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1-r2.ebuild b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1-r2.ebuild
index 4411556a8ad5..ead1edd46c54 100644
--- a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1-r2.ebuild
+++ b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1-r2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="https://github.com/marvinkreis/${PN}.git"
else
SRC_URI="https://github.com/marvinkreis/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi-file-browser-extended/
@ 2025-01-03 10:42 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2025-01-03 10:42 UTC (permalink / raw
To: gentoo-commits
commit: c09c0e3310804c5eab0f941ac4cf1e805ba9aa10
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 10:31:15 2025 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 10:41:51 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c09c0e33
x11-misc/rofi-file-browser-extended: drop 1.3.1-r1
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
.../rofi-file-browser-extended-1.3.1-r1.ebuild | 47 ----------------------
1 file changed, 47 deletions(-)
diff --git a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1-r1.ebuild b/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1-r1.ebuild
deleted file mode 100644
index a3fe3b3b176b..000000000000
--- a/x11-misc/rofi-file-browser-extended/rofi-file-browser-extended-1.3.1-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="A file browser for rofi"
-HOMEPAGE="https://github.com/marvinkreis/rofi-file-browser-extended"
-
-if [[ ${PV} == "9999" ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/marvinkreis/${PN}.git"
-else
- SRC_URI="https://github.com/marvinkreis/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-BDEPEND="virtual/pkgconfig"
-COMMON_DEPEND="
- dev-libs/glib:2
- x11-misc/rofi
-"
-DEPEND="
- ${COMMON_DEPEND}
- x11-libs/cairo
-"
-RDEPEND="${COMMON_DEPEND}"
-
-PATCHES=(
- # https://bugs.gentoo.org/880985 https://github.com/marvinkreis/rofi-file-browser-extended/pull/49
- "${FILESDIR}/${PN}-1.3.1-fix-function-pointer-initialization.patch"
-)
-
-src_prepare() {
- # Delete the lines in CMakeLists.txt that install the man page.
- sed -i "45,56d" CMakeLists.txt || die
- cmake_src_prepare
-}
-
-src_install() {
- cmake_src_install
- doman "doc/${PN}.1"
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-01-03 10:42 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-24 11:44 [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi-file-browser-extended/ Florian Schmaus
-- strict thread matches above, loose matches on Subject: below --
2025-01-03 10:42 Florian Schmaus
2024-11-02 8:49 Michał Górny
2024-10-25 7:08 Florian Schmaus
2022-03-16 12:59 Florian Schmaus
2022-03-16 12:59 Florian Schmaus
2022-02-08 10:14 Florian Schmaus
2022-02-08 10:11 Florian Schmaus
2021-11-21 9:47 Florian Schmaus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox