* [gentoo-commits] repo/proj/guru:master commit in: net-irc/srain/
@ 2021-07-27 19:57 Andrew Ammerlaan
0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2021-07-27 19:57 UTC (permalink / raw
To: gentoo-commits
commit: dbcc26695945d7f726c3bf04b4990697842446e8
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Jul 27 05:26:20 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Jul 27 05:34:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dbcc2669
net-irc/srain: version bump to 1.2.4
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
net-irc/srain/Manifest | 2 +-
net-irc/srain/srain-1.1.3.ebuild | 35 -----------------------------
net-irc/srain/srain-1.2.4.ebuild | 48 ++++++++++++++++++++++++++++++++++++++++
3 files changed, 49 insertions(+), 36 deletions(-)
diff --git a/net-irc/srain/Manifest b/net-irc/srain/Manifest
index 3339c7b3c..6dd8ea916 100644
--- a/net-irc/srain/Manifest
+++ b/net-irc/srain/Manifest
@@ -1,2 +1,2 @@
-DIST srain-1.1.3.tar.gz 944319 BLAKE2B 74beb34a8e10716392aaaf07586c399f7a66601015c7761c116a3dcf822d6f9c69d3bc3e40b1b5ed780aed24ce1b2fa8496f2c8f4a77484acce294edfb653d00 SHA512 ad1c47bb249dae27cea3d4a044bbd10c034f2bb44fbec34053eeb878405caf9cf6236a03a7ff922f4eb4c189e5ccab4a307c208569bf0fdeb654a9de03a6d4fe
DIST srain-1.2.1.tar.gz 954668 BLAKE2B 20beb88761a387a041659ea11f852655daab9fdcd4b1d2f2b080bfa4dd9c19a61c12ebba9a581a10355d9249a6063dcdfea486dccb625622e68b57a4445afae7 SHA512 594cb65827ba3f4cf99820640103bdd1d67577df31e1fcb27f98722e243bcbab68420aff0c3f26cc7d0c149a4a8c256fc386709b8ff86d6b617c170f00c076f3
+DIST srain-1.2.4.tar.gz 954684 BLAKE2B 9989715380f0fb702a8f43be77ee5cd6360f2e8ddb2d21e8f1e0741fe6aabe3869b42e9e1f36c642b8cbfb6e2419f14d4ccc682f7fd7b1dda0f3b1af5b69e59f SHA512 96d15f9d8bccc197b1bcda2c4707bdeea8e5cb33e3a8ad88ea5431b059c64e2ccb2e82897fcb1c02198420fed2c59148ff1c32f5f305cfffa88f096e41b42cb4
diff --git a/net-irc/srain/srain-1.1.3.ebuild b/net-irc/srain/srain-1.1.3.ebuild
deleted file mode 100644
index eb3b3c464..000000000
--- a/net-irc/srain/srain-1.1.3.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs xdg
-
-DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3"
-HOMEPAGE="https://github.com/SrainApp/srain"
-SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="debug"
-
-RDEPEND="
- >=x11-libs/gtk+-3.22.0
- x11-libs/libnotify
-"
-DEPEND="
- ${RDEPEND}
- app-crypt/libsecret
- dev-libs/libconfig
- net-libs/libsoup
-"
-
-src_configure() {
- econf $(use_enable debug)
-}
-
-src_compile() {
- tc-export CC
- default
-}
diff --git a/net-irc/srain/srain-1.2.4.ebuild b/net-irc/srain/srain-1.2.4.ebuild
new file mode 100644
index 000000000..a1091c151
--- /dev/null
+++ b/net-irc/srain/srain-1.2.4.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+DOCS_BUILDER="sphinx"
+DOCS_DIR="doc"
+DOCS_AUTODOC=0
+
+inherit python-any-r1 docs meson xdg
+
+DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3"
+HOMEPAGE="https://github.com/SrainApp/srain"
+SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="+man"
+
+RDEPEND="
+ app-crypt/libsecret
+ >=dev-libs/glib-2.39.3
+ >=dev-libs/libconfig-1.5
+ dev-libs/openssl
+ net-libs/libsoup:2.4
+ >=x11-libs/gtk+-3.22.15
+"
+DEPEND="${RDEPEND}"
+BDEPEND="man? ( ${DOCS_DEPEND} )"
+
+src_prepare() {
+ sed -i "s/\('doc', meson.project_name()\)/\1 + '-${PF}'/" \
+ meson.build || die
+
+ xdg_src_prepare
+}
+
+src_configure() {
+ use man && emesonargs=( -Ddoc_builders='["man"]' )
+ meson_src_configure
+}
+
+src_compile() {
+ docs_compile
+ meson_src_compile
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-irc/srain/
@ 2022-07-07 7:33 Haelwenn Monnier
0 siblings, 0 replies; 6+ messages in thread
From: Haelwenn Monnier @ 2022-07-07 7:33 UTC (permalink / raw
To: gentoo-commits
commit: a7b764318d63f56924647a58e581d525b37d30ac
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Jul 7 00:21:05 2022 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Thu Jul 7 00:40:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a7b76431
net-irc/srain: add 1.4.0, drop 1.2.1
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
net-irc/srain/Manifest | 2 +-
net-irc/srain/srain-1.2.1.ebuild | 42 -------------------------------
net-irc/srain/srain-1.4.0.ebuild | 54 ++++++++++++++++++++++++++++++++++++++++
3 files changed, 55 insertions(+), 43 deletions(-)
diff --git a/net-irc/srain/Manifest b/net-irc/srain/Manifest
index 6dd8ea916..056268e63 100644
--- a/net-irc/srain/Manifest
+++ b/net-irc/srain/Manifest
@@ -1,2 +1,2 @@
-DIST srain-1.2.1.tar.gz 954668 BLAKE2B 20beb88761a387a041659ea11f852655daab9fdcd4b1d2f2b080bfa4dd9c19a61c12ebba9a581a10355d9249a6063dcdfea486dccb625622e68b57a4445afae7 SHA512 594cb65827ba3f4cf99820640103bdd1d67577df31e1fcb27f98722e243bcbab68420aff0c3f26cc7d0c149a4a8c256fc386709b8ff86d6b617c170f00c076f3
DIST srain-1.2.4.tar.gz 954684 BLAKE2B 9989715380f0fb702a8f43be77ee5cd6360f2e8ddb2d21e8f1e0741fe6aabe3869b42e9e1f36c642b8cbfb6e2419f14d4ccc682f7fd7b1dda0f3b1af5b69e59f SHA512 96d15f9d8bccc197b1bcda2c4707bdeea8e5cb33e3a8ad88ea5431b059c64e2ccb2e82897fcb1c02198420fed2c59148ff1c32f5f305cfffa88f096e41b42cb4
+DIST srain-1.4.0.tar.gz 1935950 BLAKE2B 7d3db119bcc07ccb427850530e551f643e202d3f2f276c8b347324f99474e57052368b8eed52e74ba6403a47b3bd4b7842ee007d9035bbba8e69beba8e3be9e6 SHA512 1708d1d1ec97c9f35a8702526a95bb60bf0ea50b742a76081508ef42a512e8c113ef1949c3b9f3db4585d8fb11cdb197f65fc7bc10480a533c69982c21185e55
diff --git a/net-irc/srain/srain-1.2.1.ebuild b/net-irc/srain/srain-1.2.1.ebuild
deleted file mode 100644
index 0f8830628..000000000
--- a/net-irc/srain/srain-1.2.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson xdg
-
-DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3"
-HOMEPAGE="https://github.com/SrainApp/srain"
-SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="debug doc"
-
-RDEPEND="
- >=x11-libs/gtk+-3.22.0
- x11-libs/libnotify
-"
-DEPEND="
- ${RDEPEND}
- app-crypt/libsecret
- dev-libs/libconfig
- net-libs/libsoup
-"
-BDEPEND="dev-python/sphinx"
-
-src_prepare() {
- sed -i "s/'doc', meson.project_name())/'doc', meson.project_name() + '-${PV}')/" \
- meson.build || die
-
- xdg_src_prepare
-}
-
-src_configure() {
- local emesonargs=(
- --buildtype $(usex debug 'debug' 'plain')
- -Ddoc_builders="['man'$(usex doc ', "html"' '')]"
- )
- meson_src_configure
-}
diff --git a/net-irc/srain/srain-1.4.0.ebuild b/net-irc/srain/srain-1.4.0.ebuild
new file mode 100644
index 000000000..3a75b9281
--- /dev/null
+++ b/net-irc/srain/srain-1.4.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+inherit meson python-any-r1 xdg
+
+DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3"
+HOMEPAGE="https://github.com/SrainApp/srain"
+SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="doc man"
+
+RDEPEND="
+ app-crypt/libsecret
+ dev-libs/glib:2
+ dev-libs/libconfig:=
+ dev-libs/openssl:=
+ net-libs/libsoup:2.4
+ x11-libs/gtk+:3
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ doc? ( ${PYTHON_DEPS} )
+ man? ( ${PYTHON_DEPS} )
+"
+
+python_check_deps() {
+ if use doc || use man; then
+ has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" || return 1
+ fi
+}
+
+src_prepare() {
+ default
+
+ sed "s/\('doc'\), meson.project_name()/\1, '${PF}'/" \
+ -i meson.build || die
+}
+
+src_configure() {
+ local -a doc_builders=()
+ use doc && doc_builders+=( html )
+ use man && doc_builders+=( man )
+
+ local emesonargs=(
+ -Ddoc_builders="$(meson-format-array "${doc_builders[@]}")"
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-irc/srain/
@ 2023-02-25 7:17 Viorel Munteanu
0 siblings, 0 replies; 6+ messages in thread
From: Viorel Munteanu @ 2023-02-25 7:17 UTC (permalink / raw
To: gentoo-commits
commit: cb17496a7dfe8d0b96d89dbc90821bd3e4f84cad
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Feb 24 23:32:16 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Feb 24 23:32:16 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cb17496a
net-irc/srain: drop 1.2.4
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
net-irc/srain/Manifest | 1 -
net-irc/srain/srain-1.2.4.ebuild | 48 ----------------------------------------
2 files changed, 49 deletions(-)
diff --git a/net-irc/srain/Manifest b/net-irc/srain/Manifest
index 056268e63..1c8cbd2fe 100644
--- a/net-irc/srain/Manifest
+++ b/net-irc/srain/Manifest
@@ -1,2 +1 @@
-DIST srain-1.2.4.tar.gz 954684 BLAKE2B 9989715380f0fb702a8f43be77ee5cd6360f2e8ddb2d21e8f1e0741fe6aabe3869b42e9e1f36c642b8cbfb6e2419f14d4ccc682f7fd7b1dda0f3b1af5b69e59f SHA512 96d15f9d8bccc197b1bcda2c4707bdeea8e5cb33e3a8ad88ea5431b059c64e2ccb2e82897fcb1c02198420fed2c59148ff1c32f5f305cfffa88f096e41b42cb4
DIST srain-1.4.0.tar.gz 1935950 BLAKE2B 7d3db119bcc07ccb427850530e551f643e202d3f2f276c8b347324f99474e57052368b8eed52e74ba6403a47b3bd4b7842ee007d9035bbba8e69beba8e3be9e6 SHA512 1708d1d1ec97c9f35a8702526a95bb60bf0ea50b742a76081508ef42a512e8c113ef1949c3b9f3db4585d8fb11cdb197f65fc7bc10480a533c69982c21185e55
diff --git a/net-irc/srain/srain-1.2.4.ebuild b/net-irc/srain/srain-1.2.4.ebuild
deleted file mode 100644
index a1091c151..000000000
--- a/net-irc/srain/srain-1.2.4.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-DOCS_BUILDER="sphinx"
-DOCS_DIR="doc"
-DOCS_AUTODOC=0
-
-inherit python-any-r1 docs meson xdg
-
-DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3"
-HOMEPAGE="https://github.com/SrainApp/srain"
-SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="+man"
-
-RDEPEND="
- app-crypt/libsecret
- >=dev-libs/glib-2.39.3
- >=dev-libs/libconfig-1.5
- dev-libs/openssl
- net-libs/libsoup:2.4
- >=x11-libs/gtk+-3.22.15
-"
-DEPEND="${RDEPEND}"
-BDEPEND="man? ( ${DOCS_DEPEND} )"
-
-src_prepare() {
- sed -i "s/\('doc', meson.project_name()\)/\1 + '-${PF}'/" \
- meson.build || die
-
- xdg_src_prepare
-}
-
-src_configure() {
- use man && emesonargs=( -Ddoc_builders='["man"]' )
- meson_src_configure
-}
-
-src_compile() {
- docs_compile
- meson_src_compile
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-irc/srain/
@ 2024-02-23 1:36 David Roman
0 siblings, 0 replies; 6+ messages in thread
From: David Roman @ 2024-02-23 1:36 UTC (permalink / raw
To: gentoo-commits
commit: 7d0a1b6a60284a483713a4ba0f03ab44a35f1dd8
Author: Christopher Byrne <salah.coronya <AT> gmail <DOT> com>
AuthorDate: Thu Feb 22 03:53:33 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Feb 22 04:01:41 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7d0a1b6a
net-irc/srain: drop 1.4.0
Signed-off-by: Christopher Byrne <salah.coronya <AT> gmail.com>
net-irc/srain/Manifest | 1 -
net-irc/srain/srain-1.4.0.ebuild | 54 ----------------------------------------
2 files changed, 55 deletions(-)
diff --git a/net-irc/srain/Manifest b/net-irc/srain/Manifest
index dd77c791c7..bbccdeeec4 100644
--- a/net-irc/srain/Manifest
+++ b/net-irc/srain/Manifest
@@ -1,2 +1 @@
-DIST srain-1.4.0.tar.gz 1935950 BLAKE2B 7d3db119bcc07ccb427850530e551f643e202d3f2f276c8b347324f99474e57052368b8eed52e74ba6403a47b3bd4b7842ee007d9035bbba8e69beba8e3be9e6 SHA512 1708d1d1ec97c9f35a8702526a95bb60bf0ea50b742a76081508ef42a512e8c113ef1949c3b9f3db4585d8fb11cdb197f65fc7bc10480a533c69982c21185e55
DIST srain-1.6.0.tar.gz 2760635 BLAKE2B 18676142c875b9715cd3e94b9877e6ae7235e035299284dc410b7ae6be26eb01450557da0c9cb050d71d79145583132601f12a395c28968b23361f84c1f08fce SHA512 59d962ddbf71724d5f68decc1e3b873cea6c6bd2ca23b21a1a6fe937d53f2871398fdcda906840755efc6b454d2d5116ca620c047f1634fb68b45ab2c0443a57
diff --git a/net-irc/srain/srain-1.4.0.ebuild b/net-irc/srain/srain-1.4.0.ebuild
deleted file mode 100644
index 421adafc52..0000000000
--- a/net-irc/srain/srain-1.4.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} pypy3 )
-inherit meson python-any-r1 xdg
-
-DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3"
-HOMEPAGE="https://github.com/SrainApp/srain"
-SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="doc man"
-
-RDEPEND="
- app-crypt/libsecret
- dev-libs/glib:2
- dev-libs/libconfig:=
- dev-libs/openssl:=
- net-libs/libsoup:2.4
- x11-libs/gtk+:3
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- doc? ( ${PYTHON_DEPS} )
- man? ( ${PYTHON_DEPS} )
-"
-
-python_check_deps() {
- if use doc || use man; then
- has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" || return 1
- fi
-}
-
-src_prepare() {
- default
-
- sed "s/\('doc'\), meson.project_name()/\1, '${PF}'/" \
- -i meson.build || die
-}
-
-src_configure() {
- local -a doc_builders=()
- use doc && doc_builders+=( html )
- use man && doc_builders+=( man )
-
- local emesonargs=(
- -Ddoc_builders="$(meson-format-array "${doc_builders[@]}")"
- )
- meson_src_configure
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-irc/srain/
@ 2024-02-23 1:36 David Roman
0 siblings, 0 replies; 6+ messages in thread
From: David Roman @ 2024-02-23 1:36 UTC (permalink / raw
To: gentoo-commits
commit: 0ca40195b558c072730c72dbf370513d4be43f1a
Author: Christopher Byrne <salah.coronya <AT> gmail <DOT> com>
AuthorDate: Thu Feb 22 03:52:41 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Feb 22 04:01:41 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0ca40195
net-irc/srain: add 1.6.0
Closes: https://bugs.gentoo.org/887863
Closes: https://bugs.gentoo.org/897638
Signed-off-by: Christopher Byrne <salah.coronya <AT> gmail.com>
net-irc/srain/Manifest | 1 +
net-irc/srain/srain-1.6.0.ebuild | 60 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/net-irc/srain/Manifest b/net-irc/srain/Manifest
index 1c8cbd2fea..dd77c791c7 100644
--- a/net-irc/srain/Manifest
+++ b/net-irc/srain/Manifest
@@ -1 +1,2 @@
DIST srain-1.4.0.tar.gz 1935950 BLAKE2B 7d3db119bcc07ccb427850530e551f643e202d3f2f276c8b347324f99474e57052368b8eed52e74ba6403a47b3bd4b7842ee007d9035bbba8e69beba8e3be9e6 SHA512 1708d1d1ec97c9f35a8702526a95bb60bf0ea50b742a76081508ef42a512e8c113ef1949c3b9f3db4585d8fb11cdb197f65fc7bc10480a533c69982c21185e55
+DIST srain-1.6.0.tar.gz 2760635 BLAKE2B 18676142c875b9715cd3e94b9877e6ae7235e035299284dc410b7ae6be26eb01450557da0c9cb050d71d79145583132601f12a395c28968b23361f84c1f08fce SHA512 59d962ddbf71724d5f68decc1e3b873cea6c6bd2ca23b21a1a6fe937d53f2871398fdcda906840755efc6b454d2d5116ca620c047f1634fb68b45ab2c0443a57
diff --git a/net-irc/srain/srain-1.6.0.ebuild b/net-irc/srain/srain-1.6.0.ebuild
new file mode 100644
index 0000000000..8dcf030db3
--- /dev/null
+++ b/net-irc/srain/srain-1.6.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+inherit meson python-any-r1 xdg
+
+DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3"
+HOMEPAGE="https://github.com/SrainApp/srain"
+SRC_URI="https://github.com/SrainApp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="appindicator doc man"
+
+RDEPEND="
+ app-crypt/libsecret
+ dev-libs/glib:2
+ dev-libs/libconfig:=
+ dev-libs/openssl:=
+ net-libs/libsoup:2.4
+ x11-libs/gtk+:3
+ appindicator? ( dev-libs/libayatana-appindicator )
+"
+
+DEPEND="${RDEPEND}"
+BDEPEND="
+ doc? ( $(python_gen_any_dep '
+ dev-python/sphinx[${PYTHON_USEDEP}]' ) )
+ man? ( $(python_gen_any_dep '
+ dev-python/sphinx[${PYTHON_USEDEP}]' ) )
+ ${PYTHON_DEPS}
+"
+
+python_check_deps() {
+ if use doc || use man; then
+ python_has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]"
+ fi
+}
+
+src_prepare() {
+ default
+
+ sed "s/\('doc'\), meson.project_name()/\1, '${PF}'/" \
+ -i meson.build || die
+}
+
+src_configure() {
+ local -a doc_builders=()
+ use doc && doc_builders+=( html )
+ use man && doc_builders+=( man )
+
+ local emesonargs=(
+ -Ddoc_builders="$(meson-format-array "${doc_builders[@]}")"
+ $(meson_use appindicator app_indicator)
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-irc/srain/
@ 2024-08-24 20:56 David Roman
0 siblings, 0 replies; 6+ messages in thread
From: David Roman @ 2024-08-24 20:56 UTC (permalink / raw
To: gentoo-commits
commit: e2699bd25267b64f7321fcd9d2c11145a628195f
Author: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sat Aug 24 08:55:52 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Aug 24 10:55:59 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e2699bd2
net-irc/srain: fix rdeps
Closes: https://bugs.gentoo.org/932999
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>
net-irc/srain/metadata.xml | 1 +
net-irc/srain/srain-1.7.0.ebuild | 4 +++-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/net-irc/srain/metadata.xml b/net-irc/srain/metadata.xml
index 8e05424d8..869e6e6b7 100644
--- a/net-irc/srain/metadata.xml
+++ b/net-irc/srain/metadata.xml
@@ -1,6 +1,7 @@
<?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">SrainApp/srain</remote-id>
</upstream>
diff --git a/net-irc/srain/srain-1.7.0.ebuild b/net-irc/srain/srain-1.7.0.ebuild
index dcef04ffd..8e54c3df4 100644
--- a/net-irc/srain/srain-1.7.0.ebuild
+++ b/net-irc/srain/srain-1.7.0.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
inherit meson python-any-r1 xdg
DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3"
@@ -21,6 +21,8 @@ RDEPEND="
dev-libs/libconfig:=
dev-libs/openssl:=
net-libs/libsoup:3.0
+ x11-libs/cairo
+ x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3
appindicator? ( dev-libs/libayatana-appindicator )
"
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-08-24 20:56 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-23 1:36 [gentoo-commits] repo/proj/guru:master commit in: net-irc/srain/ David Roman
-- strict thread matches above, loose matches on Subject: below --
2024-08-24 20:56 David Roman
2024-02-23 1:36 David Roman
2023-02-25 7:17 Viorel Munteanu
2022-07-07 7:33 Haelwenn Monnier
2021-07-27 19:57 Andrew Ammerlaan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox