mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-misc/youtube-dl: Old.
Package-Manager: portage-2.3.0
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
DIST youtube-dl-2016.01.01.tar.gz 1874602 SHA256 732f37c99d71b4239d72d61dd32214b5a5a618671fb0629c8f8deb28209a172c SHA512 fdb022bed426250e5ee1c2bcc1354dd195c0f9793ca479ca8ca4cfe2f71e07ba100b0dbcda2fb9f310308ab130587d06b16a6a86f9036f0d196b317d2e5b5e92 WHIRLPOOL 152e709ba15264c35a89644ea0d4793bb47c82b317e54043ccfff72e40bdf95e42d76605e801233632d3863537a945cfb9ecc2f75245171b8de31b51ce6af801
|
||||
DIST youtube-dl-2016.08.22.tar.gz 2336310 SHA256 966bd3cac77e43ded412fa965e785763933297f001fe289f509fc6acdd0f6fd1 SHA512 88e7715e7f1438cc02eba551f15646fc1ff831091fefc3ddb95a447c848052312f84a1604d622bf78060aa15f30f9b015a5459feaa5d65a1dcc0ab916842e194 WHIRLPOOL a59aa08427123032bf175b4a7d83cd57f79cc0da0ac55db3462fbbcd2c51f7ff07aa46e07b98f7645064f846ef928f0efc2cbb6aff56b18e0601195f0b8f34da
|
||||
DIST youtube-dl-2016.08.24.1.tar.gz 2337744 SHA256 d8ca8fb4dd2b3f90f4db5be44046ce18392dcadee40d3b8e7164cf4552ec99c5 SHA512 dca69704faabc41135f04b8fd943b6234ddae947aa40a6fea7a9a2b881b8f099451bb80afdddb8403fea7d9f785e66e7fbcc8b15fa3a160349b020672cb6973d WHIRLPOOL 9c8c9ecf1393a301c2f8d4433f4c30143f7c5e28c32c205062aed1b56c7bb01abdb8e03f276034b0befdf5d510c7d7ea57310b16bc53e0e38df2a3a0c66b3456
|
||||
DIST youtube-dl-2016.08.28.tar.gz 2347325 SHA256 520d913129ef03fb62c3f1a430db257c962da61b534caccbdd3a0b01e7a96487 SHA512 4f19b48cd1a5b55a0f248f0e3165a08118e4f76d08acb55ac6c3200632a22511bb3f09235bb8483302a4ad7a7c86a18abc24e5278d06afcb506fc0d5474b95f5 WHIRLPOOL db50b75f7e95a141a2ae8f1d3a767b21a848fb8483adf3d0452a07bffd4a0f419decd16948a7d3f69f81ce67332642a5a988141c6c93eb626409157540bd18b4
|
||||
|
||||
@@ -1,94 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=(python{2_7,3_3,3_4,3_5})
|
||||
inherit bash-completion-r1 distutils-r1 eutils
|
||||
|
||||
DESCRIPTION="Download videos from YouTube.com (and more sites...)"
|
||||
HOMEPAGE="https://rg3.github.com/youtube-dl/"
|
||||
SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="public-domain"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
|
||||
IUSE="offensive test"
|
||||
|
||||
DEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? ( dev-python/nose[coverage(+)] )
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}"
|
||||
|
||||
python_prepare_all() {
|
||||
if ! use offensive; then
|
||||
sed -i -e "/__version__/s|'$|-gentoo_no_offensive_sites'|g" \
|
||||
youtube_dl/version.py || die
|
||||
# these have single line import statements
|
||||
local xxx=(
|
||||
alphaporno anysex behindkink camwithher chaturbate drtuber eporner
|
||||
eroprofile extremetube fourtube foxgay goshgay hellporno
|
||||
hentaistigma hornbunny keezmovies lovehomeporn mofosex motherless
|
||||
myvidster porn91 pornhd pornotube pornovoisines pornoxo redtube
|
||||
ruleporn sexu slutload spankbang spankwire sunporno thisav trutube
|
||||
tube8 vporn watchindianporn xbef xnxx xtube xvideos xxxymovies
|
||||
youjizz youporn
|
||||
)
|
||||
# these have multi-line import statements
|
||||
local mxxx=(
|
||||
pornhub xhamster tnaflix
|
||||
)
|
||||
# do single line imports
|
||||
sed -i \
|
||||
-e $( printf '/%s/d;' ${xxx[@]} ) \
|
||||
youtube_dl/extractor/extractors.py \
|
||||
|| die
|
||||
|
||||
# do multiple line imports
|
||||
sed -i \
|
||||
-e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
|
||||
youtube_dl/extractor/extractors.py \
|
||||
|| die
|
||||
|
||||
sed -i \
|
||||
-e $( printf '/%s/d;' ${mxxx[@]} ) \
|
||||
youtube_dl/extractor/generic.py \
|
||||
|| die
|
||||
|
||||
rm \
|
||||
$( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \
|
||||
$( printf 'youtube_dl/extractor/%s.py ' ${mxxx[@]} ) \
|
||||
test/test_age_restriction.py \
|
||||
|| die
|
||||
fi
|
||||
|
||||
epatch_user
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
distutils-r1_src_compile
|
||||
}
|
||||
|
||||
python_test() {
|
||||
emake test
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
dodoc README.txt
|
||||
doman ${PN}.1
|
||||
|
||||
newbashcomp ${PN}.bash-completion ${PN}
|
||||
|
||||
insinto /usr/share/zsh/site-functions
|
||||
newins youtube-dl.zsh _youtube-dl
|
||||
|
||||
insinto /usr/share/fish/completions
|
||||
doins youtube-dl.fish
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
Reference in New Issue
Block a user