--- /dev/null
+# ChangeLog for dev-python/h5config
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+*h5config-9999 (28 Jul 2011)
+ 28 Jul 2011; W. Trevor King <wking@drexel.edu> ChangeLog, metadata.xml, h5config-9999.ebuild :
+ - Created ebuild suite for h5config.
+ - 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 h5config-9999.ebuild 921 RMD160 c792b6cbc8c9f9f4f0ed7b95bf2d8aa55a2436ba SHA1 c654ee2ac329d660017c8ac8a2ba171204c62fa4 SHA256 5e26b57852c440a50e7dccd2c85f2aa976fb49514ed052aff8c50528518b5e01
+MISC ChangeLog 701 RMD160 495d8fc9bed806f334d9364f1c6923e0c8493255 SHA1 0f5af06a41fb6e05c69d6b7c7e28aa072c569729 SHA256 f354685d2dd982b12096432841617d4640842137a3730ecacf6ad589f897e8ab
+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"
+PYTHON_DEPEND="2:2.7"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
+
+inherit eutils distutils
+
+if [[ ${PV} == "9999" ]] ; then
+ inherit git
+ EGIT_REPO_URI="http://physics.drexel.edu/~wking/code/git/${PN}.git"
+ SRC_URI=""
+else
+ SRC_URI="http://www.physics.drexel.edu/~wking/code/got/gitweb.cgi?p=${PN}.git;a=snapshot;h=v${PV};sf=tgz"
+fi
+
+DESCRIPTION="Conveniently save and load config-options from HDF5 and YAML files."
+HOMEPAGE="http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/${PN}/"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE="modbus serial"
+
+RDEPEND="dev-python/h5py
+ dev-python/h5py"
+DEPEND="${RDEPEND}"
+
+src_unpack() {
+ if [[ ${PV} == "9999" ]] ; then
+ git_src_unpack
+ else
+ unpack ${A}
+ fi
+ cd "${S}"
+}
+
+src_install() {
+ distutils_src_install
+ dodoc README
+}
--- /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>