Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 2A1D27A16C for ; Fri, 27 Jan 2017 12:04:10 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8F268855B0; Fri, 27 Jan 2017 12:04:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 068C9855AD for ; Fri, 27 Jan 2017 12:04:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id MnW_-m_Bpmfk for ; Fri, 27 Jan 2017 12:04:08 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6023585573 for ; Fri, 27 Jan 2017 12:04:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 56FA6FBA6; Fri, 27 Jan 2017 12:04:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1485518648111740" MIME-Version: 1.0 Date: Fri, 27 Jan 2017 12:04:08 +0000 From: "Ryosuke Moro" Subject: CVS commit: pkgsrc/graphics/feh To: pkgsrc-changes@NetBSD.org Reply-To: szptvlfn@netbsd.org X-Mailer: log_accum Message-Id: <20170127120408.56FA6FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1485518648111740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: szptvlfn Date: Fri Jan 27 12:04:08 UTC 2017 Modified Files: pkgsrc/graphics/feh: Makefile PLIST distinfo Log Message: Update to 2.18.1 Changes from https://git.finalrewind.org/feh/plain/ChangeLog Sun, 22 Jan 2017 19:11:32 +0100 Daniel Friesel * Release v2.18.1 * Fix image-specific format specifiers not being updated correctly (e.g. %z not displaying the correct zoom value after zooming in / out) Tue, 01 Nov 2016 10:55:04 +0100 Daniel Friesel * Release v2.18 * Move README to README.md * New key binding: ! / zoom_fill (zoom to fill window, may cut off image parts) * Only for builds with exif=1: Disable EXIF-based auto rotation by default, add --auto-rotate option to enable it (Patch by Elliot Wolk) Wed, 31 Aug 2016 20:27:20 +0200 Daniel Friesel * Release v2.17.1 * Fix compilation on systems where HOST_NAME_MAX is not defined, such as FreeBSD (patch by Niclas Zeising) Sun, 28 Aug 2016 21:26:54 +0200 Daniel Friesel * Release v2.17 * Install feh icon (both 48x48 and scalable SVG) to /usr/share/icons when running "make install app=1" * Fix --sort not being respected after the first reload when used in conjunction with --reload * All key actions can now also be bound to a button by specifying them in .config/feh/buttons. However, note that button actions can not be bound to keys. * Rename "menu" key action to "toggle_menu", "prev" to "prev_img" and "next" to "next_img". The old names are still supported, but no longer documented. * feh now also sets the X11 _NET_WM_PID and WM_CLIENT_MACHINE window properties Sun, 31 Jul 2016 16:59:07 +0200 Daniel Friesel * Release v2.16.2 * Also support in-place editing for images loaded via libcurl or imagemagick. Results will not be written back to disk in this case. To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 pkgsrc/graphics/feh/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/graphics/feh/PLIST cvs rdiff -u -r1.39 -r1.40 pkgsrc/graphics/feh/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1485518648111740 Content-Disposition: inline Content-Length: 3164 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.77 pkgsrc/graphics/feh/Makefile:1.78 --- pkgsrc/graphics/feh/Makefile:1.77 Sun Jan 1 16:06:18 2017 +++ pkgsrc/graphics/feh/Makefile Fri Jan 27 12:04:08 2017 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.77 2017/01/01 16:06:18 adam Exp $ +# $NetBSD: Makefile,v 1.78 2017/01/27 12:04:08 szptvlfn Exp $ -DISTNAME= feh-2.16.1 -PKGREVISION= 2 +DISTNAME= feh-2.18.1 CATEGORIES= graphics MASTER_SITES= http://feh.finalrewind.org/ EXTRACT_SUFX= .tar.bz2 @@ -11,8 +10,7 @@ HOMEPAGE= http://feh.finalrewind.org/ COMMENT= Imlib2 based image viewer LICENSE= mit -#GNU_CONFIGURE= YES -#CONFIGURE_ARGS+= --program-transform-name=s,cam,feh_cam, +USE_LANGUAGES= c99 USE_TOOLS+= gmake @@ -21,6 +19,7 @@ LDFLAGS.SunOS+= -lnsl -lsocket BUILDLINK_DEPMETHOD.libXt?= build .include "../../sysutils/desktop-file-utils/desktopdb.mk" +.include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../graphics/imlib2/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" .include "../../www/curl/buildlink3.mk" Index: pkgsrc/graphics/feh/PLIST diff -u pkgsrc/graphics/feh/PLIST:1.11 pkgsrc/graphics/feh/PLIST:1.12 --- pkgsrc/graphics/feh/PLIST:1.11 Sat Sep 27 10:52:38 2014 +++ pkgsrc/graphics/feh/PLIST Fri Jan 27 12:04:08 2017 @@ -1,10 +1,10 @@ -@comment $NetBSD: PLIST,v 1.11 2014/09/27 10:52:38 szptvlfn Exp $ +@comment $NetBSD: PLIST,v 1.12 2017/01/27 12:04:08 szptvlfn Exp $ bin/feh man/man1/feh.1 share/applications/feh.desktop share/doc/feh/AUTHORS share/doc/feh/ChangeLog -share/doc/feh/README +share/doc/feh/README.md share/doc/feh/TODO share/doc/feh/examples/buttons share/doc/feh/examples/find-lowres @@ -21,3 +21,5 @@ share/feh/images/menubg_black.png share/feh/images/menubg_brushed.png share/feh/images/menubg_default.png share/feh/images/menubg_sky.png +share/icons/hicolor/48x48/apps/feh.png +share/icons/hicolor/scalable/apps/feh.svg Index: pkgsrc/graphics/feh/distinfo diff -u pkgsrc/graphics/feh/distinfo:1.39 pkgsrc/graphics/feh/distinfo:1.40 --- pkgsrc/graphics/feh/distinfo:1.39 Sun Jul 3 22:00:16 2016 +++ pkgsrc/graphics/feh/distinfo Fri Jan 27 12:04:08 2017 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.39 2016/07/03 22:00:16 szptvlfn Exp $ +$NetBSD: distinfo,v 1.40 2017/01/27 12:04:08 szptvlfn Exp $ -SHA1 (feh-2.16.1.tar.bz2) = c8a3f44b3ebd0d62e4d38238c8cc2097d818a310 -RMD160 (feh-2.16.1.tar.bz2) = 94eaa31b5a84df2416c4bb8d8af8c6fcace6089a -SHA512 (feh-2.16.1.tar.bz2) = e3163af487d2bfb32e0faa8f6b10fc26a3590aed77014f04967cccc66d6a201dd8960b4ae7fd88aaeeda280ee7e6040be6321337fbe4f8f78119440d89d4b0fe -Size (feh-2.16.1.tar.bz2) = 2125781 bytes +SHA1 (feh-2.18.1.tar.bz2) = d2db9a81fb6b675df198ad13c6cf00b6b3dec63f +RMD160 (feh-2.18.1.tar.bz2) = c3d0e244f1ec0b933b9ef44cb3ed22cae024964b +SHA512 (feh-2.18.1.tar.bz2) = e046d836e94d0d8d3fc26995d997545955c670e19ad0138681952c4b61c94608d31e86b7c72940c45080f8fe65ae2d1fa01d92934e7b58d6e9b175660cbb3289 +Size (feh-2.18.1.tar.bz2) = 2127531 bytes SHA1 (patch-config.mk) = af7990e42c4c0a351c0d40eeb8221cd619ef72fb SHA1 (patch-src_imlib_c) = 925d2536b69f99acc949cb6bd67422d001335492 --_----------=_1485518648111740--