1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00

- Update to 0.7.1

- Shorten COMMENT
This commit is contained in:
Guido Falsi 2013-03-09 00:40:46 +00:00
parent a1967cec55
commit ea98b08df6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=313683
3 changed files with 33 additions and 5 deletions

View File

@ -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@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 \

View File

@ -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

View File

@ -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));