public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/json_exporter/
@ 2024-06-05 19:07 George Zenner
  0 siblings, 0 replies; 2+ messages in thread
From: George Zenner @ 2024-06-05 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     58b478c99b3824f4818a7a03edf61680a05c99a5
Author:     Zen <z <AT> pyl <DOT> onl>
AuthorDate: Wed Jun  5 19:06:53 2024 +0000
Commit:     George Zenner <dev <AT> pyl <DOT> onl>
CommitDate: Wed Jun  5 19:07:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=58b478c9

dev-python/json_exporter: Add 1.0.2

Signed-off-by: Zen <z <AT> pyl.onl>

 dev-python/json_exporter/Manifest                  |  1 +
 .../json_exporter/json_exporter-1.0.2.ebuild       | 33 ++++++++++++++++++++++
 dev-python/json_exporter/metadata.xml              | 11 ++++++++
 3 files changed, 45 insertions(+)

diff --git a/dev-python/json_exporter/Manifest b/dev-python/json_exporter/Manifest
new file mode 100644
index 000000000..09ec09524
--- /dev/null
+++ b/dev-python/json_exporter/Manifest
@@ -0,0 +1 @@
+DIST json_exporter-1.0.2.tar.gz 11721 BLAKE2B 16649e749a0611bc082b44e61e1cf32a5c7e627a5eeae8ff03c2d2d0f0f5ca86c9b1a193bb01939a23a131377131fa00cc6192642580a59353ea3acf8f3d1a48 SHA512 eb2eda756e82f9eb6b92b441c66f19dbc0001ea1a57b5748930bb3c7c2cb89b83161e629f9c78ff11b33f330f5db104079ebb6f47bc2d186754851296dfdd1e2

diff --git a/dev-python/json_exporter/json_exporter-1.0.2.ebuild b/dev-python/json_exporter/json_exporter-1.0.2.ebuild
new file mode 100644
index 000000000..1deb8b2e2
--- /dev/null
+++ b/dev-python/json_exporter/json_exporter-1.0.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..12} )
+inherit distutils-r1
+
+DESCRIPTION="Python-based library for exporting JSON data as metrics for Prometheus."
+HOMEPAGE="https://github.com/desultory/json_exporter"
+SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+RDEPEND="
+	>=dev-python/zenlib-2.1.2[${PYTHON_USEDEP}]
+	>=dev-python/prometheus_exporter-1.0.0[${PYTHON_USEDEP}]
+"
+
+src_install() {
+	# Install the package
+	distutils-r1_src_install
+
+	# Copy hid_ups_exporter.include to /etc/init.d
+	newinitd json_exporter.include json_exporter
+	# Create /var/log/json_exporter
+	keepdir /var/log/json_exporter
+	# Create /etc/json_exporter
+	keepdir /etc/json_exporter
+}

diff --git a/dev-python/json_exporter/metadata.xml b/dev-python/json_exporter/metadata.xml
new file mode 100644
index 000000000..65a683e80
--- /dev/null
+++ b/dev-python/json_exporter/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>dev@pyl.onl</email>
+		<name>Zen</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">desultory/json_exporter</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/json_exporter/
@ 2024-07-15 20:26 Lucio Sauer
  0 siblings, 0 replies; 2+ messages in thread
From: Lucio Sauer @ 2024-07-15 20:26 UTC (permalink / raw
  To: gentoo-commits

commit:     94fba256349705645fb62596f9cc6d8eade4ffb5
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Mon Jul 15 20:23:42 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Mon Jul 15 20:25:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=94fba256

dev-python/json_exporter: unkeyword 1.0.2 for ~arm64

dev-python/zenlib unkeyworded for ~arm64 when it moved to ::gentoo.

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 dev-python/json_exporter/json_exporter-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/json_exporter/json_exporter-1.0.2.ebuild b/dev-python/json_exporter/json_exporter-1.0.2.ebuild
index 1deb8b2e2..be2e24eef 100644
--- a/dev-python/json_exporter/json_exporter-1.0.2.ebuild
+++ b/dev-python/json_exporter/json_exporter-1.0.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> ${
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="~amd64"
 
 RDEPEND="
 	>=dev-python/zenlib-2.1.2[${PYTHON_USEDEP}]


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

end of thread, other threads:[~2024-07-15 20:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-05 19:07 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/json_exporter/ George Zenner
  -- strict thread matches above, loose matches on Subject: below --
2024-07-15 20:26 Lucio Sauer

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