exifread-3.0.0.ebuild 483 B

12345678910111213141516171819202122
  1. # Copyright 2023 Gentoo Authors
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=8
  4. PYTHON_COMPAT=( python3_{10..12} )
  5. inherit distutils-r1
  6. DESCRIPTION="Read Exif metadata from tiff and jpeg files"
  7. HOMEPAGE="https://github.com/ianare/exif-py"
  8. SRC_URI="https://github.com/ianare/exif-py/archive/${PV}.tar.gz -> ${P}.tar.gz"
  9. LICENSE="BSD"
  10. SLOT="0"
  11. KEYWORDS="~amd64 ~arm64 ~mips ~x86"
  12. RESTRICT="mirror"
  13. RDEPEND="${PYTHON_DEPS}"
  14. S="${WORKDIR}/exif-py-${PV}"