* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2019-08-09 0:21 Aaron Bauman
0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2019-08-09 0:21 UTC (permalink / raw
To: gentoo-commits
commit: 18a65ca991f7dbce9a30a744df203e3e8d200124
Author: Bernardo Meurer <meurerbernardo <AT> gmail <DOT> com>
AuthorDate: Sun Aug 4 03:39:40 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Aug 9 00:19:18 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18a65ca9
gui-apps/slurp: New package (1.2.0, 9999)
Closes: https://bugs.gentoo.org/684710
Package-Manager: Portage-2.3.70, Repoman-2.3.16
Signed-off-by: Bernardo Meurer <bernardo <AT> standard.ai>
Closes: https://github.com/gentoo/gentoo/pull/12614
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
gui-apps/slurp/Manifest | 1 +
gui-apps/slurp/metadata.xml | 23 +++++++++++++++++++++
gui-apps/slurp/slurp-1.2.0.ebuild | 43 +++++++++++++++++++++++++++++++++++++++
gui-apps/slurp/slurp-9999.ebuild | 41 +++++++++++++++++++++++++++++++++++++
4 files changed, 108 insertions(+)
diff --git a/gui-apps/slurp/Manifest b/gui-apps/slurp/Manifest
new file mode 100644
index 00000000000..a07473c5b6e
--- /dev/null
+++ b/gui-apps/slurp/Manifest
@@ -0,0 +1 @@
+DIST slurp-1.2.0.tar.gz 15317 BLAKE2B 92de74abb54b2d53334e0f0c5d08b0b50e9c4583eb192226e38fcefa07cce2265f808ce81c04170e65d3c1209fa263352e3d70cc0a7cf745ed5e18d57c4d3af6 SHA512 443cd497049a5128e80a48c7b2afcc555a8d58a5eacc2dc6207058a9a399bc9e9804c7bca8b010af63f8be99000c05245720bd3e8cca248a74d5aa63a7faf4f9
diff --git a/gui-apps/slurp/metadata.xml b/gui-apps/slurp/metadata.xml
new file mode 100644
index 00000000000..4f4fa04fe66
--- /dev/null
+++ b/gui-apps/slurp/metadata.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>bernardo@standard.ai</email>
+ <name>Bernardo Meurer</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Gentoo Proxy Maintainers Project</name>
+ </maintainer>
+ <longdescription lang="en">
+ Select a region in a Wayland compositor and print it to the standard output.
+ </longdescription>
+ <use>
+ <flag name="man">Generate and install man pages.</flag>
+ </use>
+ <upstream>
+ <remote-id type="github">emersion/slurp</remote-id>
+ <bugs-to>https://github.com/emersion/slurp/issues</bugs-to>
+ <changelog>https://github.com/emersion/slurp/releases</changelog>
+ </upstream>
+</pkgmetadata>
diff --git a/gui-apps/slurp/slurp-1.2.0.ebuild b/gui-apps/slurp/slurp-1.2.0.ebuild
new file mode 100644
index 00000000000..0374876964f
--- /dev/null
+++ b/gui-apps/slurp/slurp-1.2.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="Select a region in a Wayland compositor and print it to the standard output."
+HOMEPAGE="https://github.com/emersion/slurp"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+ SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+man"
+
+DEPEND="
+ >=dev-libs/wayland-protocols-1.14
+ dev-libs/wayland
+ x11-libs/cairo
+"
+RDEPEND="
+ ${DEPEND}
+"
+if [[ ${PV} == 9999 ]]; then
+ BDEPEND+="man? ( ~app-text/scdoc-9999 )"
+else
+ BDEPEND+="man? ( app-text/scdoc )"
+fi
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature man man-pages)
+ "-Dwerror=false"
+ )
+ meson_src_configure
+}
diff --git a/gui-apps/slurp/slurp-9999.ebuild b/gui-apps/slurp/slurp-9999.ebuild
new file mode 100644
index 00000000000..20fa33ff1cb
--- /dev/null
+++ b/gui-apps/slurp/slurp-9999.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="Select a region in a Wayland compositor and print it to the standard output."
+HOMEPAGE="https://github.com/emersion/slurp"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+ SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+man"
+
+DEPEND="
+ >=dev-libs/wayland-protocols-1.14
+ dev-libs/wayland
+ x11-libs/cairo
+"
+RDEPEND="
+ ${DEPEND}
+"
+BDEPEND="
+ man? ( app-text/scdoc )
+"
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature man man-pages)
+ "-Dwerror=false"
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2019-08-09 0:21 Aaron Bauman
0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2019-08-09 0:21 UTC (permalink / raw
To: gentoo-commits
commit: eb4b8ba35d25e5f68c629e16fcdbed13ed7a8600
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 9 00:19:56 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Aug 9 00:19:56 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb4b8ba3
gui-apps/slurp: remove proxy-maint and add myself
* I will proxy commits from Bernard
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
gui-apps/slurp/metadata.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gui-apps/slurp/metadata.xml b/gui-apps/slurp/metadata.xml
index 4f4fa04fe66..8308bbd5341 100644
--- a/gui-apps/slurp/metadata.xml
+++ b/gui-apps/slurp/metadata.xml
@@ -5,9 +5,9 @@
<email>bernardo@standard.ai</email>
<name>Bernardo Meurer</name>
</maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Gentoo Proxy Maintainers Project</name>
+ <maintainer type="person">
+ <email>bman@gentoo.org</email>
+ <name>Aaron Bauman</name>
</maintainer>
<longdescription lang="en">
Select a region in a Wayland compositor and print it to the standard output.
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2019-08-09 0:21 Aaron Bauman
0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2019-08-09 0:21 UTC (permalink / raw
To: gentoo-commits
commit: ea42113f6bfa211c4d6fe5ff1cf1f8975b52f738
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 9 00:20:35 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Aug 9 00:20:35 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea42113f
gui-apps/slurp: keyword arm64
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
gui-apps/slurp/slurp-1.2.0.ebuild | 2 +-
gui-apps/slurp/slurp-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/slurp/slurp-1.2.0.ebuild b/gui-apps/slurp/slurp-1.2.0.ebuild
index 0374876964f..a3eccc38687 100644
--- a/gui-apps/slurp/slurp-1.2.0.ebuild
+++ b/gui-apps/slurp/slurp-1.2.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64 ~arm64"
fi
LICENSE="MIT"
diff --git a/gui-apps/slurp/slurp-9999.ebuild b/gui-apps/slurp/slurp-9999.ebuild
index 20fa33ff1cb..e1958f998d2 100644
--- a/gui-apps/slurp/slurp-9999.ebuild
+++ b/gui-apps/slurp/slurp-9999.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64 ~arm64"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2019-08-12 0:52 Aaron Bauman
0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2019-08-12 0:52 UTC (permalink / raw
To: gentoo-commits
commit: e91f62045eca3d9a5257b2ec30f4290d0469deb6
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 00:51:02 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 00:51:02 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e91f6204
gui-apps/slurp: stylistic changes and BDEPEND
* app-text/scdoc should require -9999 when using live ebuild
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
gui-apps/slurp/slurp-1.2.0.ebuild | 9 ++++-----
gui-apps/slurp/slurp-9999.ebuild | 13 +++++--------
2 files changed, 9 insertions(+), 13 deletions(-)
diff --git a/gui-apps/slurp/slurp-1.2.0.ebuild b/gui-apps/slurp/slurp-1.2.0.ebuild
index a3eccc38687..c66a344b815 100644
--- a/gui-apps/slurp/slurp-1.2.0.ebuild
+++ b/gui-apps/slurp/slurp-1.2.0.ebuild
@@ -23,11 +23,10 @@ IUSE="+man"
DEPEND="
>=dev-libs/wayland-protocols-1.14
dev-libs/wayland
- x11-libs/cairo
-"
-RDEPEND="
- ${DEPEND}
-"
+ x11-libs/cairo"
+
+RDEPEND="${DEPEND}"
+
if [[ ${PV} == 9999 ]]; then
BDEPEND+="man? ( ~app-text/scdoc-9999 )"
else
diff --git a/gui-apps/slurp/slurp-9999.ebuild b/gui-apps/slurp/slurp-9999.ebuild
index e1958f998d2..5c6fe52e5b6 100644
--- a/gui-apps/slurp/slurp-9999.ebuild
+++ b/gui-apps/slurp/slurp-9999.ebuild
@@ -23,14 +23,11 @@ IUSE="+man"
DEPEND="
>=dev-libs/wayland-protocols-1.14
dev-libs/wayland
- x11-libs/cairo
-"
-RDEPEND="
- ${DEPEND}
-"
-BDEPEND="
- man? ( app-text/scdoc )
-"
+ x11-libs/cairo"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="man? ( ~app-text/scdoc-9999 )"
src_configure() {
local emesonargs=(
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2020-07-16 14:50 Matthew Thode
0 siblings, 0 replies; 23+ messages in thread
From: Matthew Thode @ 2020-07-16 14:50 UTC (permalink / raw
To: gentoo-commits
commit: d0c978c31df6ca9e07bd54d55fdfdaafc2b32835
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 16 14:47:33 2020 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Jul 16 14:50:12 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0c978c3
gui-apps/slurp: add dep to 9999
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
gui-apps/slurp/slurp-9999.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gui-apps/slurp/slurp-9999.ebuild b/gui-apps/slurp/slurp-9999.ebuild
index 5c6fe52e5b6..fb2c435d74c 100644
--- a/gui-apps/slurp/slurp-9999.ebuild
+++ b/gui-apps/slurp/slurp-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -23,7 +23,8 @@ IUSE="+man"
DEPEND="
>=dev-libs/wayland-protocols-1.14
dev-libs/wayland
- x11-libs/cairo"
+ x11-libs/cairo
+ x11-libs/libxcb"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2020-09-04 18:03 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2020-09-04 18:03 UTC (permalink / raw
To: gentoo-commits
commit: c766e35d54c7a4bb2ac9dc1dabdb7f88f8c9a6ec
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 4 18:01:30 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 4 18:03:50 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c766e35d
gui-apps/slurp: Stabilize 1.2.0 amd64, #737820
Signed-off-by: Sam James <sam <AT> gentoo.org>
gui-apps/slurp/slurp-1.2.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/slurp/slurp-1.2.0.ebuild b/gui-apps/slurp/slurp-1.2.0.ebuild
index c66a344b815..7adb476ab7b 100644
--- a/gui-apps/slurp/slurp-1.2.0.ebuild
+++ b/gui-apps/slurp/slurp-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64"
+ KEYWORDS="amd64 ~arm64"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2021-08-05 15:11 Aaron Bauman
0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2021-08-05 15:11 UTC (permalink / raw
To: gentoo-commits
commit: d37ea06a15d867cd0cf23a232ce26cfc48c6354f
Author: Tobias Jakobi <tjakobi <AT> math <DOT> uni-bielefeld <DOT> de>
AuthorDate: Wed May 5 19:15:53 2021 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu Aug 5 15:10:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d37ea06a
gui-apps/slurp: add version 1.3.2
- released on 17th April 2021
- introduces -o argument so slurp can be used as output chooser
for xdg-desktop-portal-wlr
Bug: https://bugs.gentoo.org/771966
Signed-off-by: Tobias Jakobi <tjakobi <AT> math.uni-bielefeld.de>
Closes: https://github.com/gentoo/gentoo/pull/20693
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
gui-apps/slurp/Manifest | 1 +
gui-apps/slurp/slurp-1.3.2.ebuild | 43 +++++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/gui-apps/slurp/Manifest b/gui-apps/slurp/Manifest
index a07473c5b6e..55e3f975e91 100644
--- a/gui-apps/slurp/Manifest
+++ b/gui-apps/slurp/Manifest
@@ -1 +1,2 @@
DIST slurp-1.2.0.tar.gz 15317 BLAKE2B 92de74abb54b2d53334e0f0c5d08b0b50e9c4583eb192226e38fcefa07cce2265f808ce81c04170e65d3c1209fa263352e3d70cc0a7cf745ed5e18d57c4d3af6 SHA512 443cd497049a5128e80a48c7b2afcc555a8d58a5eacc2dc6207058a9a399bc9e9804c7bca8b010af63f8be99000c05245720bd3e8cca248a74d5aa63a7faf4f9
+DIST slurp-1.3.2.tar.gz 17734 BLAKE2B 42795f1927742ce9606c685a49f2fb395905c875b50b50b60b68bf129d3c6743278a0eeaed72b94921dd65bd4ca4c078c24c693029cff84dbcbe20165242653c SHA512 9e7f9e4b46095fce5dcc05f8d04b5e576771d15080a0ec451a8a5df681d5ab818cb4d5284a74e1650f775e2d05ca32d66551d8e333d6002827c8b60b12d6bb28
diff --git a/gui-apps/slurp/slurp-1.3.2.ebuild b/gui-apps/slurp/slurp-1.3.2.ebuild
new file mode 100644
index 00000000000..e2e9ec21244
--- /dev/null
+++ b/gui-apps/slurp/slurp-1.3.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="Select a region in a Wayland compositor and print it to the standard output."
+HOMEPAGE="https://github.com/emersion/slurp"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+ SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+man"
+
+DEPEND="
+ >=dev-libs/wayland-protocols-1.14
+ dev-libs/wayland
+ x11-libs/cairo
+ x11-libs/libxkbcommon"
+
+RDEPEND="${DEPEND}"
+
+if [[ ${PV} == 9999 ]]; then
+ BDEPEND+="man? ( ~app-text/scdoc-9999 )"
+else
+ BDEPEND+="man? ( app-text/scdoc )"
+fi
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature man man-pages)
+ "-Dwerror=false"
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2021-08-05 15:11 Aaron Bauman
0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2021-08-05 15:11 UTC (permalink / raw
To: gentoo-commits
commit: e352a7e0cfdbf889894dd7f1e3a27238b522daec
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 5 15:09:15 2021 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu Aug 5 15:10:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e352a7e0
gui-apps/slurp: keyword arm64
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
gui-apps/slurp/slurp-1.3.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/slurp/slurp-1.3.2.ebuild b/gui-apps/slurp/slurp-1.3.2.ebuild
index e2e9ec21244..caa31410330 100644
--- a/gui-apps/slurp/slurp-1.3.2.ebuild
+++ b/gui-apps/slurp/slurp-1.3.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="~amd64 ~arm64 ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2022-04-17 1:27 Matthew Thode
0 siblings, 0 replies; 23+ messages in thread
From: Matthew Thode @ 2022-04-17 1:27 UTC (permalink / raw
To: gentoo-commits
commit: 561f87abee23223db7d05636e3e1a9f88560b297
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 01:27:10 2022 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 01:27:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=561f87ab
gui-apps/slurp: 1.3.2 add keywords for ppc64/riscv
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
gui-apps/slurp/slurp-1.3.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/slurp/slurp-1.3.2.ebuild b/gui-apps/slurp/slurp-1.3.2.ebuild
index ae36f296c2cd..1aa649689b99 100644
--- a/gui-apps/slurp/slurp-1.3.2.ebuild
+++ b/gui-apps/slurp/slurp-1.3.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~x86"
+ KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2022-05-17 5:59 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2022-05-17 5:59 UTC (permalink / raw
To: gentoo-commits
commit: 0dc86e34c701240c617d3b7ba5cd4c82d9b7f5f5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 17 05:53:33 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 17 05:53:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dc86e34
gui-apps/slurp: [QA] drop implicit -Dwerror=false for meson ebuilds
Since f7408ada0c4655827e7bea46c57d7af1b9004433, it's
always set for Meson builds, so we don't need to
repeat it in ebuilds.
Signed-off-by: Sam James <sam <AT> gentoo.org>
gui-apps/slurp/slurp-1.2.0.ebuild | 3 +--
gui-apps/slurp/slurp-1.3.2.ebuild | 1 -
gui-apps/slurp/slurp-9999.ebuild | 3 +--
3 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/gui-apps/slurp/slurp-1.2.0.ebuild b/gui-apps/slurp/slurp-1.2.0.ebuild
index 2e9140af3add..b6721e1160fe 100644
--- a/gui-apps/slurp/slurp-1.2.0.ebuild
+++ b/gui-apps/slurp/slurp-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -36,7 +36,6 @@ fi
src_configure() {
local emesonargs=(
$(meson_feature man man-pages)
- "-Dwerror=false"
)
meson_src_configure
}
diff --git a/gui-apps/slurp/slurp-1.3.2.ebuild b/gui-apps/slurp/slurp-1.3.2.ebuild
index 1aa649689b99..f9ef16228037 100644
--- a/gui-apps/slurp/slurp-1.3.2.ebuild
+++ b/gui-apps/slurp/slurp-1.3.2.ebuild
@@ -37,7 +37,6 @@ fi
src_configure() {
local emesonargs=(
$(meson_feature man man-pages)
- "-Dwerror=false"
)
meson_src_configure
}
diff --git a/gui-apps/slurp/slurp-9999.ebuild b/gui-apps/slurp/slurp-9999.ebuild
index 3a5dd5a59936..915ac1dbdff3 100644
--- a/gui-apps/slurp/slurp-9999.ebuild
+++ b/gui-apps/slurp/slurp-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -33,7 +33,6 @@ BDEPEND="man? ( ~app-text/scdoc-9999 )"
src_configure() {
local emesonargs=(
$(meson_feature man man-pages)
- "-Dwerror=false"
)
meson_src_configure
}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2022-08-14 19:24 Arthur Zamarin
0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2022-08-14 19:24 UTC (permalink / raw
To: gentoo-commits
commit: f9875daefb1857775b1d5f613e8a2f898a392985
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 14 19:19:02 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 14 19:24:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9875dae
gui-apps/slurp: add myself as a maintainer
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/slurp/metadata.xml | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/gui-apps/slurp/metadata.xml b/gui-apps/slurp/metadata.xml
index fc5a74aff206..8cb859eda335 100644
--- a/gui-apps/slurp/metadata.xml
+++ b/gui-apps/slurp/metadata.xml
@@ -1,10 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <remote-id type="github">emersion/slurp</remote-id>
- <bugs-to>https://github.com/emersion/slurp/issues</bugs-to>
- <changelog>https://github.com/emersion/slurp/releases</changelog>
- </upstream>
+ <maintainer type="person">
+ <email>arthurzam@gentoo.org</email>
+ <name>Arthur Zamarin</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">emersion/slurp</remote-id>
+ <bugs-to>https://github.com/emersion/slurp/issues</bugs-to>
+ <changelog>https://github.com/emersion/slurp/releases</changelog>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2022-08-16 18:16 Arthur Zamarin
0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2022-08-16 18:16 UTC (permalink / raw
To: gentoo-commits
commit: 62b7ab0978c7de614c2171944fd2e289c12bc4a2
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 16 18:16:23 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 16 18:16:23 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62b7ab09
gui-apps/slurp: Stabilize 1.3.2 arm64, #865405
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/slurp/slurp-1.3.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/slurp/slurp-1.3.2.ebuild b/gui-apps/slurp/slurp-1.3.2.ebuild
index f9ef16228037..581368f51271 100644
--- a/gui-apps/slurp/slurp-1.3.2.ebuild
+++ b/gui-apps/slurp/slurp-1.3.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 arm64 ~ppc64 ~riscv ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2022-08-16 19:43 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2022-08-16 19:43 UTC (permalink / raw
To: gentoo-commits
commit: 303c76f40e6588473d6e7e83149e6ede25b88e2a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 16 19:43:04 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 16 19:43:04 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=303c76f4
gui-apps/slurp: Stabilize 1.3.2 amd64, #865405
Signed-off-by: Sam James <sam <AT> gentoo.org>
gui-apps/slurp/slurp-1.3.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/slurp/slurp-1.3.2.ebuild b/gui-apps/slurp/slurp-1.3.2.ebuild
index 581368f51271..7aabc862d56d 100644
--- a/gui-apps/slurp/slurp-1.3.2.ebuild
+++ b/gui-apps/slurp/slurp-1.3.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 arm64 ~ppc64 ~riscv ~x86"
+ KEYWORDS="amd64 arm64 ~ppc64 ~riscv ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2022-10-17 18:42 Arthur Zamarin
0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2022-10-17 18:42 UTC (permalink / raw
To: gentoo-commits
commit: 0789fabbe1eab1335f4740382611c7e560020086
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 17 17:38:43 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 17 18:42:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0789fabb
gui-apps/slurp: drop 1.2.0
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/slurp/Manifest | 1 -
gui-apps/slurp/slurp-1.2.0.ebuild | 41 ---------------------------------------
2 files changed, 42 deletions(-)
diff --git a/gui-apps/slurp/Manifest b/gui-apps/slurp/Manifest
index 55e3f975e91b..46a2254a9872 100644
--- a/gui-apps/slurp/Manifest
+++ b/gui-apps/slurp/Manifest
@@ -1,2 +1 @@
-DIST slurp-1.2.0.tar.gz 15317 BLAKE2B 92de74abb54b2d53334e0f0c5d08b0b50e9c4583eb192226e38fcefa07cce2265f808ce81c04170e65d3c1209fa263352e3d70cc0a7cf745ed5e18d57c4d3af6 SHA512 443cd497049a5128e80a48c7b2afcc555a8d58a5eacc2dc6207058a9a399bc9e9804c7bca8b010af63f8be99000c05245720bd3e8cca248a74d5aa63a7faf4f9
DIST slurp-1.3.2.tar.gz 17734 BLAKE2B 42795f1927742ce9606c685a49f2fb395905c875b50b50b60b68bf129d3c6743278a0eeaed72b94921dd65bd4ca4c078c24c693029cff84dbcbe20165242653c SHA512 9e7f9e4b46095fce5dcc05f8d04b5e576771d15080a0ec451a8a5df681d5ab818cb4d5284a74e1650f775e2d05ca32d66551d8e333d6002827c8b60b12d6bb28
diff --git a/gui-apps/slurp/slurp-1.2.0.ebuild b/gui-apps/slurp/slurp-1.2.0.ebuild
deleted file mode 100644
index b6721e1160fe..000000000000
--- a/gui-apps/slurp/slurp-1.2.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="Select a region in a Wayland compositor and print it to the standard output"
-HOMEPAGE="https://github.com/emersion/slurp"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
- SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~arm64"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+man"
-
-DEPEND="
- >=dev-libs/wayland-protocols-1.14
- dev-libs/wayland
- x11-libs/cairo"
-
-RDEPEND="${DEPEND}"
-
-if [[ ${PV} == 9999 ]]; then
- BDEPEND+="man? ( ~app-text/scdoc-9999 )"
-else
- BDEPEND+="man? ( app-text/scdoc )"
-fi
-
-src_configure() {
- local emesonargs=(
- $(meson_feature man man-pages)
- )
- meson_src_configure
-}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2022-12-13 20:40 Arthur Zamarin
0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2022-12-13 20:40 UTC (permalink / raw
To: gentoo-commits
commit: 5c235227fb9a8de49d4a99cb21c34e8d37e4e522
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 13 20:13:03 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 13 20:40:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c235227
gui-apps/slurp: add 1.4.0
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/slurp/Manifest | 1 +
gui-apps/slurp/slurp-1.4.0.ebuild | 42 +++++++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/gui-apps/slurp/Manifest b/gui-apps/slurp/Manifest
index 46a2254a9872..256b44c3ee57 100644
--- a/gui-apps/slurp/Manifest
+++ b/gui-apps/slurp/Manifest
@@ -1 +1,2 @@
DIST slurp-1.3.2.tar.gz 17734 BLAKE2B 42795f1927742ce9606c685a49f2fb395905c875b50b50b60b68bf129d3c6743278a0eeaed72b94921dd65bd4ca4c078c24c693029cff84dbcbe20165242653c SHA512 9e7f9e4b46095fce5dcc05f8d04b5e576771d15080a0ec451a8a5df681d5ab818cb4d5284a74e1650f775e2d05ca32d66551d8e333d6002827c8b60b12d6bb28
+DIST slurp-1.4.0.tar.gz 18575 BLAKE2B b54a5fe34f35a6a4eefe021a5d5919ae6369c24cfe4906e13ddaf7abc173fad4dc184b211bbadcd09a2a20768e91bbc7199d5e1f29287e9f3fd49b58b294d747 SHA512 deabdc77890a3078d977533318aad6aff9478e32c95e7968483b82534bd52055dce11a531132212ac8966097dad9c6c5e7ad520a374ace85d0ec713df1505d5a
diff --git a/gui-apps/slurp/slurp-1.4.0.ebuild b/gui-apps/slurp/slurp-1.4.0.ebuild
new file mode 100644
index 000000000000..745c8a09bafe
--- /dev/null
+++ b/gui-apps/slurp/slurp-1.4.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Select a region in a Wayland compositor and print it to the standard output"
+HOMEPAGE="https://github.com/emersion/slurp"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+ SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+man"
+
+DEPEND="
+ >=dev-libs/wayland-protocols-1.14
+ dev-libs/wayland
+ x11-libs/cairo
+ x11-libs/libxkbcommon
+"
+RDEPEND="${DEPEND}"
+
+if [[ ${PV} == 9999 ]]; then
+ BDEPEND+="man? ( ~app-text/scdoc-9999 )"
+else
+ BDEPEND+="man? ( app-text/scdoc )"
+fi
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature man man-pages)
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2023-01-25 20:46 Matthew Thode
0 siblings, 0 replies; 23+ messages in thread
From: Matthew Thode @ 2023-01-25 20:46 UTC (permalink / raw
To: gentoo-commits
commit: e8470c874f9723ae052a30855c170ac25bb6091a
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 25 20:46:00 2023 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Wed Jan 25 20:46:49 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8470c87
gui-apps/slurp: stabilize 1.4.0 for amd64, arm64, x86
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
gui-apps/slurp/slurp-1.4.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/slurp/slurp-1.4.0.ebuild b/gui-apps/slurp/slurp-1.4.0.ebuild
index 745c8a09bafe..6f69ec534c10 100644
--- a/gui-apps/slurp/slurp-1.4.0.ebuild
+++ b/gui-apps/slurp/slurp-1.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+ KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2023-12-05 7:53 Arthur Zamarin
0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2023-12-05 7:53 UTC (permalink / raw
To: gentoo-commits
commit: 2a727deba73d294143d0340c20a8e817c0e63c0c
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 5 07:49:01 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 5 07:49:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a727deb
gui-apps/slurp: drop 9999 (stale live)
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/slurp/slurp-9999.ebuild | 38 --------------------------------------
1 file changed, 38 deletions(-)
diff --git a/gui-apps/slurp/slurp-9999.ebuild b/gui-apps/slurp/slurp-9999.ebuild
deleted file mode 100644
index 915ac1dbdff3..000000000000
--- a/gui-apps/slurp/slurp-9999.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="Select a region in a Wayland compositor and print it to the standard output"
-HOMEPAGE="https://github.com/emersion/slurp"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
- SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+man"
-
-DEPEND="
- >=dev-libs/wayland-protocols-1.14
- dev-libs/wayland
- x11-libs/cairo
- x11-libs/libxcb"
-
-RDEPEND="${DEPEND}"
-
-BDEPEND="man? ( ~app-text/scdoc-9999 )"
-
-src_configure() {
- local emesonargs=(
- $(meson_feature man man-pages)
- )
- meson_src_configure
-}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2023-12-05 7:53 Arthur Zamarin
0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2023-12-05 7:53 UTC (permalink / raw
To: gentoo-commits
commit: 7f563f2ea2bab7688f0162b11b0d7a0f2052d874
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 5 07:48:50 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 5 07:48:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f563f2e
gui-apps/slurp: drop 1.3.2
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/slurp/Manifest | 1 -
gui-apps/slurp/slurp-1.3.2.ebuild | 42 ---------------------------------------
2 files changed, 43 deletions(-)
diff --git a/gui-apps/slurp/Manifest b/gui-apps/slurp/Manifest
index 256b44c3ee57..36a252d948f6 100644
--- a/gui-apps/slurp/Manifest
+++ b/gui-apps/slurp/Manifest
@@ -1,2 +1 @@
-DIST slurp-1.3.2.tar.gz 17734 BLAKE2B 42795f1927742ce9606c685a49f2fb395905c875b50b50b60b68bf129d3c6743278a0eeaed72b94921dd65bd4ca4c078c24c693029cff84dbcbe20165242653c SHA512 9e7f9e4b46095fce5dcc05f8d04b5e576771d15080a0ec451a8a5df681d5ab818cb4d5284a74e1650f775e2d05ca32d66551d8e333d6002827c8b60b12d6bb28
DIST slurp-1.4.0.tar.gz 18575 BLAKE2B b54a5fe34f35a6a4eefe021a5d5919ae6369c24cfe4906e13ddaf7abc173fad4dc184b211bbadcd09a2a20768e91bbc7199d5e1f29287e9f3fd49b58b294d747 SHA512 deabdc77890a3078d977533318aad6aff9478e32c95e7968483b82534bd52055dce11a531132212ac8966097dad9c6c5e7ad520a374ace85d0ec713df1505d5a
diff --git a/gui-apps/slurp/slurp-1.3.2.ebuild b/gui-apps/slurp/slurp-1.3.2.ebuild
deleted file mode 100644
index caf73c7ab1ac..000000000000
--- a/gui-apps/slurp/slurp-1.3.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="Select a region in a Wayland compositor and print it to the standard output"
-HOMEPAGE="https://github.com/emersion/slurp"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
- SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+man"
-
-DEPEND="
- >=dev-libs/wayland-protocols-1.14
- dev-libs/wayland
- x11-libs/cairo
- x11-libs/libxkbcommon"
-
-RDEPEND="${DEPEND}"
-
-if [[ ${PV} == 9999 ]]; then
- BDEPEND+="man? ( ~app-text/scdoc-9999 )"
-else
- BDEPEND+="man? ( app-text/scdoc )"
-fi
-
-src_configure() {
- local emesonargs=(
- $(meson_feature man man-pages)
- )
- meson_src_configure
-}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2023-12-17 19:51 Arthur Zamarin
0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2023-12-17 19:51 UTC (permalink / raw
To: gentoo-commits
commit: 0adf9394d4441920a0f24706dc452ea597694ae1
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 17 19:51:10 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 17 19:51:10 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0adf9394
gui-apps/slurp: add 1.5.0
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/slurp/Manifest | 1 +
gui-apps/slurp/slurp-1.5.0.ebuild | 40 +++++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/gui-apps/slurp/Manifest b/gui-apps/slurp/Manifest
index 36a252d948f6..e2e2c65d0ce6 100644
--- a/gui-apps/slurp/Manifest
+++ b/gui-apps/slurp/Manifest
@@ -1 +1,2 @@
DIST slurp-1.4.0.tar.gz 18575 BLAKE2B b54a5fe34f35a6a4eefe021a5d5919ae6369c24cfe4906e13ddaf7abc173fad4dc184b211bbadcd09a2a20768e91bbc7199d5e1f29287e9f3fd49b58b294d747 SHA512 deabdc77890a3078d977533318aad6aff9478e32c95e7968483b82534bd52055dce11a531132212ac8966097dad9c6c5e7ad520a374ace85d0ec713df1505d5a
+DIST slurp-1.5.0.tar.gz 18790 BLAKE2B 8d2fd5274bed2d552dc5a3d1359927467120f82840e636d835f48b12a04a2c170df79fe3979d82e0a48fd5e082cd874cfba82251e6054c1323745b48a28b19c0 SHA512 77c4efdaa4ac411f43c598e5d654bcf61f969a5e403df6110757a7b217e02d55d0ba797729e42f8219d3bba79f58bcb36746799de765d3b25f301bf9ac3c1888
diff --git a/gui-apps/slurp/slurp-1.5.0.ebuild b/gui-apps/slurp/slurp-1.5.0.ebuild
new file mode 100644
index 000000000000..8ae614fe07fa
--- /dev/null
+++ b/gui-apps/slurp/slurp-1.5.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Select a region in a Wayland compositor and print it to the standard output"
+HOMEPAGE="https://github.com/emersion/slurp"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+ SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+man"
+
+DEPEND="
+ >=dev-libs/wayland-protocols-1.14
+ dev-libs/wayland
+ x11-libs/cairo
+ x11-libs/libxkbcommon
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+ dev-util/wayland-scanner
+ man? ( app-text/scdoc )
+"
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature man man-pages)
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2024-01-18 17:53 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2024-01-18 17:53 UTC (permalink / raw
To: gentoo-commits
commit: 6022deba6c83f2733c6b136615f4e657bead2eba
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 18 17:53:02 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 17:53:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6022deba
gui-apps/slurp: Stabilize 1.5.0 amd64, #922398
Signed-off-by: Sam James <sam <AT> gentoo.org>
gui-apps/slurp/slurp-1.5.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/slurp/slurp-1.5.0.ebuild b/gui-apps/slurp/slurp-1.5.0.ebuild
index 8ae614fe07fa..75c8a9c299b4 100644
--- a/gui-apps/slurp/slurp-1.5.0.ebuild
+++ b/gui-apps/slurp/slurp-1.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+ KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2024-01-18 17:53 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2024-01-18 17:53 UTC (permalink / raw
To: gentoo-commits
commit: 0d9a0cfaca92cb00a0439608db8bdd8cc04f1d8e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 18 17:53:04 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 17:53:04 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d9a0cfa
gui-apps/slurp: Stabilize 1.5.0 arm64, #922398
Signed-off-by: Sam James <sam <AT> gentoo.org>
gui-apps/slurp/slurp-1.5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/slurp/slurp-1.5.0.ebuild b/gui-apps/slurp/slurp-1.5.0.ebuild
index 846411053ca0..c925733a29ce 100644
--- a/gui-apps/slurp/slurp-1.5.0.ebuild
+++ b/gui-apps/slurp/slurp-1.5.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv x86"
+ KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2024-01-18 17:53 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2024-01-18 17:53 UTC (permalink / raw
To: gentoo-commits
commit: 556a83f08590b489c176af5d8917fba12654eca5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 18 17:53:03 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 17:53:03 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=556a83f0
gui-apps/slurp: Stabilize 1.5.0 x86, #922398
Signed-off-by: Sam James <sam <AT> gentoo.org>
gui-apps/slurp/slurp-1.5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/slurp/slurp-1.5.0.ebuild b/gui-apps/slurp/slurp-1.5.0.ebuild
index 75c8a9c299b4..846411053ca0 100644
--- a/gui-apps/slurp/slurp-1.5.0.ebuild
+++ b/gui-apps/slurp/slurp-1.5.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
else
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+ KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/
@ 2024-03-08 11:33 Arthur Zamarin
0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2024-03-08 11:33 UTC (permalink / raw
To: gentoo-commits
commit: 646de7afa11bd3b4fee2b550ec40e9a2c712d758
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 8 11:31:56 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 8 11:31:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=646de7af
gui-apps/slurp: drop 1.4.0
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/slurp/Manifest | 1 -
gui-apps/slurp/slurp-1.4.0.ebuild | 42 ---------------------------------------
2 files changed, 43 deletions(-)
diff --git a/gui-apps/slurp/Manifest b/gui-apps/slurp/Manifest
index e2e2c65d0ce6..e5233fec52eb 100644
--- a/gui-apps/slurp/Manifest
+++ b/gui-apps/slurp/Manifest
@@ -1,2 +1 @@
-DIST slurp-1.4.0.tar.gz 18575 BLAKE2B b54a5fe34f35a6a4eefe021a5d5919ae6369c24cfe4906e13ddaf7abc173fad4dc184b211bbadcd09a2a20768e91bbc7199d5e1f29287e9f3fd49b58b294d747 SHA512 deabdc77890a3078d977533318aad6aff9478e32c95e7968483b82534bd52055dce11a531132212ac8966097dad9c6c5e7ad520a374ace85d0ec713df1505d5a
DIST slurp-1.5.0.tar.gz 18790 BLAKE2B 8d2fd5274bed2d552dc5a3d1359927467120f82840e636d835f48b12a04a2c170df79fe3979d82e0a48fd5e082cd874cfba82251e6054c1323745b48a28b19c0 SHA512 77c4efdaa4ac411f43c598e5d654bcf61f969a5e403df6110757a7b217e02d55d0ba797729e42f8219d3bba79f58bcb36746799de765d3b25f301bf9ac3c1888
diff --git a/gui-apps/slurp/slurp-1.4.0.ebuild b/gui-apps/slurp/slurp-1.4.0.ebuild
deleted file mode 100644
index 6f69ec534c10..000000000000
--- a/gui-apps/slurp/slurp-1.4.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="Select a region in a Wayland compositor and print it to the standard output"
-HOMEPAGE="https://github.com/emersion/slurp"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
- SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+man"
-
-DEPEND="
- >=dev-libs/wayland-protocols-1.14
- dev-libs/wayland
- x11-libs/cairo
- x11-libs/libxkbcommon
-"
-RDEPEND="${DEPEND}"
-
-if [[ ${PV} == 9999 ]]; then
- BDEPEND+="man? ( ~app-text/scdoc-9999 )"
-else
- BDEPEND+="man? ( app-text/scdoc )"
-fi
-
-src_configure() {
- local emesonargs=(
- $(meson_feature man man-pages)
- )
- meson_src_configure
-}
^ permalink raw reply related [flat|nested] 23+ messages in thread
end of thread, other threads:[~2024-03-08 11:33 UTC | newest]
Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-17 18:42 [gentoo-commits] repo/gentoo:master commit in: gui-apps/slurp/ Arthur Zamarin
-- strict thread matches above, loose matches on Subject: below --
2024-03-08 11:33 Arthur Zamarin
2024-01-18 17:53 Sam James
2024-01-18 17:53 Sam James
2024-01-18 17:53 Sam James
2023-12-17 19:51 Arthur Zamarin
2023-12-05 7:53 Arthur Zamarin
2023-12-05 7:53 Arthur Zamarin
2023-01-25 20:46 Matthew Thode
2022-12-13 20:40 Arthur Zamarin
2022-08-16 19:43 Sam James
2022-08-16 18:16 Arthur Zamarin
2022-08-14 19:24 Arthur Zamarin
2022-05-17 5:59 Sam James
2022-04-17 1:27 Matthew Thode
2021-08-05 15:11 Aaron Bauman
2021-08-05 15:11 Aaron Bauman
2020-09-04 18:03 Sam James
2020-07-16 14:50 Matthew Thode
2019-08-12 0:52 Aaron Bauman
2019-08-09 0:21 Aaron Bauman
2019-08-09 0:21 Aaron Bauman
2019-08-09 0:21 Aaron Bauman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox