Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id A055F7A279 for ; Sun, 5 Feb 2017 19:30:44 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 164CA84CD9; Sun, 5 Feb 2017 19:30:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9A0D284CD8 for ; Sun, 5 Feb 2017 19:30:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id l7aU-L-1h3yK for ; Sun, 5 Feb 2017 19:30:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 18C8584C86 for ; Sun, 5 Feb 2017 19:30:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 13D62FBE4; Sun, 5 Feb 2017 19:30:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148632304377020" MIME-Version: 1.0 Date: Sun, 5 Feb 2017 19:30:43 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/misc/todoman To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170205193043.13D62FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_148632304377020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Feb 5 19:30:43 UTC 2017 Modified Files: pkgsrc/misc/todoman: Makefile distinfo Log Message: Updated todoman to 2.0.2. v2.0.2 ------ * Fix a crash after editing or completing a todo. v2.0.1 ------ * Fix a packaging error. v2.0.0 ------ New features ~~~~~~~~~~~~ * New flag ``--porcelain`` for programmatic integrations to use. See the ``integrations`` section :doc:`here ` for details. * Implement a new :doc:`configuration option `: ``default_due``. * The configuration file is now pre-emptively validated. Users will be warned of any inconsistencies. * The ``list`` command has a new ``--due`` flag to filter tasks due soon. * Todo ids are now persisted in a cache. They can be manually purged using ``flush``. Packaging changes ~~~~~~~~~~~~~~~~~ * New runtime dependency: configobj * New runtime dependency: python-dateutil * New test dependency: flake8-import-order. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/misc/todoman/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/misc/todoman/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148632304377020 Content-Disposition: inline Content-Length: 2557 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/todoman/Makefile diff -u pkgsrc/misc/todoman/Makefile:1.4 pkgsrc/misc/todoman/Makefile:1.5 --- pkgsrc/misc/todoman/Makefile:1.4 Mon Jan 16 09:19:38 2017 +++ pkgsrc/misc/todoman/Makefile Sun Feb 5 19:30:42 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2017/01/16 09:19:38 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2017/02/05 19:30:42 wiz Exp $ -DISTNAME= todoman-1.8.0 +DISTNAME= todoman-2.0.2 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_PYPI:=t/todoman/} @@ -11,13 +11,14 @@ LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-ansi-[0-9]*:../../misc/py-ansi DEPENDS+= ${PYPKGPREFIX}-atomicwrites-[0-9]*:../../devel/py-atomicwrites +DEPENDS+= ${PYPKGPREFIX}-configobj-[0-9]*:../../devel/py-configobj +DEPENDS+= ${PYPKGPREFIX}-dateutil-[0-9]*:../../time/py-dateutil DEPENDS+= ${PYPKGPREFIX}-icalendar-[0-9]*:../../time/py-icalendar DEPENDS+= ${PYPKGPREFIX}-parsedatetime-[0-9]*:../../time/py-parsedatetime DEPENDS+= ${PYPKGPREFIX}-click>=6.0:../../devel/py-click DEPENDS+= ${PYPKGPREFIX}-urwid-[0-9]*:../../devel/py-urwid DEPENDS+= ${PYPKGPREFIX}-xdg-[0-9]*:../../devel/py-xdg -# should be BUILD_DEPENDS -- fixed upstream post 1.6.3 -DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm +BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm # TEST_DEPENDS BUILD_DEPENDS+= ${PYPKGPREFIX}-hypothesis-[0-9]*:../../devel/py-hypothesis BUILD_DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3 Index: pkgsrc/misc/todoman/distinfo diff -u pkgsrc/misc/todoman/distinfo:1.3 pkgsrc/misc/todoman/distinfo:1.4 --- pkgsrc/misc/todoman/distinfo:1.3 Mon Jan 16 09:19:38 2017 +++ pkgsrc/misc/todoman/distinfo Sun Feb 5 19:30:42 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2017/01/16 09:19:38 wiz Exp $ +$NetBSD: distinfo,v 1.4 2017/02/05 19:30:42 wiz Exp $ -SHA1 (todoman-1.8.0.tar.gz) = 26fde72cea7e99cacf2a5490aa1c6430606eb985 -RMD160 (todoman-1.8.0.tar.gz) = b130045d450383fda6fe67c2cf3e19fe3f7f1c18 -SHA512 (todoman-1.8.0.tar.gz) = b759e50a43e1cc9f576f82b1204b9106aa05e7f2cd6780dbdf69fb2d5db1b1e6a5f4a01ceb79bc9a350cffe4c7f13c3913be3899d7d593355e14aec1f0749ed8 -Size (todoman-1.8.0.tar.gz) = 27694 bytes +SHA1 (todoman-2.0.2.tar.gz) = 19a1bc0aabf21e088a8be571a771ba690a8ddc4d +RMD160 (todoman-2.0.2.tar.gz) = dd70c28b92f0a1274e0cdfbab81b14e71cd3e49f +SHA512 (todoman-2.0.2.tar.gz) = 250206d41d6347644a53cf6dd87d9e63c662643cf0e87d7ed40bd391851d0cc833a50a265e09b4ded3a5d08b343992eb2dff1eb2d1bb6d56d2f39350783d401a +Size (todoman-2.0.2.tar.gz) = 32567 bytes --_----------=_148632304377020--