--- /dev/null
+# ChangeLog for dev-python/timebook
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+*timebook-9999 (28 Jul 2011)
+ 28 Jul 2011; W. Trevor King <wking@drexel.edu> ChangeLog, metadata.xml, timebook-9999.ebuild :
+ - Created ebuild suite for timebook.
+ - Added initial ChangeLog which should be updated whenever the
+ package is updated in any way. This changelog is targetted to
+ users. This means that the comments should well explained and
+ written in clean English. The details about writing correct
+ changelogs are explained in the skel.ChangeLog file which you can
+ find in the root directory of the portage repository.
--- /dev/null
+EBUILD timebook-9999.ebuild 739 RMD160 1050776c3d579b065fb212a6f92f7b53dfe79600 SHA1 dc9dd0ff50b20cb21c20a60e58cfe8bcfa3c02ac SHA256 682ec31a3560c11f62d88b7775b54ca6fc52430657064425832e5a35be7652d0
+MISC ChangeLog 701 RMD160 9b7da09004ffe60d9e8c03d6b0d2092c18e6a4cb SHA1 ea6f1bc78db8f24471cae1fe7642dab10c6c5532 SHA256 a36189f884bb2656154214afc8932cedd252d1689439b56378f1bd0eafe7bda7
+MISC metadata.xml 247 RMD160 6735f3a5dd2d7a2b70589d1693f35d54291b7147 SHA1 c015969fe50967340dd050a44cb9f8a30b5e34a5 SHA256 9e65060e5f9d0a50d28c7a69d9c27fed6c3037fdd3e420cc276627fde2794f72
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd></herd>
+ <maintainer>
+ <email>wking@drexel.edu</email>
+ <name>W. Trevor King</name>
+ </maintainer>
+</pkgmetadata>
--- /dev/null
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="3"
+PYTHON_DEPEND="2:2.7"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
+
+inherit eutils distutils
+
+if [[ ${PV} == "9999" ]] ; then
+ inherit mercurial
+ EHG_REPO_URI="https://bitbucket.org/trevor/${PN}"
+ SRC_URI=""
+else
+ SRC_URI=""
+fi
+
+DESCRIPTION="Track what you spend time on via this simple command line application"
+HOMEPAGE="https://bitbucket.org/trevor/${PN}/overview"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+RDEPEND=""
+DEPEND=""
+
+src_unpack() {
+ if [[ ${PV} == "9999" ]] ; then
+ mercurial_src_unpack
+ else
+ unpack ${A}
+ fi
+ cd "${S}"
+}
+
+src_install() {
+ distutils_src_install
+ dodoc README
+}