From: Stefan Huber Date: Thu, 14 May 2020 12:15:29 +0000 (+0200) Subject: app-misc/pycarddav: Delete all versions X-Git-Url: https://git.sthu.org/?p=shuber-gentoo-overlay.git;a=commitdiff_plain;h=66dfc24db8bb2fe4370682609707889744564498;hp=9bcaf1b5777eb33dbeda9a72c28182c3b3f960e6 app-misc/pycarddav: Delete all versions Use khard and vidirsyncer instead. --- diff --git a/app-misc/pycarddav/Manifest b/app-misc/pycarddav/Manifest deleted file mode 100644 index 1957313..0000000 --- a/app-misc/pycarddav/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -AUX utf8-decode.patch 479 BLAKE2B 5e444441f5f20d96789b5af4c07c83d4cdb8c63769e78742ffe0a5346bcda83c9e45bc17337147fa73e3095b343d790336f9c4dec58d65944caec205d98194b7 SHA512 7abf8cab841af86987e71e4e0128c028cdf3a0dab9b6af7fe2e7ddc51424792a617207531762b5d658e70218d18dfc8298013280a4f5b0a7d6e3764b3f5ef680 -DIST pyCardDAV-0.7.0.tar.gz 36462 BLAKE2B 955f0900d04b309258d0a0a2e448b36876229311cb297ec266c7984983e156afd67058f5478dbad1e905ff5f0d5c5dd23e5ad751e83fc1abb25205ceb882c077 SHA512 342e9e084fcda5e0ee7f5b2085767f306bb34f5ebf4fb3e2a39fc65986d0217f79fbfc244c69cc91d817a0945e9ddb819ec7c7067c93268f5f1ddac23ae6c10b -EBUILD pycarddav-0.7.0.ebuild 1019 BLAKE2B bc72f537c1508ea5ef4ed3e096a4c12abe3cd12bbcf59425f735bcc4327bd8acde272c17e4c00921c5375e52e0df6099fd93af57ad3a1af9edbef9f343722e24 SHA512 bc9c48b2731b803dc80fcfaefc042f6b9b7be685110559192e328dbd2e415496808fa06f270bb4e0c6ff7b4bc2b322b6f92a8b5585411c61788ebd8f78f306ad diff --git a/app-misc/pycarddav/files/utf8-decode.patch b/app-misc/pycarddav/files/utf8-decode.patch deleted file mode 100644 index b29cedd..0000000 --- a/app-misc/pycarddav/files/utf8-decode.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- a/pycarddav/model.py 2018-04-15 18:49:08.335147745 +0200 -+++ b/pycarddav/model.py 2018-04-15 18:49:53.957408081 +0200 -@@ -207,7 +207,13 @@ - - @property - def fname(self): -- return unicode(self['FN'][0][0]) if self['FN'] else '' -+ utext = self['FN'][0][0] if self['FN'] else '' -+ try: -+ utext = unicode(utext, 'utf8') -+ except TypeError: -+ pass -+ -+ return utext - - @fname.setter - def fname(self, value): diff --git a/app-misc/pycarddav/pycarddav-0.7.0.ebuild b/app-misc/pycarddav/pycarddav-0.7.0.ebuild deleted file mode 100644 index 5ce228a..0000000 --- a/app-misc/pycarddav/pycarddav-0.7.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="5" - -PYTHON_COMPAT=( python{2_6,2_7} ) - -inherit distutils-r1 - -MYP="pyCardDAV" - -DESCRIPTION="pyCardDAV is a simple to use CardDAV CLI client with mutt -support." -HOMEPAGE="http://lostpackets.de/pycarddav/" -SRC_URI="https://lostpackets.de/pycarddav/downloads/${MYP}-${PV}.tar.gz" -S="${WORKDIR}/${MYP}-${PV}" - -LICENSE="MIT" -KEYWORDS="~x86 ~amd64" -SLOT="0" -IUSE="" - -DEPEND="dev-python/lxml - dev-python/requests - dev-python/urwid - dev-python/vobject - dev-python/pyxdg - dev-python/keyring" -RDEPEND="${DEPEND}" - -EXAMPLES=( pycard.conf.sample ) - - -src_prepare() { - epatch ${FILESDIR}/utf8-decode.patch -} - -pkg_postinst() { - ewarn "Copy and edit the supplied pycard.conf.sample file" - ewarn "(default location is ~/.config/pycard/pycard.conf)." - ewarn "Beware that only you can access this file," - ewarn "if you have untrusted users on your machine," - ewarn "since the password is stored in cleartext." -}