--- /dev/null
+# ChangeLog for dev-python/pgp-mime
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+*pgp-mime-9999 (21 Mar 2012)
+ 21 Mar 2012; W. Trevor King <wking@drexel.edu> pgp-mime-9999.ebuild:
+ - Created ebuild suite for pgp-mime.
+ - 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 pgp-mime-9999.ebuild 871 RMD160 d203505ea7809e88e3b3f838bf1c91845dad8723 SHA1 45de36acbc0622aa367973c70ea8ea6951af4d50 SHA256 8d4ba8aaa84d66b50d8faef89756a46e9c730fe48f1a192ebb1152bfd8a73596
+MISC ChangeLog 675 RMD160 deb2f8c7fec7db91746bfc5ea3d372e60812013c SHA1 b0629a662d6215450c163374ac725a52f34c012e SHA256 7e166064deabe29bd27dc452fed3d4c8b662681f3c3ec72fdfb7402da8f02b41
+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-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="4"
+PYTHON_DEPEND="3:3.2"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="2.* 3.[01]"
+
+inherit eutils distutils
+
+if [[ ${PV} == "9999" ]] ; then
+ inherit git-2
+ EGIT_BRANCH="master"
+ EGIT_REPO_URI="git://tremily.us/${PN}.git"
+ SRC_URI=""
+else
+ SRC_URI="http://git.tremily.us/?p=${PN}.git;a=snapshot;h=v${PV};sf=tgz"
+fi
+
+DESCRIPTION="Python tools for dealing with Pretty Good Privacy (PGP) and email."
+HOMEPAGE="http://blog.tremily.us/posts/${PN}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND="app-crypt/gnupg"
+DEPEND="${RDEPEND}
+ test? ( dev-python/nose )"
+
+src_unpack() {
+ if [[ ${PV} == "9999" ]] ; then
+ git-2_src_unpack
+ else
+ unpack ${A}
+ fi
+ cd "${S}"
+}
+
+src_install() {
+ distutils_src_install
+ dodoc README
+}