b140bbf51f
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
39 lines
1.4 KiB
Makefile
39 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.91 2018/11/30 15:20:08 wiz Exp $
|
|
|
|
DISTNAME= meld-3.19.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/meld/${PKGVERSION_NOREV:R}/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= wiz@NetBSD.org
|
|
HOMEPAGE= http://meldmerge.org/
|
|
COMMENT= Visual diff and merge tool (GTK3 version)
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
BUILD_DEPENDS+= itstool-[0-9]*:../../textproc/itstool
|
|
DEPENDS+= ${PYPKGPREFIX}-gobject3>=3.8:../../devel/py-gobject3
|
|
DEPENDS+= gsettings-desktop-schemas-[0-9]*:../../sysutils/gsettings-desktop-schemas
|
|
DEPENDS+= dconf-[0-9]*:../../devel/dconf
|
|
|
|
USE_TOOLS+= intltool msgfmt
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27 # not supported any longer
|
|
|
|
SUBST_CLASSES+= man
|
|
SUBST_FILES.man= setup.py
|
|
SUBST_SED.man+= -e "s,share/man/man1,${PKGMANDIR}/man1,"
|
|
SUBST_STAGE.man= pre-build
|
|
SUBST_MESSAGE.man= Fixing man page installation path.
|
|
|
|
.include "../../graphics/adwaita-icon-theme/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.36.0
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/glib2/schemas.mk"
|
|
BUILDLINK_API_DEPENDS.gtk3+= gtk3+>=3.20
|
|
.include "../../x11/gtk3/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.gtksourceview3+= gtksourceview3>=3.20
|
|
.include "../../x11/gtksourceview3/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|