From: "Georgy Yakovlev" <gyakovlev@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/loguru/
Date: Mon, 29 Apr 2019 19:38:00 +0000 (UTC) [thread overview]
Message-ID: <1556566632.a302878ec8697526f0b2b1ca3b539fd4da1885a7.gyakovlev@gentoo> (raw)
commit: a302878ec8697526f0b2b1ca3b539fd4da1885a7
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 29 19:35:17 2019 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Mon Apr 29 19:37:12 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a302878e
dev-python/loguru: new package
Package-Manager: Portage-2.3.65, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
dev-python/loguru/Manifest | 1 +
dev-python/loguru/loguru-0.2.6_pre20190412.ebuild | 49 +++++++++++++++++++++++
dev-python/loguru/metadata.xml | 16 ++++++++
3 files changed, 66 insertions(+)
diff --git a/dev-python/loguru/Manifest b/dev-python/loguru/Manifest
new file mode 100644
index 00000000000..ebafdee512a
--- /dev/null
+++ b/dev-python/loguru/Manifest
@@ -0,0 +1 @@
+DIST loguru-0.2.6_pre20190412.tar.gz 362315 BLAKE2B 8273fd42522396d4a17c405bebf01f8de272a56515e4a63766126494b4449333e7c25f5be5851bdbcf922d35affa9ee091ac7138482f9e2daf30f48093cee812 SHA512 49320c19f2bfdc55569290740b49889133003329dbf6cae2e993730a957d69e5200b41b75d255d2e19d937658778945ffe44350431661162eaa6141edfcfc499
diff --git a/dev-python/loguru/loguru-0.2.6_pre20190412.ebuild b/dev-python/loguru/loguru-0.2.6_pre20190412.ebuild
new file mode 100644
index 00000000000..04098605437
--- /dev/null
+++ b/dev-python/loguru/loguru-0.2.6_pre20190412.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit distutils-r1
+
+EGIT_COMMIT="6571879c37904e3a18567e694d70651c6886b860"
+
+DESCRIPTION="Python logging made (stupidly) simple"
+HOMEPAGE="https://github.com/Delgan/loguru"
+SRC_URI="https://github.com/Delgan/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+DEPEND="
+ >=dev-python/ansimarkup-1.4.0[${PYTHON_USEDEP}]
+ >=dev-python/colorama-0.3.4[${PYTHON_USEDEP}]
+ doc? (
+ dev-python/sphinx[${PYTHON_USEDEP}]
+ dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+ )
+ test? (
+ >=dev-python/isort-4.3.4[${PYTHON_USEDEP}]
+ >=dev-python/pytest-3.9.0[${PYTHON_USEDEP}]
+ )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
+
+python_compile_all() {
+ use doc && esetup.py build_sphinx
+}
+
+python_install_all() {
+ use doc && HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
+ distutils-r1_python_install_all
+}
+
+python_test() {
+ pytest -v || die "Tests failed with ${EPYTHON}"
+}
diff --git a/dev-python/loguru/metadata.xml b/dev-python/loguru/metadata.xml
new file mode 100644
index 00000000000..b72d659dc84
--- /dev/null
+++ b/dev-python/loguru/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gyakovlev@gentoo.org</email>
+ <name>Georgy Yakovlev</name>
+ </maintainer>
+ <longdescription lang="en">
+ This library is intended to make Python logging less painful by adding a bunch of useful functionalities that solve caveats of the standard loggers.
+ Using logs in your application should be an automatism, Loguru tries to make it both pleasant and powerful.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">Delgan/loguru</remote-id>
+ <remote-id type="pypi">loguru</remote-id>
+ </upstream>
+</pkgmetadata>
next reply other threads:[~2019-04-29 19:38 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-29 19:38 Georgy Yakovlev [this message]
-- strict thread matches above, loose matches on Subject: below --
2019-07-15 20:07 [gentoo-commits] repo/gentoo:master commit in: dev-python/loguru/ Georgy Yakovlev
2019-08-22 1:06 Georgy Yakovlev
2019-08-22 1:06 Georgy Yakovlev
2019-08-22 1:06 Georgy Yakovlev
2020-01-01 3:22 Georgy Yakovlev
2020-01-01 21:18 Georgy Yakovlev
2020-02-29 23:06 Georgy Yakovlev
2020-03-27 21:06 Michał Górny
2020-06-13 6:26 Georgy Yakovlev
2020-09-08 4:59 Georgy Yakovlev
2020-09-18 15:19 Michał Górny
2020-09-21 22:51 Georgy Yakovlev
2021-04-18 0:36 Georgy Yakovlev
2022-05-16 13:11 Michał Górny
2023-02-17 8:52 Sam James
2023-02-21 12:34 Michał Górny
2023-04-11 3:14 Michał Górny
2023-04-11 17:25 Michał Górny
2024-02-14 16:55 Michał Górny
2024-02-14 16:55 Michał Górny
2024-06-29 14:40 Arthur Zamarin
2024-12-07 7:07 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1556566632.a302878ec8697526f0b2b1ca3b539fd4da1885a7.gyakovlev@gentoo \
--to=gyakovlev@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox