From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EDAE71381F3 for ; Wed, 31 Jul 2013 13:10:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 397B8E0AAD; Wed, 31 Jul 2013 13:10:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6C06E0AAD for ; Wed, 31 Jul 2013 13:10:47 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0BF233EBFC for ; Wed, 31 Jul 2013 13:10:46 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2078) id 710CC2171C; Wed, 31 Jul 2013 13:10:45 +0000 (UTC) From: "Jeroen Roovers (jer)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, jer@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-misc/youtube-dl: youtube-dl-2013.07.31.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: youtube-dl-2013.07.31.ebuild ChangeLog X-VCS-Directories: net-misc/youtube-dl X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130731131045.710CC2171C@flycatcher.gentoo.org> Date: Wed, 31 Jul 2013 13:10:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 57b6b899-48cd-4b24-9806-9501e22fe59c X-Archives-Hash: d2252c8888a675c18a4540d6bdaee296 jer 13/07/31 13:10:45 Modified: ChangeLog Added: youtube-dl-2013.07.31.ebuild Log: Version bump. (Portage version: 2.2.0_alpha191/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision Changes Path 1.201 net-misc/youtube-dl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?rev=1.201&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?rev=1.201&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?r1=1.200&r2=1.201 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v retrieving revision 1.200 retrieving revision 1.201 diff -u -r1.200 -r1.201 --- ChangeLog 26 Jul 2013 22:31:51 -0000 1.200 +++ ChangeLog 31 Jul 2013 13:10:45 -0000 1.201 @@ -1,6 +1,11 @@ # ChangeLog for net-misc/youtube-dl # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.200 2013/07/26 22:31:51 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.201 2013/07/31 13:10:45 jer Exp $ + +*youtube-dl-2013.07.31 (31 Jul 2013) + + 31 Jul 2013; Jeroen Roovers +youtube-dl-2013.07.31.ebuild: + Version bump. *youtube-dl-2013.07.25.2 (26 Jul 2013) 1.1 net-misc/youtube-dl/youtube-dl-2013.07.31.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/youtube-dl-2013.07.31.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/youtube-dl-2013.07.31.ebuild?rev=1.1&content-type=text/plain Index: youtube-dl-2013.07.31.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2013.07.31.ebuild,v 1.1 2013/07/31 13:10:45 jer Exp $ EAPI=5 PYTHON_COMPAT=(python{2_6,2_7,3_3}) DISTUTILS_SINGLE_IMPL=true inherit bash-completion-r1 distutils-r1 eutils DESCRIPTION="Download videos from YouTube.com (and mores sites...)" HOMEPAGE="http://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}" src_prepare() { if ! use offensive; then local xxx=( pornotube redtube thisav xhamster xnxx xvideos youjizz youporn ) sed -i -e $( printf '/%s/d;' ${xxx[@]} ) youtube_dl/extractor/__init__.py || die rm $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) || die fi } src_compile() { distutils-r1_src_compile } src_test() { emake test } src_install() { python_domodule youtube_dl dobin bin/${PN} dodoc CHANGELOG README.txt doman ${PN}.1 newbashcomp ${PN}.bash-completion ${PN} python_fix_shebang "${ED}" }