From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/khard/
Date: Sat, 25 Feb 2023 12:43:50 +0000 (UTC) [thread overview]
Message-ID: <1677329027.c793e9a74a0a50a84bc4cd7da1cb1489cd8691b8.juippis@gentoo> (raw)
commit: c793e9a74a0a50a84bc4cd7da1cb1489cd8691b8
Author: Nils Freydank <holgersson <AT> posteo <DOT> de>
AuthorDate: Thu Feb 16 22:29:55 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 12:43:47 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c793e9a7
app-misc/khard: Bump to 0.18.0, bump to EAPI="8"
Please note that upstream maintenance changed since last release from
github user scheibler to lucc.
Signed-off-by: Nils Freydank <holgersson <AT> posteo.de>
Closes: https://github.com/gentoo/gentoo/pull/29575
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-misc/khard/Manifest | 1 +
app-misc/khard/khard-0.18.0.ebuild | 75 ++++++++++++++++++++++++++++++++++++++
app-misc/khard/metadata.xml | 3 +-
3 files changed, 78 insertions(+), 1 deletion(-)
diff --git a/app-misc/khard/Manifest b/app-misc/khard/Manifest
index bffbaa8918e0..f2d3dc1551d5 100644
--- a/app-misc/khard/Manifest
+++ b/app-misc/khard/Manifest
@@ -1 +1,2 @@
DIST khard-0.17.0.tar.gz 593928 BLAKE2B 488e1df70212c856d8dfa43955e681344fb1a257d765c81820444f6435d39aec782da9d01edeeaac0b9a87412db680fde368c39c74faa82b0eff2d7a0a2dbc6b SHA512 9cb936aeaa327b9837488a752906bf603429ca0c7240703829220119049f5f62e84f7e4c90bb81799307fe446c3aa47fe6ee4112c276b6bb329c959be438ba25
+DIST khard-0.18.0.tar.gz 602016 BLAKE2B 856190b5972c6b912977a69a4786779d59fafbdea1bc323c8ca8af56c7ce33e09efbe58734db261437ea0e654a8457086174becedb76dacf802f975847e03c63 SHA512 eb1e82b5350febdd388b251514562a2d3776d5f5c8b3c70cd73153eaedc7ac3504b25d88179eced26c96ced90785fac9267cc23b2425fac816c233a2e1f2b9df
diff --git a/app-misc/khard/khard-0.18.0.ebuild b/app-misc/khard/khard-0.18.0.ebuild
new file mode 100644
index 000000000000..9feb94042815
--- /dev/null
+++ b/app-misc/khard/khard-0.18.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+inherit distutils-r1
+
+DESCRIPTION="Console CardDAV client"
+HOMEPAGE="
+ https://github.com/lucc/khard
+ https://pypi.org/project/khard/
+"
+
+LICENSE="GPL-3"
+SLOT="0"
+
+if [[ "${PV}" == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/lucc/khard"
+else
+ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+IUSE=""
+
+RDEPEND="
+ dev-python/atomicwrites[${PYTHON_USEDEP}]
+ dev-python/configobj[${PYTHON_USEDEP}]
+ dev-python/ruamel-yaml[${PYTHON_USEDEP}]
+ dev-python/ruamel-yaml-clib[${PYTHON_USEDEP}]
+ dev-python/unidecode[${PYTHON_USEDEP}]
+ dev-python/vobject[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/setuptools_scm[${PYTHON_USEDEP}]
+ )
+ doc? (
+ dev-python/sphinx-autoapi
+ dev-python/sphinx-rtd-theme
+ dev-python/sphinx-autodoc-typehints
+ )
+"
+
+DOCS=(
+ CHANGES
+ CONTRIBUTING.rst
+ README.md
+ doc/source/examples/khard.conf.example
+)
+
+distutils_enable_tests setup.py
+distutils_enable_sphinx docs
+
+python_compile_all() {
+ use doc && emake -j1 -C doc/ html text man info
+}
+
+python_install_all() {
+ if use doc; then
+ DOCS+=( doc/build/text/. )
+ HTML_DOCS+=( doc/build/html/. )
+
+ doman doc/build/man/*
+ doinfo doc/build/texinfo/*.info
+ fi
+
+ insinto /usr/share/zsh/site-functions
+ doins misc/zsh/_khard
+
+ distutils-r1_python_install_all
+}
diff --git a/app-misc/khard/metadata.xml b/app-misc/khard/metadata.xml
index 5ce8c85d997f..2cec23ac4013 100644
--- a/app-misc/khard/metadata.xml
+++ b/app-misc/khard/metadata.xml
@@ -10,6 +10,7 @@
<name>Proxy Maintainers</name>
</maintainer>
<upstream>
- <remote-id type="github">scheibler/khard</remote-id>
+ <remote-id type="github">lucc/khard</remote-id>
+ <remote-id type="pypi">khard</remote-id>
</upstream>
</pkgmetadata>
next reply other threads:[~2023-02-25 12:43 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-25 12:43 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-05 17:56 [gentoo-commits] repo/gentoo:master commit in: app-misc/khard/ Michael Orlitzky
2025-02-05 17:35 Sam James
2025-02-05 2:58 Michael Orlitzky
2024-11-24 19:36 Viorel Munteanu
2024-09-08 14:17 Michał Górny
2024-09-08 14:17 Michał Górny
2024-09-08 14:17 Michał Górny
2024-05-28 15:27 Michał Górny
2023-05-01 12:34 Michał Górny
2023-05-01 1:48 Sam James
2023-05-01 1:48 Sam James
2023-05-01 0:30 Sam James
2023-05-01 0:16 Sam James
2023-05-01 0:12 Sam James
2022-11-15 18:17 Michał Górny
2022-06-08 8:43 Agostino Sarubbo
[not found] <1654677763.a5179fe9f6dfd34db56d31b63ffc3f2ab918e788.ago@gentoo>
2022-06-08 8:43 ` Agostino Sarubbo
2022-06-08 6:13 Joonas Niilola
2022-06-08 6:13 Joonas Niilola
2022-04-13 14:46 Sam James
2022-03-05 20:02 Andrey Utkin
2022-03-05 14:28 Andrey Utkin
2021-12-21 16:49 Andrey Utkin
2021-07-31 0:18 Sam James
2021-07-31 0:18 Sam James
2020-10-28 6:49 Andrey Utkin
2020-10-25 19:46 Thomas Deutschmann
2020-10-20 5:06 Sam James
2020-10-19 20:13 Sam James
2020-08-30 13:48 Andrey Utkin
2020-08-30 13:48 Andrey Utkin
2020-08-02 20:33 Aaron Bauman
2020-08-02 20:33 Aaron Bauman
2020-06-21 6:23 Michał Górny
2020-05-06 1:01 Thomas Deutschmann
2019-04-10 3:18 Aaron Bauman
2019-01-28 2:24 Andrey Utkin
2019-01-28 2:24 Andrey Utkin
2019-01-28 2:24 Andrey Utkin
2018-06-09 14:22 Mart Raudsepp
2018-03-30 18:35 Aaron Bauman
2018-03-14 21:09 Markus Meier
2018-02-11 21:56 Thomas Deutschmann
2018-02-07 12:18 Andrey Utkin
2018-01-19 1:44 Andrey Utkin
2018-01-19 1:44 Andrey Utkin
2017-12-17 17:26 Andrey Utkin
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=1677329027.c793e9a74a0a50a84bc4cd7da1cb1489cd8691b8.juippis@gentoo \
--to=juippis@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