public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: net-misc/gmcapsule/
@ 2024-05-03  7:05 Anna Vyalkova
  0 siblings, 0 replies; 4+ messages in thread
From: Anna Vyalkova @ 2024-05-03  7:05 UTC (permalink / raw
  To: gentoo-commits

commit:     68ba92fc4ac9627ccf66f4f9eb31d550598c81b4
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed May  1 14:32:01 2024 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Fri May  3 07:03:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68ba92fc

net-misc/gmcapsule: add 0.7.0

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 net-misc/gmcapsule/Manifest               |  1 +
 net-misc/gmcapsule/gmcapsule-0.7.0.ebuild | 39 +++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/net-misc/gmcapsule/Manifest b/net-misc/gmcapsule/Manifest
index 7c6adee140..1de6d9e8b5 100644
--- a/net-misc/gmcapsule/Manifest
+++ b/net-misc/gmcapsule/Manifest
@@ -1 +1,2 @@
 DIST gmcapsule-0.6.1.tar.gz 28755 BLAKE2B f20e5763fa4dfb3e3fd25f29367b415d5c1adfb54e49af243a27d6dc9b4ec84229b8cda1f6cd99a72945c25c4b2d13c238169c8708d6a6dcec527b6c810ee6d9 SHA512 ae8a3ff4ade7458c8c78eeedb60f2c5912e4366bcbe9bab3db546e9f18f3b4c8f7e59ee6ad9b7f5d25a58e98d707995757bdd343fa8723f1a3e269f37456ebb8
+DIST gmcapsule-0.7.0.tar.gz 29510 BLAKE2B 15bf36eced7cdc0cc82ab6cab7d22c287799ecd2b1cfc3eba5edfd8526261ce03c8f926357d1e2481608a1564b61981a078648e52f5a2f1419a25081c79278b7 SHA512 c03acd8500dc43bac7884705dfbb050b1d4024729b7167d325f9a45c3fb7ff93e8d873841a66be3bac0efd83025f67bd8f5215bc46d0aa200a40c0a7f997926d

diff --git a/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild b/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild
new file mode 100644
index 0000000000..c151019468
--- /dev/null
+++ b/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..12} )
+DISTUTILS_USE_PEP517=hatchling
+inherit distutils-r1 pypi systemd
+
+DESCRIPTION="Extensible Gemini/Titan server"
+HOMEPAGE="
+	https://pypi.org/project/gmcapsule/
+	https://git.skyjake.fi/gemini/gmcapsule
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	acct-user/gemini
+	>=dev-python/pyopenssl-21
+"
+
+python_install() {
+	rm "${BUILD_DIR}/install$(python_get_sitedir)"/*.ini || die
+	distutils-r1_python_install
+}
+
+src_install() {
+	distutils-r1_src_install
+
+	newinitd "${FILESDIR}"/gmcapsuled.initd gmcapsuled
+	newconfd "${FILESDIR}"/gmcapsuled.confd gmcapsuled
+	systemd_dounit "${FILESDIR}"/gmcapsuled.service
+
+	insinto /etc/gmcapsule
+	newins example.ini config.example.ini
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-misc/gmcapsule/
@ 2024-10-29 21:58 Anna Vyalkova
  0 siblings, 0 replies; 4+ messages in thread
From: Anna Vyalkova @ 2024-10-29 21:58 UTC (permalink / raw
  To: gentoo-commits

commit:     11b02c7c908d848b63f57a8f4b17ccd9168bec74
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Oct 29 21:20:11 2024 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue Oct 29 21:20:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=11b02c7c

net-misc/gmcapsule: enable py3.13

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 net-misc/gmcapsule/gmcapsule-0.7.0.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild b/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild
index c15101946..2ba159068 100644
--- a/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild
+++ b/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{11..12} )
+PYTHON_COMPAT=( python3_{11..13} )
 DISTUTILS_USE_PEP517=hatchling
 inherit distutils-r1 pypi systemd
 
@@ -22,6 +22,8 @@ RDEPEND="
 	>=dev-python/pyopenssl-21
 "
 
+distutils_enable_tests import-check
+
 python_install() {
 	rm "${BUILD_DIR}/install$(python_get_sitedir)"/*.ini || die
 	distutils-r1_python_install


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-misc/gmcapsule/
@ 2024-12-03  6:05 Anna Vyalkova
  0 siblings, 0 replies; 4+ messages in thread
From: Anna Vyalkova @ 2024-12-03  6:05 UTC (permalink / raw
  To: gentoo-commits

commit:     078808d04bb4f9257cce2810558810776d18ba0e
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Dec  3 05:27:36 2024 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue Dec  3 05:59:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=078808d0

net-misc/gmcapsule: enable pypy3

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 net-misc/gmcapsule/gmcapsule-0.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild b/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild
index 2ba159068..148021216 100644
--- a/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild
+++ b/net-misc/gmcapsule/gmcapsule-0.7.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{11..13} )
+PYTHON_COMPAT=( python3_{11..13} pypy3 )
 DISTUTILS_USE_PEP517=hatchling
 inherit distutils-r1 pypi systemd
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-misc/gmcapsule/
@ 2025-01-07 20:55 Anna Vyalkova
  0 siblings, 0 replies; 4+ messages in thread
From: Anna Vyalkova @ 2025-01-07 20:55 UTC (permalink / raw
  To: gentoo-commits

commit:     7f9d5a94aa02e00fe523dd220f7e3f374b83276f
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Jan  7 20:18:31 2025 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue Jan  7 20:18:31 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7f9d5a94

net-misc/gmcapsule: add 0.9.7, drop 0.6.1

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 net-misc/gmcapsule/Manifest                                       | 2 +-
 .../gmcapsule/{gmcapsule-0.6.1.ebuild => gmcapsule-0.9.7.ebuild}  | 8 +++++---
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/net-misc/gmcapsule/Manifest b/net-misc/gmcapsule/Manifest
index 1de6d9e8b..90df01363 100644
--- a/net-misc/gmcapsule/Manifest
+++ b/net-misc/gmcapsule/Manifest
@@ -1,2 +1,2 @@
-DIST gmcapsule-0.6.1.tar.gz 28755 BLAKE2B f20e5763fa4dfb3e3fd25f29367b415d5c1adfb54e49af243a27d6dc9b4ec84229b8cda1f6cd99a72945c25c4b2d13c238169c8708d6a6dcec527b6c810ee6d9 SHA512 ae8a3ff4ade7458c8c78eeedb60f2c5912e4366bcbe9bab3db546e9f18f3b4c8f7e59ee6ad9b7f5d25a58e98d707995757bdd343fa8723f1a3e269f37456ebb8
 DIST gmcapsule-0.7.0.tar.gz 29510 BLAKE2B 15bf36eced7cdc0cc82ab6cab7d22c287799ecd2b1cfc3eba5edfd8526261ce03c8f926357d1e2481608a1564b61981a078648e52f5a2f1419a25081c79278b7 SHA512 c03acd8500dc43bac7884705dfbb050b1d4024729b7167d325f9a45c3fb7ff93e8d873841a66be3bac0efd83025f67bd8f5215bc46d0aa200a40c0a7f997926d
+DIST gmcapsule-0.9.7.tar.gz 33387 BLAKE2B f911e377b9fe4fac9dee78491d4be53de82e667ab6b5ec65716de8e0432cbdeabbd21c596315ca1130bc72d2feda776d9c7c1ff6c10bed2c9470cd23d3dad09e SHA512 d2cf6f74cc0413e7b18ed229d89f94862117b28104f13502d76d6fa063329002f8a5633b0d1b6a225e6111c9414c19f8a1fc40b09e1f6d1cedcc1ed87e510076

diff --git a/net-misc/gmcapsule/gmcapsule-0.6.1.ebuild b/net-misc/gmcapsule/gmcapsule-0.9.7.ebuild
similarity index 82%
rename from net-misc/gmcapsule/gmcapsule-0.6.1.ebuild
rename to net-misc/gmcapsule/gmcapsule-0.9.7.ebuild
index 85ce513ba..130e531b2 100644
--- a/net-misc/gmcapsule/gmcapsule-0.6.1.ebuild
+++ b/net-misc/gmcapsule/gmcapsule-0.9.7.ebuild
@@ -1,16 +1,16 @@
-# Copyright 2024 Gentoo Authors
+# Copyright 2024-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{11..13} pypy3 )
 DISTUTILS_USE_PEP517=hatchling
 inherit distutils-r1 pypi systemd
 
 DESCRIPTION="Extensible Gemini/Titan server"
 HOMEPAGE="
 	https://pypi.org/project/gmcapsule/
-	https://codeberg.org/skyjake/gmcapsule
+	https://git.skyjake.fi/gemini/gmcapsule
 "
 
 LICENSE="BSD-2"
@@ -22,6 +22,8 @@ RDEPEND="
 	>=dev-python/pyopenssl-21
 "
 
+distutils_enable_tests import-check
+
 python_install() {
 	rm "${BUILD_DIR}/install$(python_get_sitedir)"/*.ini || die
 	distutils-r1_python_install


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

end of thread, other threads:[~2025-01-07 20:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-07 20:55 [gentoo-commits] repo/proj/guru:dev commit in: net-misc/gmcapsule/ Anna Vyalkova
  -- strict thread matches above, loose matches on Subject: below --
2024-12-03  6:05 Anna Vyalkova
2024-10-29 21:58 Anna Vyalkova
2024-05-03  7:05 Anna Vyalkova

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