From: W. Trevor King Date: Fri, 29 Jul 2011 13:46:06 +0000 (-0400) Subject: Add timebook package. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8ec48858ec5f8a33d6c95a3116674aae043a29b3;p=wtk-overlay.git Add timebook package. --- 8ec48858ec5f8a33d6c95a3116674aae043a29b3 diff --git a/ChangeLog b/ChangeLog new file mode 100644 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 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 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 index 0000000..d124928 --- /dev/null +++ b/metadata.xml @@ -0,0 +1,9 @@ + + + + + + wking@drexel.edu + W. Trevor King + + diff --git a/timebook-9999.ebuild b/timebook-9999.ebuild new file mode 100644 index 0000000..acaed85 --- /dev/null +++ b/timebook-9999.ebuild @@ -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 +}