Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 May 2008 00:23:59 +0200 (CEST)
From:      Marcus von Appen <mva@sysfault.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/123915: [Maintainer-update] x11-fm/emelfm2: update to 0.4.1
Message-ID:  <200805222223.m4MMNxJa009637@medusa.sysfault.org>
Resent-Message-ID: <200805222230.m4MMU2dE035277@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         123915
>Category:       ports
>Synopsis:       [Maintainer-update] x11-fm/emelfm2: update to 0.4.1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Thu May 22 22:30:02 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Marcus von Appen
>Release:        FreeBSD 7.0-STABLE i386
>Organization:
>Environment:
System: FreeBSD medusa.sysfault.org 7.0-STABLE FreeBSD 7.0-STABLE #0: Thu Apr 17 19:16:56 CEST 2008
>Description:
- Update to 0.4.1

Removed file(s):
- files/patch-e2_complete__path.c
- files/patch-plugins_e2p_crypt.c

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- emelfm2-0.4.1.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/x11-fm/emelfm2/Makefile /usr/ports/x11-fm/emelfm2.new/Makefile
--- /usr/ports/x11-fm/emelfm2/Makefile	2008-04-04 22:42:06.000000000 +0200
+++ /usr/ports/x11-fm/emelfm2.new/Makefile	2008-05-23 00:19:31.000000000 +0200
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	emelfm2
-PORTVERSION=	0.4
+PORTVERSION=	0.4.1
 CATEGORIES=	x11-fm
 MASTER_SITES=	http://emelfm2.net/rel/
 
diff -ruN --exclude=CVS /usr/ports/x11-fm/emelfm2/distinfo /usr/ports/x11-fm/emelfm2.new/distinfo
--- /usr/ports/x11-fm/emelfm2/distinfo	2008-04-04 22:42:06.000000000 +0200
+++ /usr/ports/x11-fm/emelfm2.new/distinfo	2008-05-23 00:19:40.000000000 +0200
@@ -1,3 +1,3 @@
-MD5 (emelfm2-0.4.tar.gz) = 0242f340b642d7de2c09ccc8963e3135
-SHA256 (emelfm2-0.4.tar.gz) = 074be06f816460b2467cbad6e54beec39e110940942fc98df6225b7b05c4467c
-SIZE (emelfm2-0.4.tar.gz) = 1143199
+MD5 (emelfm2-0.4.1.tar.gz) = 215d0a872350b4bdb22de940a8f2a4af
+SHA256 (emelfm2-0.4.1.tar.gz) = 074b5003ea0d71699716c7b0a3d16e37f96c77e8df284957ca1112e4d1b455eb
+SIZE (emelfm2-0.4.1.tar.gz) = 1149166
diff -ruN --exclude=CVS /usr/ports/x11-fm/emelfm2/files/patch-e2_complete__path.c /usr/ports/x11-fm/emelfm2.new/files/patch-e2_complete__path.c
--- /usr/ports/x11-fm/emelfm2/files/patch-e2_complete__path.c	2008-04-04 22:42:06.000000000 +0200
+++ /usr/ports/x11-fm/emelfm2.new/files/patch-e2_complete__path.c	1970-01-01 01:00:00.000000000 +0100
@@ -1,11 +0,0 @@
---- src/command/complete/e2_complete__path.c	2008-03-22 03:58:43.000000000 +0100
-+++ src/command/complete/e2_complete__path.c	2008-04-03 15:15:09.000000000 +0200
-@@ -147,7 +147,7 @@
- 	{
- 		gchar *p1, *p2, *localpath;
- 		p1 = g_utf8_next_char (strrchr (word, G_DIR_SEPARATOR));	//the 'real' word to complete
--		p2 = strndup (word, p1 - word);	//prefix for matches
-+		p2 = g_strndup (word, p1 - word);	//prefix for matches
- 		if (word[0] == G_DIR_SEPARATOR)
- 		{	//word is an absolute path string
- 			localpath = F_FILENAME_TO_LOCALE (p2);
diff -ruN --exclude=CVS /usr/ports/x11-fm/emelfm2/files/patch-plugins_e2p_crypt.c /usr/ports/x11-fm/emelfm2.new/files/patch-plugins_e2p_crypt.c
--- /usr/ports/x11-fm/emelfm2/files/patch-plugins_e2p_crypt.c	2008-04-04 22:42:06.000000000 +0200
+++ /usr/ports/x11-fm/emelfm2.new/files/patch-plugins_e2p_crypt.c	1970-01-01 01:00:00.000000000 +0100
@@ -1,20 +0,0 @@
---- plugins/e2p_crypt.c.orig	2007-11-22 22:23:11.000000000 +0100
-+++ plugins/e2p_crypt.c	2008-04-03 15:45:48.000000000 +0200
-@@ -1545,7 +1545,7 @@
- 	{
- 		sep = strchr (execpath, ':');	//ascii scan ok
- 		if (sep != NULL)
--			execpath = strndup (execpath, sep-execpath);
-+			execpath = g_strndup (execpath, sep-execpath);
- 		//FIXME preserve execpath so that later members can be used
- 	}
- #ifdef E2_VFS
-@@ -1849,7 +1849,7 @@
- 		}
- 	}
- 
--	fdatasync (fdesc);
-+	fsync (fdesc);
- 
- 	retval = TRUE;
- cleanup:
--- emelfm2-0.4.1.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200805222223.m4MMNxJa009637>