Received: by mail.netbsd.org (Postfix, from userid 605) id DC9BD84D2A; Fri, 30 Nov 2018 15:20:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C94AC84D24 for ; Fri, 30 Nov 2018 15:20:09 +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 3m1o2HQ8IAOQ for ; Fri, 30 Nov 2018 15:20:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B7C1184CD6 for ; Fri, 30 Nov 2018 15:20:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B10A6FB1F; Fri, 30 Nov 2018 15:20:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1543591208225410" MIME-Version: 1.0 Date: Fri, 30 Nov 2018 15:20:08 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/meld To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20181130152008.B10A6FB1F@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. --_----------=_1543591208225410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Nov 30 15:20:08 UTC 2018 Modified Files: pkgsrc/devel/meld: Makefile PLIST distinfo Log Message: meld: update to 3.19.1. 2018-11-21 meld 3.19.1 ====================== Features: * Support comparing remote files (Kai Willadsen; initial work by Chris Mayo) * Significantly improve folder comparison performance when comparing large trees (Hugo Sena Ribeiro) * Improve folder comparison IO and memory use (Hugo Sena Ribeiro) * Add recursive collapse/expand actions to folder comparisons (Jesus Arroyo) * Add OARS metadata for software management (Nick Richards) * Support file drag-and-drop directly on to textviews (Kai Willadsen) * Refresh the application icon and add a processing pipeline (Kai Willadsen) * Windows build improvements: * Build using msys2 on GNOME Gitlab infrastructure and update to using current GTK+ (Vasily Galkin) * Add simple zip-based Windows build output to pipeline (Vasily Galkin) * Improve Windows logging behaviour (Vasily Galkin) * Help launching now works (Vasily Galkin) * Shortcuts now work in non-English keyboard layouts (via GTK+) * Windows paths are shortened correctly (Kai Willadsen) Fixes: * Next/Previous Change actions correctly account for text filters (Heikki Ketoharju) * Fix blank line ignoring in folder comparisons (Hugo Sena Ribeiro) * Miscellaneous performance improvements (Hugo Sena Ribeiro) * Fix initial focus pane for two-pane comparison (Kai Willadsen) * Handle encoding failures on file load (Kai Willadsen) * Fix surrogate problems in on-save encoding check (Kai Willadsen) * Fix display of some encoding errors in folder comparisons (Kai Willadsen) * Fix Git unpushed commit check for ambiguous filenames (Kai Willadsen) * Fix committing a folder in Git (Kai Willadsen) * Show errors for critical unhandled application failures, such as failed saves (Kai Willadsen) * Work around GTK+ shortcut activation issues; see GNOME/gtk#140 (Kai Willadsen) * Update Up/Down/Delete shortcuts to support numpad (Kai Willadsen) * Fix copy-paste of GtkSourceView-highlighted text into Meld (Kai Willadsen) * Don't open additional blank comparison tabs when using the --diff CLI argument (Kai Willadsen) * Fix installation on Mint (Kai Willadsen) Internal changes: * File comparisons and CLI argument handling now use Gio.File and support URIs (Kai Willadsen; initial work by Chris Mayo) * Many Python 3 deprecation cleanups (Claude Paroz) * Rename icon/desktop/appdata for consistency with appid (Mathieu Bridon) * Flatpak build updates (Mathieu Bridon, Kai Willadsen) * Make XDG application ID match other application IDs (Kai Willadsen) * Multiple pygobject/GTK+ deprecation cleanups (Kai Willadsen) * Python 3.7 support (Kai Willadsen) * PEP8 and style compliance (Jesus Arroyo, Stefan Erichsen) * Bugs fixed: 152, 175, 177, 179, 193, 196, 197, 197, 203, 217, 225, 233, 235, 239 To generate a diff of this commit: cvs rdiff -u -r1.90 -r1.91 pkgsrc/devel/meld/Makefile cvs rdiff -u -r1.30 -r1.31 pkgsrc/devel/meld/PLIST cvs rdiff -u -r1.55 -r1.56 pkgsrc/devel/meld/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1543591208225410 Content-Disposition: inline Content-Length: 4113 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/meld/Makefile diff -u pkgsrc/devel/meld/Makefile:1.90 pkgsrc/devel/meld/Makefile:1.91 --- pkgsrc/devel/meld/Makefile:1.90 Wed Nov 14 22:21:18 2018 +++ pkgsrc/devel/meld/Makefile Fri Nov 30 15:20:08 2018 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.90 2018/11/14 22:21:18 kleink Exp $ +# $NetBSD: Makefile,v 1.91 2018/11/30 15:20:08 wiz Exp $ -DISTNAME= meld-3.19.0 -PKGREVISION= 3 +DISTNAME= meld-3.19.1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNOME:=sources/meld/${PKGVERSION_NOREV:R}/} EXTRACT_SUFX= .tar.xz Index: pkgsrc/devel/meld/PLIST diff -u pkgsrc/devel/meld/PLIST:1.30 pkgsrc/devel/meld/PLIST:1.31 --- pkgsrc/devel/meld/PLIST:1.30 Mon Apr 16 13:15:46 2018 +++ pkgsrc/devel/meld/PLIST Fri Nov 30 15:20:08 2018 @@ -1,9 +1,12 @@ -@comment $NetBSD: PLIST,v 1.30 2018/04/16 13:15:46 wiz Exp $ +@comment $NetBSD: PLIST,v 1.31 2018/11/30 15:20:08 wiz Exp $ bin/meld ${PYSITELIB}/${EGG_FILE} ${PYSITELIB}/meld/__init__.py ${PYSITELIB}/meld/__init__.pyc ${PYSITELIB}/meld/__init__.pyo +${PYSITELIB}/meld/actiongutter.py +${PYSITELIB}/meld/actiongutter.pyc +${PYSITELIB}/meld/actiongutter.pyo ${PYSITELIB}/meld/build_helpers.py ${PYSITELIB}/meld/build_helpers.pyc ${PYSITELIB}/meld/build_helpers.pyo @@ -187,7 +190,7 @@ ${PYSITELIB}/meld/windowstate.py ${PYSITELIB}/meld/windowstate.pyc ${PYSITELIB}/meld/windowstate.pyo man/man1/meld.1 -share/applications/meld.desktop +share/applications/org.gnome.meld.desktop share/doc/${PKGNAME}/COPYING share/doc/${PKGNAME}/NEWS share/glib-2.0/schemas/org.gnome.meld.gschema.xml @@ -207,18 +210,18 @@ share/help/C/meld/resolving-conflicts.pa share/help/C/meld/text-filters.page share/help/C/meld/vc-mode.page share/help/C/meld/vc-supported.page -share/icons/HighContrast/scalable/apps/meld.svg +share/icons/HighContrast/scalable/apps/org.gnome.meld.svg share/icons/hicolor/16x16/actions/meld-change-apply-left.png share/icons/hicolor/16x16/actions/meld-change-apply-right.png share/icons/hicolor/16x16/actions/meld-change-copy.png share/icons/hicolor/16x16/actions/meld-change-delete.png share/icons/hicolor/16x16/apps/meld-version-control.png -share/icons/hicolor/16x16/apps/meld.png -share/icons/hicolor/22x22/apps/meld.png -share/icons/hicolor/32x32/apps/meld.png +share/icons/hicolor/16x16/apps/org.gnome.meld.png +share/icons/hicolor/22x22/apps/org.gnome.meld.png +share/icons/hicolor/32x32/apps/org.gnome.meld.png share/icons/hicolor/48x48/apps/meld-version-control.png -share/icons/hicolor/48x48/apps/meld.png -share/icons/hicolor/scalable/apps/meld.svg +share/icons/hicolor/48x48/apps/org.gnome.meld.png +share/icons/hicolor/scalable/apps/org.gnome.meld.svg share/locale/ar/LC_MESSAGES/meld.mo share/locale/bg/LC_MESSAGES/meld.mo share/locale/bs/LC_MESSAGES/meld.mo @@ -300,5 +303,5 @@ share/meld/ui/shortcuts.ui share/meld/ui/tab-placeholder.ui share/meld/ui/vcview-ui.xml share/meld/ui/vcview.ui -share/metainfo/meld.appdata.xml -share/mime/packages/meld.xml +share/metainfo/org.gnome.meld.appdata.xml +share/mime/packages/org.gnome.meld.xml Index: pkgsrc/devel/meld/distinfo diff -u pkgsrc/devel/meld/distinfo:1.55 pkgsrc/devel/meld/distinfo:1.56 --- pkgsrc/devel/meld/distinfo:1.55 Mon Apr 16 13:15:46 2018 +++ pkgsrc/devel/meld/distinfo Fri Nov 30 15:20:08 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.55 2018/04/16 13:15:46 wiz Exp $ +$NetBSD: distinfo,v 1.56 2018/11/30 15:20:08 wiz Exp $ -SHA1 (meld-3.19.0.tar.xz) = 14e425a276e45518a18f63d9668c50c9b928ddf5 -RMD160 (meld-3.19.0.tar.xz) = 2b93c30f9f1d3b33f915578bb08956c23b18fce6 -SHA512 (meld-3.19.0.tar.xz) = bef48ba0ffd7f93d5fec0a32733d43bb7c17f030d2f941df872bcb92b66fc108f38448ca01a44acdca025dcbedd6068371f25d4ba23ff2558976dff5dae2b40a -Size (meld-3.19.0.tar.xz) = 580636 bytes +SHA1 (meld-3.19.1.tar.xz) = fbc5858eb3799c2ec67dbdd4bb8f2f4fc91d280f +RMD160 (meld-3.19.1.tar.xz) = c3292a086ceac36118fc2d763bba62eaab5b6647 +SHA512 (meld-3.19.1.tar.xz) = e5703ce9c5f7ee65bdd99a4ec0570f669cf79fe66b319b76cfc0d75548e9414bff40ba296a19c8fc510c05fb2190efdb67a8ac6a1711d11773a51e37a170ff69 +Size (meld-3.19.1.tar.xz) = 592640 bytes --_----------=_1543591208225410--