Received: by mail.netbsd.org (Postfix, from userid 605) id AC1CE85014; Mon, 30 Apr 2018 05:39:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AEC2F85009 for ; Mon, 30 Apr 2018 05:39:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id S2Pyc3PcH5C1 for ; Mon, 30 Apr 2018 05:39:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 9EB7784CCE for ; Mon, 30 Apr 2018 05:39:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8BF87FBEC; Mon, 30 Apr 2018 05:39:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1525066789250770" MIME-Version: 1.0 Date: Mon, 30 Apr 2018 05:39:49 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/graphics/feh To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20180430053949.8BF87FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1525066789250770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Mon Apr 30 05:39:49 UTC 2018 Modified Files: pkgsrc/graphics/feh: Makefile distinfo Log Message: Update to 2.25.1 Changelog: wed, 07 Mar 2018 17:49:52 +0100 Daniel Friesel * Release v2.25.1 * Fix compilation issues when using CFLAGS=-m64 on some gcc versions * Re-render current image when toggle_fixed_geometry is input Sun, 04 Mar 2018 08:53:50 +0100 Daniel Friesel * Release v2.25 * Add --version-sort option to enable natural sorting of file and directory names. This requires a libc with strverscmp support, which is a non-POSIX GNU extension. Use the new build flag `verscmp=0` to disable this feature on systems which do not ship strverscmp (patch by ulteq) * Allow arbitrary X11 colors as -B/--image-bg argument (patch by ulteq) * Improve --image-bg support and transparency handling in --bg-* mode * Respect --geometry settings in --bg-fill mode * Add keybinding toggle_auto_zoom (default "Z") to toggle --auto-zoom * Fix filelists specified by -f/--filelist not being reloaded when using --reload Mon, 26 Feb 2018 21:41:38 +0100 Daniel Friesel * Release v2.24 * Improve performance when using --{max,min}-dimension in slideshow mode (patch by ulteq) * Fix crash when using %m format specifier in slideshow mode (introduced in feh 2.23.1) Mon, 12 Feb 2018 22:11:55 +0100 Daniel Friesel * Release v2.23.2 * Fix support for nested quotes in .confeg/feh/themes Wed, 31 Jan 2018 17:38:25 +0100 Daniel Friesel * Release v2.23.1 * The Makefile no longer honors CPPFLAGS and instead consistently uses CFLAGS for user-provided include paths * Fix %u format specifier in multiwindow and list modes (patch by ulteq) * Minor performance improvements (patches by ulteq) * Stability improvements when using --magick-timeout (patch by ulteq) Thu, 28 Dec 2017 19:26:29 +0100 Daniel Friesel * Release v2.23 * Fix broken thumbnail/index windows when using --scale-down * Use Imlib2 in-memory image cache (default cache size: 4MiB). This allows for significant performance improvements especially in small slideshows * Add --cache-size option to set Imlib2 image cache size To generate a diff of this commit: cvs rdiff -u -r1.90 -r1.91 pkgsrc/graphics/feh/Makefile cvs rdiff -u -r1.48 -r1.49 pkgsrc/graphics/feh/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1525066789250770 Content-Disposition: inline Content-Length: 2071 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/feh/Makefile diff -u pkgsrc/graphics/feh/Makefile:1.90 pkgsrc/graphics/feh/Makefile:1.91 --- pkgsrc/graphics/feh/Makefile:1.90 Sun Apr 29 21:31:43 2018 +++ pkgsrc/graphics/feh/Makefile Mon Apr 30 05:39:49 2018 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.90 2018/04/29 21:31:43 adam Exp $ +# $NetBSD: Makefile,v 1.91 2018/04/30 05:39:49 ryoon Exp $ -DISTNAME= feh-2.22.2 -PKGREVISION= 2 +DISTNAME= feh-2.25.1 CATEGORIES= graphics MASTER_SITES= https://feh.finalrewind.org/ EXTRACT_SUFX= .tar.bz2 @@ -15,6 +14,13 @@ USE_LANGUAGES= c99 USE_TOOLS+= gmake +# for alphasort(3) +CFLAGS.NetBSD+= -D_NETBSD_SOURCE +# for undefined reference error from strverscmp(3) +.include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "NetBSD" +BUILD_MAKE_FLAGS+= verscmp=0 +.endif LDFLAGS.SunOS+= -lnsl -lsocket BUILDLINK_DEPMETHOD.libXt?= build Index: pkgsrc/graphics/feh/distinfo diff -u pkgsrc/graphics/feh/distinfo:1.48 pkgsrc/graphics/feh/distinfo:1.49 --- pkgsrc/graphics/feh/distinfo:1.48 Wed Nov 15 11:58:03 2017 +++ pkgsrc/graphics/feh/distinfo Mon Apr 30 05:39:49 2018 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.48 2017/11/15 11:58:03 szptvlfn Exp $ +$NetBSD: distinfo,v 1.49 2018/04/30 05:39:49 ryoon Exp $ -SHA1 (feh-2.22.2.tar.bz2) = 2aa565288f96d5227b2f93a19f79ee36b356cb77 -RMD160 (feh-2.22.2.tar.bz2) = 68e1d12c6006d8c4f8197a6b5832a0ed561f16ed -SHA512 (feh-2.22.2.tar.bz2) = 85c5f779fecb2be7457fed0675f25860ed4f41db9ecd1fdb8d4b1e553a7a337d5af243aafbd3fae4ac42fc943d207a264756d92cd15c62e95cec1f28fde46219 -Size (feh-2.22.2.tar.bz2) = 2129840 bytes +SHA1 (feh-2.25.1.tar.bz2) = eede4807bc54560809e7e18ddaa974ddeeeb156e +RMD160 (feh-2.25.1.tar.bz2) = 612b916db17f9210a725d6c2e90c6332bded9e87 +SHA512 (feh-2.25.1.tar.bz2) = a821d46901d4cf59bb09b911f28c6ab26fbd0ee9784b50fbacfb6cf23483da5d29ebbb4cc53b23289181bb3ba0dc9893a3f39a90b3420d0bd98d740d5583fc3e +Size (feh-2.25.1.tar.bz2) = 2131624 bytes SHA1 (patch-config.mk) = af7990e42c4c0a351c0d40eeb8221cd619ef72fb SHA1 (patch-src_imlib_c) = 925d2536b69f99acc949cb6bd67422d001335492 --_----------=_1525066789250770--