net-misc/ytmdl: bump to version 2020.05.14
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Maciej Barć <xgqt@protonmail.com>
This commit is contained in:
parent
eda9fed165
commit
00eef54b7a
@ -1 +1,2 @@
|
|||||||
DIST ytmdl-2020.03.21.tar.gz 4913549 BLAKE2B 890d2d674fda0799df5d7a645338cf1fb9b3e14018b3e6ffe0452c8c20a3c9c8ceed3d244917cfa16ea7cb4b56a58399f40273e2fd9f9f1241bb3d377a38a834 SHA512 d47891efb6d977da05679cc5f0f1a4e12d8e2e60dcd015fd23ac6a61cf37a77f1c2e1e9617491bb05bdabc6d5756d861ff9e6a50b08efd0c8317e1328c4fbc46
|
DIST ytmdl-2020.03.21.tar.gz 4913549 BLAKE2B 890d2d674fda0799df5d7a645338cf1fb9b3e14018b3e6ffe0452c8c20a3c9c8ceed3d244917cfa16ea7cb4b56a58399f40273e2fd9f9f1241bb3d377a38a834 SHA512 d47891efb6d977da05679cc5f0f1a4e12d8e2e60dcd015fd23ac6a61cf37a77f1c2e1e9617491bb05bdabc6d5756d861ff9e6a50b08efd0c8317e1328c4fbc46
|
||||||
|
DIST ytmdl-2020.05.14.tar.gz 350781 BLAKE2B ceaa14bee8805169b4e015a8d2adaca863d0ea75a26b9ab158f05d0f9736326515d33d9202fa9704beb47adcd841c032493bd0bac80acd7b4de1d6f781d0fa9e SHA512 93b43012d7a6c5ac00755f3b748bf6037e314a73ffbe67ff2fc70b6b708e376446103de6f85e4e82984cff321b7c2a99faefa90f3d3c7bd3b01752a69b11fc7f
|
||||||
|
48
net-misc/ytmdl/ytmdl-2020.05.14.ebuild
Normal file
48
net-misc/ytmdl/ytmdl-2020.05.14.ebuild
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
# Copyright 1999-2020 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{6,7} )
|
||||||
|
|
||||||
|
inherit distutils-r1
|
||||||
|
|
||||||
|
DESCRIPTION="A simple app to get songs from youtube in mp3 format"
|
||||||
|
HOMEPAGE="https://github.com/deepjyoti30/ytmdl"
|
||||||
|
|
||||||
|
if [[ "${PV}" == *9999* ]]; then
|
||||||
|
inherit git-r3
|
||||||
|
EGIT_REPO_URI="https://github.com/deepjyoti30/${PN}.git"
|
||||||
|
KEYWORDS=""
|
||||||
|
else
|
||||||
|
SRC_URI="https://github.com/deepjyoti30/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
fi
|
||||||
|
|
||||||
|
RESTRICT="mirror"
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
IUSE=""
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
# Excerpt from https://pypi.org/project/bs4
|
||||||
|
# "The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4.
|
||||||
|
# This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup."
|
||||||
|
# ;-)
|
||||||
|
sed -i 's/bs4/beautifulsoup4/' setup.py
|
||||||
|
distutils-r1_src_prepare
|
||||||
|
}
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
|
||||||
|
dev-python/PySocks[${PYTHON_USEDEP}]
|
||||||
|
dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
|
||||||
|
dev-python/colorama[${PYTHON_USEDEP}]
|
||||||
|
dev-python/ffmpeg-python[${PYTHON_USEDEP}]
|
||||||
|
dev-python/itunespy[${PYTHON_USEDEP}]
|
||||||
|
dev-python/lxml[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pyxdg[${PYTHON_USEDEP}]
|
||||||
|
media-libs/mutagen[${PYTHON_USEDEP}]
|
||||||
|
net-misc/downloader-cli[${PYTHON_USEDEP}]
|
||||||
|
net-misc/youtube-dl[${PYTHON_USEDEP}]
|
||||||
|
"
|
Loading…
Reference in New Issue
Block a user