URI:
       add todoman - overlay - drkhsh gentoo overlay
  HTML git clone git://git.drkhsh.at/overlay.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
   DIR commit ea0656e4eb70f4ed0aeae3b8c2eb6a22216d4be2
   DIR parent 48ec093a1d1aa6b636dfbc26b34df43e513010a3
  HTML Author: aaron marcher <me@drkhsh.at>
       Date:   Mon, 24 Jul 2017 21:45:31 +0200
       
       add todoman
       
       Diffstat:
         A app-misc/todoman/Manifest           |       1 +
         A app-misc/todoman/todoman-3.2.0.ebu… |      48 +++++++++++++++++++++++++++++++
       
       2 files changed, 49 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/app-misc/todoman/Manifest b/app-misc/todoman/Manifest
       @@ -0,0 +1 @@
       +DIST todoman-3.2.0.tar.gz 52076 SHA256 35c89c8880a0a201786cf3102770f6933eba871dd7e6b1b097698bcdd8584d26 SHA512 f22af21a40559a047ab86957f9896ef6c0fc2e7ea154a0031da96c611273ea813ea1316aa60f21dba7f8360bababfa897570fba56dea7d59dda6b0fcec0c5508 WHIRLPOOL 9445ff79158af25e1a88acb0205747b59dd468612615b4a29079c086997de2a24a077afa123a5e3fb0348bc500f0dc17ecb5ecec79e5c9c0377a2db4b608bc6e
   DIR diff --git a/app-misc/todoman/todoman-3.2.0.ebuild b/app-misc/todoman/todoman-3.2.0.ebuild
       @@ -0,0 +1,48 @@
       +# Copyright 1999-2016 Gentoo Foundation
       +# Distributed under the terms of the GNU General Public License v2
       +# $Id$
       +
       +EAPI=6
       +PYTHON_COMPAT=( python3_{3,4,5} )
       +
       +SCM=""
       +if [ "${PV#9999}" != "${PV}" ] ; then
       +        SCM="git-r3"
       +        EGIT_REPO_URI="https://github.com/pimutils/todoman"
       +fi
       +
       +inherit ${SCM} distutils-r1
       +
       +DESCRIPTION="console todo client for caldav"
       +HOMEPAGE="https://github.com/pimutils/todoman/"
       +if [ "${PV#9999}" != "${PV}" ] ; then
       +        SRC_URI=""
       +        KEYWORDS=""
       +else
       +        SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
       +        KEYWORDS="~amd64 ~x86"
       +fi
       +
       +LICENSE="ISC"
       +SLOT="0"
       +IUSE=""
       +
       +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
       +RDEPEND="dev-python/configobj[${PYTHON_USEDEP}]
       +        dev-python/atomicwrites[${PYTHON_USEDEP}]
       +        dev-python/vdirsyncer[${PYTHON_USEDEP}]
       +        dev-python/click[${PYTHON_USEDEP}]
       +        dev-python/click-log[${PYTHON_USEDEP}]
       +        dev-python/humanize[${PYTHON_USEDEP}]
       +        dev-python/icalendar[${PYTHON_USEDEP}]
       +        dev-python/parsedatetime[${PYTHON_USEDEP}]
       +        dev-python/python-dateutil[${PYTHON_USEDEP}]
       +        dev-python/pyxdg[${PYTHON_USEDEP}]
       +        dev-python/tabulate[${PYTHON_USEDEP}]
       +        dev-python/urwid{${PYTHON_USEDEP}]"
       +
       +DOCS=( AUTHORS.rst CHANGELOG.rst README.rst todoman.conf.example )
       +
       +src_install() {
       +        distutils-r1_src_install
       +}