Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package alacarte for openSUSE:Factory checked in at 2022-03-23 20:17:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/alacarte (Old) and /work/SRC/openSUSE:Factory/.alacarte.new.25692 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "alacarte" Wed Mar 23 20:17:22 2022 rev:70 rq:963555 version:3.44.0 Changes: -------- --- /work/SRC/openSUSE:Factory/alacarte/alacarte.changes 2022-01-10 23:54:03.732828471 +0100 +++ /work/SRC/openSUSE:Factory/.alacarte.new.25692/alacarte.changes 2022-03-23 20:19:02.046485019 +0100 @@ -1,0 +2,15 @@ +Mon Mar 21 05:55:31 UTC 2022 - Luciano Santos <[email protected]> + +- Update to version 3.44.0: + + Resync command line validity on focus gained + (glgo#GNOME/alacarte#10). + + Fix icon changing (glgo#GNOME/alacarte#13). + + Updated translations. +- Drop no longer needed hicolor-icon-theme build requirement. It + was only being required for the icon_theme_cache_post(un) macros, + which, by the way, have been replaced by RPM file trigger + facilities. +- Bump Python minimal build requirement version from 3.2 to 3.3 + aligning with configure build script checks. + +------------------------------------------------------------------- Old: ---- alacarte-3.42.0.tar.xz New: ---- alacarte-3.44.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ alacarte.spec ++++++ --- /var/tmp/diff_new_pack.vOwK9u/_old 2022-03-23 20:19:02.570485316 +0100 +++ /var/tmp/diff_new_pack.vOwK9u/_new 2022-03-23 20:19:02.578485320 +0100 @@ -16,25 +16,31 @@ # +# TODO -- Get rid of this once the Python stuff location issue gets +# sorted out (https://gitlab.gnome.org/GNOME/alacarte/-/issues/14). +%bcond_without aclocal_fix + Name: alacarte -Version: 3.42.0 +Version: 3.44.0 Release: 0 Summary: Menu editor for GNOME License: LGPL-2.1-or-later Group: System/GUI/GNOME URL: https://gitlab.gnome.org/GNOME/alacarte -Source: https://download.gnome.org/sources/alacarte/3.42/%{name}-%{version}.tar.xz +Source: https://download.gnome.org/sources/alacarte/3.44/%{name}-%{version}.tar.xz +%if %{with aclocal_fix} +BuildRequires: autoconf +BuildRequires: automake +%endif BuildRequires: fdupes BuildRequires: glib2-devel # Needed for the typelib() dependency parser BuildRequires: gobject-introspection -# Needed for %%icon_theme_cache_* macros. -BuildRequires: hicolor-icon-theme BuildRequires: intltool BuildRequires: pkgconfig BuildRequires: python-rpm-macros -BuildRequires: python3 >= 3.2 +BuildRequires: python3 >= 3.3 BuildRequires: suse-xsl-stylesheets BuildRequires: update-desktop-files BuildRequires: pkgconfig(libgnome-menu-3.0) >= 3.5.3 @@ -51,8 +57,14 @@ %prep %autosetup -p1 +%if %{with aclocal_fix} +sed -i -r 's/(sysconfig.)(get_default_scheme)/\1_\2/' aclocal.m4 +%endif %build +%if %{with aclocal_fix} +NOCONFIGURE=1 autoreconf -ifv +%endif %configure %make_build @@ -68,7 +80,7 @@ %{_bindir}/alacarte %{_datadir}/alacarte %{_datadir}/applications/alacarte.desktop -%{_datadir}/icons/hicolor/*/*/*.* +%{_datadir}/icons/hicolor/ %{python3_sitelib}/Alacarte %{_mandir}/man1/alacarte.1%{?ext_man} ++++++ alacarte-3.42.0.tar.xz -> alacarte-3.44.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/Alacarte/ItemEditor.py new/alacarte-3.44.0/Alacarte/ItemEditor.py --- old/alacarte-3.42.0/Alacarte/ItemEditor.py 2021-11-23 16:11:02.000000000 +0100 +++ new/alacarte-3.44.0/Alacarte/ItemEditor.py 2022-03-20 13:16:55.000000000 +0100 @@ -54,8 +54,8 @@ # strip extension return icon_name[:-4] -def get_icon_string(image): - filename = image.props.file +def get_icon_string(editor, image): + filename = editor.icon_file if filename is not None: return try_icon_name(filename) @@ -67,7 +67,9 @@ else: return icon -def set_icon_file(image, file_name): +def set_icon_file(editor, image, file_name): + editor.icon_file = file_name + scale = image.get_scale_factor() size = 64 * scale @@ -84,9 +86,9 @@ surface.set_device_scale(scale, scale) image.props.surface = surface -def set_icon_string(image, icon): +def set_icon_string(editor, image, icon): if GLib.path_is_absolute(icon): - set_icon_file(image, icon) + set_icon_file(editor, image, icon) else: image.props.icon_name = strip_extensions(icon) @@ -94,7 +96,8 @@ # XXX - replace with a better UI eventually class IconPicker(object): - def __init__(self, dialog, button, image): + def __init__(self, editor, dialog, button, image): + self.editor = editor self.dialog = dialog self.button = button self.button.connect('clicked', self.pick_icon) @@ -107,7 +110,7 @@ Gtk.STOCK_OK, Gtk.ResponseType.ACCEPT)) response = chooser.run() if response == Gtk.ResponseType.ACCEPT: - set_icon_file(self.image, chooser.get_filename()) + set_icon_file(self.editor, self.image, chooser.get_filename()) chooser.destroy() class ItemEditor(GObject.GObject): @@ -160,7 +163,7 @@ except GLib.GError: pass else: - set_icon_string(self.builder.get_object(ctl), val) + set_icon_string(self, self.builder.get_object(ctl), val) def load(self): self.keyfile = GLib.KeyFile() @@ -188,7 +191,8 @@ ui_file = 'launcher-editor.ui' def build_ui(self): - self.icon_picker = IconPicker(self.dialog, + self.icon_picker = IconPicker(self, + self.dialog, self.builder.get_object('icon-button'), self.builder.get_object('icon-image')) @@ -196,6 +200,7 @@ self.builder.get_object('name-entry').connect('changed', self.resync_validity) self.builder.get_object('exec-entry').connect('changed', self.resync_validity) + self.dialog.connect('focus-in-event', self.resync_validity) def exec_line_is_valid(self, exec_text): try: @@ -226,7 +231,7 @@ Exec=self.builder.get_object('exec-entry').get_text(), Comment=self.builder.get_object('comment-entry').get_text(), Terminal=self.builder.get_object('terminal-check').get_active(), - Icon=get_icon_string(self.builder.get_object('icon-image')), + Icon=get_icon_string(self, self.builder.get_object('icon-image')), Type="Application") def pick_exec(self, button): @@ -243,7 +248,8 @@ ui_file = 'directory-editor.ui' def build_ui(self): - self.icon_picker = IconPicker(self.dialog, + self.icon_picker = IconPicker(self, + self.dialog, self.builder.get_object('icon-button'), self.builder.get_object('icon-image')) @@ -263,7 +269,7 @@ def get_keyfile_edits(self): return dict(Name=self.builder.get_object('name-entry').get_text(), Comment=self.builder.get_object('comment-entry').get_text(), - Icon=get_icon_string(self.builder.get_object('icon-image')), + Icon=get_icon_string(self, self.builder.get_object('icon-image')), Type="Directory") def test_editor(path): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/Alacarte/Makefile.am new/alacarte-3.44.0/Alacarte/Makefile.am --- old/alacarte-3.42.0/Alacarte/Makefile.am 2021-11-23 16:11:02.000000000 +0100 +++ new/alacarte-3.44.0/Alacarte/Makefile.am 2022-03-20 13:38:19.000000000 +0100 @@ -22,3 +22,4 @@ all-local: config.py +-include $(top_srcdir)/git.mk diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/Alacarte/Makefile.in new/alacarte-3.44.0/Alacarte/Makefile.in --- old/alacarte-3.42.0/Alacarte/Makefile.in 2021-11-23 16:19:24.000000000 +0100 +++ new/alacarte-3.44.0/Alacarte/Makefile.in 2022-03-20 13:46:10.000000000 +0100 @@ -582,6 +582,8 @@ all-local: config.py +-include $(top_srcdir)/git.mk + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/ChangeLog new/alacarte-3.44.0/ChangeLog --- old/alacarte-3.42.0/ChangeLog 2021-11-23 16:19:32.000000000 +0100 +++ new/alacarte-3.44.0/ChangeLog 2022-03-20 13:46:16.000000000 +0100 @@ -1,6 +1,75 @@ +commit 373e13854acf3c777919fe65f346fb0e27fddef2 +Author: Alberts Muktup??vels <[email protected]> +Date: 2022-03-20 + + bump version to 3.44.0, update NEWS + +M NEWS +M configure.ac + +commit bec2a68ad20652b7f6473e4448361baa479ad670 +Author: Alberts Muktup??vels <[email protected]> +Date: 2022-03-20 + + use git.mk to generate .gitignore file + +D .gitignore +M Alacarte/Makefile.am +M Makefile.am +M data/Makefile.am +M data/icons/Makefile.am +A git.mk +M man/Makefile.am + +commit 73bb806dac8dd81cbd09035a5e16ff9621a281db +Author: Daniel Dakhno <[email protected]> +Date: 2022-01-28 + + ItemEditor: resync cmd line validity on focus gained + + https://gitlab.gnome.org/GNOME/alacarte/-/issues/10 + +M Alacarte/ItemEditor.py + +commit 9942022c3df2d994e4178eae4e251e74a077dc26 +Author: Alberts Muktup??vels <[email protected]> +Date: 2022-03-20 + + ItemEditor: fix icon changing + + Regression introduced in ae6b92daad3f53c025f59cfbb674ba3de7dcb8a4. + + https://gitlab.gnome.org/GNOME/alacarte/-/issues/13 + +M Alacarte/ItemEditor.py + +commit 45dcbdaa3f50dbfd563ad14a9983c012c1f0858a +Author: Marek ??ernock?? <[email protected]> +Date: 2022-03-18 + + Update Czech translation + +M po/cs.po + +commit 2a91111578bfab1d062c891922c035d3b2879e04 +Author: Yuri Chornoivan <[email protected]> +Date: 2022-03-18 + + Update Ukrainian translation + +M po/uk.po + +commit af19bc6e820977d04fbef8ef6d13ad68710a303b +Author: Luna Jernberg <[email protected]> +Date: 2022-03-17 + + Update Swedish translation + +M po/sv.po + commit 0225d87182a2c208e1d7d802c174899bd34fa8ed Author: Alberts Muktup??vels <[email protected]> -Date: 2021-11-23 +Date: 2021-11-23 3.42.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/Makefile.am new/alacarte-3.44.0/Makefile.am --- old/alacarte-3.42.0/Makefile.am 2021-11-23 16:11:02.000000000 +0100 +++ new/alacarte-3.44.0/Makefile.am 2022-03-20 13:40:05.000000000 +0100 @@ -1,5 +1,7 @@ ## Process this file with automake to produce Makefile.in +NULL = + SUBDIRS = data po Alacarte if BUILD_DOCUMENTATION @@ -24,6 +26,19 @@ MAINTAINERS \ ChangeLog.pre-git +MAINTAINERCLEANFILES = \ + $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \ + $(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \ + $(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \ + $(GITIGNORE_MAINTAINERCLEANFILES_M4_GETTEXT) \ + $(srcdir)/ABOUT-NLS \ + $(srcdir)/INSTALL \ + $(srcdir)/config.h.in~ \ + $(srcdir)/configure \ + $(srcdir)/po/.intltool-merge-cache.lock \ + $(srcdir)/py-compile \ + $(NULL) + ChangeLog: @echo Creating $@ @if test -d "$(srcdir)/.git"; then \ @@ -39,4 +54,5 @@ fi .PHONY: ChangeLog - + +-include $(top_srcdir)/git.mk diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/Makefile.in new/alacarte-3.44.0/Makefile.in --- old/alacarte-3.42.0/Makefile.in 2021-11-23 16:19:24.000000000 +0100 +++ new/alacarte-3.44.0/Makefile.in 2022-03-20 13:46:10.000000000 +0100 @@ -364,6 +364,7 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +NULL = SUBDIRS = data po Alacarte $(am__append_1) CLEANFILES = alacarte bin_SCRIPTS = alacarte @@ -373,6 +374,19 @@ MAINTAINERS \ ChangeLog.pre-git +MAINTAINERCLEANFILES = \ + $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \ + $(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \ + $(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \ + $(GITIGNORE_MAINTAINERCLEANFILES_M4_GETTEXT) \ + $(srcdir)/ABOUT-NLS \ + $(srcdir)/INSTALL \ + $(srcdir)/config.h.in~ \ + $(srcdir)/configure \ + $(srcdir)/po/.intltool-merge-cache.lock \ + $(srcdir)/py-compile \ + $(NULL) + all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive @@ -802,6 +816,7 @@ maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." + -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic mostlyclean-am @@ -914,6 +929,8 @@ .PHONY: ChangeLog +-include $(top_srcdir)/git.mk + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/NEWS new/alacarte-3.44.0/NEWS --- old/alacarte-3.42.0/NEWS 2021-11-23 16:18:12.000000000 +0100 +++ new/alacarte-3.44.0/NEWS 2022-03-20 13:43:55.000000000 +0100 @@ -1,4 +1,17 @@ ============== +Version 3.44.0 +============== + +Changes: + * Resync cmd line validity on focus gained (#10) + * Fix icon changing (#13) + +Translation updates: + * Czech + * Ukrainian + * Swedish + +============== Version 3.42.0 ============== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/aclocal.m4 new/alacarte-3.44.0/aclocal.m4 --- old/alacarte-3.42.0/aclocal.m4 2021-11-23 16:19:23.000000000 +0100 +++ new/alacarte-3.44.0/aclocal.m4 2022-03-20 13:46:10.000000000 +0100 @@ -2084,7 +2084,11 @@ am_cv_python_pythondir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: - sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) + scheme = sysconfig.get_default_scheme() + if scheme == 'posix_local': + # Debian's default scheme installs to /usr/local/ but we want to find headers in /usr/ + scheme = 'posix_prefix' + sitedir = sysconfig.get_path('purelib', scheme, vars={'base':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') @@ -2126,7 +2130,11 @@ am_cv_python_pyexecdir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: - sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_exec_prefix'}) + scheme = sysconfig.get_default_scheme() + if scheme == 'posix_local': + # Debian's default scheme installs to /usr/local/ but we want to find headers in /usr/ + scheme = 'posix_prefix' + sitedir = sysconfig.get_path('platlib', scheme, vars={'platbase':'$am_py_exec_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_exec_prefix') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/configure new/alacarte-3.44.0/configure --- old/alacarte-3.42.0/configure 2021-11-23 16:19:24.000000000 +0100 +++ new/alacarte-3.44.0/configure 2022-03-20 13:46:10.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for alacarte 3.42.0. +# Generated by GNU Autoconf 2.71 for alacarte 3.44.0. # # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=alacarte>. # @@ -611,8 +611,8 @@ # Identity of this package. PACKAGE_NAME='alacarte' PACKAGE_TARNAME='alacarte' -PACKAGE_VERSION='3.42.0' -PACKAGE_STRING='alacarte 3.42.0' +PACKAGE_VERSION='3.44.0' +PACKAGE_STRING='alacarte 3.44.0' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=alacarte' PACKAGE_URL='' @@ -1382,7 +1382,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures alacarte 3.42.0 to adapt to many kinds of systems. +\`configure' configures alacarte 3.44.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1449,7 +1449,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of alacarte 3.42.0:";; + short | recursive ) echo "Configuration of alacarte 3.44.0:";; esac cat <<\_ACEOF @@ -1564,7 +1564,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -alacarte configure 3.42.0 +alacarte configure 3.44.0 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -1782,7 +1782,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by alacarte $as_me 3.42.0, which was +It was created by alacarte $as_me 3.44.0, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -3054,7 +3054,7 @@ # Define the identity of the package. PACKAGE='alacarte' - VERSION='3.42.0' + VERSION='3.44.0' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h @@ -6159,7 +6159,11 @@ am_cv_python_pythondir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: - sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) + scheme = sysconfig.get_default_scheme() + if scheme == 'posix_local': + # Debian's default scheme installs to /usr/local/ but we want to find headers in /usr/ + scheme = 'posix_prefix' + sitedir = sysconfig.get_path('purelib', scheme, vars={'base':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') @@ -6202,7 +6206,11 @@ am_cv_python_pyexecdir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: - sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_exec_prefix'}) + scheme = sysconfig.get_default_scheme() + if scheme == 'posix_local': + # Debian's default scheme installs to /usr/local/ but we want to find headers in /usr/ + scheme = 'posix_prefix' + sitedir = sysconfig.get_path('platlib', scheme, vars={'platbase':'$am_py_exec_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_exec_prefix') @@ -7062,7 +7070,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by alacarte $as_me 3.42.0, which was +This file was extended by alacarte $as_me 3.44.0, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -7130,7 +7138,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -alacarte config.status 3.42.0 +alacarte config.status 3.44.0 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/configure.ac new/alacarte-3.44.0/configure.ac --- old/alacarte-3.42.0/configure.ac 2021-11-23 16:12:09.000000000 +0100 +++ new/alacarte-3.44.0/configure.ac 2022-03-20 13:43:58.000000000 +0100 @@ -1,7 +1,7 @@ dnl -*- Mode: autoconf -*- dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.53) -AC_INIT(alacarte, 3.42.0, http://bugzilla.gnome.org/enter_bug.cgi?product=alacarte) +AC_INIT(alacarte, 3.44.0, http://bugzilla.gnome.org/enter_bug.cgi?product=alacarte) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) AC_CONFIG_SRCDIR(alacarte.in) AC_CONFIG_HEADERS([config.h]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/data/Makefile.am new/alacarte-3.44.0/data/Makefile.am --- old/alacarte-3.42.0/data/Makefile.am 2021-11-23 16:11:02.000000000 +0100 +++ new/alacarte-3.44.0/data/Makefile.am 2022-03-20 13:38:35.000000000 +0100 @@ -16,3 +16,4 @@ uninstall-hook: $(UPDATE_DESKTOP) +-include $(top_srcdir)/git.mk diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/data/Makefile.in new/alacarte-3.44.0/data/Makefile.in --- old/alacarte-3.42.0/data/Makefile.in 2021-11-23 16:19:24.000000000 +0100 +++ new/alacarte-3.44.0/data/Makefile.in 2022-03-20 13:46:10.000000000 +0100 @@ -713,6 +713,8 @@ uninstall-hook: $(UPDATE_DESKTOP) +-include $(top_srcdir)/git.mk + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/data/icons/Makefile.am new/alacarte-3.44.0/data/icons/Makefile.am --- old/alacarte-3.42.0/data/icons/Makefile.am 2021-11-23 16:11:02.000000000 +0100 +++ new/alacarte-3.44.0/data/icons/Makefile.am 2022-03-20 13:29:11.000000000 +0100 @@ -79,3 +79,5 @@ install-data-local: install-icons update-icon-cache uninstall-local: uninstall-icons update-icon-cache + +-include $(top_srcdir)/git.mk diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/data/icons/Makefile.in new/alacarte-3.44.0/data/icons/Makefile.in --- old/alacarte-3.42.0/data/icons/Makefile.in 2021-11-23 16:19:24.000000000 +0100 +++ new/alacarte-3.44.0/data/icons/Makefile.in 2022-03-20 13:46:10.000000000 +0100 @@ -520,6 +520,8 @@ uninstall-local: uninstall-icons update-icon-cache +-include $(top_srcdir)/git.mk + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/man/Makefile.am new/alacarte-3.44.0/man/Makefile.am --- old/alacarte-3.42.0/man/Makefile.am 2021-11-23 16:11:02.000000000 +0100 +++ new/alacarte-3.44.0/man/Makefile.am 2022-03-20 13:29:11.000000000 +0100 @@ -16,3 +16,5 @@ EXTRA_DIST = $(xml_files) CLEANFILES = $(man_MANS) + +-include $(top_srcdir)/git.mk diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/man/Makefile.in new/alacarte-3.44.0/man/Makefile.in --- old/alacarte-3.42.0/man/Makefile.in 2021-11-23 16:19:24.000000000 +0100 +++ new/alacarte-3.44.0/man/Makefile.in 2022-03-20 13:46:10.000000000 +0100 @@ -534,6 +534,8 @@ %.1: %.xml $(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< +-include $(top_srcdir)/git.mk + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/po/cs.po new/alacarte-3.44.0/po/cs.po --- old/alacarte-3.42.0/po/cs.po 2021-11-23 16:11:02.000000000 +0100 +++ new/alacarte-3.44.0/po/cs.po 2022-03-20 11:54:47.000000000 +0100 @@ -7,15 +7,14 @@ # # Lukas Novotny <[email protected]>, 2006. # Jakub Friedl <[email protected]>, 2007, 2012. -# Marek ??ernock?? <[email protected]>, 2013. +# Marek ??ernock?? <[email protected]>, 2013, 2022. # msgid "" msgstr "" "Project-Id-Version: cs\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=alacarte&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2013-01-11 06:39+0000\n" -"PO-Revision-Date: 2013-01-22 09:22+0100\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/alacarte/issues\n" +"POT-Creation-Date: 2022-03-17 11:11+0000\n" +"PO-Revision-Date: 2022-03-18 15:15+0100\n" "Last-Translator: Marek ??ernock?? <[email protected]>\n" "Language-Team: ??e??tina <[email protected]>\n" "Language: cs\n" @@ -25,23 +24,23 @@ "X-Generator: Gtranslator 2.91.6\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ../Alacarte/MainWindow.py:159 +#: ../Alacarte/MainWindow.py:156 msgid "Name" msgstr "N??zev" -#: ../Alacarte/MainWindow.py:172 +#: ../Alacarte/MainWindow.py:169 msgid "Show" msgstr "Zobrazit" -#: ../Alacarte/MainWindow.py:180 +#: ../Alacarte/MainWindow.py:177 msgid "Item" msgstr "Polo??ka" -#: ../Alacarte/ItemEditor.py:85 +#: ../Alacarte/ItemEditor.py:104 msgid "Choose an icon" msgstr "Vyb??r??n?? ikony" -#: ../Alacarte/ItemEditor.py:198 +#: ../Alacarte/ItemEditor.py:233 msgid "Choose a command" msgstr "Vyb??r??n?? p????kazu" @@ -54,26 +53,30 @@ msgstr "P??idat nebo odebrat aplikace v hlavn?? nab??dce" #: ../data/alacarte.ui.h:2 +msgid "Restore System Configuration" +msgstr "Obnovit syst??mov?? nastaven??" + +#: ../data/alacarte.ui.h:3 msgid "Restore the default menu layout" msgstr "Obnovit v??choz?? uspo????d??n?? nab??dky" -#: ../data/alacarte.ui.h:3 +#: ../data/alacarte.ui.h:4 msgid "_New Menu" msgstr "_Nov?? nab??dka" -#: ../data/alacarte.ui.h:4 +#: ../data/alacarte.ui.h:5 msgid "Ne_w Item" msgstr "No_v?? polo??ka" -#: ../data/alacarte.ui.h:5 +#: ../data/alacarte.ui.h:6 msgid "New _Separator" msgstr "Nov?? _odd??lova??" -#: ../data/alacarte.ui.h:6 +#: ../data/alacarte.ui.h:7 msgid "Move Down" msgstr "P??esunout n????" -#: ../data/alacarte.ui.h:7 +#: ../data/alacarte.ui.h:8 msgid "Move Up" msgstr "P??esunout v????" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/po/sv.po new/alacarte-3.44.0/po/sv.po --- old/alacarte-3.42.0/po/sv.po 2021-11-23 16:11:02.000000000 +0100 +++ new/alacarte-3.44.0/po/sv.po 2022-03-20 11:54:47.000000000 +0100 @@ -1,45 +1,41 @@ # Swedish messages for alacarte. -# Copyright ?? 2006, 2007, 2009, 2014 Free Software Foundation, Inc. +# Copyright ?? 2006-2022 Free Software Foundation, Inc. # Christian Rose <[email protected]>, 2006. # Daniel Nylander <[email protected]>, 2006, 2007, 2009. -# Anders Jonsson <[email protected]>, 2014. -# -# $Id: sv.po,v 1.3 2006/12/28 06:52:28 dnylande Exp $ +# Anders Jonsson <[email protected]>, 2014, 2022. +# Luna Jernberg <[email protected]>, 2022. # msgid "" msgstr "" "Project-Id-Version: alacarte\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=alacarte&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-02-08 15:31+0000\n" -"PO-Revision-Date: 2014-04-12 13:35+0100\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/alacarte/issues\n" +"POT-Creation-Date: 2022-03-17 11:11+0000\n" +"PO-Revision-Date: 2022-03-17 16:21+0100\n" "Last-Translator: Anders Jonsson <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" +"X-Generator: Poedit 3.0.1\n" -#: ../Alacarte/MainWindow.py:155 +#: ../Alacarte/MainWindow.py:156 msgid "Name" msgstr "Namn" -#: ../Alacarte/MainWindow.py:168 +#: ../Alacarte/MainWindow.py:169 msgid "Show" msgstr "Visa" -#: ../Alacarte/MainWindow.py:176 +#: ../Alacarte/MainWindow.py:177 msgid "Item" msgstr "Objekt" -#: ../Alacarte/ItemEditor.py:86 -#| msgid "Choose an Icon" +#: ../Alacarte/ItemEditor.py:104 msgid "Choose an icon" msgstr "V??lj en ikon" -#: ../Alacarte/ItemEditor.py:205 -#| msgid "Choose an Icon" +#: ../Alacarte/ItemEditor.py:233 msgid "Choose a command" msgstr "V??lj ett kommando" @@ -48,36 +44,38 @@ msgstr "Huvudmeny" #: ../data/alacarte.desktop.in.in.h:2 -#| msgid "Change which applications are shown on the main menu" msgid "Add or remove applications from the main menu" msgstr "L??gg till eller ta bort program fr??n huvudmenyn" #: ../data/alacarte.ui.h:2 +msgid "Restore System Configuration" +msgstr "??terst??ll systemkonfiguration" + +#: ../data/alacarte.ui.h:3 msgid "Restore the default menu layout" msgstr "??terst??ll standardmenylayouten" -#: ../data/alacarte.ui.h:3 +#: ../data/alacarte.ui.h:4 msgid "_New Menu" msgstr "_Ny meny" -#: ../data/alacarte.ui.h:4 +#: ../data/alacarte.ui.h:5 msgid "Ne_w Item" msgstr "N_ytt objekt" -#: ../data/alacarte.ui.h:5 +#: ../data/alacarte.ui.h:6 msgid "New _Separator" msgstr "Ny _avgr??nsare" -#: ../data/alacarte.ui.h:6 +#: ../data/alacarte.ui.h:7 msgid "Move Down" msgstr "Flytta ned??t" -#: ../data/alacarte.ui.h:7 +#: ../data/alacarte.ui.h:8 msgid "Move Up" msgstr "Flytta upp??t" #: ../data/launcher-editor.ui.h:1 -#| msgid "Menu Properties" msgid "Launcher Properties" msgstr "Egenskaper f??r startare" @@ -94,16 +92,13 @@ msgstr "Kommentar:" #: ../data/launcher-editor.ui.h:5 -#| msgid "Browse..." msgid "Browse" msgstr "Bl??ddra" #: ../data/launcher-editor.ui.h:6 -#| msgid "Run command in a terminal" msgid "Launch in Terminal?" msgstr "Starta i en terminal?" #: ../data/directory-editor.ui.h:1 -#| msgid "Menu Properties" msgid "Directory Properties" msgstr "Katalogegenskaper" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alacarte-3.42.0/po/uk.po new/alacarte-3.44.0/po/uk.po --- old/alacarte-3.42.0/po/uk.po 2021-11-23 16:11:02.000000000 +0100 +++ new/alacarte-3.44.0/po/uk.po 2022-03-20 11:54:47.000000000 +0100 @@ -1,81 +1,122 @@ # Ukrainian translation of alacarte. # Copyright (C) 2006 Free Software Foundation # This file is distributed under the same license as the PACKAGE package. -# Maxim Dziumanenko <[email protected]>, 2006-2007. # +# Maxim Dziumanenko <[email protected]>, 2006-2007. +# Yuri Chornoivan <[email protected]>, 2022. msgid "" msgstr "" "Project-Id-Version: alacarte\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-02-19 13:00+0200\n" -"PO-Revision-Date: 2007-02-19 13:56+0200\n" -"Last-Translator: Maxim Dziumanenko <[email protected]>\n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/alacarte/issues\n" +"POT-Creation-Date: 2022-03-17 11:11+0000\n" +"PO-Revision-Date: 2022-03-18 09:52+0200\n" +"Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<" +"=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Lokalize 20.12.0\n" -#: ../Alacarte/MainWindow.py:167 +#: ../Alacarte/MainWindow.py:156 msgid "Name" msgstr "??????????" -#: ../Alacarte/MainWindow.py:183 +#: ../Alacarte/MainWindow.py:169 msgid "Show" msgstr "????????????????" -#: ../Alacarte/MainWindow.py:191 +#: ../Alacarte/MainWindow.py:177 msgid "Item" msgstr "??????????????" -#: ../alacarte.desktop.in.in.h:1 -msgid "Change which applications are shown on the main menu" -msgstr "?????????? ??????????????, ???? ???????????????????????????? ?? ?????????????????? ????????" +#: ../Alacarte/ItemEditor.py:104 +msgid "Choose an icon" +msgstr "???????????????? ????????????????????" + +#: ../Alacarte/ItemEditor.py:233 +msgid "Choose a command" +msgstr "???????????????? ??????????????" -#: ../alacarte.desktop.in.in.h:2 ../alacarte.glade.h:2 +#: ../data/alacarte.desktop.in.in.h:1 ../data/alacarte.ui.h:1 msgid "Main Menu" msgstr "?????????????? ????????" -#: ../alacarte.glade.h:1 -msgid "It_ems:" -msgstr "_????????????????:" +#: ../data/alacarte.desktop.in.in.h:2 +#| msgid "Change which applications are shown on the main menu" +msgid "Add or remove applications from the main menu" +msgstr "?????????????????? ?????????????? ???? ?????????????????? ???????? ?????? ?????????????????? ???? ?? ??????????" + +#: ../data/alacarte.ui.h:2 +msgid "Restore System Configuration" +msgstr "?????????????????? ???????????????????????? ??????????????" -#: ../alacarte.glade.h:3 -msgid "Move Down" -msgstr "?????????????????????? ????????" +#: ../data/alacarte.ui.h:3 +msgid "Restore the default menu layout" +msgstr "?????????????????? ???????????????????? ???????????? ????????" -#: ../alacarte.glade.h:4 -msgid "Move Up" -msgstr "?????????????????????? ??????????" +#: ../data/alacarte.ui.h:4 +msgid "_New Menu" +msgstr "_???????????????? ????????" -#: ../alacarte.glade.h:5 +#: ../data/alacarte.ui.h:5 msgid "Ne_w Item" msgstr "??_?????????????? ??????????????" -#: ../alacarte.glade.h:6 +#: ../data/alacarte.ui.h:6 msgid "New _Separator" msgstr "???????????????? _????????????????????" -#: ../alacarte.glade.h:7 -msgid "Restore the default menu layout" -msgstr "?????????????????? ???????????????????? ???????????? ????????" +#: ../data/alacarte.ui.h:7 +msgid "Move Down" +msgstr "?????????????????????? ????????" -#: ../alacarte.glade.h:8 -msgid "Revert Changes?" -msgstr "?????????????????? ???????????" - -#: ../alacarte.glade.h:9 -msgid "Revert all menus to original settings?" -msgstr "?????????????????? ?????? ???????? ???? ?????????????????????? ??????????? " - -#: ../alacarte.glade.h:10 -msgid "_Menus:" -msgstr "_????????:" +#: ../data/alacarte.ui.h:8 +msgid "Move Up" +msgstr "?????????????????????? ??????????" -#: ../alacarte.glade.h:11 -msgid "_New Menu" -msgstr "_???????????????? ????????" +#: ../data/launcher-editor.ui.h:1 +msgid "Launcher Properties" +msgstr "?????????????????????? ???????????? ??????????????" + +#: ../data/launcher-editor.ui.h:2 ../data/directory-editor.ui.h:2 +#| msgid "Name" +msgid "Name:" +msgstr "??????????:" + +#: ../data/launcher-editor.ui.h:3 +msgid "Command:" +msgstr "??????????????:" + +#: ../data/launcher-editor.ui.h:4 ../data/directory-editor.ui.h:3 +msgid "Comment:" +msgstr "????????????????:" + +#: ../data/launcher-editor.ui.h:5 +msgid "Browse" +msgstr "??????????????" + +#: ../data/launcher-editor.ui.h:6 +msgid "Launch in Terminal?" +msgstr "?????????????????? ?? ???????????????????" + +#: ../data/directory-editor.ui.h:1 +msgid "Directory Properties" +msgstr "?????????????????????? ????????????????" + +#~ msgid "It_ems:" +#~ msgstr "_????????????????:" + +#~ msgid "Revert Changes?" +#~ msgstr "?????????????????? ???????????" + +#~ msgid "Revert all menus to original settings?" +#~ msgstr "?????????????????? ?????? ???????? ???? ?????????????????????? ??????????? " -#: ../alacarte.glade.h:12 -msgid "_Revert to Original" -msgstr "_?????????????????? ???? ?????????????????????? ??????????" +#~ msgid "_Menus:" +#~ msgstr "_????????:" +#~ msgid "_Revert to Original" +#~ msgstr "_?????????????????? ???? ?????????????????????? ??????????"
