--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>dolsen@gentoo.org</email>
+ <description>Primary maintainer</description>
+ </maintainer>
+ <upstream>
+ <maintainer>
+ <email>git@marcbrinkmann.de</email>
+ <name>Marc Brinkmann</name>
+ </maintainer>
+ <remote-id type="pypi">shutilwhich</remote-id>
+ <remote-id type="github">mbr/shutilwhich</remote-id>
+ </upstream>
+ <longdescription>
+ shutilwhich will monkey-patch the shutil package, so from that
+ point on you can simply import the which function. On Python
+ 3.3 and above, the module never do anything but return the
+ stdlib shutil.which function.
+ </longdescription>
+</pkgmetadata>
--- /dev/null
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="A copy & paste backport of Python 3.3's shutil.which function"
+HOMEPAGE="https://pypi.python.org/pypi/shutilwhich https://github.com/mbr/shutilwhich"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="PSF-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""