Received: by mail.netbsd.org (Postfix, from userid 605) id E8C4585649; Sun, 18 Jun 2017 23:03:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7BC4B84DF7 for ; Sun, 18 Jun 2017 23:03:30 +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 u-dZELKnwXNd for ; Sun, 18 Jun 2017 23:03:29 +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 9B64A84CE0 for ; Sun, 18 Jun 2017 23:03:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 96C0EFAE8; Sun, 18 Jun 2017 23:03:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149782700917810" MIME-Version: 1.0 Date: Sun, 18 Jun 2017 23:03:29 +0000 From: "Youri Mouton" Subject: CVS commit: pkgsrc/graphics/ristretto To: pkgsrc-changes@NetBSD.org Reply-To: youri@netbsd.org X-Mailer: log_accum Message-Id: <20170618230329.96C0EFAE8@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. --_----------=_149782700917810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: youri Date: Sun Jun 18 23:03:29 UTC 2017 Modified Files: pkgsrc/graphics/ristretto: Makefile PLIST distinfo Log Message: Update ristretto to 0.8.2: 0.8.2 ===== - Implement sorting by file type (Bug #12749) - Detect image type by its mime type instead of file extension (ligmagic is used) (Bugs #11680, 12499) - Allow images to be flipped vertically and horizontally (Bug #13313) - Fix memory leaks * Translation updates: Catalan (ca), Czech (cs), Danish (da), Deutsch (de), English (Australia) (en_AU), Spanish (es), French (fr), Hebrew (he), Croatian (hr), Italian (it), Japanese (ja), Kazakh (kk), Korean (ko), Lithuanian (lt), Malay (ms), Norwegian Bokm?l (nb), Polish (pl), Portuguese (pt), Portuguese (Brazilian) (pt_BR), Russian (ru), Slovak (sk), Swedish (sv), Ukrainian (uk), Chinese (China) (zh_CN), Chinese (Taiwan) (zh_TW). 0.8.1 ===== - Prepare for gtk3 migration: Do not include individual headers; Replace GDK_ with GDK_KEY_; Use gtk_widget_get_allocation; Use gtk_widget_get/set_window; Use gtk_widget_get/set_style; Do not use GTK_WIDGET_* macros; Use accessor functions instead of direct access; Do not use deprecated symbols; Do not use deprecated GTK_STOCK_*; Use cairo for drawing; Do not use GDK_DISPLAY() - Check if file name is a valid utf8 string to avoid crashes (Bug #12445) - Fix SEGFAULT when pressing Delete without shown image (Bug #12860) - Fix memory leak in thumbnailer if image file not found (Bug #12034) - Prevent from using garbage values when pixbuf==NULL - Fix NULL pointer dereference - Remove dead code; found by Coverity - Fix possible NULL pointer dereference; found by Coverity - Added option to "not ask again for this session" when sending files to the trash. Image deletions still require confirmation. - Replaced "GTK_WIDGET(window)->window" with more future compatible "gtk_widget_get_window(GTK_WIDGET(window))" - ESC-key now quits Ristretto, or pauses a running slideshow - Remember last location in save-copy dialog - Use default filename in save-copy dialog - Disable save-copy dialog if no image is loaded - Fix various memory leaks - Appdata fails validation (Bug #11622) - Fix icon installation (Bug #11614) * Translation updates: Arabic (ar), Bulgarian (bg), Catalan (ca), Czech (cs), Danish (da), German (de), Greek (el), English (Australia) (en_AU), Spanish (es), French (fr), Hebrew (he), Hungarian (hu), Icelandic (is), Italian (it), Japanese (ja), Kazakh (kk), Korean (ko), Lithuanian (lt), Malay (ms), Norwegian Bokm?l (nb), Dutch (nl), Polish (pl), Portuguese (pt), Portuguese (Brazilian) (pt_BR), Romanian (ro), Russian (ru), Slovak (sk), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk), Chinese (China) (zh_CN), Chinese (Taiwan) (zh_TW). To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/graphics/ristretto/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/graphics/ristretto/PLIST cvs rdiff -u -r1.3 -r1.4 pkgsrc/graphics/ristretto/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149782700917810 Content-Disposition: inline Content-Length: 2744 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/ristretto/Makefile diff -u pkgsrc/graphics/ristretto/Makefile:1.38 pkgsrc/graphics/ristretto/Makefile:1.39 --- pkgsrc/graphics/ristretto/Makefile:1.38 Sun Feb 12 06:25:31 2017 +++ pkgsrc/graphics/ristretto/Makefile Sun Jun 18 23:03:29 2017 @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.38 2017/02/12 06:25:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.39 2017/06/18 23:03:29 youri Exp $ # -DISTNAME= ristretto-0.8.0 +DISTNAME= ristretto-0.8.2 EXTRACT_SUFX= .tar.bz2 -PKGREVISION= 6 CATEGORIES= graphics MASTER_SITES= http://archive.xfce.org/src/apps/ristretto/0.8/ Index: pkgsrc/graphics/ristretto/PLIST diff -u pkgsrc/graphics/ristretto/PLIST:1.2 pkgsrc/graphics/ristretto/PLIST:1.3 --- pkgsrc/graphics/ristretto/PLIST:1.2 Tue Apr 21 08:56:38 2015 +++ pkgsrc/graphics/ristretto/PLIST Sun Jun 18 23:03:29 2017 @@ -1,7 +1,8 @@ -@comment $NetBSD: PLIST,v 1.2 2015/04/21 08:56:38 jperkin Exp $ +@comment $NetBSD: PLIST,v 1.3 2017/06/18 23:03:29 youri Exp $ bin/ristretto share/appdata/ristretto.appdata.xml share/applications/ristretto.desktop +share/icons/hicolor/128x128/apps/ristretto.png share/icons/hicolor/16x16/apps/ristretto.png share/icons/hicolor/48x48/apps/ristretto.png share/icons/hicolor/scalable/apps/ristretto.svg @@ -20,6 +21,7 @@ share/locale/eu/LC_MESSAGES/ristretto.mo share/locale/fi/LC_MESSAGES/ristretto.mo share/locale/fr/LC_MESSAGES/ristretto.mo share/locale/gl/LC_MESSAGES/ristretto.mo +share/locale/he/LC_MESSAGES/ristretto.mo share/locale/hr/LC_MESSAGES/ristretto.mo share/locale/hu/LC_MESSAGES/ristretto.mo share/locale/id/LC_MESSAGES/ristretto.mo Index: pkgsrc/graphics/ristretto/distinfo diff -u pkgsrc/graphics/ristretto/distinfo:1.3 pkgsrc/graphics/ristretto/distinfo:1.4 --- pkgsrc/graphics/ristretto/distinfo:1.3 Tue Nov 3 21:34:18 2015 +++ pkgsrc/graphics/ristretto/distinfo Sun Jun 18 23:03:29 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2015/11/03 21:34:18 agc Exp $ +$NetBSD: distinfo,v 1.4 2017/06/18 23:03:29 youri Exp $ -SHA1 (ristretto-0.8.0.tar.bz2) = 0f780cd0b3270e258315a737e4bbf332806f14dc -RMD160 (ristretto-0.8.0.tar.bz2) = c883265fee58a05ed3810d8a08a28e23e68029b9 -SHA512 (ristretto-0.8.0.tar.bz2) = 067d3e7b5ec4fe3537cc796b94e8b999fc99efdb58c52a2a71160405626a3784caa877724e756b363012dce4719ee534f4ce0c92f2f6f2adaf937da8d5abab99 -Size (ristretto-0.8.0.tar.bz2) = 541473 bytes +SHA1 (ristretto-0.8.2.tar.bz2) = 92dc94e17c26d71430441f9127156b2ec645af63 +RMD160 (ristretto-0.8.2.tar.bz2) = 7ed500c0116383d02ae48e9996bc7e4fea34fc43 +SHA512 (ristretto-0.8.2.tar.bz2) = bceef420ebb6e5ab89f339cb4d173bbdd3abc09df5f7dd4551e5c8484e226af6a4ef7b131888926027bae901fd05278cf29de296588723142bd6d0bd8afc312e +Size (ristretto-0.8.2.tar.bz2) = 559444 bytes --_----------=_149782700917810--