From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:25:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A451C7E7; Tue, 7 Oct 2014 12:25:30 +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 76776865; Tue, 7 Oct 2014 12:25:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CPUgs056492; Tue, 7 Oct 2014 12:25:30 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CPUff056488; Tue, 7 Oct 2014 12:25:30 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071225.s97CPUff056488@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 12:25:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370318 - in head/audio/decibel-audio-player: . files 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.18-1 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: Tue, 07 Oct 2014 12:25:30 -0000 Author: wg Date: Tue Oct 7 12:25:29 2014 New Revision: 370318 URL: https://svnweb.freebsd.org/changeset/ports/370318 QAT: https://qat.redports.org/buildarchive/r370318/ Log: audio/decibel-audio-player: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/audio/decibel-audio-player/files/patch-src__modules__Covers.py (contents, props changed) Modified: head/audio/decibel-audio-player/Makefile Modified: head/audio/decibel-audio-player/Makefile ============================================================================== --- head/audio/decibel-audio-player/Makefile Tue Oct 7 12:23:43 2014 (r370317) +++ head/audio/decibel-audio-player/Makefile Tue Oct 7 12:25:29 2014 (r370318) @@ -3,7 +3,7 @@ PORTNAME= decibel-audio-player PORTVERSION= 1.08 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio multimedia gnome python MASTER_SITES= http://decibel.silent-blade.org/uploads/Main/ @@ -15,7 +15,7 @@ RUN_DEPENDS= py*-dbus>=0.80:${PORTSDIR}/ LICENSE= GPLv2 -USE_PYTHON= yes +USES= python USE_GNOME= pygnome2 pygtk2 USE_GSTREAMER= python good bad USES= gmake gettext desktop-file-utils @@ -33,7 +33,7 @@ EXTRAS_DESC= Extra dependencies for plug AUDIOCD_RUN_DEPENDS= cd-discid>=0.9:${PORTSDIR}/audio/cd-discid \ py*-cddb>=1.4:${PORTSDIR}/audio/py-cddb \ gstreamer-plugins-cdio>=0.10.16:${PORTSDIR}/sysutils/gstreamer-plugins-cdio -EXTRAS_RUN_DEPENDS= py*-imaging>=1.1.6:${PORTSDIR}/graphics/py-imaging \ +EXTRAS_RUN_DEPENDS= py*-pillow>0:${PORTSDIR}/graphics/py-pillow \ py*-notify>=0.1.1:${PORTSDIR}/devel/py-notify FLAC_USE= GSTREAMER=flac MP3_USE= GSTREAMER=mp3 Added: head/audio/decibel-audio-player/files/patch-src__modules__Covers.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/decibel-audio-player/files/patch-src__modules__Covers.py Tue Oct 7 12:25:29 2014 (r370318) @@ -0,0 +1,20 @@ +--- src/modules/Covers.py.orig 2014-10-07 12:26:08 UTC ++++ src/modules/Covers.py +@@ -124,7 +124,7 @@ + + def generateFullSizeCover(self, inFile, outFile, format): + """ Resize inFile if needed, and write it to outFile (outFile and inFile may be equal) """ +- import Image ++ from PIL import Image + + try: + # Open the image +@@ -144,7 +144,7 @@ + + def generateThumbnail(self, inFile, outFile, format): + """ Generate a thumbnail from inFile (e.g., resize it) and write it to outFile (outFile and inFile may be equal) """ +- import Image ++ from PIL import Image + + try: + # Open the image