From owner-svn-ports-head@FreeBSD.ORG Wed Apr 9 00:26:02 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 4872E23E; Wed, 9 Apr 2014 00:26:02 +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 291A21C1A; Wed, 9 Apr 2014 00:26:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s390Q1M4020514; Wed, 9 Apr 2014 00:26:01 GMT (envelope-from nivit@svn.freebsd.org) Received: (from nivit@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s390Q1aw020508; Wed, 9 Apr 2014 00:26:01 GMT (envelope-from nivit@svn.freebsd.org) Message-Id: <201404090026.s390Q1aw020508@svn.freebsd.org> From: Nicola Vitale Date: Wed, 9 Apr 2014 00:26:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350651 - in head/audio: . mps 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:26:02 -0000 Author: nivit Date: Wed Apr 9 00:26:00 2014 New Revision: 350651 URL: http://svnweb.freebsd.org/changeset/ports/350651 QAT: https://qat.redports.org/buildarchive/r350651/ Log: Terminal based MP3 search, playback and download. - Search and stream music - Create playlists - Download music - Works with Python 2.7 and 3.x - Works with Windows, Linux and Mac OS X - No Python dependencies - Requires mplayer or mpv WWW: http://github.com/np1/mps/ Added: head/audio/mps/ head/audio/mps/Makefile (contents, props changed) head/audio/mps/distinfo (contents, props changed) head/audio/mps/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Tue Apr 8 23:34:06 2014 (r350650) +++ head/audio/Makefile Wed Apr 9 00:26:00 2014 (r350651) @@ -489,6 +489,7 @@ SUBDIR += mpg123.el SUBDIR += mpg321 SUBDIR += mpiosh + SUBDIR += mps SUBDIR += msilbc SUBDIR += muine SUBDIR += mumble Added: head/audio/mps/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/mps/Makefile Wed Apr 9 00:26:00 2014 (r350651) @@ -0,0 +1,36 @@ +# Created by: Nicola Vitale +# $FreeBSD$ + +PORTNAME= mps +PORTVERSION= 0.20.06 +#PORTREVISION= 0 +CATEGORIES= audio +MASTER_SITES= CHEESESHOP + +MAINTAINER= nivit@FreeBSD.org +COMMENT= Terminal based MP3 search, playback and download + +LICENSE= GPLv3 + +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/mps +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/audio/mps/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/mps/distinfo Wed Apr 9 00:26:00 2014 (r350651) @@ -0,0 +1,2 @@ +SHA256 (mps-0.20.06.tar.gz) = 3e6ec3b924af484d13d3c7f5ed5aa7003af53121a205ff6e69d7f10e8cd49201 +SIZE (mps-0.20.06.tar.gz) = 21080 Added: head/audio/mps/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/mps/pkg-descr Wed Apr 9 00:26:00 2014 (r350651) @@ -0,0 +1,11 @@ +Terminal based MP3 search, playback and download. + + - Search and stream music + - Create playlists + - Download music + - Works with Python 2.7 and 3.x + - Works with Windows, Linux and Mac OS X + - No Python dependencies + - Requires mplayer or mpv + +WWW: http://github.com/np1/mps/