public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: net-im/maubot/
@ 2024-11-16 20:20 Julien Roy
  0 siblings, 0 replies; 5+ messages in thread
From: Julien Roy @ 2024-11-16 20:20 UTC (permalink / raw
  To: gentoo-commits

commit:     765ad53a1bc665a90b3b9144f61b315cb602f1fc
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Nov 16 16:30:04 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Nov 16 20:19:55 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=765ad53a

net-im/maubot: add 0.5.0

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 net-im/maubot/Manifest            |  1 +
 net-im/maubot/maubot-0.5.0.ebuild | 61 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/net-im/maubot/Manifest b/net-im/maubot/Manifest
index a37108d13..ee4c3483f 100644
--- a/net-im/maubot/Manifest
+++ b/net-im/maubot/Manifest
@@ -1 +1,2 @@
 DIST maubot-0.4.2.tar.gz 1981478 BLAKE2B 47ed5ef89b37099ee071a08914bf0f7ae49c7f53786696d29e5f5a58ecae7dab4707b7bd2ac59bbc8246778a9c0ef487d5724fe5b61342f52637e0a0c74a7298 SHA512 136cc8870de804f0cf8b85efa21ed16ef56f803c64e8f04562b5c69402573596edf87a9c783670d09878f4cbf59613553ce6898c11aa166248d02d26704f7921
+DIST maubot-0.5.0.tar.gz 1985146 BLAKE2B 2c80a3cf25671139ae9e962cc0544cc9421fffb72e098958e4b00e4801d25152c9741a306b6a71ce1664116a183c6a57e30bb54d6bf71010f13ffad9901cfbd9 SHA512 089f368e59405adfa05b3fe6da5c5fe5a092ae8509b01aa7b6d8940c6a16fb3a66ce715cbb2a757857f088def3f9eb2010c9789d4d2537151bc203c38afb6495

diff --git a/net-im/maubot/maubot-0.5.0.ebuild b/net-im/maubot/maubot-0.5.0.ebuild
new file mode 100644
index 000000000..877616e30
--- /dev/null
+++ b/net-im/maubot/maubot-0.5.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYPI_NO_NORMALIZE=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi systemd
+
+DESCRIPTION="Plugin-based Matrix bot system"
+HOMEPAGE="https://github.com/maubot/maubot/"
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	acct-user/maubot
+	dev-python/aiohttp[${PYTHON_USEDEP}]
+	dev-python/aiosqlite[${PYTHON_USEDEP}]
+	dev-python/attrs[${PYTHON_USEDEP}]
+	dev-python/asyncpg[${PYTHON_USEDEP}]
+	dev-python/bcrypt[${PYTHON_USEDEP}]
+	dev-python/click[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	dev-python/commonmark[${PYTHON_USEDEP}]
+	dev-python/cryptg[${PYTHON_USEDEP}]
+	dev-python/jinja2[${PYTHON_USEDEP}]
+	dev-python/mautrix[${PYTHON_USEDEP}]
+	dev-python/packaging[${PYTHON_USEDEP}]
+	dev-python/pycryptodome[${PYTHON_USEDEP}]
+	dev-python/python-olm[${PYTHON_USEDEP}]
+	dev-python/ruamel-yaml[${PYTHON_USEDEP}]
+	dev-python/sqlalchemy[${PYTHON_USEDEP}]
+	dev-python/unpaddedbase64[${PYTHON_USEDEP}]
+	dev-python/yarl[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+	distutils-r1_src_install
+
+	keepdir /var/log/maubot
+	fowners root:maubot /var/log/maubot
+	fperms 770 /var/log/maubot
+	sed -i -e "s/\.\/${PN}.log/\/var\/log\/maubot\/${PN}.log/" "${ED}/usr/example-config.yaml" || die
+	sed -i -e "s/\.\/plugins/\/var\/lib\/maubot\/plugins/g" "${ED}/usr/example-config.yaml" || die
+	sed -i -e "s/\.\/trash/\/var\/lib\/maubot\/trash/g" "${ED}/usr/example-config.yaml" || die
+
+	insinto "/etc/maubot"
+	newins "${ED}/usr/example-config.yaml" "${PN}.yaml"
+	rm "${ED}/usr/example-config.yaml" || die
+
+	newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	systemd_dounit "${FILESDIR}/${PN}.service"
+
+	fowners -R root:maubot /etc/maubot
+	fperms -R 770 /etc/maubot
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/maubot/
@ 2024-11-20 17:05 Julien Roy
  2024-11-20 17:11 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
  0 siblings, 1 reply; 5+ messages in thread
From: Julien Roy @ 2024-11-20 17:05 UTC (permalink / raw
  To: gentoo-commits

commit:     9515cd357114439c3dbf7f6a71e9fff4538f1c87
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed Nov 20 17:04:45 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed Nov 20 17:05:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9515cd35

net-im/maubot: drop unneeded dependency

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 net-im/maubot/{maubot-0.5.0.ebuild => maubot-0.5.0-r1.ebuild} | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-im/maubot/maubot-0.5.0.ebuild b/net-im/maubot/maubot-0.5.0-r1.ebuild
similarity index 97%
rename from net-im/maubot/maubot-0.5.0.ebuild
rename to net-im/maubot/maubot-0.5.0-r1.ebuild
index 877616e30..afb1258db 100644
--- a/net-im/maubot/maubot-0.5.0.ebuild
+++ b/net-im/maubot/maubot-0.5.0-r1.ebuild
@@ -26,7 +26,6 @@ RDEPEND="
 	dev-python/click[${PYTHON_USEDEP}]
 	dev-python/colorama[${PYTHON_USEDEP}]
 	dev-python/commonmark[${PYTHON_USEDEP}]
-	dev-python/cryptg[${PYTHON_USEDEP}]
 	dev-python/jinja2[${PYTHON_USEDEP}]
 	dev-python/mautrix[${PYTHON_USEDEP}]
 	dev-python/packaging[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/maubot/
@ 2024-11-20 17:05 Julien Roy
  0 siblings, 0 replies; 5+ messages in thread
From: Julien Roy @ 2024-11-20 17:05 UTC (permalink / raw
  To: gentoo-commits

commit:     c1dd32c7c6e806406ff328ef6375c3886257e988
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed Nov 20 17:04:29 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed Nov 20 17:05:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c1dd32c7

net-im/maubot: drop 0.4.2

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 net-im/maubot/Manifest            |  1 -
 net-im/maubot/maubot-0.4.2.ebuild | 61 ---------------------------------------
 2 files changed, 62 deletions(-)

diff --git a/net-im/maubot/Manifest b/net-im/maubot/Manifest
index ee4c3483f..d231b1112 100644
--- a/net-im/maubot/Manifest
+++ b/net-im/maubot/Manifest
@@ -1,2 +1 @@
-DIST maubot-0.4.2.tar.gz 1981478 BLAKE2B 47ed5ef89b37099ee071a08914bf0f7ae49c7f53786696d29e5f5a58ecae7dab4707b7bd2ac59bbc8246778a9c0ef487d5724fe5b61342f52637e0a0c74a7298 SHA512 136cc8870de804f0cf8b85efa21ed16ef56f803c64e8f04562b5c69402573596edf87a9c783670d09878f4cbf59613553ce6898c11aa166248d02d26704f7921
 DIST maubot-0.5.0.tar.gz 1985146 BLAKE2B 2c80a3cf25671139ae9e962cc0544cc9421fffb72e098958e4b00e4801d25152c9741a306b6a71ce1664116a183c6a57e30bb54d6bf71010f13ffad9901cfbd9 SHA512 089f368e59405adfa05b3fe6da5c5fe5a092ae8509b01aa7b6d8940c6a16fb3a66ce715cbb2a757857f088def3f9eb2010c9789d4d2537151bc203c38afb6495

diff --git a/net-im/maubot/maubot-0.4.2.ebuild b/net-im/maubot/maubot-0.4.2.ebuild
deleted file mode 100644
index e5bd91296..000000000
--- a/net-im/maubot/maubot-0.4.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYPI_NO_NORMALIZE=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 pypi systemd
-
-DESCRIPTION="Plugin-based Matrix bot system"
-HOMEPAGE="https://github.com/maubot/maubot/"
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	acct-user/maubot
-	dev-python/aiohttp[${PYTHON_USEDEP}]
-	dev-python/aiosqlite[${PYTHON_USEDEP}]
-	dev-python/attrs[${PYTHON_USEDEP}]
-	dev-python/asyncpg[${PYTHON_USEDEP}]
-	dev-python/bcrypt[${PYTHON_USEDEP}]
-	dev-python/click[${PYTHON_USEDEP}]
-	dev-python/colorama[${PYTHON_USEDEP}]
-	dev-python/commonmark[${PYTHON_USEDEP}]
-	dev-python/cryptg[${PYTHON_USEDEP}]
-	dev-python/jinja2[${PYTHON_USEDEP}]
-	dev-python/mautrix[${PYTHON_USEDEP}]
-	dev-python/packaging[${PYTHON_USEDEP}]
-	dev-python/pycryptodome[${PYTHON_USEDEP}]
-	dev-python/python-olm[${PYTHON_USEDEP}]
-	dev-python/ruamel-yaml[${PYTHON_USEDEP}]
-	dev-python/sqlalchemy[${PYTHON_USEDEP}]
-	dev-python/unpaddedbase64[${PYTHON_USEDEP}]
-	dev-python/yarl[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
-	distutils-r1_src_install
-
-	keepdir /var/log/maubot
-	fowners root:maubot /var/log/maubot
-	fperms 770 /var/log/maubot
-	sed -i -e "s/\.\/${PN}.log/\/var\/log\/maubot\/${PN}.log/" "${ED}/usr/example-config.yaml" || die
-	sed -i -e "s/\.\/plugins/\/var\/lib\/maubot\/plugins/g" "${ED}/usr/example-config.yaml" || die
-	sed -i -e "s/\.\/trash/\/var\/lib\/maubot\/trash/g" "${ED}/usr/example-config.yaml" || die
-
-	insinto "/etc/maubot"
-	newins "${ED}/usr/example-config.yaml" "${PN}.yaml"
-	rm "${ED}/usr/example-config.yaml" || die
-
-	newinitd "${FILESDIR}/${PN}.initd" "${PN}"
-	systemd_dounit "${FILESDIR}/${PN}.service"
-
-	fowners -R root:maubot /etc/maubot
-	fperms -R 770 /etc/maubot
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: net-im/maubot/
  2024-11-20 17:05 [gentoo-commits] repo/proj/guru:dev commit in: net-im/maubot/ Julien Roy
@ 2024-11-20 17:11 ` Julien Roy
  0 siblings, 0 replies; 5+ messages in thread
From: Julien Roy @ 2024-11-20 17:11 UTC (permalink / raw
  To: gentoo-commits

commit:     9515cd357114439c3dbf7f6a71e9fff4538f1c87
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed Nov 20 17:04:45 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed Nov 20 17:05:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9515cd35

net-im/maubot: drop unneeded dependency

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 net-im/maubot/{maubot-0.5.0.ebuild => maubot-0.5.0-r1.ebuild} | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-im/maubot/maubot-0.5.0.ebuild b/net-im/maubot/maubot-0.5.0-r1.ebuild
similarity index 97%
rename from net-im/maubot/maubot-0.5.0.ebuild
rename to net-im/maubot/maubot-0.5.0-r1.ebuild
index 877616e30..afb1258db 100644
--- a/net-im/maubot/maubot-0.5.0.ebuild
+++ b/net-im/maubot/maubot-0.5.0-r1.ebuild
@@ -26,7 +26,6 @@ RDEPEND="
 	dev-python/click[${PYTHON_USEDEP}]
 	dev-python/colorama[${PYTHON_USEDEP}]
 	dev-python/commonmark[${PYTHON_USEDEP}]
-	dev-python/cryptg[${PYTHON_USEDEP}]
 	dev-python/jinja2[${PYTHON_USEDEP}]
 	dev-python/mautrix[${PYTHON_USEDEP}]
 	dev-python/packaging[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/maubot/
@ 2025-01-11 22:19 Julien Roy
  0 siblings, 0 replies; 5+ messages in thread
From: Julien Roy @ 2025-01-11 22:19 UTC (permalink / raw
  To: gentoo-commits

commit:     b1af30f04f801203667efe3debc743f9744d537d
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Jan 11 16:26:20 2025 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Jan 11 22:19:31 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b1af30f0

net-im/maubot: add 0.5.1

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 net-im/maubot/Manifest            |  1 +
 net-im/maubot/maubot-0.5.1.ebuild | 60 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/net-im/maubot/Manifest b/net-im/maubot/Manifest
index d231b1112..35accb849 100644
--- a/net-im/maubot/Manifest
+++ b/net-im/maubot/Manifest
@@ -1 +1,2 @@
 DIST maubot-0.5.0.tar.gz 1985146 BLAKE2B 2c80a3cf25671139ae9e962cc0544cc9421fffb72e098958e4b00e4801d25152c9741a306b6a71ce1664116a183c6a57e30bb54d6bf71010f13ffad9901cfbd9 SHA512 089f368e59405adfa05b3fe6da5c5fe5a092ae8509b01aa7b6d8940c6a16fb3a66ce715cbb2a757857f088def3f9eb2010c9789d4d2537151bc203c38afb6495
+DIST maubot-0.5.1.tar.gz 1985415 BLAKE2B 99a5eac3504c3d3995d17d9ff265a01caf271824562dbf3f3c0a15b5b46ccee70ab124614697237ef6ff0c2d9f30ae42ab27b67eb06b3a30dd5a5636a2a22a04 SHA512 edc61641bcbe674e9a3eb470fc6e03f7dcd87b792aa1d7c0e2525c1762fb7095e8ecedb4f532383e74e26ffcfa8699d2ca0e5920638e47f999a690b9f47aa80e

diff --git a/net-im/maubot/maubot-0.5.1.ebuild b/net-im/maubot/maubot-0.5.1.ebuild
new file mode 100644
index 000000000..afb1258db
--- /dev/null
+++ b/net-im/maubot/maubot-0.5.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYPI_NO_NORMALIZE=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi systemd
+
+DESCRIPTION="Plugin-based Matrix bot system"
+HOMEPAGE="https://github.com/maubot/maubot/"
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	acct-user/maubot
+	dev-python/aiohttp[${PYTHON_USEDEP}]
+	dev-python/aiosqlite[${PYTHON_USEDEP}]
+	dev-python/attrs[${PYTHON_USEDEP}]
+	dev-python/asyncpg[${PYTHON_USEDEP}]
+	dev-python/bcrypt[${PYTHON_USEDEP}]
+	dev-python/click[${PYTHON_USEDEP}]
+	dev-python/colorama[${PYTHON_USEDEP}]
+	dev-python/commonmark[${PYTHON_USEDEP}]
+	dev-python/jinja2[${PYTHON_USEDEP}]
+	dev-python/mautrix[${PYTHON_USEDEP}]
+	dev-python/packaging[${PYTHON_USEDEP}]
+	dev-python/pycryptodome[${PYTHON_USEDEP}]
+	dev-python/python-olm[${PYTHON_USEDEP}]
+	dev-python/ruamel-yaml[${PYTHON_USEDEP}]
+	dev-python/sqlalchemy[${PYTHON_USEDEP}]
+	dev-python/unpaddedbase64[${PYTHON_USEDEP}]
+	dev-python/yarl[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+	distutils-r1_src_install
+
+	keepdir /var/log/maubot
+	fowners root:maubot /var/log/maubot
+	fperms 770 /var/log/maubot
+	sed -i -e "s/\.\/${PN}.log/\/var\/log\/maubot\/${PN}.log/" "${ED}/usr/example-config.yaml" || die
+	sed -i -e "s/\.\/plugins/\/var\/lib\/maubot\/plugins/g" "${ED}/usr/example-config.yaml" || die
+	sed -i -e "s/\.\/trash/\/var\/lib\/maubot\/trash/g" "${ED}/usr/example-config.yaml" || die
+
+	insinto "/etc/maubot"
+	newins "${ED}/usr/example-config.yaml" "${PN}.yaml"
+	rm "${ED}/usr/example-config.yaml" || die
+
+	newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	systemd_dounit "${FILESDIR}/${PN}.service"
+
+	fowners -R root:maubot /etc/maubot
+	fperms -R 770 /etc/maubot
+}


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

end of thread, other threads:[~2025-01-11 22:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-20 17:05 [gentoo-commits] repo/proj/guru:dev commit in: net-im/maubot/ Julien Roy
2024-11-20 17:11 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
  -- strict thread matches above, loose matches on Subject: below --
2025-01-11 22:19 [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-11-20 17:05 Julien Roy
2024-11-16 20:20 Julien Roy

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