diff options
Diffstat (limited to 'editors')
| -rw-r--r-- | editors/gedit-plugins/Makefile | 7 | ||||
| -rw-r--r-- | editors/gedit-plugins/distinfo | 4 | ||||
| -rw-r--r-- | editors/gedit-plugins/files/patch-py-compile | 64 | ||||
| -rw-r--r-- | editors/gedit-plugins/pkg-plist | 18 | ||||
| -rw-r--r-- | editors/gedit/Makefile | 9 | ||||
| -rw-r--r-- | editors/gedit/distinfo | 4 | ||||
| -rw-r--r-- | editors/gedit/pkg-plist | 227 | ||||
| -rw-r--r-- | editors/ghex/Makefile | 6 | ||||
| -rw-r--r-- | editors/ghex/distinfo | 4 | ||||
| -rw-r--r-- | editors/ghex/pkg-plist | 84 |
10 files changed, 265 insertions, 162 deletions
diff --git a/editors/gedit-plugins/Makefile b/editors/gedit-plugins/Makefile index 971c2bd87374..867063495cfe 100644 --- a/editors/gedit-plugins/Makefile +++ b/editors/gedit-plugins/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gedit-plugins -PORTVERSION= 3.16.0 -PORTREVISION= 2 +PORTVERSION= 3.18.0 CATEGORIES= editors gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -12,14 +11,16 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= Plugins for GEdit 3 BUILD_DEPENDS= gedit>=0:${PORTSDIR}/editors/gedit \ + valac:${PORTSDIR}/lang/vala \ itstool:${PORTSDIR}/textproc/itstool LIB_DEPENDS= libpeas-1.0.so:${PORTSDIR}/devel/libpeas \ + libzeitgeist-2.0.so:${PORTSDIR}/sysutils/zeitgeist \ libgit2-glib-1.0.so:${PORTSDIR}/devel/libgit2-glib RUN_DEPENDS= gedit>=0:${PORTSDIR}/editors/gedit PORTSCOUT= limitw:1,even -USES= gettext gmake libtool pathfix pkgconfig \ +USES= gettext gmake gnome libtool pathfix pkgconfig \ python:3 tar:xz USE_GNOME= gtk30 gtksourceview3 intlhack USE_LDCONFIG= yes diff --git a/editors/gedit-plugins/distinfo b/editors/gedit-plugins/distinfo index cf38f6d5faaa..96d7dadb5c67 100644 --- a/editors/gedit-plugins/distinfo +++ b/editors/gedit-plugins/distinfo @@ -1,2 +1,2 @@ -SHA256 (gnome3/gedit-plugins-3.16.0.tar.xz) = b685b84ada8ca04f6aa201e402a0208591be4a37b874595a0a85d0a14b52f191 -SIZE (gnome3/gedit-plugins-3.16.0.tar.xz) = 1280064 +SHA256 (gnome3/gedit-plugins-3.18.0.tar.xz) = e25249c0c2a057827bb4d4755a2359e1f9b4de288e0c4e201c6ef4f0e0e8c580 +SIZE (gnome3/gedit-plugins-3.18.0.tar.xz) = 1366868 diff --git a/editors/gedit-plugins/files/patch-py-compile b/editors/gedit-plugins/files/patch-py-compile new file mode 100644 index 000000000000..e59b69ff5e9c --- /dev/null +++ b/editors/gedit-plugins/files/patch-py-compile @@ -0,0 +1,64 @@ +--- py-compile.orig 2015-09-21 19:37:16.000000000 +0200 ++++ py-compile 2015-09-24 20:14:14.663916000 +0200 +@@ -3,8 +3,7 @@ + + scriptversion=2011-06-08.12; # UTC + +-# Copyright (C) 2000, 2001, 2003, 2004, 2005, 2008, 2009, 2011 Free +-# Software Foundation, Inc. ++# Copyright (C) 2000-2013 Free Software Foundation, Inc. + + # This program is free software; you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by +@@ -37,7 +36,7 @@ + usage_error () + { + echo "$me: $*" >&2 +- echo "Try \`$me --help' for more information." >&2 ++ echo "Try '$me --help' for more information." >&2 + exit 1 + } + +@@ -117,7 +116,7 @@ + fi + + $PYTHON -c " +-import sys, os, py_compile ++import sys, os, py_compile, imp + + files = '''$files''' + +@@ -130,12 +129,19 @@ + continue + sys.stdout.write(file) + sys.stdout.flush() +- py_compile.compile(filepath, filepath + 'c', path) ++ if hasattr(imp, 'get_tag'): ++ py_compile.compile(filepath, imp.cache_from_source(filepath), path) ++ else: ++ py_compile.compile(filepath, filepath + 'c', path) + sys.stdout.write('\n')" || exit $? + + # this will fail for python < 1.5, but that doesn't matter ... + $PYTHON -O -c " +-import sys, os, py_compile ++import sys, os, py_compile, imp ++ ++# pypy does not use .pyo optimization ++if hasattr(sys, 'pypy_translation_info'): ++ sys.exit(0) + + files = '''$files''' + sys.stdout.write('Byte-compiling python modules (optimized versions) ...\n') +@@ -147,7 +153,10 @@ + continue + sys.stdout.write(file) + sys.stdout.flush() +- py_compile.compile(filepath, filepath + 'o', path) ++ if hasattr(imp, 'get_tag'): ++ py_compile.compile(filepath, imp.cache_from_source(filepath, False), path) ++ else: ++ py_compile.compile(filepath, filepath + 'o', path) + sys.stdout.write('\n')" 2>/dev/null || : + + # Local Variables: diff --git a/editors/gedit-plugins/pkg-plist b/editors/gedit-plugins/pkg-plist index 86e0de14e821..801f080dd927 100644 --- a/editors/gedit-plugins/pkg-plist +++ b/editors/gedit-plugins/pkg-plist @@ -88,7 +88,18 @@ lib/gedit/plugins/commander/info.py lib/gedit/plugins/commander/modules.py lib/gedit/plugins/commander/utils.py lib/gedit/plugins/commander/windowactivatable.py +lib/gedit/plugins/dashboard.plugin +lib/gedit/plugins/dashboard/__init__.py +lib/gedit/plugins/dashboard/__pycache__/__init__.cpython-%%PYVER%%.pyc +lib/gedit/plugins/dashboard/__pycache__/__init__.cpython-%%PYVER%%.pyo +lib/gedit/plugins/dashboard/__pycache__/dashboard.cpython-%%PYVER%%.pyc +lib/gedit/plugins/dashboard/__pycache__/dashboard.cpython-%%PYVER%%.pyo +lib/gedit/plugins/dashboard/__pycache__/utils.cpython-%%PYVER%%.pyc +lib/gedit/plugins/dashboard/__pycache__/utils.cpython-%%PYVER%%.pyo +lib/gedit/plugins/dashboard/dashboard.py +lib/gedit/plugins/dashboard/utils.py lib/gedit/plugins/drawspaces.plugin +lib/gedit/plugins/findinfiles.plugin lib/gedit/plugins/git.plugin lib/gedit/plugins/git/__init__.py lib/gedit/plugins/git/__pycache__/__init__.cpython-%%PYVER%%.pyc @@ -116,7 +127,9 @@ lib/gedit/plugins/joinlines.plugin lib/gedit/plugins/joinlines.py lib/gedit/plugins/libbookmarks.so lib/gedit/plugins/libdrawspaces.so +lib/gedit/plugins/libfindinfiles.so lib/gedit/plugins/libwordcompletion.so +lib/gedit/plugins/libzeitgeist.so lib/gedit/plugins/multiedit.plugin lib/gedit/plugins/multiedit/__init__.py lib/gedit/plugins/multiedit/__pycache__/__init__.cpython-%%PYVER%%.pyc @@ -158,6 +171,7 @@ lib/gedit/plugins/textsize/__pycache__/viewactivatable.cpython-%%PYVER%%.%%PYOEX lib/gedit/plugins/textsize/signals.py lib/gedit/plugins/textsize/viewactivatable.py lib/gedit/plugins/wordcompletion.plugin +lib/gedit/plugins/zeitgeist.plugin share/appdata/gedit-bookmarks.metainfo.xml share/appdata/gedit-bracketcompletion.metainfo.xml share/appdata/gedit-charmap.metainfo.xml @@ -165,7 +179,9 @@ share/appdata/gedit-codecomment.metainfo.xml share/appdata/gedit-colorpicker.metainfo.xml share/appdata/gedit-colorschemer.metainfo.xml share/appdata/gedit-commander.metainfo.xml +share/appdata/gedit-dashboard.metainfo.xml share/appdata/gedit-drawspaces.metainfo.xml +share/appdata/gedit-findinfiles.metainfo.xml share/appdata/gedit-git.metainfo.xml share/appdata/gedit-joinlines.metainfo.xml share/appdata/gedit-multiedit.metainfo.xml @@ -174,6 +190,7 @@ share/appdata/gedit-synctex.metainfo.xml share/appdata/gedit-terminal.metainfo.xml share/appdata/gedit-textsize.metainfo.xml share/appdata/gedit-wordcompletion.metainfo.xml +share/appdata/gedit-zeitgeist.metainfo.xml share/gedit/plugins/colorschemer/ui/schemer.ui share/gedit/plugins/commander/modules/__pycache__/align.cpython-%%PYVER%%.pyc share/gedit/plugins/commander/modules/__pycache__/align.cpython-%%PYVER%%.%%PYOEXTENSION%% @@ -822,7 +839,6 @@ share/locale/sk/LC_MESSAGES/gedit-plugins.mo share/locale/sl/LC_MESSAGES/gedit-plugins.mo share/locale/sq/LC_MESSAGES/gedit-plugins.mo share/locale/sr/LC_MESSAGES/gedit-plugins.mo -share/locale/sr@Latn/LC_MESSAGES/gedit-plugins.mo share/locale/sr@latin/LC_MESSAGES/gedit-plugins.mo share/locale/sv/LC_MESSAGES/gedit-plugins.mo share/locale/ta/LC_MESSAGES/gedit-plugins.mo diff --git a/editors/gedit/Makefile b/editors/gedit/Makefile index d9943e75ba41..16252e102400 100644 --- a/editors/gedit/Makefile +++ b/editors/gedit/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gedit -PORTVERSION= 3.16.4 +PORTVERSION= 3.18.3 CATEGORIES= editors gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -23,7 +23,7 @@ RUN_DEPENDS= iso-codes>=0:${PORTSDIR}/misc/iso-codes \ PORTSCOUT= limitw:1,even -USES= desktop-file-utils gettext gmake libtool \ +USES= desktop-file-utils gettext gmake gnome libtool \ pathfix pkgconfig python:3 tar:xz USE_GNOME= gtksourceview3 intlhack introspection:build \ libxml2 py3gobject3 @@ -34,6 +34,7 @@ CONFIGURE_ARGS= --disable-updater \ CPPFLAGS+= -I${LOCALBASE}/include -Wno-error=format-nonliteral CFLAGS+= -I${LOCALBASE}/include -Wno-error=format-nonliteral LDFLAGS+= -L${LOCALBASE}/lib +USE_LDCONFIG= yes PLIST_SUB= VERSION="3.14" INSTALL_TARGET= install-strip @@ -48,4 +49,8 @@ GLIB_SCHEMAS= org.gnome.gedit.enums.xml \ PLIST_SUB+= PYVER=${PYTHON_VER:S/.//} +post-patch: + @${REINPLACE_CMD} -e 's|=python|=${PYTHON_CMD}|g' \ + ${WRKSRC}/py-compile + .include <bsd.port.mk> diff --git a/editors/gedit/distinfo b/editors/gedit/distinfo index daec10f8367c..e80b8bbe4caa 100644 --- a/editors/gedit/distinfo +++ b/editors/gedit/distinfo @@ -1,2 +1,2 @@ -SHA256 (gnome3/gedit-3.16.4.tar.xz) = 210937ea9143d8a6c9580a7ab11acf60d478f516d591ace6c8384fb085fb4cc0 -SIZE (gnome3/gedit-3.16.4.tar.xz) = 2925984 +SHA256 (gnome3/gedit-3.18.3.tar.xz) = 6762ac0d793b0f754a2da5f88739d04fa39daa7491c5c46401d24bcef76c32e7 +SIZE (gnome3/gedit-3.18.3.tar.xz) = 2933132 diff --git a/editors/gedit/pkg-plist b/editors/gedit/pkg-plist index d04d4a8de7a1..982e25d3a0c5 100644 --- a/editors/gedit/pkg-plist +++ b/editors/gedit/pkg-plist @@ -22,35 +22,35 @@ lib/gedit/libgedit.so lib/gedit/plugins/docinfo.plugin lib/gedit/plugins/externaltools.plugin lib/gedit/plugins/externaltools/__init__.py -lib/gedit/plugins/externaltools/__init__.pyc -lib/gedit/plugins/externaltools/__init__.pyo +lib/gedit/plugins/externaltools/__pycache__/__init__.cpython-%%PYVER%%.pyc +lib/gedit/plugins/externaltools/__pycache__/__init__.cpython-%%PYVER%%.pyo +lib/gedit/plugins/externaltools/__pycache__/appactivatable.cpython-%%PYVER%%.pyc +lib/gedit/plugins/externaltools/__pycache__/appactivatable.cpython-%%PYVER%%.pyo +lib/gedit/plugins/externaltools/__pycache__/capture.cpython-%%PYVER%%.pyc +lib/gedit/plugins/externaltools/__pycache__/capture.cpython-%%PYVER%%.pyo +lib/gedit/plugins/externaltools/__pycache__/filelookup.cpython-%%PYVER%%.pyc +lib/gedit/plugins/externaltools/__pycache__/filelookup.cpython-%%PYVER%%.pyo +lib/gedit/plugins/externaltools/__pycache__/functions.cpython-%%PYVER%%.pyc +lib/gedit/plugins/externaltools/__pycache__/functions.cpython-%%PYVER%%.pyo +lib/gedit/plugins/externaltools/__pycache__/library.cpython-%%PYVER%%.pyc +lib/gedit/plugins/externaltools/__pycache__/library.cpython-%%PYVER%%.pyo +lib/gedit/plugins/externaltools/__pycache__/linkparsing.cpython-%%PYVER%%.pyc +lib/gedit/plugins/externaltools/__pycache__/linkparsing.cpython-%%PYVER%%.pyo +lib/gedit/plugins/externaltools/__pycache__/manager.cpython-%%PYVER%%.pyc +lib/gedit/plugins/externaltools/__pycache__/manager.cpython-%%PYVER%%.pyo +lib/gedit/plugins/externaltools/__pycache__/outputpanel.cpython-%%PYVER%%.pyc +lib/gedit/plugins/externaltools/__pycache__/outputpanel.cpython-%%PYVER%%.pyo +lib/gedit/plugins/externaltools/__pycache__/windowactivatable.cpython-%%PYVER%%.pyc +lib/gedit/plugins/externaltools/__pycache__/windowactivatable.cpython-%%PYVER%%.pyo lib/gedit/plugins/externaltools/appactivatable.py -lib/gedit/plugins/externaltools/appactivatable.pyc -lib/gedit/plugins/externaltools/appactivatable.pyo lib/gedit/plugins/externaltools/capture.py -lib/gedit/plugins/externaltools/capture.pyc -lib/gedit/plugins/externaltools/capture.pyo lib/gedit/plugins/externaltools/filelookup.py -lib/gedit/plugins/externaltools/filelookup.pyc -lib/gedit/plugins/externaltools/filelookup.pyo lib/gedit/plugins/externaltools/functions.py -lib/gedit/plugins/externaltools/functions.pyc -lib/gedit/plugins/externaltools/functions.pyo lib/gedit/plugins/externaltools/library.py -lib/gedit/plugins/externaltools/library.pyc -lib/gedit/plugins/externaltools/library.pyo lib/gedit/plugins/externaltools/linkparsing.py -lib/gedit/plugins/externaltools/linkparsing.pyc -lib/gedit/plugins/externaltools/linkparsing.pyo lib/gedit/plugins/externaltools/manager.py -lib/gedit/plugins/externaltools/manager.pyc -lib/gedit/plugins/externaltools/manager.pyo lib/gedit/plugins/externaltools/outputpanel.py -lib/gedit/plugins/externaltools/outputpanel.pyc -lib/gedit/plugins/externaltools/outputpanel.pyo lib/gedit/plugins/externaltools/windowactivatable.py -lib/gedit/plugins/externaltools/windowactivatable.pyc -lib/gedit/plugins/externaltools/windowactivatable.pyo lib/gedit/plugins/filebrowser.plugin lib/gedit/plugins/libdocinfo.so lib/gedit/plugins/libfilebrowser.so @@ -61,85 +61,85 @@ lib/gedit/plugins/libtime.so lib/gedit/plugins/modelines.plugin lib/gedit/plugins/pythonconsole.plugin lib/gedit/plugins/pythonconsole/__init__.py -lib/gedit/plugins/pythonconsole/__init__.pyc -lib/gedit/plugins/pythonconsole/__init__.pyo +lib/gedit/plugins/pythonconsole/__pycache__/__init__.cpython-%%PYVER%%.pyc +lib/gedit/plugins/pythonconsole/__pycache__/__init__.cpython-%%PYVER%%.pyo +lib/gedit/plugins/pythonconsole/__pycache__/config.cpython-%%PYVER%%.pyc +lib/gedit/plugins/pythonconsole/__pycache__/config.cpython-%%PYVER%%.pyo +lib/gedit/plugins/pythonconsole/__pycache__/console.cpython-%%PYVER%%.pyc +lib/gedit/plugins/pythonconsole/__pycache__/console.cpython-%%PYVER%%.pyo lib/gedit/plugins/pythonconsole/config.py -lib/gedit/plugins/pythonconsole/config.pyc -lib/gedit/plugins/pythonconsole/config.pyo lib/gedit/plugins/pythonconsole/console.py -lib/gedit/plugins/pythonconsole/console.pyc -lib/gedit/plugins/pythonconsole/console.pyo lib/gedit/plugins/quickopen.plugin lib/gedit/plugins/quickopen/__init__.py -lib/gedit/plugins/quickopen/__init__.pyc -lib/gedit/plugins/quickopen/__init__.pyo +lib/gedit/plugins/quickopen/__pycache__/__init__.cpython-%%PYVER%%.pyc +lib/gedit/plugins/quickopen/__pycache__/__init__.cpython-%%PYVER%%.pyo +lib/gedit/plugins/quickopen/__pycache__/popup.cpython-%%PYVER%%.pyc +lib/gedit/plugins/quickopen/__pycache__/popup.cpython-%%PYVER%%.pyo +lib/gedit/plugins/quickopen/__pycache__/virtualdirs.cpython-%%PYVER%%.pyc +lib/gedit/plugins/quickopen/__pycache__/virtualdirs.cpython-%%PYVER%%.pyo lib/gedit/plugins/quickopen/popup.py -lib/gedit/plugins/quickopen/popup.pyc -lib/gedit/plugins/quickopen/popup.pyo lib/gedit/plugins/quickopen/virtualdirs.py -lib/gedit/plugins/quickopen/virtualdirs.pyc -lib/gedit/plugins/quickopen/virtualdirs.pyo lib/gedit/plugins/snippets.plugin lib/gedit/plugins/snippets/__init__.py -lib/gedit/plugins/snippets/__init__.pyc -lib/gedit/plugins/snippets/__init__.pyo +lib/gedit/plugins/snippets/__pycache__/__init__.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/__init__.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/appactivatable.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/appactivatable.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/completion.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/completion.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/document.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/document.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/exporter.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/exporter.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/helper.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/helper.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/importer.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/importer.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/languagemanager.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/languagemanager.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/library.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/library.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/manager.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/manager.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/parser.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/parser.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/placeholder.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/placeholder.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/shareddata.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/shareddata.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/signals.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/signals.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/singleton.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/singleton.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/snippet.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/snippet.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/substitutionparser.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/substitutionparser.cpython-%%PYVER%%.pyo +lib/gedit/plugins/snippets/__pycache__/windowactivatable.cpython-%%PYVER%%.pyc +lib/gedit/plugins/snippets/__pycache__/windowactivatable.cpython-%%PYVER%%.pyo lib/gedit/plugins/snippets/appactivatable.py -lib/gedit/plugins/snippets/appactivatable.pyc -lib/gedit/plugins/snippets/appactivatable.pyo lib/gedit/plugins/snippets/completion.py -lib/gedit/plugins/snippets/completion.pyc -lib/gedit/plugins/snippets/completion.pyo lib/gedit/plugins/snippets/document.py -lib/gedit/plugins/snippets/document.pyc -lib/gedit/plugins/snippets/document.pyo lib/gedit/plugins/snippets/exporter.py -lib/gedit/plugins/snippets/exporter.pyc -lib/gedit/plugins/snippets/exporter.pyo lib/gedit/plugins/snippets/helper.py -lib/gedit/plugins/snippets/helper.pyc -lib/gedit/plugins/snippets/helper.pyo lib/gedit/plugins/snippets/importer.py -lib/gedit/plugins/snippets/importer.pyc -lib/gedit/plugins/snippets/importer.pyo lib/gedit/plugins/snippets/languagemanager.py -lib/gedit/plugins/snippets/languagemanager.pyc -lib/gedit/plugins/snippets/languagemanager.pyo lib/gedit/plugins/snippets/library.py -lib/gedit/plugins/snippets/library.pyc -lib/gedit/plugins/snippets/library.pyo lib/gedit/plugins/snippets/manager.py -lib/gedit/plugins/snippets/manager.pyc -lib/gedit/plugins/snippets/manager.pyo lib/gedit/plugins/snippets/parser.py -lib/gedit/plugins/snippets/parser.pyc -lib/gedit/plugins/snippets/parser.pyo lib/gedit/plugins/snippets/placeholder.py -lib/gedit/plugins/snippets/placeholder.pyc -lib/gedit/plugins/snippets/placeholder.pyo lib/gedit/plugins/snippets/shareddata.py -lib/gedit/plugins/snippets/shareddata.pyc -lib/gedit/plugins/snippets/shareddata.pyo lib/gedit/plugins/snippets/signals.py -lib/gedit/plugins/snippets/signals.pyc -lib/gedit/plugins/snippets/signals.pyo lib/gedit/plugins/snippets/singleton.py -lib/gedit/plugins/snippets/singleton.pyc -lib/gedit/plugins/snippets/singleton.pyo lib/gedit/plugins/snippets/snippet.py -lib/gedit/plugins/snippets/snippet.pyc -lib/gedit/plugins/snippets/snippet.pyo lib/gedit/plugins/snippets/substitutionparser.py -lib/gedit/plugins/snippets/substitutionparser.pyc -lib/gedit/plugins/snippets/substitutionparser.pyo lib/gedit/plugins/snippets/windowactivatable.py -lib/gedit/plugins/snippets/windowactivatable.pyc -lib/gedit/plugins/snippets/windowactivatable.pyo lib/gedit/plugins/sort.plugin lib/gedit/plugins/spell.plugin lib/gedit/plugins/time.plugin %%PYTHON_SITELIBDIR%%/gi/overrides/Gedit.py -%%PYTHON_SITELIBDIR%%/gi/overrides/Gedit.pyc -%%PYTHON_SITELIBDIR%%/gi/overrides/Gedit.pyo +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gedit.cpython-%%PYVER%%.pyc +%%PYTHON_SITELIBDIR%%/gi/overrides/__pycache__/Gedit.cpython-%%PYVER%%.pyo libdata/pkgconfig/gedit.pc libexec/gedit/gedit-bugreport.sh man/man1/gedit.1.gz @@ -177,6 +177,7 @@ share/dbus-1/services/org.gnome.gedit.service %%DATADIR%%/plugins/snippets/perl.xml %%DATADIR%%/plugins/snippets/php.xml %%DATADIR%%/plugins/snippets/python.xml +%%DATADIR%%/plugins/snippets/rpmspec.xml %%DATADIR%%/plugins/snippets/ruby.xml %%DATADIR%%/plugins/snippets/sh.xml %%DATADIR%%/plugins/snippets/snippets.xml @@ -184,9 +185,13 @@ share/dbus-1/services/org.gnome.gedit.service %%DATADIR%%/plugins/snippets/ui/snippets.ui %%DATADIR%%/plugins/snippets/xml.xml %%DATADIR%%/plugins/snippets/xslt.xml +share/gtk-doc/html/gedit/GeditApp.html share/gtk-doc/html/gedit/GeditAppActivatable.html +share/gtk-doc/html/gedit/GeditDocument.html +share/gtk-doc/html/gedit/GeditEncodingsComboBox.html share/gtk-doc/html/gedit/GeditMessage.html share/gtk-doc/html/gedit/GeditMessageBus.html +share/gtk-doc/html/gedit/GeditStatusbar.html share/gtk-doc/html/gedit/GeditViewActivatable.html share/gtk-doc/html/gedit/GeditWindowActivatable.html share/gtk-doc/html/gedit/annotation-glossary.html @@ -195,13 +200,9 @@ share/gtk-doc/html/gedit/api-index-deprecated.html share/gtk-doc/html/gedit/api-index-full.html share/gtk-doc/html/gedit/ch01.html share/gtk-doc/html/gedit/gedit-GeditCommands.html -share/gtk-doc/html/gedit/gedit-gedit-app.html share/gtk-doc/html/gedit/gedit-gedit-debug.html -share/gtk-doc/html/gedit/gedit-gedit-document.html -share/gtk-doc/html/gedit/gedit-gedit-encodings-combo-box.html share/gtk-doc/html/gedit/gedit-gedit-menu-extension.html share/gtk-doc/html/gedit/gedit-gedit-progress-info-bar.html -share/gtk-doc/html/gedit/gedit-gedit-statusbar.html share/gtk-doc/html/gedit/gedit-gedit-tab.html share/gtk-doc/html/gedit/gedit-gedit-utils.html share/gtk-doc/html/gedit/gedit-gedit-view.html @@ -209,7 +210,6 @@ share/gtk-doc/html/gedit/gedit-gedit-window.html share/gtk-doc/html/gedit/gedit.devhelp2 share/gtk-doc/html/gedit/home.png share/gtk-doc/html/gedit/index.html -share/gtk-doc/html/gedit/index.sgml share/gtk-doc/html/gedit/left-insensitive.png share/gtk-doc/html/gedit/left.png share/gtk-doc/html/gedit/object-tree.html @@ -263,7 +263,6 @@ share/help/C/gedit/gedit-tab-groups.page share/help/C/gedit/gedit-tabs-moving.page share/help/C/gedit/gedit-tabs.page share/help/C/gedit/gedit-undo-recent-action.page -share/help/C/gedit/gedit-view-open-files-in-sidepane.page share/help/C/gedit/index.page share/help/C/gedit/legal.xml share/help/ar/gedit/figures/gedit-html-snippet.png @@ -311,7 +310,6 @@ share/help/ar/gedit/gedit-tab-groups.page share/help/ar/gedit/gedit-tabs-moving.page share/help/ar/gedit/gedit-tabs.page share/help/ar/gedit/gedit-undo-recent-action.page -share/help/ar/gedit/gedit-view-open-files-in-sidepane.page share/help/ar/gedit/index.page share/help/ar/gedit/legal.xml share/help/bg/gedit/figures/gedit-html-snippet.png @@ -359,7 +357,6 @@ share/help/bg/gedit/gedit-tab-groups.page share/help/bg/gedit/gedit-tabs-moving.page share/help/bg/gedit/gedit-tabs.page share/help/bg/gedit/gedit-undo-recent-action.page -share/help/bg/gedit/gedit-view-open-files-in-sidepane.page share/help/bg/gedit/index.page share/help/bg/gedit/legal.xml share/help/ca/gedit/figures/gedit-html-snippet.png @@ -407,7 +404,6 @@ share/help/ca/gedit/gedit-tab-groups.page share/help/ca/gedit/gedit-tabs-moving.page share/help/ca/gedit/gedit-tabs.page share/help/ca/gedit/gedit-undo-recent-action.page -share/help/ca/gedit/gedit-view-open-files-in-sidepane.page share/help/ca/gedit/index.page share/help/ca/gedit/legal.xml share/help/cs/gedit/figures/gedit-html-snippet.png @@ -455,7 +451,6 @@ share/help/cs/gedit/gedit-tab-groups.page share/help/cs/gedit/gedit-tabs-moving.page share/help/cs/gedit/gedit-tabs.page share/help/cs/gedit/gedit-undo-recent-action.page -share/help/cs/gedit/gedit-view-open-files-in-sidepane.page share/help/cs/gedit/index.page share/help/cs/gedit/legal.xml share/help/da/gedit/figures/gedit-html-snippet.png @@ -503,7 +498,6 @@ share/help/da/gedit/gedit-tab-groups.page share/help/da/gedit/gedit-tabs-moving.page share/help/da/gedit/gedit-tabs.page share/help/da/gedit/gedit-undo-recent-action.page -share/help/da/gedit/gedit-view-open-files-in-sidepane.page share/help/da/gedit/index.page share/help/da/gedit/legal.xml share/help/de/gedit/figures/gedit-html-snippet.png @@ -551,7 +545,6 @@ share/help/de/gedit/gedit-tab-groups.page share/help/de/gedit/gedit-tabs-moving.page share/help/de/gedit/gedit-tabs.page share/help/de/gedit/gedit-undo-recent-action.page -share/help/de/gedit/gedit-view-open-files-in-sidepane.page share/help/de/gedit/index.page share/help/de/gedit/legal.xml share/help/el/gedit/figures/gedit-html-snippet.png @@ -599,7 +592,6 @@ share/help/el/gedit/gedit-tab-groups.page share/help/el/gedit/gedit-tabs-moving.page share/help/el/gedit/gedit-tabs.page share/help/el/gedit/gedit-undo-recent-action.page -share/help/el/gedit/gedit-view-open-files-in-sidepane.page share/help/el/gedit/index.page share/help/el/gedit/legal.xml share/help/es/gedit/figures/gedit-html-snippet.png @@ -647,7 +639,6 @@ share/help/es/gedit/gedit-tab-groups.page share/help/es/gedit/gedit-tabs-moving.page share/help/es/gedit/gedit-tabs.page share/help/es/gedit/gedit-undo-recent-action.page -share/help/es/gedit/gedit-view-open-files-in-sidepane.page share/help/es/gedit/index.page share/help/es/gedit/legal.xml share/help/eu/gedit/figures/gedit-html-snippet.png @@ -695,7 +686,6 @@ share/help/eu/gedit/gedit-tab-groups.page share/help/eu/gedit/gedit-tabs-moving.page share/help/eu/gedit/gedit-tabs.page share/help/eu/gedit/gedit-undo-recent-action.page -share/help/eu/gedit/gedit-view-open-files-in-sidepane.page share/help/eu/gedit/index.page share/help/eu/gedit/legal.xml share/help/fi/gedit/figures/gedit-html-snippet.png @@ -743,7 +733,6 @@ share/help/fi/gedit/gedit-tab-groups.page share/help/fi/gedit/gedit-tabs-moving.page share/help/fi/gedit/gedit-tabs.page share/help/fi/gedit/gedit-undo-recent-action.page -share/help/fi/gedit/gedit-view-open-files-in-sidepane.page share/help/fi/gedit/index.page share/help/fi/gedit/legal.xml share/help/fr/gedit/figures/gedit-html-snippet.png @@ -791,7 +780,6 @@ share/help/fr/gedit/gedit-tab-groups.page share/help/fr/gedit/gedit-tabs-moving.page share/help/fr/gedit/gedit-tabs.page share/help/fr/gedit/gedit-undo-recent-action.page -share/help/fr/gedit/gedit-view-open-files-in-sidepane.page share/help/fr/gedit/index.page share/help/fr/gedit/legal.xml share/help/gl/gedit/figures/gedit-html-snippet.png @@ -839,7 +827,6 @@ share/help/gl/gedit/gedit-tab-groups.page share/help/gl/gedit/gedit-tabs-moving.page share/help/gl/gedit/gedit-tabs.page share/help/gl/gedit/gedit-undo-recent-action.page -share/help/gl/gedit/gedit-view-open-files-in-sidepane.page share/help/gl/gedit/index.page share/help/gl/gedit/legal.xml share/help/hu/gedit/figures/gedit-html-snippet.png @@ -887,7 +874,6 @@ share/help/hu/gedit/gedit-tab-groups.page share/help/hu/gedit/gedit-tabs-moving.page share/help/hu/gedit/gedit-tabs.page share/help/hu/gedit/gedit-undo-recent-action.page -share/help/hu/gedit/gedit-view-open-files-in-sidepane.page share/help/hu/gedit/index.page share/help/hu/gedit/legal.xml share/help/id/gedit/figures/gedit-html-snippet.png @@ -935,7 +921,6 @@ share/help/id/gedit/gedit-tab-groups.page share/help/id/gedit/gedit-tabs-moving.page share/help/id/gedit/gedit-tabs.page share/help/id/gedit/gedit-undo-recent-action.page -share/help/id/gedit/gedit-view-open-files-in-sidepane.page share/help/id/gedit/index.page share/help/id/gedit/legal.xml share/help/it/gedit/figures/gedit-html-snippet.png @@ -983,7 +968,6 @@ share/help/it/gedit/gedit-tab-groups.page share/help/it/gedit/gedit-tabs-moving.page share/help/it/gedit/gedit-tabs.page share/help/it/gedit/gedit-undo-recent-action.page -share/help/it/gedit/gedit-view-open-files-in-sidepane.page share/help/it/gedit/index.page share/help/it/gedit/legal.xml share/help/ja/gedit/figures/gedit-html-snippet.png @@ -1031,7 +1015,6 @@ share/help/ja/gedit/gedit-tab-groups.page share/help/ja/gedit/gedit-tabs-moving.page share/help/ja/gedit/gedit-tabs.page share/help/ja/gedit/gedit-undo-recent-action.page -share/help/ja/gedit/gedit-view-open-files-in-sidepane.page share/help/ja/gedit/index.page share/help/ja/gedit/legal.xml share/help/ko/gedit/figures/gedit-html-snippet.png @@ -1079,7 +1062,6 @@ share/help/ko/gedit/gedit-tab-groups.page share/help/ko/gedit/gedit-tabs-moving.page share/help/ko/gedit/gedit-tabs.page share/help/ko/gedit/gedit-undo-recent-action.page -share/help/ko/gedit/gedit-view-open-files-in-sidepane.page share/help/ko/gedit/index.page share/help/ko/gedit/legal.xml share/help/lv/gedit/figures/gedit-html-snippet.png @@ -1127,7 +1109,6 @@ share/help/lv/gedit/gedit-tab-groups.page share/help/lv/gedit/gedit-tabs-moving.page share/help/lv/gedit/gedit-tabs.page share/help/lv/gedit/gedit-undo-recent-action.page -share/help/lv/gedit/gedit-view-open-files-in-sidepane.page share/help/lv/gedit/index.page share/help/lv/gedit/legal.xml share/help/oc/gedit/figures/gedit-html-snippet.png @@ -1175,7 +1156,6 @@ share/help/oc/gedit/gedit-tab-groups.page share/help/oc/gedit/gedit-tabs-moving.page share/help/oc/gedit/gedit-tabs.page share/help/oc/gedit/gedit-undo-recent-action.page -share/help/oc/gedit/gedit-view-open-files-in-sidepane.page share/help/oc/gedit/index.page share/help/oc/gedit/legal.xml share/help/pt_BR/gedit/figures/gedit-html-snippet.png @@ -1223,9 +1203,55 @@ share/help/pt_BR/gedit/gedit-tab-groups.page share/help/pt_BR/gedit/gedit-tabs-moving.page share/help/pt_BR/gedit/gedit-tabs.page share/help/pt_BR/gedit/gedit-undo-recent-action.page -share/help/pt_BR/gedit/gedit-view-open-files-in-sidepane.page share/help/pt_BR/gedit/index.page share/help/pt_BR/gedit/legal.xml +share/help/ro/gedit/figures/gedit-html-snippet.png +share/help/ro/gedit/figures/gedit-icon.png +share/help/ro/gedit/figures/gedit-new-external-tool.png +share/help/ro/gedit/figures/gedit-open-location.png +share/help/ro/gedit/figures/gedit-side-pane1.png +share/help/ro/gedit/figures/gedit-side-pane2.png +share/help/ro/gedit/figures/gedit-side-pane3.png +share/help/ro/gedit/figures/gedit3-screenshot.png +share/help/ro/gedit/gedit-change-color-scheme.page +share/help/ro/gedit/gedit-change-default-font.page +share/help/ro/gedit/gedit-close-file.page +share/help/ro/gedit/gedit-create-new-file.page +share/help/ro/gedit/gedit-edit-as-root.page +share/help/ro/gedit/gedit-files-basic.page +share/help/ro/gedit/gedit-full-screen.page +share/help/ro/gedit/gedit-open-files-from-sidepane.page +share/help/ro/gedit/gedit-open-files.page +share/help/ro/gedit/gedit-open-on-server.page +share/help/ro/gedit/gedit-open-recent.page +share/help/ro/gedit/gedit-plugin-guide.page +share/help/ro/gedit/gedit-plugins-change-case.page +share/help/ro/gedit/gedit-plugins-doc-stats.page +share/help/ro/gedit/gedit-plugins-external-tools.page +share/help/ro/gedit/gedit-plugins-file-browser.page +share/help/ro/gedit/gedit-plugins-insert-date-time.page +share/help/ro/gedit/gedit-plugins-install.page +share/help/ro/gedit/gedit-plugins-modelines.page +share/help/ro/gedit/gedit-plugins-pyconsole.page +share/help/ro/gedit/gedit-plugins-quick-open.page +share/help/ro/gedit/gedit-plugins-snippets.page +share/help/ro/gedit/gedit-plugins-sort.page +share/help/ro/gedit/gedit-printing-order.page +share/help/ro/gedit/gedit-printing-select.page +share/help/ro/gedit/gedit-printing.page +share/help/ro/gedit/gedit-quickstart.page +share/help/ro/gedit/gedit-replace.page +share/help/ro/gedit/gedit-save-file.page +share/help/ro/gedit/gedit-search.page +share/help/ro/gedit/gedit-shortcut-keys.page +share/help/ro/gedit/gedit-spellcheck.page +share/help/ro/gedit/gedit-syntax-highlighting.page +share/help/ro/gedit/gedit-tab-groups.page +share/help/ro/gedit/gedit-tabs-moving.page +share/help/ro/gedit/gedit-tabs.page +share/help/ro/gedit/gedit-undo-recent-action.page +share/help/ro/gedit/index.page +share/help/ro/gedit/legal.xml share/help/ru/gedit/figures/gedit-html-snippet.png share/help/ru/gedit/figures/gedit-icon.png share/help/ru/gedit/figures/gedit-new-external-tool.png @@ -1271,7 +1297,6 @@ share/help/ru/gedit/gedit-tab-groups.page share/help/ru/gedit/gedit-tabs-moving.page share/help/ru/gedit/gedit-tabs.page share/help/ru/gedit/gedit-undo-recent-action.page -share/help/ru/gedit/gedit-view-open-files-in-sidepane.page share/help/ru/gedit/index.page share/help/ru/gedit/legal.xml share/help/sl/gedit/figures/gedit-html-snippet.png @@ -1319,7 +1344,6 @@ share/help/sl/gedit/gedit-tab-groups.page share/help/sl/gedit/gedit-tabs-moving.page share/help/sl/gedit/gedit-tabs.page share/help/sl/gedit/gedit-undo-recent-action.page -share/help/sl/gedit/gedit-view-open-files-in-sidepane.page share/help/sl/gedit/index.page share/help/sl/gedit/legal.xml share/help/sv/gedit/figures/gedit-html-snippet.png @@ -1367,7 +1391,6 @@ share/help/sv/gedit/gedit-tab-groups.page share/help/sv/gedit/gedit-tabs-moving.page share/help/sv/gedit/gedit-tabs.page share/help/sv/gedit/gedit-undo-recent-action.page -share/help/sv/gedit/gedit-view-open-files-in-sidepane.page share/help/sv/gedit/index.page share/help/sv/gedit/legal.xml share/help/te/gedit/figures/gedit-html-snippet.png @@ -1415,7 +1438,6 @@ share/help/te/gedit/gedit-tab-groups.page share/help/te/gedit/gedit-tabs-moving.page share/help/te/gedit/gedit-tabs.page share/help/te/gedit/gedit-undo-recent-action.page -share/help/te/gedit/gedit-view-open-files-in-sidepane.page share/help/te/gedit/index.page share/help/te/gedit/legal.xml share/help/th/gedit/figures/gedit-html-snippet.png @@ -1463,7 +1485,6 @@ share/help/th/gedit/gedit-tab-groups.page share/help/th/gedit/gedit-tabs-moving.page share/help/th/gedit/gedit-tabs.page share/help/th/gedit/gedit-undo-recent-action.page -share/help/th/gedit/gedit-view-open-files-in-sidepane.page share/help/th/gedit/index.page share/help/th/gedit/legal.xml share/help/uk/gedit/figures/gedit-html-snippet.png @@ -1511,7 +1532,6 @@ share/help/uk/gedit/gedit-tab-groups.page share/help/uk/gedit/gedit-tabs-moving.page share/help/uk/gedit/gedit-tabs.page share/help/uk/gedit/gedit-undo-recent-action.page -share/help/uk/gedit/gedit-view-open-files-in-sidepane.page share/help/uk/gedit/index.page share/help/uk/gedit/legal.xml share/help/zh_CN/gedit/figures/gedit-html-snippet.png @@ -1559,7 +1579,6 @@ share/help/zh_CN/gedit/gedit-tab-groups.page share/help/zh_CN/gedit/gedit-tabs-moving.page share/help/zh_CN/gedit/gedit-tabs.page share/help/zh_CN/gedit/gedit-undo-recent-action.page -share/help/zh_CN/gedit/gedit-view-open-files-in-sidepane.page share/help/zh_CN/gedit/index.page share/help/zh_CN/gedit/legal.xml share/help/zh_HK/gedit/figures/gedit-html-snippet.png @@ -1607,7 +1626,6 @@ share/help/zh_HK/gedit/gedit-tab-groups.page share/help/zh_HK/gedit/gedit-tabs-moving.page share/help/zh_HK/gedit/gedit-tabs.page share/help/zh_HK/gedit/gedit-undo-recent-action.page -share/help/zh_HK/gedit/gedit-view-open-files-in-sidepane.page share/help/zh_HK/gedit/index.page share/help/zh_HK/gedit/legal.xml share/help/zh_TW/gedit/figures/gedit-html-snippet.png @@ -1655,7 +1673,6 @@ share/help/zh_TW/gedit/gedit-tab-groups.page share/help/zh_TW/gedit/gedit-tabs-moving.page share/help/zh_TW/gedit/gedit-tabs.page share/help/zh_TW/gedit/gedit-undo-recent-action.page -share/help/zh_TW/gedit/gedit-view-open-files-in-sidepane.page share/help/zh_TW/gedit/index.page share/help/zh_TW/gedit/legal.xml share/locale/af/LC_MESSAGES/gedit.mo diff --git a/editors/ghex/Makefile b/editors/ghex/Makefile index 2b2624b75a4a..623478008b4f 100644 --- a/editors/ghex/Makefile +++ b/editors/ghex/Makefile @@ -1,10 +1,8 @@ # Created by: Joe Marcus Clarke <marcus@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/trunk/editors/ghex/Makefile 19822 2014-08-20 08:57:46Z gusi $ PORTNAME= ghex -PORTVERSION= 3.10.1 -PORTREVISION= 1 +PORTVERSION= 3.18.0 CATEGORIES= editors gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -14,7 +12,7 @@ COMMENT= GNOME 3 hex editor BUILD_DEPENDS= itstool:${PORTSDIR}/textproc/itstool -USES= gettext gmake libtool pathfix pkgconfig tar:xz +USES= gettext gmake gnome libtool pathfix pkgconfig tar:xz USE_GNOME= gnomeprefix gtk30 intlhack libxml2:build GNU_CONFIGURE= yes INSTALLS_ICONS= yes diff --git a/editors/ghex/distinfo b/editors/ghex/distinfo index 954ac9b7239c..3e01d7e37552 100644 --- a/editors/ghex/distinfo +++ b/editors/ghex/distinfo @@ -1,2 +1,2 @@ -SHA256 (gnome3/ghex-3.10.1.tar.xz) = 34b66cb5c84410c420df72f229d25aee5979e58048a246ed719b046f0c241132 -SIZE (gnome3/ghex-3.10.1.tar.xz) = 1424308 +SHA256 (gnome3/ghex-3.18.0.tar.xz) = c5b1eb50a8dd1334880b37617871498b778ea137f79bb43894ec68e4f63dc925 +SIZE (gnome3/ghex-3.18.0.tar.xz) = 1569372 diff --git a/editors/ghex/pkg-plist b/editors/ghex/pkg-plist index 8df5a01b3625..32bac703f780 100644 --- a/editors/ghex/pkg-plist +++ b/editors/ghex/pkg-plist @@ -8,91 +8,92 @@ libdata/pkgconfig/gtkhex-3.pc share/GConf/gsettings/ghex.convert share/appdata/ghex.appdata.xml share/applications/ghex.desktop -share/help/C/ghex/index.docbook -share/help/C/ghex/legal.xml share/help/C/ghex/figures/ghex_window_empty.png share/help/C/ghex/figures/ghex_window_open.png -share/help/cs/ghex/index.docbook -share/help/cs/ghex/legal.xml +share/help/C/ghex/index.docbook +share/help/C/ghex/legal.xml share/help/cs/ghex/figures/ghex_window_empty.png share/help/cs/ghex/figures/ghex_window_open.png -share/help/de/ghex/index.docbook -share/help/de/ghex/legal.xml +share/help/cs/ghex/index.docbook +share/help/cs/ghex/legal.xml share/help/de/ghex/figures/ghex_window_empty.png share/help/de/ghex/figures/ghex_window_open.png -share/help/el/ghex/index.docbook -share/help/el/ghex/legal.xml +share/help/de/ghex/index.docbook +share/help/de/ghex/legal.xml share/help/el/ghex/figures/ghex_window_empty.png share/help/el/ghex/figures/ghex_window_open.png -share/help/es/ghex/index.docbook -share/help/es/ghex/legal.xml +share/help/el/ghex/index.docbook +share/help/el/ghex/legal.xml share/help/es/ghex/figures/ghex_window_empty.png share/help/es/ghex/figures/ghex_window_open.png -share/help/fr/ghex/index.docbook -share/help/fr/ghex/legal.xml +share/help/es/ghex/index.docbook +share/help/es/ghex/legal.xml share/help/fr/ghex/figures/ghex_window_empty.png share/help/fr/ghex/figures/ghex_window_open.png -share/help/id/ghex/index.docbook -share/help/id/ghex/legal.xml +share/help/fr/ghex/index.docbook +share/help/fr/ghex/legal.xml share/help/id/ghex/figures/ghex_window_empty.png share/help/id/ghex/figures/ghex_window_open.png -share/help/it/ghex/index.docbook -share/help/it/ghex/legal.xml +share/help/id/ghex/index.docbook +share/help/id/ghex/legal.xml share/help/it/ghex/figures/ghex_window_empty.png share/help/it/ghex/figures/ghex_window_open.png -share/help/ja/ghex/index.docbook -share/help/ja/ghex/legal.xml +share/help/it/ghex/index.docbook +share/help/it/ghex/legal.xml share/help/ja/ghex/figures/ghex_window_empty.png share/help/ja/ghex/figures/ghex_window_open.png -share/help/ko/ghex/index.docbook -share/help/ko/ghex/legal.xml +share/help/ja/ghex/index.docbook +share/help/ja/ghex/legal.xml share/help/ko/ghex/figures/ghex_window_empty.png share/help/ko/ghex/figures/ghex_window_open.png -share/help/oc/ghex/index.docbook -share/help/oc/ghex/legal.xml +share/help/ko/ghex/index.docbook +share/help/ko/ghex/legal.xml share/help/oc/ghex/figures/ghex_window_empty.png share/help/oc/ghex/figures/ghex_window_open.png -share/help/pt_BR/ghex/index.docbook -share/help/pt_BR/ghex/legal.xml +share/help/oc/ghex/index.docbook +share/help/oc/ghex/legal.xml share/help/pt_BR/ghex/figures/ghex_window_empty.png share/help/pt_BR/ghex/figures/ghex_window_open.png -share/help/sl/ghex/index.docbook -share/help/sl/ghex/legal.xml +share/help/pt_BR/ghex/index.docbook +share/help/pt_BR/ghex/legal.xml +share/help/ru/ghex/figures/ghex_window_empty.png +share/help/ru/ghex/figures/ghex_window_open.png +share/help/ru/ghex/index.docbook +share/help/ru/ghex/legal.xml share/help/sl/ghex/figures/ghex_window_empty.png share/help/sl/ghex/figures/ghex_window_open.png -share/help/sv/ghex/index.docbook -share/help/sv/ghex/legal.xml +share/help/sl/ghex/index.docbook +share/help/sl/ghex/legal.xml share/help/sv/ghex/figures/ghex_window_empty.png share/help/sv/ghex/figures/ghex_window_open.png -share/help/th/ghex/index.docbook -share/help/th/ghex/legal.xml +share/help/sv/ghex/index.docbook +share/help/sv/ghex/legal.xml share/help/th/ghex/figures/ghex_window_empty.png share/help/th/ghex/figures/ghex_window_open.png -share/help/zh_CN/ghex/index.docbook -share/help/zh_CN/ghex/legal.xml +share/help/th/ghex/index.docbook +share/help/th/ghex/legal.xml share/help/zh_CN/ghex/figures/ghex_window_empty.png share/help/zh_CN/ghex/figures/ghex_window_open.png -share/help/zh_TW/ghex/index.docbook -share/help/zh_TW/ghex/legal.xml +share/help/zh_CN/ghex/index.docbook +share/help/zh_CN/ghex/legal.xml share/help/zh_TW/ghex/figures/ghex_window_empty.png share/help/zh_TW/ghex/figures/ghex_window_open.png -share/icons/HighContrast/16x16/apps/ghex.png -share/icons/HighContrast/22x22/apps/ghex.png -share/icons/HighContrast/24x24/apps/ghex.png -share/icons/HighContrast/32x32/apps/ghex.png -share/icons/HighContrast/48x48/apps/ghex.png -share/icons/HighContrast/256x256/apps/ghex.png +share/help/zh_TW/ghex/index.docbook +share/help/zh_TW/ghex/legal.xml share/icons/hicolor/16x16/apps/ghex.png share/icons/hicolor/22x22/apps/ghex.png share/icons/hicolor/24x24/apps/ghex.png +share/icons/hicolor/256x256/apps/ghex.png share/icons/hicolor/32x32/apps/ghex.png share/icons/hicolor/48x48/apps/ghex.png -share/icons/hicolor/scalable/apps/ghex.svg +share/icons/hicolor/512x512/apps/ghex.png +share/icons/hicolor/scalable/apps/ghex-symbolic.svg share/locale/am/LC_MESSAGES/ghex-3.0.mo share/locale/ar/LC_MESSAGES/ghex-3.0.mo share/locale/az/LC_MESSAGES/ghex-3.0.mo share/locale/be/LC_MESSAGES/ghex-3.0.mo share/locale/bg/LC_MESSAGES/ghex-3.0.mo +share/locale/bs/LC_MESSAGES/ghex-3.0.mo share/locale/ca/LC_MESSAGES/ghex-3.0.mo share/locale/cs/LC_MESSAGES/ghex-3.0.mo share/locale/da/LC_MESSAGES/ghex-3.0.mo @@ -108,6 +109,7 @@ share/locale/fi/LC_MESSAGES/ghex-3.0.mo share/locale/fr/LC_MESSAGES/ghex-3.0.mo share/locale/ga/LC_MESSAGES/ghex-3.0.mo share/locale/gl/LC_MESSAGES/ghex-3.0.mo +share/locale/he/LC_MESSAGES/ghex-3.0.mo share/locale/hr/LC_MESSAGES/ghex-3.0.mo share/locale/hu/LC_MESSAGES/ghex-3.0.mo share/locale/id/LC_MESSAGES/ghex-3.0.mo |
