summaryrefslogtreecommitdiff
path: root/dev-python/concurrent-log-handler
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-06-09 19:00:20 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-06-09 19:00:20 +0000
commita38e29fa3d1d73aa80df8b62ff1dd7ddf8967a99 (patch)
tree401c101fc6ec81a5d9c74b0caa3b714dc767b39e /dev-python/concurrent-log-handler
parentd040dfeee4aeee655599ab9091f1fb756b21c23d (diff)
downloadbaldeagleos-repo-a38e29fa3d1d73aa80df8b62ff1dd7ddf8967a99.tar.gz
baldeagleos-repo-a38e29fa3d1d73aa80df8b62ff1dd7ddf8967a99.tar.xz
baldeagleos-repo-a38e29fa3d1d73aa80df8b62ff1dd7ddf8967a99.zip
Adding metadata
Diffstat (limited to 'dev-python/concurrent-log-handler')
-rw-r--r--dev-python/concurrent-log-handler/Manifest2
-rw-r--r--dev-python/concurrent-log-handler/concurrent-log-handler-0.9.27.ebuild28
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/concurrent-log-handler/Manifest b/dev-python/concurrent-log-handler/Manifest
index 80143625fc66..a8830439642c 100644
--- a/dev-python/concurrent-log-handler/Manifest
+++ b/dev-python/concurrent-log-handler/Manifest
@@ -1,3 +1,5 @@
DIST concurrent-log-handler-0.9.26.gh.tar.gz 55150 BLAKE2B 785df170666e8c9538109808109116a57e30677b64f967097890d053ad232943976917925364f0cbf0fb828ff83f384ef847da857ba3621c65d27269af772be6 SHA512 59dd009712445115634e854c9f3738dc0f3893d8bb150b5edfcc0705e00e84fd2515720ad33f82687f60d9855709f69ba838af3729bed2bd0d5759fb604e216e
+DIST concurrent-log-handler-0.9.27.gh.tar.gz 61126 BLAKE2B e59fd510d30acee09bcf257fd0dcb9295b81cb7a6dcfa11176cd4e6c685820aaa39abda8eb59dad6eba03c661c391bff8aa189337717d7720ce958f16bf2717a SHA512 2285f78eb8fa3c178709ad215e2b5afe0d8939ea1d81b1f85a5f7936deaf5d8361fa5f86315f333f49a9bc06b355ca5b65794aa1aa2e3961c3de4cdb1db64610
EBUILD concurrent-log-handler-0.9.26.ebuild 678 BLAKE2B 0eed4893824b30256a5e19bdf049a62e0fd7ed951a508aac810d79aa47ef5334162a6f6bca6de27196193bfe8e96b7f85e1585b0e4f731dc2b8cadb45bed85de SHA512 7e26a618bd8e67cde38af4b09d14caa8f270e20ae2f9a13374ce8b29c97cc8f76a99d42c123e3bc0631b5c4d62520dc63f123ab8de5984528db17d7da3be0e9a
+EBUILD concurrent-log-handler-0.9.27.ebuild 721 BLAKE2B d736cf5b9d420ba304102d292520ae776026ad1e3d0ed5bb521aad1aad2ed964c3386f65415dc60bca8fa8cf3e908d289b8950a32c1bddd3b3863b37c627d8a6 SHA512 d16746877a5696510a910af29886878901fbf09b8c391f6fcd0eba2b8dd721faf9b85d54b89991d50846e70c42d292fa729ebd86017caed37f7d81e0c8f9dc58
MISC metadata.xml 505 BLAKE2B dad218de3b8ccad3a14150386a121035cfcd6860ef5870e826aa4b94265c89ec5938c3805df79d39c9908e6d48b8e667e28b355a17f77e70dfc25a1f6c25f00b SHA512 662034c51f1da4c2e13698592dadf1f6575f0ffc4f3d111af8d0d08a58fc05d4316b62ea140503d42fd9c1833da9f1b7aacf2d611d4befab0d266c705e192bf9
diff --git a/dev-python/concurrent-log-handler/concurrent-log-handler-0.9.27.ebuild b/dev-python/concurrent-log-handler/concurrent-log-handler-0.9.27.ebuild
new file mode 100644
index 000000000000..023640118a2c
--- /dev/null
+++ b/dev-python/concurrent-log-handler/concurrent-log-handler-0.9.27.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{9,10,11,12,13} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python logging handler allowing safe concurrent write to the same log file"
+HOMEPAGE="https://github.com/Preston-Landers/concurrent-log-handler"
+SRC_URI="https://github.com/Preston-Landers/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=">=dev-python/portalocker-1.6.0[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ test? (
+ dev-python/pytest-mock[${PYTHON_USEDEP}]
+ dev-python/pytest-sugar[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest