diff options
author | wiz <wiz@pkgsrc.org> | 2016-06-06 12:28:37 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2016-06-06 12:28:37 +0000 |
commit | 59dfe1a80d73caa26062dc15aedcfb0f6ccddac3 (patch) | |
tree | 8a70acec4e5248b47de0da6d2f06d532bbaa6e65 /misc/khard | |
parent | c4959df13be336e46c9c33d41f855dcc21de14f9 (diff) | |
download | pkgsrc-59dfe1a80d73caa26062dc15aedcfb0f6ccddac3.tar.gz |
Updated khard to 0.9.0.
v0.5.0: 2015.09.05
- New option to merge two contacts
- Support for XDG_CONFIG_HOME parameter
- Post address: Added support for street and house number field with multiple lines
v0.6.0: 2015.09.20
- New options copy contact and move contact
- Changed behavior of merge command (have a look into the readme file for details)
- Get path to editor and merge editor from the $PATH variable
- Code cleanup: new object class AddressBook
v0.6.1: 2015.10.06
- Added title and role attribute
- Removed input restrictions of name and post address fields
- Parameter default_country in config file is not longer in use
v0.6.2: 2015.10.10
- Added completion function for zsh
v0.6.3: 2015.10.24
- Added note attribute
v0.7.0: 2015.12.18
- Support for vobject library version >= 0.8.2 from https://github.com/tBaxter/vobject
- Contact template syntax switched to yaml
- alot and mutt actions summarized to new email action (please have a look into the readme file for configuration changes)
- Support for extended name attributes
- Create and modify contact from stdin or from template file
- New action "export" to export data of existing contact in yaml format
- New argument --open-editor to open the preferred text editor after successful creation of new
contact from stdin or template file
- New argument {-u, --uid} to select contact by uid
- Added write support for categories attribute
- Added wrapper script for sdiff
- Fixed a bug, which prevented the creation of new contacts with the add-email action
v0.7.1: 2016.01.01
- Added support for multiple instances of one vcard attribute
v0.7.2: 2016.01.03
- Use of module atomicwrites to securely write vcards to disk
v0.7.3: 2016.01.08
- Cancel without further actions if the opened contacts editor is closed without saving (determined
by modification date of template file)
v0.7.4: 2016.01.11
- Fixed uid dictionary creation
v0.8.0: 2016.01.15
- Sort contact table by first or last name (take note of changed behaviour of "sort" option)
- New option -g, --group-by-addressbook to group contact table by address book
- Changes in config file:
- New group: contact table
- new option: sort to sort contact table by first or last name
- New option: group_by_addressbook to group contact table by address book
- Moved show_nicknames option from group "general" to group "contact table"
v0.8.1: 2016.01.16
- New option "show_uids" in config file to disable uid column in contact table
v0.9.0: 2016.03.17
- Fully restructured command line interface for better usability:
- general help with: khard -h
- help for a specific action: khard action -h
- Updated zsh completion function
- New Action addressbooks
- New option -p|--pretty for email and phone actions to get pretty formatted output
- Fix: Only delete contact after modify, copy or move action was completed successfully
Diffstat (limited to 'misc/khard')
-rw-r--r-- | misc/khard/Makefile | 8 | ||||
-rw-r--r-- | misc/khard/PLIST | 6 | ||||
-rw-r--r-- | misc/khard/distinfo | 10 |
3 files changed, 13 insertions, 11 deletions
diff --git a/misc/khard/Makefile b/misc/khard/Makefile index cc51a61ab87..8836dc8c1b0 100644 --- a/misc/khard/Makefile +++ b/misc/khard/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2015/12/05 21:25:50 adam Exp $ +# $NetBSD: Makefile,v 1.5 2016/06/06 12:28:37 wiz Exp $ -DISTNAME= khard-0.4.1 +DISTNAME= khard-0.9.0 CATEGORIES= misc net -MASTER_SITES= https://pypi.python.org/packages/source/k/khard/ +MASTER_SITES= ${MASTER_SITE_PYPI:=k/khard/} MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://github.com/scheibler/khard @@ -19,7 +19,7 @@ INSTALLATION_DIRS= share/examples/khard REPLACE_PYTHON+= */*.py post-install: - ${INSTALL_DATA} ${WRKSRC}/khard.conf.example ${DESTDIR}${PREFIX}/share/examples/khard + ${INSTALL_DATA} ${WRKSRC}/misc/khard/khard.conf.example ${DESTDIR}${PREFIX}/share/examples/khard .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" diff --git a/misc/khard/PLIST b/misc/khard/PLIST index 28f8f47117b..1ec05bd70d3 100644 --- a/misc/khard/PLIST +++ b/misc/khard/PLIST @@ -1,11 +1,10 @@ -@comment $NetBSD: PLIST,v 1.2 2015/07/21 19:17:51 wiz Exp $ +@comment $NetBSD: PLIST,v 1.3 2016/06/06 12:28:37 wiz Exp $ bin/davcontroller bin/khard ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt -${PYSITELIB}/${EGG_INFODIR}/pbr.json ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/davcontroller/__init__.py @@ -17,6 +16,9 @@ ${PYSITELIB}/davcontroller/davcontroller.pyo ${PYSITELIB}/khard/__init__.py ${PYSITELIB}/khard/__init__.pyc ${PYSITELIB}/khard/__init__.pyo +${PYSITELIB}/khard/address_book.py +${PYSITELIB}/khard/address_book.pyc +${PYSITELIB}/khard/address_book.pyo ${PYSITELIB}/khard/carddav_object.py ${PYSITELIB}/khard/carddav_object.pyc ${PYSITELIB}/khard/carddav_object.pyo diff --git a/misc/khard/distinfo b/misc/khard/distinfo index 43d617b472f..d7781bb6288 100644 --- a/misc/khard/distinfo +++ b/misc/khard/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2015/11/03 23:49:40 agc Exp $ +$NetBSD: distinfo,v 1.4 2016/06/06 12:28:37 wiz Exp $ -SHA1 (khard-0.4.1.tar.gz) = b215e2e681ab07335c969d92a41aec98ae18d9ca -RMD160 (khard-0.4.1.tar.gz) = 8b275e0e37b5424da00dbbae1c22d80116560dce -SHA512 (khard-0.4.1.tar.gz) = 0c9fc514bed53d46143606c2e330c01bfb634451b9d481c44cc45caeda6446563257affd91a2c56c0056c440f5abfb58a894fdd706fe77b3322d33d25096e17b -Size (khard-0.4.1.tar.gz) = 5032863 bytes +SHA1 (khard-0.9.0.tar.gz) = d4470c90a1d3d9d958796d5f825398bf115cef2b +RMD160 (khard-0.9.0.tar.gz) = 82045771fb461680c68b048846e9caeae013e8a3 +SHA512 (khard-0.9.0.tar.gz) = bb16da5355e2f4b632e55305f5e3a3d0ae440b3343548aa8665906706661a8380ec1e39ba2c1a1ee786d5b84e3f6e59d6bb8c86259867bd00aa4d0ebd612f385 +Size (khard-0.9.0.tar.gz) = 5050795 bytes |