--- /dev/null
+# ChangeLog for dev-python/geopy
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*geopy-9999 (18 May 2011)
+ 18 May 2011; W. Trevor King <wking@drexel.edu> ChangeLog, metadata.xml, geopy-9999.ebuild :
+ - Created ebuild suite for geopy.
+ - 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 geopy-9999.ebuild 582 RMD160 be0de3f135ff0a7d23c583f9b0d8ad58d4c32950 SHA1 b6ad931d2108d7b0ffbe429d9485b9694f918c6a SHA256 c75b11809ca781f2396de9ac33cb9b1adbb6f7b66a338c5a5b5523de02bfea32
+MISC ChangeLog 652 RMD160 29c4bc0c0556154a27d69a9f54d0034a17cd85d0 SHA1 564811cd8313e968edb8068e545f8adebed61d86 SHA256 da44fffc8827a037be9bb989d2f1b47d30e6b1078e95cc6bdd5f2219e45d2b81
+MISC metadata.xml 247 RMD160 6735f3a5dd2d7a2b70589d1693f35d54291b7147 SHA1 c015969fe50967340dd050a44cb9f8a30b5e34a5 SHA256 9e65060e5f9d0a50d28c7a69d9c27fed6c3037fdd3e420cc276627fde2794f72
--- /dev/null
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="3"
+
+inherit eutils distutils
+
+if [[ ${PV} == "9999" ]] ; then
+ inherit subversion
+ ESVN_REPO_URI="http://${PN}.googlecode.com/svn/trunk/"
+ SRC_URI=""
+else
+ SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
+fi
+
+DESCRIPTION="A Geocoding Toolbox for Python"
+HOMEPAGE="http://www.geopy.org/"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE="test"
+
+src_unpack() {
+ if [[ ${PV} == "9999" ]] ; then
+ subversion_src_unpack
+ else
+ unpack ${A}
+ fi
+ cd "${S}"
+}
--- /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>