From owner-svn-ports-head@FreeBSD.ORG Wed Apr 9 00:28:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F84C474; Wed, 9 Apr 2014 00:28:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFB8B1C33; Wed, 9 Apr 2014 00:28:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s390S8LP021023; Wed, 9 Apr 2014 00:28:08 GMT (envelope-from nivit@svn.freebsd.org) Received: (from nivit@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s390S7Hx021015; Wed, 9 Apr 2014 00:28:07 GMT (envelope-from nivit@svn.freebsd.org) Message-Id: <201404090028.s390S7Hx021015@svn.freebsd.org> From: Nicola Vitale Date: Wed, 9 Apr 2014 00:28:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350653 - in head/multimedia: . mps-youtube X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2014 00:28:09 -0000 Author: nivit Date: Wed Apr 9 00:28:07 2014 New Revision: 350653 URL: http://svnweb.freebsd.org/changeset/ports/350653 QAT: https://qat.redports.org/buildarchive/r350653/ Log: Terminal based YouTube jukebox with playlist management. Main features: - Search and play audio/video from YouTube - Search and import YouTube playlists - Create and save local playlists - Download audio/video - Works with Python 2.7+ and 3.x - Works with Windows, Linux and Mac OS X - Requires mplayer or mpv WWW: http://github.com/np1/mps-youtube Added: head/multimedia/mps-youtube/ head/multimedia/mps-youtube/Makefile (contents, props changed) head/multimedia/mps-youtube/distinfo (contents, props changed) head/multimedia/mps-youtube/pkg-descr (contents, props changed) head/multimedia/mps-youtube/pkg-message (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Wed Apr 9 00:27:11 2014 (r350652) +++ head/multimedia/Makefile Wed Apr 9 00:28:07 2014 (r350653) @@ -236,6 +236,7 @@ SUBDIR += mplayer2 SUBDIR += mplayerxp SUBDIR += mplex + SUBDIR += mps-youtube SUBDIR += mpv SUBDIR += msdl SUBDIR += mxflib Added: head/multimedia/mps-youtube/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mps-youtube/Makefile Wed Apr 9 00:28:07 2014 (r350653) @@ -0,0 +1,38 @@ +# Created by: Nicola Vitale +# $FreeBSD$ + +PORTNAME= mps-youtube +PORTVERSION= 0.01.44 +#PORTREVISION= 0 +CATEGORIES= multimedia +MASTER_SITES= CHEESESHOP + +MAINTAINER= nivit@FreeBSD.org +COMMENT= Terminal based YouTube jukebox with playlist management + +LICENSE= GPLv3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pafy>=0.3.41:${PORTSDIR}/www/py-pafy + +OPTIONS_DEFAULT= MPLAYER +OPTIONS_RADIO= PLAYER +OPTIONS_RADIO_PLAYER= MPLAYER MPV + +MPV_DESC= Mpv media player support + +# This port installs the following files in shared dirs +# PLIST_FILES= bin/mpsyt +PYDISTUTILS_AUTOPLIST= yes + +USE_PYDISTUTILS= yes +USE_PYTHON= yes + +.include + +.if ${PORT_OPTIONS:MMPLAYER} +RUN_DEPENDS+= mplayer:${PORTSDIR}/multimedia/mplayer +.elif ${PORT_OPTIONS:MMPV} +RUN_DEPENDS+= mpv:${PORTSDIR}/multimedia/mpv +.endif + +.include Added: head/multimedia/mps-youtube/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mps-youtube/distinfo Wed Apr 9 00:28:07 2014 (r350653) @@ -0,0 +1,2 @@ +SHA256 (mps-youtube-0.01.44.tar.gz) = c1d15b81a64c3ad9e4609efb7b37be4815cd36f2ad321cac0e1276ec4f873e87 +SIZE (mps-youtube-0.01.44.tar.gz) = 32753 Added: head/multimedia/mps-youtube/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mps-youtube/pkg-descr Wed Apr 9 00:28:07 2014 (r350653) @@ -0,0 +1,13 @@ +Terminal based YouTube jukebox with playlist management. + +Main features: + + - Search and play audio/video from YouTube + - Search and import YouTube playlists + - Create and save local playlists + - Download audio/video + - Works with Python 2.7+ and 3.x + - Works with Windows, Linux and Mac OS X + - Requires mplayer or mpv + +WWW: http://github.com/np1/mps-youtube Added: head/multimedia/mps-youtube/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mps-youtube/pkg-message Wed Apr 9 00:28:07 2014 (r350653) @@ -0,0 +1,7 @@ +******************************************************************************** + + Note that to see videos you have to enable the relative option in the program + + set video_option True + +********************************************************************************