Projects
Factory:RISC-V:LXDE
libfm
Sign Up
Log In
Username
Password
We truncated the diff of some files because they were too big. If you want to see the full diff for every file,
click here
.
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 4
View file
_service:tar_scm:libfm.spec
Changed
@@ -4,38 +4,37 @@ %undefine _changelog_trimtime Name: libfm -Version: 1.3.1 +Version: 1.3.2 Release: 1 Summary: GIO-based library for file manager-like programs - License: GPLv2+ URL: http://pcmanfm.sourceforge.net/ - Source0: http://downloads.sourceforge.net/pcmanfm/%{name}-%{version}.tar.xz Source1: https://raw.githubusercontent.com/lxde/libfm/master/autogen.sh Source10: create-libfm-git-bare-tarball.sh +Patch1: libfm-1.3.2-0001-fm_config_load_from_key_file-don-t-replace-string-va.patch Patch1000: libfm-1.3.0.2-moduledir-gtkspecific-v03.patch BuildRequires: libexif-devel BuildRequires: gtk3-devel -BuildRequires: gtk2-devel +BuildRequires: gtk2-devel +BuildRequires: glib2-devel + +BuildRequires: pkgconfig(pango) +BuildRequires: pkgconfig(cairo) %if ! 0%{?bootstrap} BuildRequires: menu-cache-devel >= 0.3.2 %endif +BuildRequires: gcc BuildRequires: gettext BuildRequires: intltool BuildRequires: desktop-file-utils - BuildRequires: gtk-doc BuildRequires: libxslt - BuildRequires: dbus-glib-devel - BuildRequires: vala - -# Patch1000 needs the below anyway BuildRequires: automake BuildRequires: libtool BuildRequires: git @@ -44,7 +43,6 @@ Obsoletes: %{name}-devel-docs < 0.1.15 %endif - %description LibFM is a GIO-based library used to develop file manager-like programs. It is developed as the core of next generation PCManFM and takes care of all file- @@ -54,7 +52,6 @@ This package contains the generic non-gui functions of libfm. - %package gtk Summary: File manager-related GTK+ widgets of %{name} Requires: %{name}%{?_isa} = %{version}-%{release} @@ -94,7 +91,6 @@ This package contains some GTK+ related utility files for %{name}. - %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} @@ -103,7 +99,6 @@ The %{name}-devel package contains libraries and header files for developing applications that use %{name}. - %package gtk-devel-common Summary: Common Development files for %{name}-gtk Requires: %{name}-devel = %{version}-%{release} @@ -113,7 +108,6 @@ The %{name}-gtk-devel package contains common header files for developing applications that use %{name}-gtk. - %package gtk-devel Summary: Development files for %{name}-gtk Requires: %{name}-gtk%{?_isa} = %{version}-%{release} @@ -138,7 +132,6 @@ %description devel-docs This package containg development documentation files for %{name}. - %prep %setup -q -n %{name}-%{version}%{?prever} cp -a %{SOURCE1} . @@ -335,5 +328,8 @@ %endif %changelog +* Mon Jan 02 2023 lin zhang <lin.zhang@turbolinux.com.cn> - 1.3.2-1 +- update to 1.3.2 + * Tue Aug 3 2021 chainsx <chainsx@isrc.iscas.ac.cn> - 1.3.1-1 - Initial openEuler package
View file
_service:tar_scm:libfm-1.3.2-0001-fm_config_load_from_key_file-don-t-replace-string-va.patch
Added
@@ -0,0 +1,91 @@ +From 1789c96ae73720ef001249d2085553102043aee3 Mon Sep 17 00:00:00 2001 +From: Mamoru TASAKA <mtasaka@fedoraproject.org> +Date: Thu, 28 Oct 2021 22:07:14 +0900 +Subject: PATCH fm_config_load_from_key_file: don't replace string value when + loaded config file does not have such key + +For example, fm_config_load_from_file() loads every key file with path +ending with "/libfm/libfm.conf" under XDG_CONFIG_DIRS using fm_config_load_from_key_file(). + +With current fm_config_load_from_key_file() implementation, every time it is called, +for key having string, firstly the old value is always free'ed, and the new value is +read and set, even if the new value is empty. +So if system wide key file contains a key with string value but user-specific key file +does not contain the key, system widely set key value is lost, which is unwilling. + +For other value types (such as bool or int), the corresponding fm_key_file_get_TYPE +function are used, and these functions replace old values when the new config file +actually has the corresponding key. + +With this patch, similar to other value types, string value is to be replaced +only when new loaded config actually has corresponding key. +Also, implement fm_key_file_get_string() to be consistent with other types. +--- + src/base/fm-config.c | 30 ++++++++++++++++++------------ + 1 file changed, 18 insertions(+), 12 deletions(-) + +diff --git a/src/base/fm-config.c b/src/base/fm-config.c +index a633857..1e3d3f7 100644 +--- a/src/base/fm-config.c ++++ b/src/base/fm-config.c +@@ -245,6 +245,19 @@ static void _parse_drop_default_action(GKeyFile *kf, gint *action) + } + } + ++static gboolean fm_key_file_get_string(GKeyFile* kf, const char* grp, const char* key, char** val) ++{ ++ char* str_key_new = g_key_file_get_string(kf, grp, key, NULL); ++ if(G_LIKELY(str_key_new)) ++ { ++ if (*val) ++ g_free(*val); ++ *val = str_key_new; ++ } ++ return str_key_new != NULL; ++} ++ ++ + /** + * fm_config_load_from_key_file + * @cfg: pointer to configuration +@@ -263,12 +276,8 @@ void fm_config_load_from_key_file(FmConfig* cfg, GKeyFile* kf) + fm_key_file_get_int(kf, "config", "auto_selection_delay", &cfg->auto_selection_delay); + fm_key_file_get_bool(kf, "config", "confirm_del", &cfg->confirm_del); + fm_key_file_get_bool(kf, "config", "confirm_trash", &cfg->confirm_trash); +- if(cfg->terminal) +- g_free(cfg->terminal); +- cfg->terminal = g_key_file_get_string(kf, "config", "terminal", NULL); +- if(cfg->archiver) +- g_free(cfg->archiver); +- cfg->archiver = g_key_file_get_string(kf, "config", "archiver", NULL); ++ fm_key_file_get_string(kf, "config", "terminal", &cfg->terminal); ++ fm_key_file_get_string(kf, "config", "archiver", &cfg->archiver); + fm_key_file_get_bool(kf, "config", "thumbnail_local", &cfg->thumbnail_local); + fm_key_file_get_int(kf, "config", "thumbnail_max", &cfg->thumbnail_max); + fm_key_file_get_bool(kf, "config", "advanced_mode", &cfg->advanced_mode); +@@ -285,8 +294,7 @@ void fm_config_load_from_key_file(FmConfig* cfg, GKeyFile* kf) + fm_key_file_get_bool(kf, "config", "defer_content_test", &cfg->defer_content_test); + fm_key_file_get_bool(kf, "config", "quick_exec", &cfg->quick_exec); + fm_key_file_get_bool(kf, "config", "smart_desktop_autodrop", &cfg->smart_desktop_autodrop); +- g_free(cfg->format_cmd); +- cfg->format_cmd = g_key_file_get_string(kf, "config", "format_cmd", NULL); ++ fm_key_file_get_string(kf, "config", "format_cmd", &cfg->format_cmd); + /* append blacklist */ + strv = g_key_file_get_string_list(kf, "config", "modules_blacklist", NULL, NULL); + fm_strcatv(&cfg->modules_blacklist, strv); +@@ -305,10 +313,8 @@ void fm_config_load_from_key_file(FmConfig* cfg, GKeyFile* kf) + fm_key_file_get_int(kf, "ui", "thumbnail_size", &cfg->thumbnail_size); + fm_key_file_get_bool(kf, "ui", "show_thumbnail", &cfg->show_thumbnail); + fm_key_file_get_bool(kf, "ui", "shadow_hidden", &cfg->shadow_hidden); +- g_free(cfg->list_view_size_units); +- cfg->list_view_size_units = g_key_file_get_string(kf, "ui", "list_view_size_units", NULL); +- g_free(cfg->saved_search); +- cfg->saved_search = g_key_file_get_string(kf, "ui", "saved_search", NULL); ++ fm_key_file_get_string(kf, "ui", "list_view_size_units", &cfg->list_view_size_units); ++ fm_key_file_get_string(kf, "ui", "saved_search", &cfg->saved_search); + + fm_key_file_get_bool(kf, "places", "places_home", &cfg->places_home); + fm_key_file_get_bool(kf, "places", "places_desktop", &cfg->places_desktop); +-- +2.33.1 +
View file
_service:tar_scm:create-libfm-git-bare-tarball.sh
Changed
@@ -18,6 +18,10 @@ git clone --mirror $GITURL tar czf ${TARNAME} ${REPONAME}.git/ +pushd ${REPONAME}.git/ +git log --format=fuller | head -n 12 +popd + cp -p ${TARNAME} $PWDDIR popd rm -rf $TMPDIR
View file
_service:tar_scm:libfm-1.3.1.tar.xz/AUTHORS -> _service:tar_scm:libfm-1.3.2.tar.xz/AUTHORS
Changed
@@ -34,5 +34,9 @@ Tsu Jan <tsujan2000@gmail.com> Nathan Osman <nathan@quickmediasolutions.com> Nikita Sirgienko <warquark@gmail.com> +Mahmoud Al-Qudsi <mqudsi@neosmart.net> +Simon Long <simon@raspberrypi.org> +wb9688 <wb9688@users.noreply.github.com> +Ingo Brückl <ib@wupperonline.de> Also big thanks to our great translation team.
View file
_service:tar_scm:libfm-1.3.1.tar.xz/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -187,9 +187,9 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - cscope distdir dist dist-all distcheck -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ - $(LISP)config.h.in + cscope distdir distdir-am dist dist-all distcheck +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \ + config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. @@ -253,6 +253,8 @@ GZIP_ENV = --best DIST_ARCHIVES = $(distdir).tar.xz DIST_TARGETS = dist-xz +# Exists only to be overridden by the user if desired. +AM_DISTCHECK_DVI_TARGET = dvi distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' @@ -490,8 +492,8 @@ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_srcdir)/Makefile.decl $(am__empty): @@ -663,7 +665,10 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ @@ -728,7 +733,7 @@ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir @@ -742,6 +747,10 @@ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) +dist-zstd: distdir + tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst + $(am__post_remove_distdir) + dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @@ -753,7 +762,7 @@ @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir @@ -771,7 +780,7 @@ distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ @@ -781,9 +790,11 @@ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ + *.tar.zst*) \ + zstd -dc $(distdir).tar.zst | $(am__untar) ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) @@ -799,7 +810,7 @@ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ @@ -965,8 +976,8 @@ am--refresh check check-am check-local clean clean-cscope \ clean-generic clean-libtool cscope cscopelist-am ctags \ ctags-am dist dist-all dist-bzip2 dist-gzip dist-lzip \ - dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \ - distclean-generic distclean-hdr distclean-libtool \ + dist-shar dist-tarZ dist-xz dist-zip dist-zstd distcheck \ + distclean distclean-generic distclean-hdr distclean-libtool \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/NEWS -> _service:tar_scm:libfm-1.3.2.tar.xz/NEWS
Changed
@@ -1,3 +1,30 @@ +Changes on 1.3.2 since 1.3.1: + +* Fixed all/allfiles parse conditions in FmAction, it was inverted. + +* Fixed 'SelectionCount' condition parsing in FmAction if '=' was used. + +* Fix memory access error if home path == desktop path. + +* Added treating /usr/local/share/ as trusted for *.desktop files. + +* Fixed value for amount of data transferred in progress dialog. + +* Fixed preferred height in fm-cell-renderer-text. + +* Fixed search_window immediately disappearing on Wayland. + +* Changed thumbnails placement according to the XDG Base Directory + Specification. + +* Changed xarchiver command invocation to create archive. It was incompatibly + changed by the author in 2017. + +* Don't set $DISPLAY for spawned process, let it be inherited from parent. + +* Fixed memory leak on sn_id in fm-action.c. + + Changes on 1.3.1 since 1.3.0.2: * Fixed crash on reload while directory changes (folder might be not ready yet).
View file
_service:tar_scm:libfm-1.3.1.tar.xz/aclocal.m4 -> _service:tar_scm:libfm-1.3.2.tar.xz/aclocal.m4
Changed
@@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.15 -*- Autoconf -*- +# generated automatically by aclocal 1.16.3 -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -766,7 +766,7 @@ AS_VAR_IF($1, "", $5, $4)dnl )dnl PKG_CHECK_VAR -# Copyright (C) 2002-2014 Free Software Foundation, Inc. +# Copyright (C) 2002-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -778,10 +778,10 @@ # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN(AM_AUTOMAKE_VERSION, -am__api_version='1.15' +am__api_version='1.16' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if($1, 1.15, , +m4_if($1, 1.16.3, , AC_FATAL(Do not call $0, use AM_INIT_AUTOMAKE($1).))dnl ) @@ -797,12 +797,12 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN(AM_SET_CURRENT_AUTOMAKE_VERSION, -AM_AUTOMAKE_VERSION(1.15)dnl +AM_AUTOMAKE_VERSION(1.16.3)dnl m4_ifndef(AC_AUTOCONF_VERSION, m4_copy(m4_PACKAGE_VERSION, AC_AUTOCONF_VERSION))dnl _AM_AUTOCONF_VERSION(m4_defn(AC_AUTOCONF_VERSION))) -# Copyright (C) 2011-2014 Free Software Foundation, Inc. +# Copyright (C) 2011-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -864,7 +864,7 @@ # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -916,7 +916,7 @@ # AM_COND_IF -*- Autoconf -*- -# Copyright (C) 2008-2014 Free Software Foundation, Inc. +# Copyright (C) 2008-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -953,7 +953,7 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# Copyright (C) 1997-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -984,7 +984,7 @@ Usually this means the macro was only invoked conditionally.) fi)) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1175,13 +1175,12 @@ # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. - # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN(_AM_OUTPUT_DEPENDENCY_COMMANDS, @@ -1189,49 +1188,43 @@ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + AS_CASE($CONFIG_FILES, + *\'*, eval set x "$CONFIG_FILES", + *, set x $CONFIG_FILES) shift - for mf + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf do # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named 'Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line + am_mf=`AS_ECHO("$am_mf") | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile which includes + # dependency-tracking related rules and includes. + # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running 'make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME("$file")` - AS_MKDIR_P($dirpart/$fdir) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`AS_DIRNAME("$am_mf")` + am_filepart=`AS_BASENAME("$am_mf")` + AM_RUN_LOG(cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles) || am_rc=$? done + if test $am_rc -ne 0; then + AC_MSG_FAILURE(Something went wrong bootstrapping makefile fragments + for automatic dependency tracking. If GNU make was not used, consider + re-running the configure script with MAKE="gmake" (or whatever is + necessary). You can also try re-running configure with the + '--disable-dependency-tracking' option to at least be able to build + the package (albeit without support for automatic dependency tracking).) + fi + AS_UNSET(am_dirpart) + AS_UNSET(am_filepart) + AS_UNSET(am_mf) + AS_UNSET(am_rc) + rm -f conftest-deps.mk } )# _AM_OUTPUT_DEPENDENCY_COMMANDS @@ -1240,18 +1233,17 @@ # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # -# This code is only required when automatic dependency tracking -# is enabled. FIXME. This creates each '.P' file that we will -# need in order to bootstrap the dependency handling code. +# This code is only required when automatic dependency tracking is enabled. +# This creates each '.Po' and '.Plo' makefile fragment that we'll need in +# order to bootstrap the dependency handling code. AC_DEFUN(AM_OUTPUT_DEPENDENCY_COMMANDS, AC_CONFIG_COMMANDS(depfiles, test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS, - AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir") -) + AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}")) # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc.
View file
_service:tar_scm:libfm-1.3.1.tar.xz/compile -> _service:tar_scm:libfm-1.3.2.tar.xz/compile
Changed
@@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2012-10-14.11; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 Free Software Foundation, Inc. # Written by Tom Tromey <tromey@cygnus.com>. # # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with this program. If not, see <https://www.gnu.org/licenses/>. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -53,7 +53,7 @@ MINGW*) file_conv=mingw ;; - CYGWIN*) + CYGWIN* | MSYS*) file_conv=cygwin ;; *) @@ -67,7 +67,7 @@ mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; - cygwin/*) + cygwin/* | msys/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) @@ -255,7 +255,8 @@ echo "compile $scriptversion" exit $? ;; - cl | */\\cl | cl.exe | */\\cl.exe ) + cl | */\\cl | cl.exe | */\\cl.exe | \ + icl | */\\icl | icl.exe | */\\icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac @@ -339,9 +340,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End:
View file
_service:tar_scm:libfm-1.3.1.tar.xz/configure -> _service:tar_scm:libfm-1.3.2.tar.xz/configure
Changed
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for libfm 1.3.1. +# Generated by GNU Autoconf 2.69 for libfm 1.3.2. # # Report bugs to <http://pcmanfm.sourceforge.net/>. # @@ -650,8 +650,8 @@ # Identity of this package. PACKAGE_NAME='libfm' PACKAGE_TARNAME='libfm' -PACKAGE_VERSION='1.3.1' -PACKAGE_STRING='libfm 1.3.1' +PACKAGE_VERSION='1.3.2' +PACKAGE_STRING='libfm 1.3.2' PACKAGE_BUGREPORT='http://pcmanfm.sourceforge.net/' PACKAGE_URL='' @@ -838,7 +838,6 @@ AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE -am__quote am__include DEPDIR OBJEXT @@ -915,7 +914,8 @@ PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR -SHELL' +SHELL +am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking @@ -1520,7 +1520,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 libfm 1.3.1 to adapt to many kinds of systems. +\`configure' configures libfm 1.3.2 to adapt to many kinds of systems. Usage: $0 OPTION... VAR=VALUE... @@ -1591,7 +1591,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of libfm 1.3.1:";; + short | recursive ) echo "Configuration of libfm 1.3.2:";; esac cat <<\_ACEOF @@ -1743,7 +1743,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -libfm configure 1.3.1 +libfm configure 1.3.2 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2158,7 +2158,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by libfm $as_me 1.3.1, which was +It was created by libfm $as_me 1.3.2, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2506,7 +2506,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -am__api_version='1.15' +am__api_version='1.16' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do @@ -2711,12 +2711,7 @@ am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; - *) - MISSING="\${SHELL} $am_aux_dir/missing" ;; - esac + MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then @@ -3021,7 +3016,7 @@ # Define the identity of the package. PACKAGE='libfm' - VERSION='1.3.1' + VERSION='1.3.2' cat >>confdefs.h <<_ACEOF @@ -3051,8 +3046,8 @@ # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: -# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> -# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> +# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> +# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The @@ -3103,7 +3098,7 @@ Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: <http://www.gnu.org/software/coreutils/>. +that behaves properly: <https://www.gnu.org/software/coreutils/>. If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -3165,45 +3160,45 @@ ac_config_commands="$ac_config_commands depfiles" - -am_make=${MAKE-make} -cat > confinc << 'END' +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 +$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } +cat > confinc.mk << 'END' am__doit: - @echo this is the am__doit target + @echo this is the am__doit target >confinc.out .PHONY: am__doit END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from 'make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD +# BSD make does it like this. +echo '.include "confinc.mk" # ignored' > confmf.BSD +# Other make implementations (GNU, Solaris 10, AIX) do it like this. +echo 'include confinc.mk # ignored' > confmf.GNU +_am_result=no +for s in GNU BSD; do + { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 + (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + case $?:`cat confinc.out 2>/dev/null` in #( + '0:this is the am__doit target') : + case $s in #( + BSD) : + am__include='.include' am__quote='"' ;; #( + *) : + am__include='include' am__quote='' ;; +esac ;; #( + *) : ;; - esac -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf +esac + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
View file
_service:tar_scm:libfm-1.3.1.tar.xz/configure.ac -> _service:tar_scm:libfm-1.3.2.tar.xz/configure.ac
Changed
@@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.63) -AC_INIT(libfm, 1.3.1, http://pcmanfm.sourceforge.net/) +AC_INIT(libfm, 1.3.2, http://pcmanfm.sourceforge.net/) AM_INIT_AUTOMAKE(-Wall -Werror foreign subdir-objects no-dist-gzip dist-xz -Wno-portability) AC_CONFIG_MACRO_DIR(m4) AC_CONFIG_HEADERS(config.h)
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/data/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -171,7 +171,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -460,8 +460,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -730,7 +730,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ list='$(DISTFILES)'; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/archivers.list -> _service:tar_scm:libfm-1.3.2.tar.xz/data/archivers.list
Changed
@@ -6,10 +6,10 @@ supports_uris=true xarchiver -create=xarchiver --add-to %F +create=xarchiver --compress %F extract=xarchiver --extract %F extract_to=xarchiver --extract-to %d %F -mime_types=application/x-arj;application/arj;application/x-bzip;application/x-bzip-compressed-tar;image/x-compressed-xcf;application/gzip;application/x-gzip;application/x-rar;application/x-rar-compressed;application/vnd.rar;application/x-tar;application/x-zip;application/x-zip-compressed;application/zip;multipart/x-zip;application/x-7z-compressed;application/x-compressed-tar;application/x-bzip2;application/x-bzip2-compressed-tar;application/x-lzma-compressed-tar;application/x-lzma;application/x-deb;application/deb;application/vnd.debian.binary-package;application/x-xz;application/x-xz-compressed-tar;application/x-rpm;application/x-source-rpm;application/x-lzop;application/x-lzop-compressed-tar;application/x-tzo;application/x-war;application/x-compress;application/x-tarz;application/x-java-archive;application/x-lha;application/x-lhz; +mime_types=application/x-archive;application/x-arj;application/arj;application/x-bzip;application/x-bzip-compressed-tar;image/x-compressed-xcf;application/x-cpio;application/x-cpio-compressed;application/epub+zip;application/gzip;application/x-gzip;application/x-rar;application/x-rar-compressed;application/vnd.rar;application/x-tar;application/x-zip;application/x-zip-compressed;application/zip;multipart/x-zip;application/x-7z-compressed;application/x-compressed-tar;application/x-bzip2;application/x-bzip2-compressed-tar;application/x-lzma-compressed-tar;application/x-lzma;application/x-deb;application/deb;application/vnd.android.package-archive;application/vnd.comicbook+zip;application/vnd.debian.binary-package;application/vnd.openofficeorg.extension;application/x-xz;application/x-xz-compressed-tar;application/x-rpm;application/x-source-rpm;application/x-lzop;application/x-lzop-compressed-tar;application/x-tzo;application/x-war;application/x-compress;application/x-tarz;application/x-java-archive;application/x-lha;application/x-lhz;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lz4;application/x-lz4-compressed-tar;application/x-lzip;application/x-lzip-compressed-tar;application/x-xpinstall;application/zstd;application/x-zstd-compressed-tar; squeeze create=squeeze --new %F
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/libfm-pref-apps.1 -> _service:tar_scm:libfm-1.3.2.tar.xz/data/libfm-pref-apps.1
Changed
@@ -1,5 +1,5 @@ .\" -*-nroff-*- -.TH LIBFM-PREF-APPS 1 "June 2012" "libfm 1.3.1" "libfm-pref-apps manual" +.TH LIBFM-PREF-APPS 1 "June 2012" "libfm 1.3.2" "libfm-pref-apps manual" .SH NAME libfm-pref-apps \- sets preferred applications for programs based on libfm .SH SYNOPSIS
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/libfm-pref-apps.desktop -> _service:tar_scm:libfm-1.3.2.tar.xz/data/libfm-pref-apps.desktop
Changed
@@ -18,7 +18,7 @@ Namefi=Oletussovellukset Namefo=Framumtiknar nýtsluskipanir Namefr=Applications préférées -Namegl=Aplicacións preferidas +Namegl=Aplicativos preferidos Namehe=יישומים מועדפים Namehr=Željeni programi Namehu=Alapértelmezett alkalmazások @@ -30,6 +30,7 @@ Nameko=기본 프로그램 Namelg=Puloguramu ennondemu Namelt=Pageidaujamos programos +Namenb=Forvalgte programmer Namenl=Voorkeurstoepassingen Namepl=Preferowane programy Namept=Aplicações preferidas @@ -62,7 +63,7 @@ Commenteu=Hautatu Webeko esteka edo e-posta helbide bat klikatzean deitzen diren aplikazioak Commentfi=Selecione as aplicações a invocar ao clicar numa ligação ou endereço eletrónico Commentfr=Sélectionner les applications à ouvrir par clic sur un hyperlien ou une adresse électronique -Commentgl=Seleccione as aplicacións que chamar ao premer sobre a ligazón web ou o enderezo de correo +Commentgl=Seleccione os aplicativos que chamar ao premer sobre a ligazón web ou o enderezo de correo Commenthe=בחירת יישומים שיפעלו עקב לחיצה על קישור לאתר או לכתובת דוא״ל Commenthr=Odabrite programe koji će biti pozvani klikom na poveznicu ili e-mail adresu Commentid=Pilih aplikasi yang dipanggil saat mengklik taut Web atau alamat surel @@ -73,6 +74,7 @@ Commentko=웹 링크 또는 전자메일 주소를 누를때 호출할 프로그램을 선택하십시오 Commentlg=Londa puloguramu z'oyagala zitandike nga okoonye ku nyunzi ey'oku yintaneti oba ku ndagiriro ya email Commentlt=Pasirinkti programas, kurios bus paleidžiamos, spustelėjus saityno nuorodą ar el. pašto adresą +Commentnb=Velg programmer som skal benyttes ved klikking på nettlenker eller E-postadresser Commentnl=Kies toepassingen die worden aangeroepen bij een klik op een webkoppeling of e-mailadres Commentpl=Wybierz programy uruchamiane przy kliknięciu w odnośnik sieciowy lub adres e-mail Commentpt=Selecione as aplicações a invocar ao clicar numa ligação ou endereço eletrónico
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/lxshortcut.1 -> _service:tar_scm:libfm-1.3.2.tar.xz/data/lxshortcut.1
Changed
@@ -1,5 +1,5 @@ .\" -*-nroff-*- -.TH LXSHORTCUT 1 "August 2013" "libfm 1.3.1" "lxshortcut manual" +.TH LXSHORTCUT 1 "August 2013" "libfm 1.3.2" "lxshortcut manual" .SH NAME lxshortcut \- desktop entry file editor .SH SYNOPSIS
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/lxshortcut.desktop -> _service:tar_scm:libfm-1.3.2.tar.xz/data/lxshortcut.desktop
Changed
@@ -27,6 +27,7 @@ Nameko=바로 가기 편집기 Namelg=Kola ku Panya Namelt=Šaukinių redaktorius +Namenb=Snarveisredigerer Namenl=Snelkoppelingbewerker Namepl=Edytor skrótu Namept=Editor de atalhos @@ -49,7 +50,7 @@ Commentca=Canvia l'entrada d'escriptori existent o crea'n una de nova Commentcs=Vytvořit nový nebo změnit stávající vstup na ploše Commentda=Opret ny eller ændre eksisterende skrivebordspost -Commentde=Erstelle neuen oder ändere existieren .desktop-Datei Eintrag +Commentde=Neue .desktop-Datei erstellen oder eine vorhandene bearbeiten Commentel=Δημιουργία νέας ή αλλαγή υπάρχουσας εγγραφής στην επιφάνεια εργασίας Commenten_GB=Create new or change existing desktop entry Commentes=Crear o modificar una entrada .desktop @@ -69,6 +70,7 @@ Commentko=기존 데스크톱 항목을 새로 만들거나 바꿉니다 Commentlg=Kolawo oba kyusa ekisangibwa awakolerwa Commentlt=Sukurti naują ar keisti esamą darbalaukio įrašą +Commentnb=Opprett en ny skrivebordsoppføring eller endre en som eksisterer Commentnl=Maak nieuw of verander bestaand configuratiebestand voor de werkomgeving Commentpl=Tworzy nowy lub modyfikuje istniejący element pulpitu Commentpt=Criar entrada ou alterar uma entrada existente
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/ui/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/data/ui/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -373,8 +373,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -419,7 +419,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ list='$(DISTFILES)'; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/depcomp -> _service:tar_scm:libfm-1.3.2.tar.xz/depcomp
Changed
@@ -1,9 +1,9 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2013-05-30.07; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 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 @@ -16,7 +16,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with this program. If not, see <https://www.gnu.org/licenses/>. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -783,9 +783,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End:
View file
_service:tar_scm:libfm-1.3.1.tar.xz/docs/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/docs/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -137,7 +137,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -392,8 +392,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_srcdir)/Makefile.decl $(am__empty): @@ -511,7 +511,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ list='$(DISTFILES)'; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/docs/reference/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/docs/reference/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -137,7 +137,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -392,8 +392,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_srcdir)/Makefile.decl $(am__empty): @@ -511,7 +511,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ list='$(DISTFILES)'; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/docs/reference/libfm/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/docs/reference/libfm/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -541,8 +541,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_srcdir)/gtk-doc.make $(am__empty): @@ -569,7 +569,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ list='$(DISTFILES)'; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/missing -> _service:tar_scm:libfm-1.3.2.tar.xz/missing
Changed
@@ -1,9 +1,9 @@ #! /bin/sh # Common wrapper for a few potentially missing GNU programs. -scriptversion=2013-10-28.13; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with this program. If not, see <https://www.gnu.org/licenses/>. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -101,9 +101,9 @@ exit $st fi -perl_URL=http://www.perl.org/ -flex_URL=http://flex.sourceforge.net/ -gnu_software_URL=http://www.gnu.org/software +perl_URL=https://www.perl.org/ +flex_URL=https://github.com/westes/flex +gnu_software_URL=https://www.gnu.org/software program_details () { @@ -207,9 +207,9 @@ exit $st # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End:
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/de.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/de.po
Changed
@@ -7,8 +7,8 @@ "Project-Id-Version: libfm 1.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-13 00:10+0300\n" -"PO-Revision-Date: 2015-06-12 21:40+0000\n" -"Last-Translator: H.Humpel <H.Humpel@gmx.de>\n" +"PO-Revision-Date: 2020-12-16 12:34+0100\n" +"Last-Translator: Ingo Brückl <ib@wupperonline.de>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ #: ../data/lxshortcut.desktop.in.h:2 msgid "Create new or change existing desktop entry" -msgstr "Erstelle neuen oder ändere existieren .desktop-Datei Eintrag" +msgstr "Neue .desktop-Datei erstellen oder eine vorhandene bearbeiten" #: ../data/ui/app-chooser.glade.h:1 msgid "Choose Application" @@ -40,7 +40,7 @@ #: ../data/ui/app-chooser.glade.h:2 msgid "Use selected application to open files" -msgstr "Gewählte Anwendung zum Öffnen von Dateien nutzen" +msgstr "Vorhandene Anwendung zum Öffnen verwenden" #: ../data/ui/app-chooser.glade.h:3 msgid "_Installed Applications" @@ -59,7 +59,7 @@ #: ../data/ui/app-chooser.glade.h:6 #: ../src/modules/gtk-fileprop-x-desktop.c:294 msgid "_Execute in terminal emulator" -msgstr "_Im Terminal-Emulator ausführen" +msgstr "_Im Terminal ausführen" #. row 2: "X-KeepTerminal" GtkCheckButton #: ../data/ui/app-chooser.glade.h:7 @@ -85,12 +85,11 @@ #: ../data/ui/app-chooser.glade.h:14 msgid "<b>_Application name (optional, set it to keep association)</b>" msgstr "" -"<b>_Anwendungsname (optional, legen Sie ihn fest, um die Zuordnung zu " -"behalten)</b>" +"<b>_Benennung der Anwendung (optional, um die Zuordnung zu speichern)</b>" #: ../data/ui/app-chooser.glade.h:15 msgid "Execute custom command line to open files" -msgstr "Benutzerdefinierten Befehl zum Öffnen nutzen" +msgstr "Benutzerdefinierten Befehl zum Öffnen verwenden" #: ../data/ui/app-chooser.glade.h:16 msgid "C_ustom Command Line" @@ -98,11 +97,11 @@ #: ../data/ui/app-chooser.glade.h:17 msgid "_Set selected application as default action for this file type" -msgstr "_Gewählte Anwendung als Standard für diesen Dateityp benutzen" +msgstr "_Gewählte Anwendung als Vorgabe für diesen Dateityp festlegen" #: ../data/ui/ask-rename.glade.h:1 msgid "Confirm File Replacing" -msgstr "Ersetzen von Datei bestätigen" +msgstr "Ersetzung bestätigen" #: ../data/ui/ask-rename.glade.h:2 msgid "_Skip" @@ -122,7 +121,7 @@ "\n" "Do you want to replace the existing file" msgstr "" -"<b>Eine Datei mit diesem Namen existiert bereits an diesem Ort.</b>\n" +"<b>Eine Datei mit diesem Namen existiert hier bereits.</b>\n" "\n" "Wollen Sie die vorhandene Datei" @@ -140,12 +139,12 @@ #: ../data/ui/choose-icon.ui.h:1 msgid "Choose An Icon..." -msgstr "Wählen Sie ein Symbol aus…" +msgstr "Symbol auswählen" #. genitive case is here: Choose icon from: ... #: ../data/ui/choose-icon.ui.h:3 msgid "system icon theme" -msgstr "System-Symboldesign" +msgstr "Systemthema" #. genitive case is here: Choose icon from: ... #: ../data/ui/choose-icon.ui.h:5 @@ -154,7 +153,7 @@ #: ../data/ui/choose-icon.ui.h:6 msgid "<b>Choose icon from:</b>" -msgstr "<b>Symbol auswählen aus:</b>" +msgstr "<b>Wählen Sie ein Symbol aus:</b>" #: ../data/ui/exec-file.glade.h:1 msgid "Execute File" @@ -166,7 +165,7 @@ #: ../data/ui/file-prop.glade.h:1 msgid "File Properties" -msgstr "Dateieigenschaften" +msgstr "Eigenschaften" #: ../data/ui/file-prop.glade.h:2 msgid "Icon of the file in folder view" @@ -178,7 +177,7 @@ #: ../data/ui/file-prop.glade.h:4 msgid "<b>Location:</b>" -msgstr "<b>Ort:</b>" +msgstr "<b>Pfad:</b>" #: ../data/ui/file-prop.glade.h:5 msgid "<b>Target file:</b>" @@ -202,15 +201,15 @@ #: ../data/ui/file-prop.glade.h:10 msgid "<b>Total size of files:</b>" -msgstr "<b>Gesamtgröße der Dateien:</b>" +msgstr "<b>Gesamtgröße der Datei(en):</b>" #: ../data/ui/file-prop.glade.h:11 msgid "<b>Size on disk:</b>" -msgstr "<b>Größe auf Datenträger:</b>" +msgstr "<b>Belegung auf dem Datenträger:</b>" #: ../data/ui/file-prop.glade.h:12 msgid "<b>Last modification:</b>" -msgstr "<b>Geändert:</b>" +msgstr "<b>Letzte Änderung:</b>" #: ../data/ui/file-prop.glade.h:13 msgid "<b>Last access:</b>" @@ -258,7 +257,7 @@ #: ../data/ui/file-prop.glade.h:24 msgid "Who can execute the file or enter the directory" -msgstr "Wer kann eine Datei ausführen oder einen Ordners öffnen?" +msgstr "Wer kann eine Datei ausführen oder einen Ordner öffnen?" #: ../data/ui/file-prop.glade.h:25 msgid "Special flags for file execution" @@ -274,7 +273,7 @@ #: ../data/ui/file-prop.glade.h:28 msgid "Hidden file" -msgstr "Versteckte Datei" +msgstr "Verborgene Datei" #: ../data/ui/file-prop.glade.h:29 msgid "_Permissions" @@ -303,7 +302,7 @@ # Sticky nicht übersetzen da sonst Sinnfehler! #: ../data/ui/file-prop.glade.h:34 msgid "Sticky & set GID" -msgstr "Sticky & GID festlegen" +msgstr "Sticky und GID setzen" #: ../data/ui/file-prop.glade.h:35 msgctxt "this is a file access mode bit, also known as 'suid'" @@ -355,7 +354,7 @@ #: ../data/ui/filesearch.glade.h:6 msgid "Choose a date from the following calendar" -msgstr "Ein Datum aus dem folgenden Kalender auswählen" +msgstr "Wählen Sie ein Datum aus dem Kalender aus:" #: ../data/ui/filesearch.glade.h:7 msgid "Search Files" @@ -383,7 +382,7 @@ #: ../data/ui/filesearch.glade.h:12 msgid "<b>Plac_es to Search:</b>" -msgstr "<b>Zu durchsuch_ende Orte:</b>" +msgstr "<b>Zu durchsuch_ende Verzeichnisse:</b>" #: ../data/ui/filesearch.glade.h:13 msgid "_Search in sub directories" @@ -391,7 +390,7 @@ #: ../data/ui/filesearch.glade.h:14 msgid "Search _hidden files" -msgstr "_Versteckte Dateien suchen" +msgstr "_Verborgene Dateien suchen" #: ../data/ui/filesearch.glade.h:15 msgid "Name/_Location" @@ -443,11 +442,11 @@ #: ../data/ui/filesearch.glade.h:26 msgid "File _Type" -msgstr "Datei_typ" +msgstr "_Typ" #: ../data/ui/filesearch.glade.h:27 msgid "<b>File Contain_s:</b>"
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/gl.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/gl.po
Changed
@@ -7,7 +7,7 @@ "Project-Id-Version: libfm 1.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-13 00:10+0300\n" -"PO-Revision-Date: 2018-04-13 16:27+0000\n" +"PO-Revision-Date: 2019-02-22 09:18+0000\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Language-Team: Galician <proxecto@trasno.net>\n" "Language: gl\n" @@ -16,16 +16,16 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1523636857.576785\n" +"X-POOTLE-MTIME: 1550827112.173006\n" #: ../data/libfm-pref-apps.desktop.in.h:1 ../data/ui/preferred-apps.glade.h:1 msgid "Preferred Applications" -msgstr "Aplicacións preferidas" +msgstr "Aplicativos preferidos" #: ../data/libfm-pref-apps.desktop.in.h:2 msgid "Select applications called on click on Web link or e-mail address" msgstr "" -"Seleccione as aplicacións que chamar ao premer sobre a ligazón web ou o " +"Seleccione os aplicativos que chamar ao premer sobre a ligazón web ou o " "enderezo de correo" #: ../data/lxshortcut.desktop.in.h:1 @@ -38,15 +38,15 @@ #: ../data/ui/app-chooser.glade.h:1 msgid "Choose Application" -msgstr "Escolla unha aplicación" +msgstr "Escolla un aplicativo" #: ../data/ui/app-chooser.glade.h:2 msgid "Use selected application to open files" -msgstr "Utilizar a aplicación seleccionada para abrir os ficheiros" +msgstr "Utilizar o aplicativo seleccionado para abrir os ficheiros" #: ../data/ui/app-chooser.glade.h:3 msgid "_Installed Applications" -msgstr "Aplicacións _instaladas" +msgstr "Aplicativos _instalados" #: ../data/ui/app-chooser.glade.h:4 msgid "<b>C_ommand line to execute:</b>" @@ -87,7 +87,7 @@ #: ../data/ui/app-chooser.glade.h:14 msgid "<b>_Application name (optional, set it to keep association)</b>" msgstr "" -"<b>_Nome da aplicación (opcional, estabelecela para manter a asociación)</b>" +"<b>_Nome do aplicativon (opcional, estabelecelo para manter a asociación)</b>" #: ../data/ui/app-chooser.glade.h:15 msgid "Execute custom command line to open files" @@ -100,7 +100,7 @@ #: ../data/ui/app-chooser.glade.h:17 msgid "_Set selected application as default action for this file type" msgstr "" -"E_stabelecer a aplicación seleccionada como acción predeterminada para os " +"E_stabelecer oaplicativo seleccionado como acción predeterminada para os " "ficheiros deste tipo" #: ../data/ui/ask-rename.glade.h:1 @@ -197,7 +197,7 @@ #: ../data/ui/file-prop.glade.h:8 msgid "Select the application used to open files of this type " -msgstr "Escolla a aplicación utilizada para abrir os ficheiros deste tipo " +msgstr "Escolla o aplicativo utilizado para abrir os ficheiros deste tipo " #: ../data/ui/file-prop.glade.h:9 msgid "<b>Total count of files:</b>" @@ -277,7 +277,7 @@ #: ../data/ui/file-prop.glade.h:28 msgid "Hidden file" -msgstr "Ficheiro agochado" +msgstr "Ficheiro agachado" #: ../data/ui/file-prop.glade.h:29 msgid "_Permissions" @@ -392,7 +392,7 @@ #: ../data/ui/filesearch.glade.h:14 msgid "Search _hidden files" -msgstr "Buscar nos _ficheiros agochados" +msgstr "Buscar nos _ficheiros agachados" #: ../data/ui/filesearch.glade.h:15 msgid "Name/_Location" @@ -518,7 +518,7 @@ #: ../data/ui/preferred-apps.glade.h:8 msgid "System Applications" -msgstr "Aplicacións do sistema" +msgstr "Aplicativos do sistema" #: ../data/ui/preferred-apps.glade.h:9 msgid "File Associations" @@ -575,7 +575,7 @@ #, c-format msgid "No default application is set to launch URIs %s://" msgstr "" -"Non está estabelecida a aplicación predeterminada para iniciar as URI %s://" +"Non está estabelecido o aplicativo predeterminado para iniciar as URI %s://" #: ../src/base/fm-file-launcher.c:360 #, c-format @@ -585,7 +585,7 @@ #: ../src/base/fm-file-launcher.c:454 ../src/base/fm-templates.c:1104 #, c-format msgid "No default application is set for MIME type %s" -msgstr "Non está estabelecida a aplicación predeterminada para o tipo MIME %s" +msgstr "Non está estabelecido o aplicativo predeterminado para o tipo MIME %s" #: ../src/base/fm-path.c:179 ../src/gtk/fm-places-model.c:848 #: ../src/gtk/fm-places-model.c:1016 @@ -616,7 +616,7 @@ #: ../src/base/fm-thumbnailer.c:285 msgid "Invalid description of thumbnailer application" -msgstr "Descrición incorrecta da aplicación de miniaturas" +msgstr "Descrición incorrecta do aplicativo de miniaturas" #: ../src/base/fm-utils.c:137 msgid "kB" @@ -750,11 +750,11 @@ #: ../src/gtk/fm-app-chooser-dlg.c:325 #, c-format msgid "<b>Select an application to open \"%s\" files</b>" -msgstr "<b>Seleccione unha aplicación para abrir os ficheiros «%s»</b>" +msgstr "<b>Seleccione un aplicativo para abrir os ficheiros «%s»</b>" #: ../src/gtk/fm-app-menu-view.c:207 msgid "Installed Applications" -msgstr "Aplicacións instaladas" +msgstr "Aplicativos instalados" #: ../src/gtk/fm-dir-tree-model.c:421 ../src/gtk/fm-dir-tree-model.c:1213 msgid "<No subfolders>" @@ -879,20 +879,19 @@ #: ../src/gtk/fm-file-properties.c:960 msgid "Hide or unhide the file" -msgstr "Agochar ou amosar o ficheiro" +msgstr "Agachar ou amosar o ficheiro" #: ../src/gtk/fm-file-properties.c:965 msgid "This file is hidden because its name starts with a dot ('.')." -msgstr "" -"Este ficheiro está agochado por por de comezar o seu nome cun punto («.»)" +msgstr "Este ficheiro está agachado por comezar o seu nome cun punto («.»)" #: ../src/gtk/fm-file-properties.c:969 msgid "" "Files on this system are hidden if their name starts with a dot ('.'). Hit " "<Ctrl+H> to toggle displaying hidden files." msgstr "" -"Os ficheiros neste sistema están agochados por por de comezar o seu nome cun " -"punto («.»). Prema <Ctrl+H> para amosar os ficheiros agochados." +"Os ficheiros neste sistema están agachados por comezar o seu nome cun punto " +"(«.»). Prema <Ctrl+H> para amosar os ficheiros agachados." #: ../src/gtk/fm-file-properties.c:1026 msgid "scanning..." @@ -977,7 +976,7 @@ #: ../src/gtk/fm-folder-view.c:205 msgid "Show _Hidden" -msgstr "A_mosar agochados" +msgstr "A_mosar agachados" #. Note to translators: "Mingle..." means "Do not put folders before files" but make the translation as short as possible, please! #: ../src/gtk/fm-folder-view.c:207 @@ -1036,7 +1035,7 @@ #: ../src/gtk/fm-folder-view.c:883 msgid "_Run default application on file after creation" -msgstr "E_xecutar a aplicación predeterminada doo ficheiro após a súa creación" +msgstr "E_xecutar o aplicativo predeterminado do ficheiro após a súa creación" #: ../src/gtk/fm-gtk-file-launcher.c:144 #, c-format @@ -1133,7 +1132,7 @@ #: ../src/gtk/fm-places-model.c:815 ../src/gtk/fm-places-model.c:1023 #: ../src/modules/vfs-menu.c:1538 msgid "Applications" -msgstr "Aplicacións" +msgstr "Aplicativos" #: ../src/gtk/fm-places-model.c:831 ../src/gtk/fm-places-model.c:1009 msgid "Filesystem Root" @@ -1354,7 +1353,7 @@ #: ../src/gtk/fm-standard-view.c:818 #, c-format msgid "_Hide %s" -msgstr "_Agochar %s"
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/nb.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/nb.po
Changed
@@ -5,68 +5,67 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-13 00:10+0300\n" -"PO-Revision-Date: 2015-08-17 01:28+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE <LL@li.org>\n" +"PO-Revision-Date: 2019-08-22 14:42+0200\n" +"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: Poedit 2.2.3\n" "X-POOTLE-MTIME: 1439774902.815313\n" +"Language-Team: \n" #: ../data/libfm-pref-apps.desktop.in.h:1 ../data/ui/preferred-apps.glade.h:1 msgid "Preferred Applications" -msgstr "" +msgstr "Forvalgte programmer" #: ../data/libfm-pref-apps.desktop.in.h:2 msgid "Select applications called on click on Web link or e-mail address" msgstr "" +"Velg programmer som skal benyttes ved klikking på nettlenker eller E-" +"postadresser" #: ../data/lxshortcut.desktop.in.h:1 msgid "Shortcut Editor" -msgstr "" +msgstr "Snarveisredigerer" #: ../data/lxshortcut.desktop.in.h:2 msgid "Create new or change existing desktop entry" -msgstr "" +msgstr "Opprett en ny skrivebordsoppføring eller endre en som eksisterer" #: ../data/ui/app-chooser.glade.h:1 msgid "Choose Application" -msgstr "" +msgstr "Velg et program" #: ../data/ui/app-chooser.glade.h:2 msgid "Use selected application to open files" -msgstr "" +msgstr "Bruk det valgte programmet til å åpne filer" #: ../data/ui/app-chooser.glade.h:3 msgid "_Installed Applications" -msgstr "" +msgstr "_Installerte programmer" #: ../data/ui/app-chooser.glade.h:4 msgid "<b>C_ommand line to execute:</b>" -msgstr "" +msgstr "<b>Ledeteksten s_om skal kjøres:</b>" -#: ../data/ui/app-chooser.glade.h:5 -#: ../src/modules/gtk-fileprop-x-desktop.c:275 +#: ../data/ui/app-chooser.glade.h:5 ../src/modules/gtk-fileprop-x-desktop.c:275 msgid "_Browse..." -msgstr "" +msgstr "_Bla gjennom …" #. row 1: "Terminal" GtkCheckButton -#: ../data/ui/app-chooser.glade.h:6 -#: ../src/modules/gtk-fileprop-x-desktop.c:294 +#: ../data/ui/app-chooser.glade.h:6 ../src/modules/gtk-fileprop-x-desktop.c:294 msgid "_Execute in terminal emulator" -msgstr "" +msgstr "_Kjør i terminalemulator" #. row 2: "X-KeepTerminal" GtkCheckButton -#: ../data/ui/app-chooser.glade.h:7 -#: ../src/modules/gtk-fileprop-x-desktop.c:306 +#: ../data/ui/app-chooser.glade.h:7 ../src/modules/gtk-fileprop-x-desktop.c:306 msgid "_Keep terminal window open after command execution" -msgstr "" +msgstr "_Hold terminalvinduet åpent etter kommandokjøring" #: ../data/ui/app-chooser.glade.h:9 #, no-c-format @@ -77,38 +76,44 @@ " <b>%u</b>: Represents a single URI of the file\n" " <b>%U</b>: Represents multiple URIs" msgstr "" +"<b>Disse spesielle kodene kan brukes i ledeteksten:</b>\n" +" <b>%f</b>: Representerer et individuelt filnavn\n" +" <b>%F</b>: Representerer flere filnavn\n" +" <b>%u</b>: Representerer et individuelt URI av filen\n" +" <b>%U</b>: Representerer flere URIer" #: ../data/ui/app-chooser.glade.h:14 msgid "<b>_Application name (optional, set it to keep association)</b>" -msgstr "" +msgstr "<b>_Progr_amnavn (valgfritt, bestem for å beholde tilknytning)</b>" #: ../data/ui/app-chooser.glade.h:15 msgid "Execute custom command line to open files" -msgstr "" +msgstr "Kjør en tilpasset ledetekst for å åpne filer" #: ../data/ui/app-chooser.glade.h:16 msgid "C_ustom Command Line" -msgstr "" +msgstr "T_ilpasset ledetekst" #: ../data/ui/app-chooser.glade.h:17 msgid "_Set selected application as default action for this file type" msgstr "" +"_Velg det valgte programmet som den forvalgte handlingen for denne filtypen" #: ../data/ui/ask-rename.glade.h:1 msgid "Confirm File Replacing" -msgstr "" +msgstr "Bekreft filutbytting" #: ../data/ui/ask-rename.glade.h:2 msgid "_Skip" -msgstr "" +msgstr "_Hopp over" #: ../data/ui/ask-rename.glade.h:3 msgid "_Rename" -msgstr "" +msgstr "End_re navn" #: ../data/ui/ask-rename.glade.h:4 msgid "_Overwrite" -msgstr "" +msgstr "_Overskriv" #: ../data/ui/ask-rename.glade.h:5 msgid "" @@ -116,526 +121,536 @@ "\n" "Do you want to replace the existing file" msgstr "" +"<b>Det er allerede en fil med det samme navnet i denne plasseringen</b>\n" +"\n" +"Vil du overskrive den eksisterende filen" #: ../data/ui/ask-rename.glade.h:8 msgid "with the following file?" -msgstr "" +msgstr "med den følgende filen?" #: ../data/ui/ask-rename.glade.h:9 msgid "_File name:" -msgstr "" +msgstr "_Filnavn:" #: ../data/ui/ask-rename.glade.h:10 msgid "_Apply this option to all existing files" -msgstr "" +msgstr "_Benytt denne innstillingen for alle eksisterende filer" #: ../data/ui/choose-icon.ui.h:1 msgid "Choose An Icon..." -msgstr "" +msgstr "Velg et ikon …" #. genitive case is here: Choose icon from: ... #: ../data/ui/choose-icon.ui.h:3 msgid "system icon theme" -msgstr "" +msgstr "systemikontema" #. genitive case is here: Choose icon from: ... #: ../data/ui/choose-icon.ui.h:5 msgid "image files" -msgstr "" +msgstr "bildefiler" #: ../data/ui/choose-icon.ui.h:6 msgid "<b>Choose icon from:</b>" -msgstr "" +msgstr "<b>Velg et ikon fra:</b>" #: ../data/ui/exec-file.glade.h:1 msgid "Execute File" -msgstr "" +msgstr "Kjør filen" #: ../data/ui/exec-file.glade.h:2 msgid "Execute in _Terminal" -msgstr "" +msgstr "Kjør i terminalen" #: ../data/ui/file-prop.glade.h:1 msgid "File Properties" -msgstr "" +msgstr "Filegenskaper"
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/nl.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/nl.po
Changed
@@ -88,8 +88,7 @@ #: ../data/ui/app-chooser.glade.h:14 msgid "<b>_Application name (optional, set it to keep association)</b>" msgstr "" -"<b>Naam van toepassing (naar keuze, stel dit in om associatie te behouden)</" -"b>" +"<b>Naam van toepassing (naar keuze, stel dit in om associatie te behouden)</b>" #: ../data/ui/app-chooser.glade.h:15 msgid "Execute custom command line to open files"
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/sk.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/sk.po
Changed
@@ -9,7 +9,7 @@ "Project-Id-Version: libfm 1.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-13 00:10+0300\n" -"PO-Revision-Date: 2018-12-15 00:54+0000\n" +"PO-Revision-Date: 2019-01-18 08:16+0000\n" "Last-Translator: mirek <mirek@cnl.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" "Language: sk\n" @@ -18,7 +18,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1544835260.640638\n" +"X-POOTLE-MTIME: 1547799362.705221\n" #: ../data/libfm-pref-apps.desktop.in.h:1 ../data/ui/preferred-apps.glade.h:1 msgid "Preferred Applications" @@ -89,7 +89,8 @@ #: ../data/ui/app-chooser.glade.h:14 #, fuzzy msgid "<b>_Application name (optional, set it to keep association)</b>" -msgstr "<b>_Názov aplikácie (nepovinný, set it to keep association)</b>" +msgstr "" +"<b>_Názov aplikácie (voliteľný, nastavte ho pre zachovanie asociácie)</b>" #: ../data/ui/app-chooser.glade.h:15 msgid "Execute custom command line to open files" @@ -435,7 +436,7 @@ #: ../data/ui/filesearch.glade.h:24 msgid "Ot_her:" -msgstr "" +msgstr "_Iné:" #: ../data/ui/filesearch.glade.h:25 msgid "" @@ -889,9 +890,8 @@ msgstr "načítava sa..." #: ../src/gtk/fm-file-properties.c:1088 -#, fuzzy msgid "<b>_Access content:</b>" -msgstr "<b>Riadenie prístupu</b>" +msgstr "<b>_Prístup k obsahu:</b>" #: ../src/gtk/fm-file-properties.c:1239 msgid "Files of different types" @@ -912,7 +912,7 @@ #: ../src/gtk/fm-folder-model.c:191 msgid "Description" -msgstr "Popis" +msgstr "Opis" #: ../src/gtk/fm-folder-model.c:192 msgid "Size" @@ -972,9 +972,8 @@ #. Note to translators: "Mingle..." means "Do not put folders before files" but make the translation as short as possible, please! #: ../src/gtk/fm-folder-view.c:207 -#, fuzzy msgid "Mingle _Files and Folders" -msgstr "Všetky súbory a adresáre" +msgstr "Miešať _súbory a priečinky" #: ../src/gtk/fm-folder-view.c:208 msgid "_Ignore Name Case" @@ -1131,9 +1130,8 @@ msgstr "Aplikácie" #: ../src/gtk/fm-places-model.c:831 ../src/gtk/fm-places-model.c:1009 -#, fuzzy msgid "Filesystem Root" -msgstr "Súborový systém" +msgstr "Koreňový priečinok súborového systému" #: ../src/gtk/fm-places-view.c:131 msgid "_Mount Volume" @@ -1324,7 +1322,7 @@ #: ../src/gtk/fm-side-pane.c:67 msgid "_Places" -msgstr "" +msgstr "_Miesta" #: ../src/gtk/fm-side-pane.c:68 #, fuzzy @@ -1337,7 +1335,7 @@ #: ../src/gtk/fm-side-pane.c:428 ../src/gtk/fm-side-pane.c:621 msgid "Places" -msgstr "" +msgstr "Miesta" #: ../src/gtk/fm-side-pane.c:438 ../src/gtk/fm-side-pane.c:623 msgid "Directory Tree" @@ -1354,14 +1352,12 @@ msgstr "_Skryť %s" #: ../src/gtk/fm-standard-view.c:826 -#, fuzzy msgid "_Move Left" -msgstr "Presunúť:" +msgstr "_Presunúť vľavo" #: ../src/gtk/fm-standard-view.c:832 -#, fuzzy msgid "Move _Right" -msgstr "Presunúť _hore" +msgstr "Presunúť _vpravo" #: ../src/gtk/fm-standard-view.c:855 #, c-format @@ -1455,9 +1451,8 @@ msgstr "Chyba XML súboru '%s' (%d:%d): " #: ../src/modules/vfs-menu.c:309 -#, fuzzy msgid "XML file doesn't contain Applications root" -msgstr "XML súbor neobsahuje Applications root" +msgstr "XML súbor neobsahuje koreň Applications" #: ../src/modules/vfs-menu.c:384 ../src/modules/vfs-menu.c:464 #: ../src/modules/vfs-menu.c:568 ../src/modules/vfs-menu.c:682 @@ -1508,9 +1503,9 @@ msgstr "" #: ../src/modules/vfs-menu.c:1958 -#, fuzzy, c-format +#, c-format msgid "Invalid value for attribute '%s'" -msgstr "Domovský adresár" +msgstr "Neplatná hodnota atribútu '%s'" #: ../src/modules/vfs-menu.c:1995 #, fuzzy, c-format @@ -1551,60 +1546,52 @@ #. FIXME: need name to be converted to UTF-8? #: ../src/modules/vfs-search.c:991 -#, fuzzy msgid "Search" -msgstr "Hľadať znova" +msgstr "Hľadať" #: ../src/modules/vfs-search.c:1053 msgid "Search Results" msgstr "Výsledky vyhľadávania" #: ../src/modules/gtk-fileprop-x-desktop.c:66 -#, fuzzy msgid "Choose Executable File" -msgstr "Spustiť" +msgstr "Vyberte si spusiteľný súbor" #: ../src/modules/gtk-fileprop-x-desktop.c:72 -#, fuzzy msgid "Executable files" -msgstr "Spustiť" +msgstr "Spustiteľné súbory" #: ../src/modules/gtk-fileprop-x-desktop.c:267 -#, fuzzy msgid "<b>Co_mmand:</b>" -msgstr "<b>Do:</b>" +msgstr "<b>_Príkaz:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:288 msgid "Command to execute when the application icon is activated" -msgstr "" +msgstr "Príkaz, ktorý sa spustí po aktivovaní ikony aplikácie" #: ../src/modules/gtk-fileprop-x-desktop.c:322 -#, fuzzy msgid "<b>D_escription:</b>" -msgstr "<b>Umiestnenie:</b>" +msgstr "<b>_Opis:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:332 msgid "Generic name of the application" -msgstr "" +msgstr "Obecný názov aplikácie" #: ../src/modules/gtk-fileprop-x-desktop.c:340 -#, fuzzy msgid "<b>_Working directory:</b>" -msgstr "<b>_Vlastník:</b>" +msgstr "<b>P_racovný priečinok:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:351 msgid "The working directory to run the program in" -msgstr "" +msgstr "Pracovný priečinok, v ktorom bude program spustený" #: ../src/modules/gtk-fileprop-x-desktop.c:359 -#, fuzzy msgid "<b>_Tooltip:</b>" -msgstr "<b>Do:</b>" +msgstr "<b>P_opisok:</b>"
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/sr.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/sr.po
Changed
@@ -9,17 +9,17 @@ "Project-Id-Version: Libfm\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-13 00:10+0300\n" -"PO-Revision-Date: 2015-06-04 08:54+0000\n" +"PO-Revision-Date: 2018-12-23 18:05+0000\n" "Last-Translator: markos <jezzivi@yahoo.com>\n" "Language-Team: \n" "Language: sr\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: Pootle 2.7\n" -"X-POOTLE-MTIME: 1433408071.000000\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: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545588324.285562\n" #: ../data/libfm-pref-apps.desktop.in.h:1 ../data/ui/preferred-apps.glade.h:1 msgid "Preferred Applications" @@ -532,9 +532,8 @@ msgstr "Припрема..." #: ../data/ui/progress.glade.h:5 -#, fuzzy msgid "<b>Data transferred:</b>" -msgstr "<b>Одредишна датотека:</b>" +msgstr "<b>Отпремљени подаци:</b>" #: ../data/ui/progress.glade.h:6 msgid "<b>Time remaining:</b>" @@ -545,14 +544,12 @@ msgstr "<b>Догодиле су се неке грешке:</b>" #: ../src/base/fm-action.c:272 -#, fuzzy msgid "Empty value" -msgstr "Празна датотека" +msgstr "Празна вредност" #: ../src/base/fm-action.c:280 -#, fuzzy msgid "Invalid selection" -msgstr "Неисправно одредиште" +msgstr "Неисправан одабир" #. ---- GFile implementation ---- #: ../src/base/fm-action.c:807 ../src/job/fm-file-ops-job.c:271 @@ -1212,9 +1209,8 @@ "Измењено: %s" #: ../src/gtk/fm-progress-dlg.c:343 -#, fuzzy msgid "<b>Errors occurred before file operation was stopped.</b>" -msgstr "<b>Грешке су се догодиле пре заустављања радње са датотеком</b>" +msgstr "<b>Грешке су се догодиле пре заустављања радње са датотеком.</b>" #: ../src/gtk/fm-progress-dlg.c:345 msgid "Cancelled" @@ -1412,7 +1408,7 @@ #: ../src/job/fm-file-ops-job-xfer.c:58 msgid "Destination does not exist" -msgstr "" +msgstr "Одредиште не постоји" #: ../src/job/fm-file-ops-job-xfer.c:63 msgid "Source and destination are the same."
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/Makefile.am -> _service:tar_scm:libfm-1.3.2.tar.xz/src/Makefile.am
Changed
@@ -1,5 +1,5 @@ # for use in libtool -version-info -ABI_VERSION=5:2:1 +ABI_VERSION=5:3:1 NULL=
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/src/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -114,6 +114,10 @@ CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = fm-version.h CONFIG_CLEAN_VPATH_FILES = +@ENABLE_DEMO_TRUE@am__EXEEXT_1 = libfm-demo$(EXEEXT) +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(giomodulesdir)" \ + "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)" +PROGRAMS = $(bin_PROGRAMS) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ @@ -141,8 +145,6 @@ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } -am__installdirs = "$(DESTDIR)$(giomodulesdir)" "$(DESTDIR)$(libdir)" \ - "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgincludedir)" LTLIBRARIES = $(giomodules_LTLIBRARIES) $(lib_LTLIBRARIES) am__DEPENDENCIES_1 = libfm_extra_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ @@ -335,8 +337,6 @@ @EXTRALIB_ONLY_FALSE@@HAVE_SCHEME_HANDLER_FALSE@am_libgiofm_la_rpath = \ @EXTRALIB_ONLY_FALSE@@HAVE_SCHEME_HANDLER_FALSE@ -rpath \ @EXTRALIB_ONLY_FALSE@@HAVE_SCHEME_HANDLER_FALSE@ $(giomodulesdir) -@ENABLE_DEMO_TRUE@am__EXEEXT_1 = libfm-demo$(EXEEXT) -PROGRAMS = $(bin_PROGRAMS) am__libfm_demo_SOURCES_DIST = glib-compat.c glib-compat.h gtk-compat.c \ gtk-compat.h demo/libfm-demo.c demo/main-win.c demo/main-win.h am__objects_18 = libfm_demo-glib-compat.$(OBJEXT) $(am__objects_1) @@ -382,7 +382,135 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/libfm_demo-glib-compat.Po \ + ./$(DEPDIR)/libfm_demo-gtk-compat.Po \ + ./$(DEPDIR)/libfm_gtk3_la-fm-gtk.Plo \ + ./$(DEPDIR)/libfm_gtk3_la-glib-compat.Plo \ + ./$(DEPDIR)/libfm_gtk3_la-gtk-compat.Plo \ + ./$(DEPDIR)/libfm_gtk_la-fm-gtk.Plo \ + ./$(DEPDIR)/libfm_gtk_la-glib-compat.Plo \ + ./$(DEPDIR)/libfm_gtk_la-gtk-compat.Plo \ + ./$(DEPDIR)/libfm_la-fm.Plo \ + ./$(DEPDIR)/libfm_la-glib-compat.Plo \ + ./$(DEPDIR)/libfm_pref_apps-glib-compat.Po \ + ./$(DEPDIR)/libfm_pref_apps-gtk-compat.Po \ + ./$(DEPDIR)/libgiofm_la-glib-compat.Plo \ + base/$(DEPDIR)/libfm_la-fm-action.Plo \ + base/$(DEPDIR)/libfm_la-fm-app-info.Plo \ + base/$(DEPDIR)/libfm_la-fm-archiver.Plo \ + base/$(DEPDIR)/libfm_la-fm-bookmarks.Plo \ + base/$(DEPDIR)/libfm_la-fm-config.Plo \ + base/$(DEPDIR)/libfm_la-fm-dummy-monitor.Plo \ + base/$(DEPDIR)/libfm_la-fm-file-info.Plo \ + base/$(DEPDIR)/libfm_la-fm-file-launcher.Plo \ + base/$(DEPDIR)/libfm_la-fm-file.Plo \ + base/$(DEPDIR)/libfm_la-fm-folder-config.Plo \ + base/$(DEPDIR)/libfm_la-fm-folder.Plo \ + base/$(DEPDIR)/libfm_la-fm-icon.Plo \ + base/$(DEPDIR)/libfm_la-fm-list.Plo \ + base/$(DEPDIR)/libfm_la-fm-marshal.Plo \ + base/$(DEPDIR)/libfm_la-fm-mime-type.Plo \ + base/$(DEPDIR)/libfm_la-fm-module.Plo \ + base/$(DEPDIR)/libfm_la-fm-monitor.Plo \ + base/$(DEPDIR)/libfm_la-fm-nav-history.Plo \ + base/$(DEPDIR)/libfm_la-fm-path.Plo \ + base/$(DEPDIR)/libfm_la-fm-templates.Plo \ + base/$(DEPDIR)/libfm_la-fm-terminal.Plo \ + base/$(DEPDIR)/libfm_la-fm-thumbnail-loader.Plo \ + base/$(DEPDIR)/libfm_la-fm-thumbnailer.Plo \ + base/$(DEPDIR)/libfm_la-fm-utils.Plo \ + demo/$(DEPDIR)/libfm_demo-libfm-demo.Po \ + demo/$(DEPDIR)/libfm_demo-main-win.Po \ + extra/$(DEPDIR)/libfm_extra_la-fm-xml-file.Plo \ + gio/$(DEPDIR)/libgiofm_la-fm-app-lookup.Plo \ + gio/$(DEPDIR)/libgiofm_la-module.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-combo-box.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-dlg.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-menu-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-pixbuf.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-text.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-clipboard.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-auto-scroll.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-dest.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-src.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-menu.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-properties.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-file-launcher.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-marshal.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-utils.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-icon-pixbuf.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-menu-tool-item.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-bar.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-entry.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-progress-dlg.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-side-pane.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-standard-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-tab-label.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-thumbnail.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-combo-box.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-dlg.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-app-menu-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-pixbuf.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-text.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-clipboard.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-auto-scroll.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-dest.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-src.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-file-menu.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-file-properties.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-file-launcher.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-marshal.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-utils.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-icon-pixbuf.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-menu-tool-item.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-path-bar.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-path-entry.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-places-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-places-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-progress-dlg.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-side-pane.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-standard-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-tab-label.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-thumbnail.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-icon-view.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-marshal.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-private.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-string.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-tree-view.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-icon-view.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-marshal.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-private.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-string.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-tree-view.Plo \ + job/$(DEPDIR)/libfm_la-fm-deep-count-job.Plo \ + job/$(DEPDIR)/libfm_la-fm-dir-list-job.Plo \ + job/$(DEPDIR)/libfm_la-fm-file-info-job.Plo \ + job/$(DEPDIR)/libfm_la-fm-file-ops-job-change-attr.Plo \ + job/$(DEPDIR)/libfm_la-fm-file-ops-job-delete.Plo \ + job/$(DEPDIR)/libfm_la-fm-file-ops-job-xfer.Plo \ + job/$(DEPDIR)/libfm_la-fm-file-ops-job.Plo \ + job/$(DEPDIR)/libfm_la-fm-job.Plo \ + job/$(DEPDIR)/libfm_la-fm-simple-job.Plo \ + tools/$(DEPDIR)/libfm_pref_apps-libfm-pref-apps.Po \ + tools/$(DEPDIR)/lxshortcut-lxshortcut.Po \ + udisks/$(DEPDIR)/libfm_la-dbus-utils.Plo \ + udisks/$(DEPDIR)/libfm_la-fm-udisks.Plo \ + udisks/$(DEPDIR)/libfm_la-g-udisks-device.Plo \ + udisks/$(DEPDIR)/libfm_la-g-udisks-drive.Plo \ + udisks/$(DEPDIR)/libfm_la-g-udisks-mount.Plo \ + udisks/$(DEPDIR)/libfm_la-g-udisks-volume-monitor.Plo \ + udisks/$(DEPDIR)/libfm_la-g-udisks-volume.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -458,7 +586,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is @@ -690,7 +818,7 @@ top_srcdir = @top_srcdir@ # for use in libtool -version-info -ABI_VERSION = 5:2:1 +ABI_VERSION = 5:3:1 NULL = # current dir needs to be built before tests @@ -1151,8 +1279,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/actions/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/src/actions/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -136,7 +136,12 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/libfmactions_la-action.Plo \ + ./$(DEPDIR)/libfmactions_la-condition.Plo \ + ./$(DEPDIR)/libfmactions_la-parameters.Plo \ + ./$(DEPDIR)/libfmactions_la-profile.Plo \ + ./$(DEPDIR)/libfmactions_la-utils.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -219,9 +224,9 @@ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(srcdir)/libfmactions_la_vala.stamp $(top_srcdir)/depcomp \ - action.c condition.c parameters.c profile.c utils.c +am__DIST_COMMON = $(builddir)/libfmactions_la_vala.stamp \ + $(srcdir)/Makefile.in $(top_srcdir)/depcomp action.c \ + condition.c parameters.c profile.c utils.c DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ACTIONS_SUBDIR = @ACTIONS_SUBDIR@ @@ -472,8 +477,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -505,11 +510,17 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-action.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-condition.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-parameters.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-profile.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-action.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-condition.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-parameters.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-profile.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-utils.Plo@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|^/*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @@ -569,34 +580,44 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utils.c' object='libfmactions_la-utils.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfmactions_la_CFLAGS) $(CFLAGS) -c -o libfmactions_la-utils.lo `test -f 'utils.c' || echo '$(srcdir)/'`utils.c -$(srcdir)/action.c: $(srcdir)/libfmactions_la_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/libfmactions_la_vala.stamp; fi +$(builddir)/action.c: $(builddir)/libfmactions_la_vala.stamp + @if test ! -f $@ && test $(srcdir) != $(builddir) && test -n "$$(find -L $(srcdir)/action.c -prune -newer $(srcdir)/action.vala)"; then cp -p $(srcdir)/action.c $(builddir)/action.c; fi + @if test -f $@; then :; else rm -f $(builddir)/libfmactions_la_vala.stamp; fi @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/libfmactions_la_vala.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) $(builddir)/libfmactions_la_vala.stamp; \ + if test $(builddir) != .; then mv action.c $(builddir)/; fi \ fi -$(srcdir)/condition.c: $(srcdir)/libfmactions_la_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/libfmactions_la_vala.stamp; fi +$(builddir)/condition.c: $(builddir)/libfmactions_la_vala.stamp + @if test ! -f $@ && test $(srcdir) != $(builddir) && test -n "$$(find -L $(srcdir)/condition.c -prune -newer $(srcdir)/condition.vala)"; then cp -p $(srcdir)/condition.c $(builddir)/condition.c; fi + @if test -f $@; then :; else rm -f $(builddir)/libfmactions_la_vala.stamp; fi @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/libfmactions_la_vala.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) $(builddir)/libfmactions_la_vala.stamp; \ + if test $(builddir) != .; then mv condition.c $(builddir)/; fi \ fi -$(srcdir)/profile.c: $(srcdir)/libfmactions_la_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/libfmactions_la_vala.stamp; fi +$(builddir)/profile.c: $(builddir)/libfmactions_la_vala.stamp + @if test ! -f $@ && test $(srcdir) != $(builddir) && test -n "$$(find -L $(srcdir)/profile.c -prune -newer $(srcdir)/profile.vala)"; then cp -p $(srcdir)/profile.c $(builddir)/profile.c; fi + @if test -f $@; then :; else rm -f $(builddir)/libfmactions_la_vala.stamp; fi @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/libfmactions_la_vala.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) $(builddir)/libfmactions_la_vala.stamp; \ + if test $(builddir) != .; then mv profile.c $(builddir)/; fi \ fi -$(srcdir)/parameters.c: $(srcdir)/libfmactions_la_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/libfmactions_la_vala.stamp; fi +$(builddir)/parameters.c: $(builddir)/libfmactions_la_vala.stamp + @if test ! -f $@ && test $(srcdir) != $(builddir) && test -n "$$(find -L $(srcdir)/parameters.c -prune -newer $(srcdir)/parameters.vala)"; then cp -p $(srcdir)/parameters.c $(builddir)/parameters.c; fi + @if test -f $@; then :; else rm -f $(builddir)/libfmactions_la_vala.stamp; fi @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/libfmactions_la_vala.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) $(builddir)/libfmactions_la_vala.stamp; \ + if test $(builddir) != .; then mv parameters.c $(builddir)/; fi \ fi -$(srcdir)/utils.c: $(srcdir)/libfmactions_la_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/libfmactions_la_vala.stamp; fi +$(builddir)/utils.c: $(builddir)/libfmactions_la_vala.stamp + @if test ! -f $@ && test $(srcdir) != $(builddir) && test -n "$$(find -L $(srcdir)/utils.c -prune -newer $(srcdir)/utils.vala)"; then cp -p $(srcdir)/utils.c $(builddir)/utils.c; fi + @if test -f $@; then :; else rm -f $(builddir)/libfmactions_la_vala.stamp; fi @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/libfmactions_la_vala.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) $(builddir)/libfmactions_la_vala.stamp; \ + if test $(builddir) != .; then mv utils.c $(builddir)/; fi \ fi -$(srcdir)/libfmactions_la_vala.stamp: action.vala condition.vala profile.vala parameters.vala utils.vala +$(builddir)/libfmactions_la_vala.stamp: action.vala condition.vala profile.vala parameters.vala utils.vala $(AM_V_at)rm -f $@ && echo stamp > $@-t - $(AM_V_VALAC)$(am__cd) $(srcdir) && $(VALAC) $(AM_VALAFLAGS) $(VALAFLAGS) -C action.vala condition.vala profile.vala parameters.vala utils.vala + $(AM_V_VALAC)$(VALAC) $(AM_VALAFLAGS) $(VALAFLAGS) -C $^ $(AM_V_at)mv -f $@-t $@ mostlyclean-libtool: @@ -678,7 +699,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -741,13 +765,18 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -rm -f $(builddir)/action.c + -rm -f $(builddir)/condition.c + -rm -f $(builddir)/parameters.c + -rm -f $(builddir)/profile.c + -rm -f $(builddir)/utils.c maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." + -rm -f $(builddir)/libfmactions_la_vala.stamp -rm -f $(srcdir)/action.c -rm -f $(srcdir)/condition.c - -rm -f $(srcdir)/libfmactions_la_vala.stamp -rm -f $(srcdir)/parameters.c -rm -f $(srcdir)/profile.c -rm -f $(srcdir)/utils.c @@ -762,7 +791,11 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libfmactions_la-action.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-condition.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-parameters.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-profile.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-utils.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -808,7 +841,11 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libfmactions_la-action.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-condition.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-parameters.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-profile.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-utils.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -829,19 +866,20 @@ .MAKE: install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ - ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-action.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-action.c
Changed
@@ -1,7 +1,9 @@ /* * fm-action.c * - * Copyright 2014-2018 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> + * Copyright 2014-2021 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> + * Copyright 2020 Leonardo Citrolo <leoc@users.sourceforge.net> + * Copyright 2020 wb9688 <wb9688@users.noreply.github.com> * * This file is a part of the Libfm library. * @@ -660,15 +662,12 @@ struct ChildSetup { - char *display; char *sn_id; }; static void child_setup(gpointer user_data) { struct ChildSetup* data = (struct ChildSetup*)user_data; - if (data->display) - g_setenv("DISPLAY", data->display, TRUE); if (data->sn_id) g_setenv("DESKTOP_STARTUP_ID", data->sn_id, TRUE); } @@ -721,7 +720,6 @@ GList *launched_files, *l; struct ChildSetup data; - data.display = NULL; data.sn_id = NULL; if (launch_context) { @@ -731,9 +729,6 @@ launched_files = g_list_prepend(launched_files, fm_path_to_gfile(fm_file_info_get_path(l->data))); launched_files = g_list_reverse(launched_files); - data.display = g_app_launch_context_get_display(launch_context, - G_APP_INFO(action), - launched_files); if (action->use_sn) data.sn_id = g_app_launch_context_get_startup_notify_id(launch_context, G_APP_INFO(action), @@ -752,6 +747,7 @@ if (data.sn_id) g_app_launch_context_launch_failed(launch_context, data.sn_id); } + g_free(data.sn_id); g_strfreev(argv); } @@ -1272,6 +1268,8 @@ c++, type = CONDITION_TYPE_COUNT_LESS; else if (c0 == '>') c++, type = CONDITION_TYPE_COUNT_MORE; + else if (c0 == '=') + c++, type = CONDITION_TYPE_COUNT; else type = CONDITION_TYPE_COUNT; while (c0 == ' ') c++; @@ -1872,7 +1870,7 @@ { if (strncmp(&tst1, "all/", 4) == 0) { - if (strcmp(&tst5, "allfiles")) + if (strcmp(&tst5, "allfiles") == 0) { for (l = flist; match && l; l = l->next) if (S_ISREG(fm_file_info_get_mode(l->data))) @@ -1902,7 +1900,7 @@ { if (strncmp(tst, "all/", 4) == 0) { - if (strcmp(&tst4, "allfiles")) + if (strcmp(&tst4, "allfiles") == 0) { for (l = flist; l; l = l->next) if (!S_ISREG(fm_file_info_get_mode(l->data)))
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-app-info.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-app-info.c
Changed
@@ -3,6 +3,7 @@ * * Copyright 2010 Hong Jen Yee (PCMan) <pcman.tw@gmail.com> * Copyright 2012-2015 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> + * Copyright 2020 wb9688 <wb9688@users.noreply.github.com> * * This file is a part of the Libfm library. * @@ -214,7 +215,6 @@ struct ChildSetup { - char* display; char* sn_id; pid_t pgid; }; @@ -222,8 +222,6 @@ static void child_setup(gpointer user_data) { struct ChildSetup* data = (struct ChildSetup*)user_data; - if(data->display) - g_setenv ("DISPLAY", data->display, TRUE); if(data->sn_id) g_setenv ("DESKTOP_STARTUP_ID", data->sn_id, TRUE); /* Move child to grandparent group so it will not die with parent */ @@ -340,7 +338,6 @@ } else use_sn = FALSE; - data.display = g_app_launch_context_get_display(ctx, appinfo, gfiles); if(use_sn) data.sn_id = g_app_launch_context_get_startup_notify_id(ctx, appinfo, gfiles); @@ -348,10 +345,8 @@ data.sn_id = NULL; } else - { - data.display = NULL; data.sn_id = NULL; - } + g_debug("sn_id = %s", data.sn_id); if(G_LIKELY(kf)) @@ -372,7 +367,6 @@ g_app_launch_context_launch_failed(ctx, data.sn_id); g_free(path); - g_free(data.display); g_free(data.sn_id); g_strfreev(argv);
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-file-info.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-file-info.c
Changed
@@ -5,6 +5,7 @@ * Copyright 2009 Juergen Hoetzel <juergen@archlinux.org> * Copyright 2017 Tsu Jan <tsujan2000@gmail.com> * Copyright 2012-2018 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> + * Copyright 2019 Mahmoud Al-Qudsi <mqudsi@neosmart.net> * * This file is a part of the Libfm library. * @@ -1393,7 +1394,8 @@ which may be considered as a safe desktop entry path then check if that is a shortcut to a native file otherwise it is a link to a file under menu:// */ - if (!g_str_has_prefix(fi->target, "/usr/share/")) + if (!g_str_has_prefix(fi->target, "/usr/share/") && + !g_str_has_prefix(fi->target, "/usr/local/share/")) { FmPath *target = fm_path_new_for_str(fi->target); gboolean is_native = fm_path_is_native(target);
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-path.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-path.c
Changed
@@ -1291,7 +1291,7 @@ } else { - name = desktop_dir + home_len + 1; /* skip home_path dir part / */ + name = desktop_dir + home_len; /* skip home_path dir part / */ while (*name == '/') name++; /* skip extra / if any */ if (*name == '\0') name = "Desktop"; /* fallback: never use home_path as desktop_path */
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-terminal.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-terminal.c
Changed
@@ -135,7 +135,7 @@ else /* unknown terminal */ { if (strcmp(basename, "x-terminal-emulator") == 0) - g_message("x-terminal-emulator has very limited support, consider choose another terminal"); + g_message("x-terminal-emulator has very limited support, consider choosing another terminal"); else g_warning("terminal %s isn't known, consider report it to LibFM developers", basename);
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-thumbnail-loader.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-thumbnail-loader.c
Changed
@@ -3,6 +3,7 @@ * * Copyright 2010 - 2013 Hong Jen Yee (PCMan) <pcman.tw@gmail.com> * Copyright 2012-2018 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> + * Copyright 2020 Ingo Brückl <ib@wupperonline.de> * * This file is a part of the Libfm library. * @@ -746,7 +747,7 @@ /* in main loop */ void _fm_thumbnail_loader_init() { - thumb_dir = g_build_filename(fm_get_home_dir(), ".thumbnails", NULL); + thumb_dir = g_build_filename(g_get_user_cache_dir(), "thumbnails", NULL); hash = g_hash_table_new((GHashFunc)fm_path_hash, (GEqualFunc)fm_path_equal); #if !GLIB_CHECK_VERSION(2, 32, 0) lock_ptr = g_mutex_new();
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/fm-version.h -> _service:tar_scm:libfm-1.3.2.tar.xz/src/fm-version.h
Changed
@@ -23,7 +23,7 @@ #define FM_VERSION_MAJOR 1 #define FM_VERSION_MINOR 3 -#define FM_VERSION_MICRO 1 +#define FM_VERSION_MICRO 2 #define FM_CHECK_VERSION(_a,_b,_c) \ (FM_VERSION_MAJOR > _a || \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/gtk/exo/exo-icon-view.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/gtk/exo/exo-icon-view.c
Changed
@@ -8654,6 +8654,7 @@ gtk_window_group_add_window (group, GTK_WINDOW (icon_view->priv->search_window)); gtk_window_set_modal (GTK_WINDOW (icon_view->priv->search_window), TRUE); gtk_window_set_screen (GTK_WINDOW (icon_view->priv->search_window), gtk_widget_get_screen (GTK_WIDGET (icon_view))); + gtk_window_set_transient_for (GTK_WINDOW (icon_view->priv->search_window), GTK_WINDOW (toplevel)); /* connect signal handlers */ g_signal_connect (G_OBJECT (icon_view->priv->search_window), "delete-event", G_CALLBACK (exo_icon_view_search_delete_event), icon_view);
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/gtk/fm-cell-renderer-text.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/gtk/fm-cell-renderer-text.c
Changed
@@ -4,6 +4,7 @@ * Copyright 2009 PCMan <pcman.tw@gmail.com> * Copyright 2012-2016 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> * Copyright 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> + * Copyright 2020 wb9688 <wb9688@users.noreply.github.com> * * 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 @@ -460,9 +461,9 @@ _get_size(cell, widget, NULL, text, NULL, NULL, &height, NULL, NULL, NULL, NULL, NULL); g_free(text); - if(natural_size && *natural_size > height) + if(natural_size) *natural_size = height; - if(minimum_size && *minimum_size > height) + if(minimum_size) *minimum_size = height; }
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/gtk/fm-progress-dlg.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/gtk/fm-progress-dlg.c
Changed
@@ -4,6 +4,7 @@ * Copyright 2009 PCMan <pcman.tw@gmail.com> * Copyright 2012-2015 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> * Copyright 2017 Nathan Osman <nathan@quickmediasolutions.com> + * Copyright 2019 Simon Long <simon@raspberrypi.org> * * 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 @@ -506,7 +507,7 @@ static void on_percent(FmFileOpsJob* job, guint percent, FmProgressDisplay* data) { - data->data_transferred_size = job->finished; + data->data_transferred_size = job->finished + job->current_file_finished; data->data_total_size = job->total; data->percent = percent; if(data->dlg && data->update_timeout == 0)
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/modules/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/src/modules/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -204,7 +204,13 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/gtk_fileprop_x_desktop_la-gtk-fileprop-x-desktop.Plo \ + ./$(DEPDIR)/gtk_fileprop_x_shortcut_la-gtk-fileprop-x-shortcut.Plo \ + ./$(DEPDIR)/gtk_menu_actions_la-gtk-menu-actions.Plo \ + ./$(DEPDIR)/gtk_menu_trash_la-gtk-menu-trash.Plo \ + ./$(DEPDIR)/vfs-search.Plo \ + ./$(DEPDIR)/vfs_menu_la-vfs-menu.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -489,8 +495,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -561,12 +567,18 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_fileprop_x_desktop_la-gtk-fileprop-x-desktop.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_fileprop_x_shortcut_la-gtk-fileprop-x-shortcut.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_menu_actions_la-gtk-menu-actions.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_menu_trash_la-gtk-menu-trash.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vfs-search.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vfs_menu_la-vfs-menu.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_fileprop_x_desktop_la-gtk-fileprop-x-desktop.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_fileprop_x_shortcut_la-gtk-fileprop-x-shortcut.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_menu_actions_la-gtk-menu-actions.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_menu_trash_la-gtk-menu-trash.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vfs-search.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vfs_menu_la-vfs-menu.Plo@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|^/*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @@ -685,7 +697,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -758,7 +773,12 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/gtk_fileprop_x_desktop_la-gtk-fileprop-x-desktop.Plo + -rm -f ./$(DEPDIR)/gtk_fileprop_x_shortcut_la-gtk-fileprop-x-shortcut.Plo + -rm -f ./$(DEPDIR)/gtk_menu_actions_la-gtk-menu-actions.Plo + -rm -f ./$(DEPDIR)/gtk_menu_trash_la-gtk-menu-trash.Plo + -rm -f ./$(DEPDIR)/vfs-search.Plo + -rm -f ./$(DEPDIR)/vfs_menu_la-vfs-menu.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -805,7 +825,12 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/gtk_fileprop_x_desktop_la-gtk-fileprop-x-desktop.Plo + -rm -f ./$(DEPDIR)/gtk_fileprop_x_shortcut_la-gtk-fileprop-x-shortcut.Plo + -rm -f ./$(DEPDIR)/gtk_menu_actions_la-gtk-menu-actions.Plo + -rm -f ./$(DEPDIR)/gtk_menu_trash_la-gtk-menu-trash.Plo + -rm -f ./$(DEPDIR)/vfs-search.Plo + -rm -f ./$(DEPDIR)/vfs_menu_la-vfs-menu.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -827,20 +852,21 @@ $(MAKE) $(AM_MAKEFLAGS) uninstall-hook .MAKE: install-am install-exec-am install-strip uninstall-am -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-pkglibLTLIBRARIES cscopelist-am ctags \ - ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-exec-hook install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-pkglibLTLIBRARIES install-ps \ - install-ps-am install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ - uninstall-am uninstall-hook uninstall-pkglibLTLIBRARIES +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libtool clean-pkglibLTLIBRARIES \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-exec-hook install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-pkglibLTLIBRARIES \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am uninstall-hook \ + uninstall-pkglibLTLIBRARIES .PRECIOUS: Makefile
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/tests/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/src/tests/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -135,7 +135,9 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/libfm-file-search-cli-demo.Po \ + ./$(DEPDIR)/test-fm-path.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -414,8 +416,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_srcdir)/Makefile.decl $(am__empty): @@ -451,8 +453,14 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm-file-search-cli-demo.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-fm-path.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm-file-search-cli-demo.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-fm-path.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|^/*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @@ -536,7 +544,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -607,7 +618,8 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libfm-file-search-cli-demo.Po + -rm -f ./$(DEPDIR)/test-fm-path.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -653,7 +665,8 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libfm-file-search-cli-demo.Po + -rm -f ./$(DEPDIR)/test-fm-path.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -674,19 +687,19 @@ .MAKE: check-am install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ - clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ - ctags ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am \ + check-local clean clean-generic clean-libtool \ + clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2