diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-04-26 11:35:24 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-04-26 11:35:24 +0100 |
commit | 859ebd61d0b85264bcb69f54f8594e0ad338fb25 (patch) | |
tree | 22f002dbaeda64452e0ac55aa253a06cf40fe3f6 /media-video/vidcutter/vidcutter-6.0.0.ebuild | |
parent | a1cce0cf057115e4ebc84dda41080dff01663022 (diff) |
media-video/vidcutter : version bump, add python3.7 COMPAT
Diffstat (limited to 'media-video/vidcutter/vidcutter-6.0.0.ebuild')
-rw-r--r-- | media-video/vidcutter/vidcutter-6.0.0.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/media-video/vidcutter/vidcutter-6.0.0.ebuild b/media-video/vidcutter/vidcutter-6.0.0.ebuild new file mode 100644 index 00000000..f2e2fbfa --- /dev/null +++ b/media-video/vidcutter/vidcutter-6.0.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6,7} ) + +inherit distutils-r1 + +DESCRIPTION="FFmpeg-based simple video cutter & joiner with a modern PyQt5 GUI" +HOMEPAGE="http://vidcutter.ozmartians.com https://github.com/ozmartian/vidcutter" +SRC_URI="https://github.com/ozmartian/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="x86 amd64" +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +DEPEND=" + ${PYTHON_DEPS} + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/PyQt5-5.5[multimedia,${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND} + virtual/ffmpeg[X,encode] + media-video/mediainfo + media-video/mpv[libmpv]" + +src_prepare(){ + sed -i '/pypi/d' ${PN}/__init__.py + eapply_user +} |