Add timebook package.
authorW. Trevor King <wking@drexel.edu>
Fri, 29 Jul 2011 13:46:06 +0000 (09:46 -0400)
committerW. Trevor King <wking@drexel.edu>
Fri, 29 Jul 2011 13:46:06 +0000 (09:46 -0400)
ChangeLog [new file with mode: 0644]
Manifest [new file with mode: 0644]
metadata.xml [new file with mode: 0644]
timebook-9999.ebuild [new file with mode: 0644]

diff --git a/ChangeLog b/ChangeLog
new file mode 100644 (file)
index 0000000..ba701d3
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,14 @@
+# 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.
diff --git a/Manifest b/Manifest
new file mode 100644 (file)
index 0000000..c52e9d6
--- /dev/null
+++ b/Manifest
@@ -0,0 +1,3 @@
+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
diff --git a/metadata.xml b/metadata.xml
new file mode 100644 (file)
index 0000000..d124928
--- /dev/null
@@ -0,0 +1,9 @@
+<?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>
diff --git a/timebook-9999.ebuild b/timebook-9999.ebuild
new file mode 100644 (file)
index 0000000..acaed85
--- /dev/null
@@ -0,0 +1,43 @@
+# 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
+}