svn commit: r313683 - in head/audio/abraca: . files

Guido Falsi madpilot at FreeBSD.org
Sat Mar 9 00:40:47 UTC 2013


Author: madpilot
Date: Sat Mar  9 00:40:46 2013
New Revision: 313683
URL: http://svnweb.freebsd.org/changeset/ports/313683

Log:
  - Update to 0.7.1
  - Shorten COMMENT

Added:
  head/audio/abraca/files/patch-src_components_collections_collections_model.vala   (contents, props changed)
Modified:
  head/audio/abraca/Makefile
  head/audio/abraca/distinfo   (contents, props changed)

Modified: head/audio/abraca/Makefile
==============================================================================
--- head/audio/abraca/Makefile	Sat Mar  9 00:39:43 2013	(r313682)
+++ head/audio/abraca/Makefile	Sat Mar  9 00:40:46 2013	(r313683)
@@ -2,13 +2,12 @@
 # $FreeBSD$
 
 PORTNAME=	abraca
-PORTVERSION=	0.7.0
-PORTREVISION=	2
+PORTVERSION=	0.7.1
 CATEGORIES=	audio
 MASTER_SITES=	http://cloud.github.com/downloads/Abraca/Abraca/
 
 MAINTAINER=	madpilot at FreeBSD.org
-COMMENT=	Abraca is a GTK2 client for the XMMS2 music player
+COMMENT=	GTK2 client for the XMMS2 music player
 
 BUILD_DEPENDS=	${LOCALBASE}/bin/valac:${PORTSDIR}/lang/vala
 LIB_DEPENDS=	xmmsclient:${PORTSDIR}/audio/xmms2 \

Modified: head/audio/abraca/distinfo
==============================================================================
--- head/audio/abraca/distinfo	Sat Mar  9 00:39:43 2013	(r313682)
+++ head/audio/abraca/distinfo	Sat Mar  9 00:40:46 2013	(r313683)
@@ -1,2 +1,2 @@
-SHA256 (abraca-0.7.0.tar.gz) = 4004e0aa2ec1e8422d3748e1bacb99d71823d0d5a4226c55771252cc6948ec27
-SIZE (abraca-0.7.0.tar.gz) = 684007
+SHA256 (abraca-0.7.1.tar.gz) = d8e5853f86f180701bc0ebaa1172541b1aab3b07703881519cd3866102977036
+SIZE (abraca-0.7.1.tar.gz) = 684007

Added: head/audio/abraca/files/patch-src_components_collections_collections_model.vala
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/abraca/files/patch-src_components_collections_collections_model.vala	Sat Mar  9 00:40:46 2013	(r313683)
@@ -0,0 +1,29 @@
+--- src/components/collections/collections_model.vala.orig	2012-06-17 19:04:56.000000000 +0200
++++ src/components/collections/collections_model.vala	2013-03-08 16:25:01.542854653 +0100
+@@ -157,7 +157,7 @@
+ 		 */
+ 		public void remove_temporary_playlist ()
+ 		{
+-			remove(_temporary_playlist_iter);
++			remove(ref _temporary_playlist_iter);
+ 			has_temporary_playlist = false;
+ 		}
+ 
+@@ -258,7 +258,7 @@
+ 			}
+ 
+ 			while (iter_children(out child, parent)) {
+-				remove(child);
++				remove(ref child);
+ 			}
+ 
+ 			int pos = iter_n_children(parent);
+@@ -433,7 +433,7 @@
+ 
+ 				get(iter, Column.Name, out current);
+ 				if (name == current) {
+-					remove(iter);
++					remove(ref iter);
+ 					break;
+ 				}
+ 			} while (iter_next(ref iter));


More information about the svn-ports-all mailing list