25 lines
553 B
Bash
25 lines
553 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python{2_7,3_6,3_7,3_8,3_9} )
|
|
|
|
inherit distutils-r1
|
|
|
|
MY_PN="exif-py"
|
|
|
|
DESCRIPTION="Easy to use Python module to extract Exif metadata from tiff and jpeg files"
|
|
HOMEPAGE="https://github.com/ianare/exif-py"
|
|
SRC_URI="https://github.com/ianare/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
IUSE=""
|
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
S="${WORKDIR}/${MY_PN}-${PV}"
|