diff -Nru rpm-4.14.2+dfsg1/ChangeLog rpm-4.14.2.1+dfsg1/ChangeLog --- rpm-4.14.2+dfsg1/ChangeLog 2018-08-21 10:45:27.925306305 +0000 +++ rpm-4.14.2.1+dfsg1/ChangeLog 2018-10-22 09:36:54.806989730 +0000 @@ -1,3 +1,80 @@ +commit 4a9440006398646583f0d9ae1837dad2875013aa +Author: Panu Matilainen +Date: Mon Oct 22 12:36:48 2018 +0300 + + Preparing for rpm 4.14.2.1 + +commit a7f3748d006d1b1057a791f2a7c790d3ec09cc09 +Author: Panu Matilainen +Date: Mon Oct 22 10:52:39 2018 +0300 + + Fix nasty --setperms/--setugids regression in 4.14.2 (RhBug: 1640470) + + Commit 38c2f6e160d5ed3e9c3a266139c7eb2632724c15 causes --setperms and + --setugids follow symlinks instead of skipping them. + + In case of --setperms, all encountered symlinks will have their + target file/directory permissions set to the 0777 of the link itself + (so world writable etc but suid/sgid stripped), temporarily or permanently, + depending on whether the symlink occurs before or after it's target in the + package file list. When the link occurs before its target, there's a short + window where the target is world writable before having it's permissions + reset to original, making it particularly bad for suid/sgid binaries. + + --setugids is similarly affected with link targets owner/group changing + to that of the symlink. + + Add missing parentheses to the conditions introduced in commit + 38c2f6e160d5ed3e9c3a266139c7eb2632724c15 to fix. + Reported by Karel Srot, patch by Pavlina Moravcova Varekova. + + (cherry picked from commit 0d83637769b8a122b1e80f2e960ea1bbae8b4f10) + +commit ddc1d06c45994b40aea3dfefc60436e409fce08c +Author: Panu Matilainen +Date: Tue Oct 16 11:26:46 2018 +0300 + + Resurrect long since broken Lua library path + + LUA_PATH global variable is not consulted when loading libraries in + Lua >= 5.1, package.path has replaced it. Rpm's Lua library path + was always supposed to be /usr/lib/rpm/lua/ but this has been broken + for the last ten years or so, oops. Make the directory a first-class + citizen: create it on install, add a macro for it, make it actually + work and ensure it stays that way by adding a test for it. + + (cherry picked from commit dd6c65044c41922193f520ace668e2c5e55f1004) + +commit 3570c9beb5398541ea7423639891ef6a9de27087 +Author: Panu Matilainen +Date: Wed Oct 3 11:51:38 2018 +0300 + + Fix ancient python GIL locking bug on callback (RhBug:1632488) + + Introduced in commit c7881d801745b4c156a8aa2afc17b95f97481e34 back in 2002, + synthesizing a python object for the callback occurs before retaking + the GIL lock, which is not allowed. Somehow this has managed to stay + latent all these years, and even now requires fairly specific conditions: + when the callback gets called without an associated key, such as erasures + or file trigger script start/stop events (in the case of RhBug:1632488), + when Python 3 is running in PYTHONMALLOC=debug mode, + it crashes with "Python memory allocator called without holding the GIL". + + Simply retake the lock before any Python operations take place to fix. + + (cherry picked from commit 531dc8495cd3aabd3f659ecab604106fdbacbe98) + +commit 63107826dc8c25f74fe6197179fb25da12d029fe +Author: Panu Matilainen +Date: Fri Sep 7 11:52:33 2018 +0300 + + Fix a blindingly obvious memleak in package verify step + + Erm. Introduced in commit 765e2c72ae8be369ada41d4747b8999519a0e327, + but how on earth did this go unnoticed... *blush* + + (cherry picked from commit 788935c9ea9d2f469f24be10a9fa998594046731) + commit 753f6941dc32e94047b7cfe713ddd604a810b4db Author: Panu Matilainen Date: Tue Aug 21 13:38:47 2018 +0300 diff -Nru rpm-4.14.2+dfsg1/configure rpm-4.14.2.1+dfsg1/configure --- rpm-4.14.2+dfsg1/configure 2018-08-21 10:38:23.500041274 +0000 +++ rpm-4.14.2.1+dfsg1/configure 2018-10-22 09:23:38.409409243 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for rpm 4.14.2. +# Generated by GNU Autoconf 2.69 for rpm 4.14.2.1. # # Report bugs to . # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='rpm' PACKAGE_TARNAME='rpm' -PACKAGE_VERSION='4.14.2' -PACKAGE_STRING='rpm 4.14.2' +PACKAGE_VERSION='4.14.2.1' +PACKAGE_STRING='rpm 4.14.2.1' PACKAGE_BUGREPORT='rpm-maint@lists.rpm.org' PACKAGE_URL='' @@ -1551,7 +1551,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 rpm 4.14.2 to adapt to many kinds of systems. +\`configure' configures rpm 4.14.2.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1621,7 +1621,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of rpm 4.14.2:";; + short | recursive ) echo "Configuration of rpm 4.14.2.1:";; esac cat <<\_ACEOF @@ -1795,7 +1795,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -rpm configure 4.14.2 +rpm configure 4.14.2.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2442,7 +2442,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by rpm $as_me 4.14.2, which was +It was created by rpm $as_me 4.14.2.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3312,7 +3312,7 @@ # Define the identity of the package. PACKAGE='rpm' - VERSION='4.14.2' + VERSION='4.14.2.1' cat >>confdefs.h <<_ACEOF @@ -27200,7 +27200,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by rpm $as_me 4.14.2, which was +This file was extended by rpm $as_me 4.14.2.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -27266,7 +27266,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -rpm config.status 4.14.2 +rpm config.status 4.14.2.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru rpm-4.14.2+dfsg1/configure.ac rpm-4.14.2.1+dfsg1/configure.ac --- rpm-4.14.2+dfsg1/configure.ac 2018-08-21 10:38:18.194050462 +0000 +++ rpm-4.14.2.1+dfsg1/configure.ac 2018-10-22 09:23:13.410454147 +0000 @@ -1,5 +1,5 @@ AC_PREREQ(2.61) -AC_INIT(rpm, 4.14.2, rpm-maint@lists.rpm.org) +AC_INIT(rpm, 4.14.2.1, rpm-maint@lists.rpm.org) AC_CONFIG_SRCDIR([rpmqv.c]) AC_CONFIG_HEADERS([config.h]) diff -Nru rpm-4.14.2+dfsg1/debian/changelog rpm-4.14.2.1+dfsg1/debian/changelog --- rpm-4.14.2+dfsg1/debian/changelog 2019-01-15 10:26:16.000000000 +0000 +++ rpm-4.14.2.1+dfsg1/debian/changelog 2019-02-17 08:19:38.000000000 +0000 @@ -1,8 +1,9 @@ -rpm (4.14.2+dfsg1-1build1) disco; urgency=medium +rpm (4.14.2.1+dfsg1-1) unstable; urgency=medium - * No-change rebuild for readline soname change. + * New upstream release. + * Bump standards to 4.3.0. - -- Matthias Klose Tue, 15 Jan 2019 10:26:16 +0000 + -- Michal Čihař Sun, 17 Feb 2019 09:19:38 +0100 rpm (4.14.2+dfsg1-1) unstable; urgency=medium diff -Nru rpm-4.14.2+dfsg1/debian/control rpm-4.14.2.1+dfsg1/debian/control --- rpm-4.14.2+dfsg1/debian/control 2018-10-18 08:13:57.000000000 +0000 +++ rpm-4.14.2.1+dfsg1/debian/control 2019-02-17 08:19:07.000000000 +0000 @@ -39,7 +39,7 @@ libdb-dev, liblua5.2-dev, libsemanage1-dev [linux-any] -Standards-Version: 4.2.1 +Standards-Version: 4.3.0 Vcs-Browser: https://salsa.debian.org/pkg-rpm-team/rpm Vcs-Git: https://salsa.debian.org/pkg-rpm-team/rpm.git Homepage: http://rpm.org/ diff -Nru rpm-4.14.2+dfsg1/lib/transaction.c rpm-4.14.2.1+dfsg1/lib/transaction.c --- rpm-4.14.2+dfsg1/lib/transaction.c 2018-06-29 12:35:38.234320095 +0000 +++ rpm-4.14.2.1+dfsg1/lib/transaction.c 2018-10-22 09:22:25.071540970 +0000 @@ -1259,6 +1259,7 @@ rpmteAddProblem(p, RPMPROB_VERIFY, NULL, vd.msg, 0); vd.msg = _free(vd.msg); + rpmvsFree(vs); } rpmtsNotify(ts, NULL, RPMCALLBACK_VERIFY_STOP, total, total); diff -Nru rpm-4.14.2+dfsg1/macros.in rpm-4.14.2.1+dfsg1/macros.in --- rpm-4.14.2+dfsg1/macros.in 2018-08-21 10:38:02.036078441 +0000 +++ rpm-4.14.2.1+dfsg1/macros.in 2018-10-22 09:22:55.901485593 +0000 @@ -149,6 +149,8 @@ %_rpmconfigdir %{getconfdir} # The directory where rpm's macro files live %_rpmmacrodir %{_rpmconfigdir}/macros.d +# The directory where rpm's addon lua libraries live +%_rpmluadir %{_rpmconfigdir}/lua # The directory where sources/patches will be unpacked and built. %_builddir %{_topdir}/BUILD diff -Nru rpm-4.14.2+dfsg1/Makefile.am rpm-4.14.2.1+dfsg1/Makefile.am --- rpm-4.14.2+dfsg1/Makefile.am 2018-06-29 09:32:56.803552269 +0000 +++ rpm-4.14.2.1+dfsg1/Makefile.am 2018-10-22 09:22:55.902485592 +0000 @@ -253,6 +253,7 @@ $(RPMCANONVENDOR) $(RPMCANONOS) $(RPMCANONGNU) @$(MKDIR_P) $(DESTDIR)$(localstatedir)/tmp @$(MKDIR_P) $(DESTDIR)$(rpmconfigdir)/macros.d + @$(MKDIR_P) $(DESTDIR)$(rpmconfigdir)/lua # XXX to appease distcheck we need to remove "stuff" here... uninstall-local: @@ -261,6 +262,7 @@ @rm -rf $(DESTDIR)$(rpmconfigdir)/platform/ @rm -f $(DESTDIR)$(rpmconfigdir)/macros @rm -rf $(DESTDIR)$(rpmconfigdir)/macros.d + @rm -rf $(DESTDIR)$(rpmconfigdir)/lua MAINTAINERCLEANFILES = ChangeLog diff -Nru rpm-4.14.2+dfsg1/Makefile.in rpm-4.14.2.1+dfsg1/Makefile.in --- rpm-4.14.2+dfsg1/Makefile.in 2018-08-21 10:38:23.738040862 +0000 +++ rpm-4.14.2.1+dfsg1/Makefile.in 2018-10-22 09:23:38.641408826 +0000 @@ -1820,6 +1820,7 @@ $(RPMCANONVENDOR) $(RPMCANONOS) $(RPMCANONGNU) @$(MKDIR_P) $(DESTDIR)$(localstatedir)/tmp @$(MKDIR_P) $(DESTDIR)$(rpmconfigdir)/macros.d + @$(MKDIR_P) $(DESTDIR)$(rpmconfigdir)/lua # XXX to appease distcheck we need to remove "stuff" here... uninstall-local: @@ -1828,6 +1829,7 @@ @rm -rf $(DESTDIR)$(rpmconfigdir)/platform/ @rm -f $(DESTDIR)$(rpmconfigdir)/macros @rm -rf $(DESTDIR)$(rpmconfigdir)/macros.d + @rm -rf $(DESTDIR)$(rpmconfigdir)/lua # Build hacking docs only on request @DOXYGEN_TRUE@@HACKINGDOCS_TRUE@doc/hacking.doxy: doc/hacking.doxy.in doc/hacking/Doxyheader.h Makefile.am Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/ar.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/ar.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/ar.po rpm-4.14.2.1+dfsg1/po/ar.po --- rpm-4.14.2+dfsg1/po/ar.po 2018-08-21 10:38:41.108010782 +0000 +++ rpm-4.14.2.1+dfsg1/po/ar.po 2018-10-22 09:23:51.022386589 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Arabic (http://www.transifex.com/rpm-team/rpm/language/ar/)\n" @@ -3584,11 +3584,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "مُستثناة" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3749,27 +3749,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/br.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/br.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/br.po rpm-4.14.2.1+dfsg1/po/br.po --- rpm-4.14.2+dfsg1/po/br.po 2018-08-21 10:38:41.108010782 +0000 +++ rpm-4.14.2.1+dfsg1/po/br.po 2018-10-22 09:23:51.014386603 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Breton (http://www.transifex.com/rpm-team/rpm/language/br/)\n" @@ -3579,11 +3579,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "tremenet en e biou" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "sac'het" @@ -3744,27 +3744,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/ca.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/ca.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/ca.po rpm-4.14.2.1+dfsg1/po/ca.po --- rpm-4.14.2+dfsg1/po/ca.po 2018-08-21 10:38:41.104010789 +0000 +++ rpm-4.14.2.1+dfsg1/po/ca.po 2018-10-22 09:23:51.031386572 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Catalan (http://www.transifex.com/rpm-team/rpm/language/ca/)\n" @@ -3684,11 +3684,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "s'ha ignorat" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "ha fallat" @@ -3851,27 +3851,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "sintaxi no vàlida en el scriptlet lua: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "sintaxi no vàlida en el script lua: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "ha fallat el script lua: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "sintaxi no vàlida al fitxer lua: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "Ha fallat el hook lua: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/cmn.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/cmn.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/cmn.po rpm-4.14.2.1+dfsg1/po/cmn.po --- rpm-4.14.2+dfsg1/po/cmn.po 2018-08-21 10:38:41.099010798 +0000 +++ rpm-4.14.2.1+dfsg1/po/cmn.po 2018-10-22 09:23:51.028386578 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Chinese (Mandarin) (http://www.transifex.com/rpm-team/rpm/" @@ -3592,11 +3592,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "已跳過" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "已失敗" @@ -3757,27 +3757,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "無效的語法於 lua 指令稿片段:%s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "無效的語法於 lua 指令稿:%s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua 指令稿失敗:%s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "lua 檔案內有無效語法:%s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "lua 攔截指令失敗:%s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/cs.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/cs.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/cs.po rpm-4.14.2.1+dfsg1/po/cs.po --- rpm-4.14.2+dfsg1/po/cs.po 2018-08-21 10:38:41.191010638 +0000 +++ rpm-4.14.2.1+dfsg1/po/cs.po 2018-10-22 09:23:51.076386491 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Czech (http://www.transifex.com/rpm-team/rpm/language/cs/)\n" @@ -3603,11 +3603,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3768,27 +3768,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "neplatná syntax v lua skriptletu: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "neplatná syntax v lua skriptu: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua skript selhal: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "neplatné syntax v lua souboru: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "lua obsloužení selhalo: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/da.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/da.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/da.po rpm-4.14.2.1+dfsg1/po/da.po --- rpm-4.14.2+dfsg1/po/da.po 2018-08-21 10:38:41.193010635 +0000 +++ rpm-4.14.2.1+dfsg1/po/da.po 2018-10-22 09:23:51.091386464 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Danish (http://www.transifex.com/rpm-team/rpm/language/da/)\n" @@ -3599,11 +3599,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3764,27 +3764,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/de.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/de.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/de.po rpm-4.14.2.1+dfsg1/po/de.po --- rpm-4.14.2+dfsg1/po/de.po 2018-08-21 10:38:41.222010585 +0000 +++ rpm-4.14.2.1+dfsg1/po/de.po 2018-10-22 09:23:51.102386445 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: German (http://www.transifex.com/rpm-team/rpm/language/de/)\n" @@ -3670,11 +3670,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "übersprungen" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "fehlgeschlagen" @@ -3838,27 +3838,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "Ungültige Syntax in Lua-Scriptlet: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "Ungültige Syntax in Lua-Script: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "Lua-Script fehlgeschlagen: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "Ungültige Syntax in Lua-Datei: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "Lua-Hook fehlgeschlagen: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/el.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/el.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/el.po rpm-4.14.2.1+dfsg1/po/el.po --- rpm-4.14.2+dfsg1/po/el.po 2018-08-21 10:38:41.189010642 +0000 +++ rpm-4.14.2.1+dfsg1/po/el.po 2018-10-22 09:23:51.106386437 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Greek (http://www.transifex.com/rpm-team/rpm/language/el/)\n" @@ -3579,11 +3579,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3744,27 +3744,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/eo.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/eo.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/eo.po rpm-4.14.2.1+dfsg1/po/eo.po --- rpm-4.14.2+dfsg1/po/eo.po 2018-08-21 10:38:41.267010507 +0000 +++ rpm-4.14.2.1+dfsg1/po/eo.po 2018-10-22 09:23:51.162386337 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Esperanto (http://www.transifex.com/rpm-team/rpm/language/" @@ -3625,11 +3625,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "preterlasita" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "malsukcesa" @@ -3792,27 +3792,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "nevalida sintakso en lua-skripteto: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "nevalida sintakso en lua-skripto: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua-skripto malsukcesis: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "nevalida sintakso en lua-dosiero: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "lua hoko malsukcesis: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/es.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/es.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/es.po rpm-4.14.2.1+dfsg1/po/es.po --- rpm-4.14.2+dfsg1/po/es.po 2018-08-21 10:38:41.277010489 +0000 +++ rpm-4.14.2.1+dfsg1/po/es.po 2018-10-22 09:23:51.163386335 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Spanish (http://www.transifex.com/rpm-team/rpm/language/es/)\n" @@ -3679,11 +3679,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "ignorado" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "falló" @@ -3846,27 +3846,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "sintaxis no válida en el macro de ejecución de scriptlet lua: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "sintaxis no valida en el scriptlet lua: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "falló el scriptlet lua: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "sintaxis no valida en el archivo de scriptlet lua: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "falló el enlace de lua: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/fi.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/fi.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/fi.po rpm-4.14.2.1+dfsg1/po/fi.po --- rpm-4.14.2+dfsg1/po/fi.po 2018-08-21 10:38:41.311010430 +0000 +++ rpm-4.14.2.1+dfsg1/po/fi.po 2018-10-22 09:23:51.167386328 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Finnish (http://www.transifex.com/rpm-team/rpm/language/fi/)\n" @@ -3603,11 +3603,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "epäonnistui" @@ -3768,27 +3768,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "virheellinen syntaksi lua-skriptissä: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "virheellinen syntaksi lua-skriptissä: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua-skripti epäonnistui: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "virheellinen syntaksi lua-tiedostossa: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "lua-koukku epäonnistui: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/fr.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/fr.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/fr.po rpm-4.14.2.1+dfsg1/po/fr.po --- rpm-4.14.2+dfsg1/po/fr.po 2018-08-21 10:38:41.347010368 +0000 +++ rpm-4.14.2.1+dfsg1/po/fr.po 2018-10-22 09:23:51.184386298 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:40+0000\n" "Last-Translator: pmatilai \n" "Language-Team: French (http://www.transifex.com/rpm-team/rpm/language/fr/)\n" @@ -3672,11 +3672,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "sauté" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "échoué" @@ -3839,27 +3839,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "syntaxe invalide dans le scriptlet lua : %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "syntaxe invalide dans le script lua : %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "script lua échoué : %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "syntaxe invalide dans le fichier lua : %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "crochet lua échoué : %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/id.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/id.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/id.po rpm-4.14.2.1+dfsg1/po/id.po --- rpm-4.14.2+dfsg1/po/id.po 2018-08-21 10:38:41.362010342 +0000 +++ rpm-4.14.2.1+dfsg1/po/id.po 2018-10-22 09:23:51.216386240 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Indonesian (http://www.transifex.com/rpm-team/rpm/language/" @@ -3597,11 +3597,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3762,27 +3762,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/is.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/is.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/is.po rpm-4.14.2.1+dfsg1/po/is.po --- rpm-4.14.2+dfsg1/po/is.po 2018-08-21 10:38:41.371010327 +0000 +++ rpm-4.14.2.1+dfsg1/po/is.po 2018-10-22 09:23:51.224386226 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Icelandic (http://www.transifex.com/rpm-team/rpm/language/" @@ -3579,11 +3579,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3744,27 +3744,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/it.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/it.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/it.po rpm-4.14.2.1+dfsg1/po/it.po --- rpm-4.14.2+dfsg1/po/it.po 2018-08-21 10:38:41.430010225 +0000 +++ rpm-4.14.2.1+dfsg1/po/it.po 2018-10-22 09:23:51.246386186 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Italian (http://www.transifex.com/rpm-team/rpm/language/it/)\n" @@ -3672,11 +3672,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "saltato" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "fallito" @@ -3839,27 +3839,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "sintassi non valida nella scriptlet lua: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "sintassi non valida nello script lua: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "script lua fallito: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "sintassi non valida nel file lua: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "hook lua fallito: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/ja.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/ja.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/ja.po rpm-4.14.2.1+dfsg1/po/ja.po --- rpm-4.14.2+dfsg1/po/ja.po 2018-08-21 10:38:41.461010171 +0000 +++ rpm-4.14.2.1+dfsg1/po/ja.po 2018-10-22 09:23:51.269386145 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Japanese (http://www.transifex.com/rpm-team/rpm/language/" @@ -3629,11 +3629,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "スキップした" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "失敗" @@ -3796,27 +3796,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "lua スクリプトで不正な文法がありました: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "lua スクリプトで不正な文法がありました: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua スクリプトに失敗しました: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "lua ファイルに不正な文法がありました: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "lua のフックに失敗しました: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/ko.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/ko.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/ko.po rpm-4.14.2.1+dfsg1/po/ko.po --- rpm-4.14.2+dfsg1/po/ko.po 2018-08-21 10:38:41.435010216 +0000 +++ rpm-4.14.2.1+dfsg1/po/ko.po 2018-10-22 09:23:51.286386114 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Korean (http://www.transifex.com/rpm-team/rpm/language/ko/)\n" @@ -3604,11 +3604,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3769,27 +3769,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/ms.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/ms.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/ms.po rpm-4.14.2.1+dfsg1/po/ms.po --- rpm-4.14.2+dfsg1/po/ms.po 2018-08-21 10:38:41.476010145 +0000 +++ rpm-4.14.2.1+dfsg1/po/ms.po 2018-10-22 09:23:51.293386102 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Malay (http://www.transifex.com/rpm-team/rpm/language/ms/)\n" @@ -3576,11 +3576,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3741,27 +3741,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "skrip lua gagal: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "pautan lua gagal: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/nb.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/nb.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/nb.po rpm-4.14.2.1+dfsg1/po/nb.po --- rpm-4.14.2+dfsg1/po/nb.po 2018-08-21 10:38:41.526010058 +0000 +++ rpm-4.14.2.1+dfsg1/po/nb.po 2018-10-22 09:23:51.307386077 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/rpm-team/rpm/" @@ -3595,11 +3595,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3760,27 +3760,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/nl.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/nl.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/nl.po rpm-4.14.2.1+dfsg1/po/nl.po --- rpm-4.14.2+dfsg1/po/nl.po 2018-08-21 10:38:41.510010086 +0000 +++ rpm-4.14.2.1+dfsg1/po/nl.po 2018-10-22 09:23:51.326386043 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Dutch (http://www.transifex.com/rpm-team/rpm/language/nl/)\n" @@ -3577,11 +3577,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3742,27 +3742,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/pl.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/pl.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/pl.po rpm-4.14.2.1+dfsg1/po/pl.po --- rpm-4.14.2+dfsg1/po/pl.po 2018-08-21 10:38:41.557010004 +0000 +++ rpm-4.14.2.1+dfsg1/po/pl.po 2018-10-22 09:23:51.353385994 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Polish (http://www.transifex.com/rpm-team/rpm/language/pl/)\n" @@ -3638,11 +3638,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "pominięto" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "się nie powiodło" @@ -3805,27 +3805,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "nieprawidłowa składnia skryptu Lua: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "nieprawidłowa składnia skryptu Lua: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "skrypt Lua się nie powiódł: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "nieprawidłowa składnia pliku Lua: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "hak Lua się nie powiódł: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/pt_BR.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/pt_BR.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/pt_BR.po rpm-4.14.2.1+dfsg1/po/pt_BR.po --- rpm-4.14.2+dfsg1/po/pt_BR.po 2018-08-21 10:38:41.613009908 +0000 +++ rpm-4.14.2.1+dfsg1/po/pt_BR.po 2018-10-22 09:23:51.380385945 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rpm-team/rpm/" @@ -3641,11 +3641,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "ignorado" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "falhou" @@ -3806,27 +3806,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "sintaxe inválida no scriptlet lua: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "sintaxe inválida no script lua: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "falha no script lua: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "sintaxe inválida no arquivo lua: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "falha na conexão lua: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/pt.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/pt.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/pt.po rpm-4.14.2.1+dfsg1/po/pt.po --- rpm-4.14.2+dfsg1/po/pt.po 2018-08-21 10:38:41.592009944 +0000 +++ rpm-4.14.2.1+dfsg1/po/pt.po 2018-10-22 09:23:51.367385969 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Portuguese (http://www.transifex.com/rpm-team/rpm/language/" @@ -3613,11 +3613,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3778,27 +3778,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" diff -Nru rpm-4.14.2+dfsg1/po/rpm.pot rpm-4.14.2.1+dfsg1/po/rpm.pot --- rpm-4.14.2+dfsg1/po/rpm.pot 2018-08-21 10:38:40.926011097 +0000 +++ rpm-4.14.2.1+dfsg1/po/rpm.pot 2018-10-22 09:23:50.936386743 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3576,11 +3576,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3741,27 +3741,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/ru.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/ru.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/ru.po rpm-4.14.2.1+dfsg1/po/ru.po --- rpm-4.14.2+dfsg1/po/ru.po 2018-08-21 10:38:41.647009849 +0000 +++ rpm-4.14.2.1+dfsg1/po/ru.po 2018-10-22 09:23:51.418385877 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Russian (http://www.transifex.com/rpm-team/rpm/language/ru/)\n" @@ -3622,11 +3622,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "пропущено" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "не удалось" @@ -3787,27 +3787,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/sk.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/sk.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/sk.po rpm-4.14.2.1+dfsg1/po/sk.po --- rpm-4.14.2+dfsg1/po/sk.po 2018-08-21 10:38:41.685009783 +0000 +++ rpm-4.14.2.1+dfsg1/po/sk.po 2018-10-22 09:23:51.424385866 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Slovak (http://www.transifex.com/rpm-team/rpm/language/sk/)\n" @@ -3615,11 +3615,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "preskočené" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "zlyhané" @@ -3782,27 +3782,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "neplatná syntax v lua skriptlete: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "nesprávna syntax v lua skripte: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua skript zlyhal: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "neplatná syntax v súbore lua: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "obslúženie lua zlyhalo: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/sl.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/sl.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/sl.po rpm-4.14.2.1+dfsg1/po/sl.po --- rpm-4.14.2+dfsg1/po/sl.po 2018-08-21 10:38:41.714009733 +0000 +++ rpm-4.14.2.1+dfsg1/po/sl.po 2018-10-22 09:23:51.446385827 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Slovenian (http://www.transifex.com/rpm-team/rpm/language/" @@ -3589,11 +3589,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3754,27 +3754,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/sr.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/sr.gmo differ Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/sr@latin.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/sr@latin.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/sr@latin.po rpm-4.14.2.1+dfsg1/po/sr@latin.po --- rpm-4.14.2+dfsg1/po/sr@latin.po 2018-08-21 10:38:41.759009655 +0000 +++ rpm-4.14.2.1+dfsg1/po/sr@latin.po 2018-10-22 09:23:51.500385730 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/rpm-team/rpm/" @@ -3611,11 +3611,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3776,27 +3776,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "nepravilna sintaksa u lua skriptici: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "nepravilna sintaksa u lua skripti: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua skripta nije uspela: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "nepravilna sintaksa u lua datoteci: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "lua udica nije uspela: %s\n" diff -Nru rpm-4.14.2+dfsg1/po/sr.po rpm-4.14.2.1+dfsg1/po/sr.po --- rpm-4.14.2+dfsg1/po/sr.po 2018-08-21 10:38:41.707009745 +0000 +++ rpm-4.14.2.1+dfsg1/po/sr.po 2018-10-22 09:23:51.468385787 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Serbian (http://www.transifex.com/rpm-team/rpm/language/sr/)\n" @@ -3608,11 +3608,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3773,27 +3773,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "неправилна синтакса у lua скриптици: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "неправилна синтакса у lua скрипти: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua скрипта није успела: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "неправилна синтакса у lua датотеци: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "lua удица није успела: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/sv.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/sv.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/sv.po rpm-4.14.2.1+dfsg1/po/sv.po --- rpm-4.14.2+dfsg1/po/sv.po 2018-08-21 10:38:41.782009615 +0000 +++ rpm-4.14.2.1+dfsg1/po/sv.po 2018-10-22 09:23:51.498385733 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Swedish (http://www.transifex.com/rpm-team/rpm/language/sv/)\n" @@ -3611,11 +3611,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "hoppade över" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "misslyckades" @@ -3778,27 +3778,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "felaktig syntax i lua-skript: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "felaktig syntax i lua-skript: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua-skript misslyckades: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "felaktig syntax i lua-fil: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "lua-hake misslyckades: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/te.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/te.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/te.po rpm-4.14.2.1+dfsg1/po/te.po --- rpm-4.14.2+dfsg1/po/te.po 2018-08-21 10:38:41.807009572 +0000 +++ rpm-4.14.2.1+dfsg1/po/te.po 2018-10-22 09:23:51.502385726 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Telugu (http://www.transifex.com/rpm-team/rpm/language/te/)\n" @@ -3582,11 +3582,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "" @@ -3747,27 +3747,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/tr.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/tr.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/tr.po rpm-4.14.2.1+dfsg1/po/tr.po --- rpm-4.14.2+dfsg1/po/tr.po 2018-08-21 10:38:41.821009547 +0000 +++ rpm-4.14.2.1+dfsg1/po/tr.po 2018-10-22 09:23:51.555385631 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Turkish (http://www.transifex.com/rpm-team/rpm/language/tr/)\n" @@ -3615,11 +3615,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "atlandı" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "başarısız oldu" @@ -3780,27 +3780,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/uk.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/uk.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/uk.po rpm-4.14.2.1+dfsg1/po/uk.po --- rpm-4.14.2+dfsg1/po/uk.po 2018-08-21 10:38:41.883009440 +0000 +++ rpm-4.14.2.1+dfsg1/po/uk.po 2018-10-22 09:23:51.578385590 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Ukrainian (http://www.transifex.com/rpm-team/rpm/language/" @@ -3664,11 +3664,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "пропущено" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "невдача" @@ -3831,27 +3831,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "некоректний синтаксис у допоміжному скрипті lua: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "некоректний синтаксис у скрипті lua: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "помилка скрипту lua: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "некоректний синтаксис у файлі lua: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "помилка виклику lua: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/vi.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/vi.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/vi.po rpm-4.14.2.1+dfsg1/po/vi.po --- rpm-4.14.2+dfsg1/po/vi.po 2018-08-21 10:38:41.884009438 +0000 +++ rpm-4.14.2.1+dfsg1/po/vi.po 2018-10-22 09:23:51.577385591 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Vietnamese (http://www.transifex.com/rpm-team/rpm/language/" @@ -3666,11 +3666,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "bị bỏ qua" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "gặp lỗi" @@ -3834,27 +3834,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "có lỗi cú pháp trong lua scriptlet: %s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "cú pháp không hợp lệ trong văn lệnh lua: %s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "gặp lỗi khi thực thi văn lệnh lua: %s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "cú pháp không hợp lệ trong tập tin Lua: %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "Lỗi kích hoạt khả năng Lua: %s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/zh_CN.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/zh_CN.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/zh_CN.po rpm-4.14.2.1+dfsg1/po/zh_CN.po --- rpm-4.14.2+dfsg1/po/zh_CN.po 2018-08-21 10:38:41.907009398 +0000 +++ rpm-4.14.2.1+dfsg1/po/zh_CN.po 2018-10-22 09:23:51.578385590 +0000 @@ -25,7 +25,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Chinese (China) (http://www.transifex.com/rpm-team/rpm/" @@ -3610,11 +3610,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "已跳过" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "已失败" @@ -3775,27 +3775,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "lua 脚本中存在无效的语法:%s\n" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "Lua 脚本中存在无效的语法:%s\n" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua 脚本执行失败:%s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "lua文件中存在无效的语法 %s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "lua hook 执行失败:%s\n" Binary files /tmp/tmpesxkH8/aLHGkeYF3s/rpm-4.14.2+dfsg1/po/zh_TW.gmo and /tmp/tmpesxkH8/hm7F4oAMPb/rpm-4.14.2.1+dfsg1/po/zh_TW.gmo differ diff -Nru rpm-4.14.2+dfsg1/po/zh_TW.po rpm-4.14.2.1+dfsg1/po/zh_TW.po --- rpm-4.14.2+dfsg1/po/zh_TW.po 2018-08-21 10:38:41.919009378 +0000 +++ rpm-4.14.2.1+dfsg1/po/zh_TW.po 2018-10-22 09:23:51.613385527 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: RPM\n" "Report-Msgid-Bugs-To: rpm-maint@lists.rpm.org\n" -"POT-Creation-Date: 2018-08-21 13:38+0300\n" +"POT-Creation-Date: 2018-10-22 12:23+0300\n" "PO-Revision-Date: 2017-08-10 07:39+0000\n" "Last-Translator: pmatilai \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/rpm-team/rpm/" @@ -3592,11 +3592,11 @@ msgid "no digest" msgstr "" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "skipped" msgstr "已跳過" -#: lib/transaction.c:1518 +#: lib/transaction.c:1519 msgid "failed" msgstr "已失敗" @@ -3757,27 +3757,27 @@ msgid "Error writing to log" msgstr "" -#: rpmio/rpmlua.c:523 +#: rpmio/rpmlua.c:522 #, c-format msgid "invalid syntax in lua scriptlet: %s\n" msgstr "" -#: rpmio/rpmlua.c:541 +#: rpmio/rpmlua.c:540 #, c-format msgid "invalid syntax in lua script: %s\n" msgstr "" -#: rpmio/rpmlua.c:546 rpmio/rpmlua.c:565 +#: rpmio/rpmlua.c:545 rpmio/rpmlua.c:564 #, c-format msgid "lua script failed: %s\n" msgstr "lua 指令稿失敗:%s\n" -#: rpmio/rpmlua.c:560 +#: rpmio/rpmlua.c:559 #, c-format msgid "invalid syntax in lua file: %s\n" msgstr "lua 檔案內有無效語法:%s\n" -#: rpmio/rpmlua.c:756 +#: rpmio/rpmlua.c:755 #, c-format msgid "lua hook failed: %s\n" msgstr "" diff -Nru rpm-4.14.2+dfsg1/python/rpmts-py.c rpm-4.14.2.1+dfsg1/python/rpmts-py.c --- rpm-4.14.2+dfsg1/python/rpmts-py.c 2018-06-29 12:35:38.253320066 +0000 +++ rpm-4.14.2.1+dfsg1/python/rpmts-py.c 2018-10-22 09:22:46.701502118 +0000 @@ -495,6 +495,8 @@ if (cbInfo->cb == Py_None) return NULL; + PyEval_RestoreThread(cbInfo->_save); + /* Synthesize a python object for callback (if necessary). */ if (pkgObj == NULL) { if (h) { @@ -506,8 +508,6 @@ } else Py_INCREF(pkgObj); - PyEval_RestoreThread(cbInfo->_save); - args = Py_BuildValue("(iLLOO)", what, amount, total, pkgObj, cbInfo->data); result = PyEval_CallObject(cbInfo->cb, args); Py_DECREF(args); diff -Nru rpm-4.14.2+dfsg1/rpmio/rpmlua.c rpm-4.14.2.1+dfsg1/rpmio/rpmlua.c --- rpm-4.14.2+dfsg1/rpmio/rpmlua.c 2018-06-21 09:08:06.524109899 +0000 +++ rpm-4.14.2.1+dfsg1/rpmio/rpmlua.c 2018-10-22 09:22:55.890485613 +0000 @@ -100,13 +100,6 @@ #ifndef LUA_GLOBALSINDEX lua_pushglobaltable(L); #endif - lua_pushliteral(L, "LUA_PATH"); - lua_pushfstring(L, "%s/%s", rpmConfigDir(), "/lua/?.lua"); -#ifdef LUA_GLOBALSINDEX - lua_rawset(L, LUA_GLOBALSINDEX); -#else - lua_settable(L, -3); -#endif lua_pushliteral(L, "print"); lua_pushcfunction(L, rpm_print); #ifdef LUA_GLOBALSINDEX @@ -117,6 +110,12 @@ #ifndef LUA_GLOBALSINDEX lua_pop(L, 1); #endif + + lua_getglobal(L, "package"); + lua_pushfstring(L, "%s/%s", rpmConfigDir(), "/lua/?.lua"); + lua_setfield(L, -2, "path"); + lua_pop(L, 1); + rpmluaSetData(lua, "lua", lua); if (stat(initlua, &st) != -1) (void)rpmluaRunScriptFile(lua, initlua); diff -Nru rpm-4.14.2+dfsg1/rpmpopt.in rpm-4.14.2.1+dfsg1/rpmpopt.in --- rpm-4.14.2+dfsg1/rpmpopt.in 2018-08-21 10:38:07.795068464 +0000 +++ rpm-4.14.2.1+dfsg1/rpmpopt.in 2018-10-22 09:23:02.579473599 +0000 @@ -44,14 +44,14 @@ --POPTdesc=$"list install/erase scriptlets from package(s)" rpm alias --setperms -q --qf '[\[ -L %{FILENAMES:shescape} \] || \ - \[ $((%{FILEFLAGS} & 2#1001000)) != 0 \] && \[ ! -e %{FILENAMES:shescape} \] || \ + ( \[ $((%{FILEFLAGS} & 2#1001000)) != 0 \] && \[ ! -e %{FILENAMES:shescape} \] ) || \ chmod %7{FILEMODES:octal} %{FILENAMES:shescape}\n]' \ --pipe "grep -v \(none\) | grep '^. -L ' | sed 's/chmod .../chmod /' | sh" \ --POPTdesc=$"set permissions of files in a package" rpm alias --setugids -q --qf \ '[ch %{FILEUSERNAME:shescape} %{FILEGROUPNAME:shescape} %{FILENAMES:shescape} %{FILEFLAGS}\n]' \ - --pipe "(echo 'ch() { \[ $(($4 & 2#1001000)) != 0 \] && \[ ! -e \"$3\" \] || \ + --pipe "(echo 'ch() { ( \[ $(($4 & 2#1001000)) != 0 \] && \[ ! -e \"$3\" \] ) || \ (chown -h -- \"$1\" \"$3\";chgrp -h -- \"$2\" \"$3\";) }'; \ grep '^ch '|grep -v \(none\))|sh" \ --POPTdesc=$"set user/group ownership of files in a package" diff -Nru rpm-4.14.2+dfsg1/tests/package.m4 rpm-4.14.2.1+dfsg1/tests/package.m4 --- rpm-4.14.2+dfsg1/tests/package.m4 2018-08-21 10:38:57.039983192 +0000 +++ rpm-4.14.2.1+dfsg1/tests/package.m4 2018-10-22 09:23:53.325382452 +0000 @@ -1,6 +1,6 @@ # Signature of the current package. m4_define([AT_PACKAGE_NAME], [rpm]) m4_define([AT_PACKAGE_TARNAME], [rpm]) -m4_define([AT_PACKAGE_VERSION], [4.14.2]) -m4_define([AT_PACKAGE_STRING], [rpm 4.14.2]) +m4_define([AT_PACKAGE_VERSION], [4.14.2.1]) +m4_define([AT_PACKAGE_STRING], [rpm 4.14.2.1]) m4_define([AT_PACKAGE_BUGREPORT], [rpm-maint@lists.rpm.org]) diff -Nru rpm-4.14.2+dfsg1/tests/rpmmacro.at rpm-4.14.2.1+dfsg1/tests/rpmmacro.at --- rpm-4.14.2+dfsg1/tests/rpmmacro.at 2018-06-29 12:35:38.256320062 +0000 +++ rpm-4.14.2.1+dfsg1/tests/rpmmacro.at 2018-10-22 09:22:55.885485622 +0000 @@ -297,6 +297,21 @@ ) AT_CLEANUP +AT_SETUP([lua library path]) +AT_KEYWORDS([macros lua]) +AT_CHECK([ +AT_SKIP_IF([$LUA_DISABLED]) +f=$(rpm --eval "%{_rpmconfigdir}/lua/foo.lua") +echo "bar = 'graak'" > ${f} +runroot rpm \ + --eval '%{lua:require "foo"; print(bar)}' +rm -f ${f} +], +[0], +[graak +]) +AT_CLEANUP + AT_SETUP([%define + %undefine in nested levels 1]) AT_KEYWORDS([macros define undefine]) AT_CHECK([ @@ -432,4 +447,4 @@ macro_2 ]) -AT_CLEANUP \ No newline at end of file +AT_CLEANUP diff -Nru rpm-4.14.2+dfsg1/tests/rpmtests rpm-4.14.2.1+dfsg1/tests/rpmtests --- rpm-4.14.2+dfsg1/tests/rpmtests 2018-08-21 10:38:57.697982052 +0000 +++ rpm-4.14.2.1+dfsg1/tests/rpmtests 2018-10-22 09:23:53.894381430 +0000 @@ -991,37 +991,38 @@ 397;rpmmacro.at:267;lua rpm extensions;macros lua; 398;rpmmacro.at:277;lua posix extensions;macros lua; 399;rpmmacro.at:288;lua script exit behavior;macros lua; -400;rpmmacro.at:300;%define + %undefine in nested levels 1;macros define undefine; -401;rpmmacro.at:315;%define + %undefine in nested levels 2;macros define; -402;rpmmacro.at:331;%define + %undefine in nested levels 3;macros define; -403;rpmmacro.at:349;%define + %undefine in nested levels 4;macros define global; -404;rpmmacro.at:371;%define in conditional macro;macros; -405;rpmmacro.at:389;%verbose negative test;macros verbose; -406;rpmmacro.at:407;%verbose positive test;macros verbose; -407;rpmmacro.at:425;macro with a line starting by \"{\";macros; -408;rpmpython.at:6;module import;python; -409;rpmpython.at:12;macro manipulation;python; -410;rpmpython.at:35;basic rpmio;python; -411;rpmpython.at:70;spec parse;python; -412;rpmpython.at:85;basic header manipulation;python; -413;rpmpython.at:110;invalid header data;python; -414;rpmpython.at:129;vfyflags API;python; -415;rpmpython.at:140;vfylevel API;python; -416;rpmpython.at:151;reading a package file;python; -417;rpmpython.at:159;reading a signed package file 1;python; -418;rpmpython.at:174;reading a signed package file 2;python; -419;rpmpython.at:192;add package to transaction;python; -420;rpmpython.at:204;add bogus package to transaction 1;python; -421;rpmpython.at:218;add bogus package to transaction 2;python; -422;rpmpython.at:239;database iterators;python rpmdb; -423;rpmpython.at:338;dependency sets 1;python; -424;rpmpython.at:355;dependency sets 2;python; -425;rpmpython.at:365;file info sets 1;python; -426;rpmpython.at:382;string pool 1;python; -427;rpmpython.at:397;string pool 2;python; -428;rpmpython.at:415;archive 1;python; -429;rpmpython.at:435;header unload;python; -430;rpmdepmatch.at:4;provide - require pairs;python; +400;rpmmacro.at:300;lua library path;macros lua; +401;rpmmacro.at:315;%define + %undefine in nested levels 1;macros define undefine; +402;rpmmacro.at:330;%define + %undefine in nested levels 2;macros define; +403;rpmmacro.at:346;%define + %undefine in nested levels 3;macros define; +404;rpmmacro.at:364;%define + %undefine in nested levels 4;macros define global; +405;rpmmacro.at:386;%define in conditional macro;macros; +406;rpmmacro.at:404;%verbose negative test;macros verbose; +407;rpmmacro.at:422;%verbose positive test;macros verbose; +408;rpmmacro.at:440;macro with a line starting by \"{\";macros; +409;rpmpython.at:6;module import;python; +410;rpmpython.at:12;macro manipulation;python; +411;rpmpython.at:35;basic rpmio;python; +412;rpmpython.at:70;spec parse;python; +413;rpmpython.at:85;basic header manipulation;python; +414;rpmpython.at:110;invalid header data;python; +415;rpmpython.at:129;vfyflags API;python; +416;rpmpython.at:140;vfylevel API;python; +417;rpmpython.at:151;reading a package file;python; +418;rpmpython.at:159;reading a signed package file 1;python; +419;rpmpython.at:174;reading a signed package file 2;python; +420;rpmpython.at:192;add package to transaction;python; +421;rpmpython.at:204;add bogus package to transaction 1;python; +422;rpmpython.at:218;add bogus package to transaction 2;python; +423;rpmpython.at:239;database iterators;python rpmdb; +424;rpmpython.at:338;dependency sets 1;python; +425;rpmpython.at:355;dependency sets 2;python; +426;rpmpython.at:365;file info sets 1;python; +427;rpmpython.at:382;string pool 1;python; +428;rpmpython.at:397;string pool 2;python; +429;rpmpython.at:415;archive 1;python; +430;rpmpython.at:435;header unload;python; +431;rpmdepmatch.at:4;provide - require pairs;python; " # List of the all the test groups. at_groups_all=`$as_echo "$at_help_all" | sed 's/;.*//'` @@ -1035,7 +1036,7 @@ for at_grp do eval at_value=\$$at_grp - if test $at_value -lt 1 || test $at_value -gt 430; then + if test $at_value -lt 1 || test $at_value -gt 431; then $as_echo "invalid test group: $at_value" >&2 exit 1 fi @@ -1333,7 +1334,7 @@ # List of tests. if $at_list_p; then cat <<_ATEOF || at_write_fail=1 -rpm 4.14.2 test suite test groups: +rpm 4.14.2.1 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS @@ -1374,7 +1375,7 @@ exit $at_write_fail fi if $at_version_p; then - $as_echo "$as_me (rpm 4.14.2)" && + $as_echo "$as_me (rpm 4.14.2.1)" && cat <<\_ATEOF || at_write_fail=1 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1452,10 +1453,10 @@ # Category starts at test group 378. at_banner_text_20="RPM macros" # Banner 21. rpmpython.at:4 -# Category starts at test group 408. +# Category starts at test group 409. at_banner_text_21="Python bindings" # Banner 22. rpmdepmatch.at:2 -# Category starts at test group 430. +# Category starts at test group 431. at_banner_text_22="RPM dependency matching" # Take any -C into account. @@ -1616,13 +1617,13 @@ exec 5>>"$at_suite_log" # Banners and logs. -$as_echo "## ---------------------- ## -## rpm 4.14.2 test suite. ## -## ---------------------- ##" +$as_echo "## ------------------------ ## +## rpm 4.14.2.1 test suite. ## +## ------------------------ ##" { - $as_echo "## ---------------------- ## -## rpm 4.14.2 test suite. ## -## ---------------------- ##" + $as_echo "## ------------------------ ## +## rpm 4.14.2.1 test suite. ## +## ------------------------ ##" echo $as_echo "$as_me: command line was:" @@ -2465,7 +2466,7 @@ $as_echo "Please send $at_msg and all information you think might help: To: - Subject: [rpm 4.14.2] $as_me: $at_fail_list${at_fail_list:+ failed${at_xpass_list:+, }}$at_xpass_list${at_xpass_list:+ passed unexpectedly} + Subject: [rpm 4.14.2.1] $as_me: $at_fail_list${at_fail_list:+ failed${at_xpass_list:+, }}$at_xpass_list${at_xpass_list:+ passed unexpectedly} You may investigate any problem if you feel able to do so, in which case the test suite provides a good starting point. Its output may @@ -2496,7 +2497,7 @@ at_status=$? at_failed=false $at_check_filter at_fn_diff_devnull "$at_stderr" || at_failed=: -echo >>"$at_stdout"; $as_echo "RPM version 4.14.2 +echo >>"$at_stdout"; $as_echo "RPM version 4.14.2.1 " | \ $at_diff - "$at_stdout" || at_failed=: at_fn_check_status 0 $at_status "$at_srcdir/rpmgeneral.at:24" @@ -2525,7 +2526,7 @@ at_status=$? at_failed=false $at_check_filter at_fn_diff_devnull "$at_stderr" || at_failed=: -echo >>"$at_stdout"; $as_echo "RPM version 4.14.2 +echo >>"$at_stdout"; $as_echo "RPM version 4.14.2.1 " | \ $at_diff - "$at_stdout" || at_failed=: at_fn_check_status 0 $at_status "$at_srcdir/rpmgeneral.at:33" @@ -29107,7 +29108,7 @@ #AT_STOP_399 #AT_START_400 at_fn_group_banner 400 'rpmmacro.at:300' \ - "%define + %undefine in nested levels 1" " " 20 + "lua library path" " " 20 at_xfail=no ( $as_echo "400. $at_setup_line: testing $at_desc ..." @@ -29116,12 +29117,59 @@ { set +x $as_echo "$at_srcdir/rpmmacro.at:302: +\$as_echo \"rpmmacro.at:302\" >\"\$at_check_line_file\" +(\$LUA_DISABLED) \\ + && at_fn_check_skip 77 \"\$at_srcdir/rpmmacro.at:302\" +f=\$(rpm --eval \"%{_rpmconfigdir}/lua/foo.lua\") +echo \"bar = 'graak'\" > \${f} +runroot rpm \\ + --eval '%{lua:require \"foo\"; print(bar)}' +rm -f \${f} +" +at_fn_check_prepare_notrace 'a $(...) command substitution' "rpmmacro.at:302" +( $at_check_trace; +$as_echo "rpmmacro.at:302" >"$at_check_line_file" +($LUA_DISABLED) \ + && at_fn_check_skip 77 "$at_srcdir/rpmmacro.at:302" +f=$(rpm --eval "%{_rpmconfigdir}/lua/foo.lua") +echo "bar = 'graak'" > ${f} +runroot rpm \ + --eval '%{lua:require "foo"; print(bar)}' +rm -f ${f} + +) >>"$at_stdout" 2>>"$at_stderr" 5>&- +at_status=$? at_failed=false +$at_check_filter +at_fn_diff_devnull "$at_stderr" || at_failed=: +echo >>"$at_stdout"; $as_echo "graak +" | \ + $at_diff - "$at_stdout" || at_failed=: +at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:302" +$at_failed && at_fn_log_failure +$at_traceon; } + + set +x + $at_times_p && times >"$at_times_file" +) 5>&1 2>&1 7>&- | eval $at_tee_pipe +read at_status <"$at_status_file" +#AT_STOP_400 +#AT_START_401 +at_fn_group_banner 401 'rpmmacro.at:315' \ + "%define + %undefine in nested levels 1" " " 20 +at_xfail=no +( + $as_echo "401. $at_setup_line: testing $at_desc ..." + $at_traceon + + +{ set +x +$as_echo "$at_srcdir/rpmmacro.at:317: # basic %define in nested scoping level runroot rpm \\ --define '%foo() %{expand:%define xxx 1} %{echo:%xxx} %{expand:%undefine xxx} %{echo:%xxx}' \\ --eval .'%foo'. " -at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:302" +at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:317" ( $at_check_trace; # basic %define in nested scoping level runroot rpm \ @@ -29137,7 +29185,7 @@ . . " | \ $at_diff - "$at_stdout" || at_failed=: -at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:302" +at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:317" $at_failed && at_fn_log_failure $at_traceon; } @@ -29145,25 +29193,25 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_400 -#AT_START_401 -at_fn_group_banner 401 'rpmmacro.at:315' \ +#AT_STOP_401 +#AT_START_402 +at_fn_group_banner 402 'rpmmacro.at:330' \ "%define + %undefine in nested levels 2" " " 20 at_xfail=no ( - $as_echo "401. $at_setup_line: testing $at_desc ..." + $as_echo "402. $at_setup_line: testing $at_desc ..." $at_traceon { set +x -$as_echo "$at_srcdir/rpmmacro.at:317: +$as_echo "$at_srcdir/rpmmacro.at:332: # %define macro once in a nested scope runroot rpm \\ --define '%foo() %{expand:%define xxx 1} %{echo:%xxx}' \\ --eval .'%foo'. \\ --eval '%xxx' " -at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:317" +at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:332" ( $at_check_trace; # %define macro once in a nested scope runroot rpm \ @@ -29180,7 +29228,7 @@ %xxx " | \ $at_diff - "$at_stdout" || at_failed=: -at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:317" +at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:332" $at_failed && at_fn_log_failure $at_traceon; } @@ -29188,19 +29236,19 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_401 -#AT_START_402 -at_fn_group_banner 402 'rpmmacro.at:331' \ +#AT_STOP_402 +#AT_START_403 +at_fn_group_banner 403 'rpmmacro.at:346' \ "%define + %undefine in nested levels 3" " " 20 at_xfail=no test $RPM_XFAIL -ne 0 && at_xfail=yes ( - $as_echo "402. $at_setup_line: testing $at_desc ..." + $as_echo "403. $at_setup_line: testing $at_desc ..." $at_traceon { set +x -$as_echo "$at_srcdir/rpmmacro.at:333: +$as_echo "$at_srcdir/rpmmacro.at:348: # %define macro twice in a nested scope runroot rpm \\ @@ -29208,7 +29256,7 @@ --eval .'%foo'. \\ --eval '%xxx' " -at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:333" +at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:348" ( $at_check_trace; # %define macro twice in a nested scope @@ -29227,7 +29275,7 @@ %xxx " | \ $at_diff - "$at_stdout" || at_failed=: -at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:333" +at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:348" $at_failed && at_fn_log_failure $at_traceon; } @@ -29235,19 +29283,19 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_402 -#AT_START_403 -at_fn_group_banner 403 'rpmmacro.at:349' \ +#AT_STOP_403 +#AT_START_404 +at_fn_group_banner 404 'rpmmacro.at:364' \ "%define + %undefine in nested levels 4" " " 20 at_xfail=no test $RPM_XFAIL -ne 0 && at_xfail=yes ( - $as_echo "403. $at_setup_line: testing $at_desc ..." + $as_echo "404. $at_setup_line: testing $at_desc ..." $at_traceon { set +x -$as_echo "$at_srcdir/rpmmacro.at:351: +$as_echo "$at_srcdir/rpmmacro.at:366: # %define in a nested level covered by %global runroot rpm \\ @@ -29257,7 +29305,7 @@ --eval .'%undefine xxx'. \\ --eval '%xxx' " -at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:351" +at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:366" ( $at_check_trace; # %define in a nested level covered by %global @@ -29280,7 +29328,7 @@ %xxx " | \ $at_diff - "$at_stdout" || at_failed=: -at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:351" +at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:366" $at_failed && at_fn_log_failure $at_traceon; } @@ -29288,18 +29336,18 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_403 -#AT_START_404 -at_fn_group_banner 404 'rpmmacro.at:371' \ +#AT_STOP_404 +#AT_START_405 +at_fn_group_banner 405 'rpmmacro.at:386' \ "%define in conditional macro" " " 20 at_xfail=no ( - $as_echo "404. $at_setup_line: testing $at_desc ..." + $as_echo "405. $at_setup_line: testing $at_desc ..." $at_traceon { set +x -$as_echo "$at_srcdir/rpmmacro.at:373: +$as_echo "$at_srcdir/rpmmacro.at:388: runroot rpm \\ --define 'dofoo() true'\\ --eval '.%{!?foo: %define foo bar}.'\\ @@ -29307,7 +29355,7 @@ --eval '%dofoo'\\ --eval '%foo' " -at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:373" +at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:388" ( $at_check_trace; runroot rpm \ --define 'dofoo() true'\ @@ -29326,7 +29374,7 @@ bar " | \ $at_diff - "$at_stdout" || at_failed=: -at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:373" +at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:388" $at_failed && at_fn_log_failure $at_traceon; } @@ -29334,25 +29382,25 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_404 -#AT_START_405 -at_fn_group_banner 405 'rpmmacro.at:389' \ +#AT_STOP_405 +#AT_START_406 +at_fn_group_banner 406 'rpmmacro.at:404' \ "%verbose negative test" " " 20 at_xfail=no ( - $as_echo "405. $at_setup_line: testing $at_desc ..." + $as_echo "406. $at_setup_line: testing $at_desc ..." $at_traceon { set +x -$as_echo "$at_srcdir/rpmmacro.at:391: +$as_echo "$at_srcdir/rpmmacro.at:406: runroot rpm \\ --eval '%{verbose:%{echo:is verbose}}' \\ --eval '%{verbose:is verbose text}'\\ --eval '%{!verbose:%{echo:is not verbose}}'\\ --eval '%{!verbose:is not verbose text}' " -at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:391" +at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:406" ( $at_check_trace; runroot rpm \ --eval '%{verbose:%{echo:is verbose}}' \ @@ -29371,7 +29419,7 @@ is not verbose text " | \ $at_diff - "$at_stdout" || at_failed=: -at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:391" +at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:406" $at_failed && at_fn_log_failure $at_traceon; } @@ -29379,25 +29427,25 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_405 -#AT_START_406 -at_fn_group_banner 406 'rpmmacro.at:407' \ +#AT_STOP_406 +#AT_START_407 +at_fn_group_banner 407 'rpmmacro.at:422' \ "%verbose positive test" " " 20 at_xfail=no ( - $as_echo "406. $at_setup_line: testing $at_desc ..." + $as_echo "407. $at_setup_line: testing $at_desc ..." $at_traceon { set +x -$as_echo "$at_srcdir/rpmmacro.at:409: +$as_echo "$at_srcdir/rpmmacro.at:424: runroot rpm -v \\ --eval '%{!verbose:%{echo:is not verbose}}' \\ --eval '%{!verbose:is not verbose text}'\\ --eval '%{verbose:%{echo:is verbose}}'\\ --eval '%{verbose:is verbose text}' " -at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:409" +at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:424" ( $at_check_trace; runroot rpm -v \ --eval '%{!verbose:%{echo:is not verbose}}' \ @@ -29416,7 +29464,7 @@ is verbose text " | \ $at_diff - "$at_stdout" || at_failed=: -at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:409" +at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:424" $at_failed && at_fn_log_failure $at_traceon; } @@ -29424,21 +29472,21 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_406 -#AT_START_407 -at_fn_group_banner 407 'rpmmacro.at:425' \ +#AT_STOP_407 +#AT_START_408 +at_fn_group_banner 408 'rpmmacro.at:440' \ "macro with a line starting by \"{\"" " " 20 at_xfail=no ( - $as_echo "407. $at_setup_line: testing $at_desc ..." + $as_echo "408. $at_setup_line: testing $at_desc ..." $at_traceon { set +x -$as_echo "$at_srcdir/rpmmacro.at:427: +$as_echo "$at_srcdir/rpmmacro.at:442: runroot rpm --macros \"/data/macros.testfile\" \\ --eval \"%first\" --eval \"%second\"" -at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:427" +at_fn_check_prepare_notrace 'an embedded newline' "rpmmacro.at:442" ( $at_check_trace; runroot rpm --macros "/data/macros.testfile" \ --eval "%first" --eval "%second" @@ -29451,7 +29499,7 @@ macro_2 " | \ $at_diff - "$at_stdout" || at_failed=: -at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:427" +at_fn_check_status 0 $at_status "$at_srcdir/rpmmacro.at:442" $at_failed && at_fn_log_failure $at_traceon; } @@ -29459,13 +29507,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_407 -#AT_START_408 -at_fn_group_banner 408 'rpmpython.at:6' \ +#AT_STOP_408 +#AT_START_409 +at_fn_group_banner 409 'rpmpython.at:6' \ "module import" " " 21 at_xfail=no ( - $as_echo "408. $at_setup_line: testing $at_desc ..." + $as_echo "409. $at_setup_line: testing $at_desc ..." $at_traceon @@ -29508,7 +29556,7 @@ at_status=$? at_failed=false $at_check_filter at_fn_diff_devnull "$at_stderr" || at_failed=: -echo >>"$at_stdout"; $as_echo "4.14.2 +echo >>"$at_stdout"; $as_echo "4.14.2.1 " | \ $at_diff - "$at_stdout" || at_failed=: at_fn_check_status 0 $at_status "$at_srcdir/rpmpython.at:6" @@ -29520,13 +29568,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_408 -#AT_START_409 -at_fn_group_banner 409 'rpmpython.at:12' \ +#AT_STOP_409 +#AT_START_410 +at_fn_group_banner 410 'rpmpython.at:12' \ "macro manipulation" " " 21 at_xfail=no ( - $as_echo "409. $at_setup_line: testing $at_desc ..." + $as_echo "410. $at_setup_line: testing $at_desc ..." $at_traceon @@ -29609,13 +29657,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_409 -#AT_START_410 -at_fn_group_banner 410 'rpmpython.at:35' \ +#AT_STOP_410 +#AT_START_411 +at_fn_group_banner 411 'rpmpython.at:35' \ "basic rpmio" " " 21 at_xfail=no ( - $as_echo "410. $at_setup_line: testing $at_desc ..." + $as_echo "411. $at_setup_line: testing $at_desc ..." $at_traceon @@ -29728,13 +29776,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_410 -#AT_START_411 -at_fn_group_banner 411 'rpmpython.at:70' \ +#AT_STOP_411 +#AT_START_412 +at_fn_group_banner 412 'rpmpython.at:70' \ "spec parse" " " 21 at_xfail=no ( - $as_echo "411. $at_setup_line: testing $at_desc ..." + $as_echo "412. $at_setup_line: testing $at_desc ..." $at_traceon @@ -29804,13 +29852,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_411 -#AT_START_412 -at_fn_group_banner 412 'rpmpython.at:85' \ +#AT_STOP_412 +#AT_START_413 +at_fn_group_banner 413 'rpmpython.at:85' \ "basic header manipulation" " " 21 at_xfail=no ( - $as_echo "412. $at_setup_line: testing $at_desc ..." + $as_echo "413. $at_setup_line: testing $at_desc ..." $at_traceon @@ -29898,13 +29946,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_412 -#AT_START_413 -at_fn_group_banner 413 'rpmpython.at:110' \ +#AT_STOP_413 +#AT_START_414 +at_fn_group_banner 414 'rpmpython.at:110' \ "invalid header data" " " 21 at_xfail=no ( - $as_echo "413. $at_setup_line: testing $at_desc ..." + $as_echo "414. $at_setup_line: testing $at_desc ..." $at_traceon @@ -29984,13 +30032,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_413 -#AT_START_414 -at_fn_group_banner 414 'rpmpython.at:129' \ +#AT_STOP_414 +#AT_START_415 +at_fn_group_banner 415 'rpmpython.at:129' \ "vfyflags API" " " 21 at_xfail=no ( - $as_echo "414. $at_setup_line: testing $at_desc ..." + $as_echo "415. $at_setup_line: testing $at_desc ..." $at_traceon @@ -30055,13 +30103,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_414 -#AT_START_415 -at_fn_group_banner 415 'rpmpython.at:140' \ +#AT_STOP_415 +#AT_START_416 +at_fn_group_banner 416 'rpmpython.at:140' \ "vfylevel API" " " 21 at_xfail=no ( - $as_echo "415. $at_setup_line: testing $at_desc ..." + $as_echo "416. $at_setup_line: testing $at_desc ..." $at_traceon @@ -30124,13 +30172,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_415 -#AT_START_416 -at_fn_group_banner 416 'rpmpython.at:151' \ +#AT_STOP_416 +#AT_START_417 +at_fn_group_banner 417 'rpmpython.at:151' \ "reading a package file" " " 21 at_xfail=no ( - $as_echo "416. $at_setup_line: testing $at_desc ..." + $as_echo "417. $at_setup_line: testing $at_desc ..." $at_traceon @@ -30189,13 +30237,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_416 -#AT_START_417 -at_fn_group_banner 417 'rpmpython.at:159' \ +#AT_STOP_417 +#AT_START_418 +at_fn_group_banner 418 'rpmpython.at:159' \ "reading a signed package file 1" " " 21 at_xfail=no ( - $as_echo "417. $at_setup_line: testing $at_desc ..." + $as_echo "418. $at_setup_line: testing $at_desc ..." $at_traceon @@ -30266,13 +30314,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_417 -#AT_START_418 -at_fn_group_banner 418 'rpmpython.at:174' \ +#AT_STOP_418 +#AT_START_419 +at_fn_group_banner 419 'rpmpython.at:174' \ "reading a signed package file 2" " " 21 at_xfail=no ( - $as_echo "418. $at_setup_line: testing $at_desc ..." + $as_echo "419. $at_setup_line: testing $at_desc ..." $at_traceon @@ -30351,13 +30399,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_418 -#AT_START_419 -at_fn_group_banner 419 'rpmpython.at:192' \ +#AT_STOP_419 +#AT_START_420 +at_fn_group_banner 420 'rpmpython.at:192' \ "add package to transaction" " " 21 at_xfail=no ( - $as_echo "419. $at_setup_line: testing $at_desc ..." + $as_echo "420. $at_setup_line: testing $at_desc ..." $at_traceon @@ -30424,13 +30472,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_419 -#AT_START_420 -at_fn_group_banner 420 'rpmpython.at:204' \ +#AT_STOP_420 +#AT_START_421 +at_fn_group_banner 421 'rpmpython.at:204' \ "add bogus package to transaction 1" " " 21 at_xfail=no ( - $as_echo "420. $at_setup_line: testing $at_desc ..." + $as_echo "421. $at_setup_line: testing $at_desc ..." $at_traceon @@ -30501,13 +30549,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_420 -#AT_START_421 -at_fn_group_banner 421 'rpmpython.at:218' \ +#AT_STOP_421 +#AT_START_422 +at_fn_group_banner 422 'rpmpython.at:218' \ "add bogus package to transaction 2" " " 21 at_xfail=no ( - $as_echo "421. $at_setup_line: testing $at_desc ..." + $as_echo "422. $at_setup_line: testing $at_desc ..." $at_traceon @@ -30592,13 +30640,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_421 -#AT_START_422 -at_fn_group_banner 422 'rpmpython.at:239' \ +#AT_STOP_422 +#AT_START_423 +at_fn_group_banner 423 'rpmpython.at:239' \ "database iterators" " " 21 at_xfail=no ( - $as_echo "422. $at_setup_line: testing $at_desc ..." + $as_echo "423. $at_setup_line: testing $at_desc ..." $at_traceon @@ -31030,13 +31078,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_422 -#AT_START_423 -at_fn_group_banner 423 'rpmpython.at:338' \ +#AT_STOP_423 +#AT_START_424 +at_fn_group_banner 424 'rpmpython.at:338' \ "dependency sets 1" " " 21 at_xfail=no ( - $as_echo "423. $at_setup_line: testing $at_desc ..." + $as_echo "424. $at_setup_line: testing $at_desc ..." $at_traceon @@ -31105,13 +31153,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_423 -#AT_START_424 -at_fn_group_banner 424 'rpmpython.at:355' \ +#AT_STOP_424 +#AT_START_425 +at_fn_group_banner 425 'rpmpython.at:355' \ "dependency sets 2" " " 21 at_xfail=no ( - $as_echo "424. $at_setup_line: testing $at_desc ..." + $as_echo "425. $at_setup_line: testing $at_desc ..." $at_traceon @@ -31172,13 +31220,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_424 -#AT_START_425 -at_fn_group_banner 425 'rpmpython.at:365' \ +#AT_STOP_425 +#AT_START_426 +at_fn_group_banner 426 'rpmpython.at:365' \ "file info sets 1" " " 21 at_xfail=no ( - $as_echo "425. $at_setup_line: testing $at_desc ..." + $as_echo "426. $at_setup_line: testing $at_desc ..." $at_traceon @@ -31248,13 +31296,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_425 -#AT_START_426 -at_fn_group_banner 426 'rpmpython.at:382' \ +#AT_STOP_426 +#AT_START_427 +at_fn_group_banner 427 'rpmpython.at:382' \ "string pool 1" " " 21 at_xfail=no ( - $as_echo "426. $at_setup_line: testing $at_desc ..." + $as_echo "427. $at_setup_line: testing $at_desc ..." $at_traceon @@ -31322,13 +31370,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_426 -#AT_START_427 -at_fn_group_banner 427 'rpmpython.at:397' \ +#AT_STOP_427 +#AT_START_428 +at_fn_group_banner 428 'rpmpython.at:397' \ "string pool 2" " " 21 at_xfail=no ( - $as_echo "427. $at_setup_line: testing $at_desc ..." + $as_echo "428. $at_setup_line: testing $at_desc ..." $at_traceon @@ -31402,13 +31450,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_427 -#AT_START_428 -at_fn_group_banner 428 'rpmpython.at:415' \ +#AT_STOP_428 +#AT_START_429 +at_fn_group_banner 429 'rpmpython.at:415' \ "archive 1" " " 21 at_xfail=no ( - $as_echo "428. $at_setup_line: testing $at_desc ..." + $as_echo "429. $at_setup_line: testing $at_desc ..." $at_traceon @@ -31489,13 +31537,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_428 -#AT_START_429 -at_fn_group_banner 429 'rpmpython.at:435' \ +#AT_STOP_429 +#AT_START_430 +at_fn_group_banner 430 'rpmpython.at:435' \ "header unload" " " 21 at_xfail=no ( - $as_echo "429. $at_setup_line: testing $at_desc ..." + $as_echo "430. $at_setup_line: testing $at_desc ..." $at_traceon @@ -31570,13 +31618,13 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_429 -#AT_START_430 -at_fn_group_banner 430 'rpmdepmatch.at:4' \ +#AT_STOP_430 +#AT_START_431 +at_fn_group_banner 431 'rpmdepmatch.at:4' \ "provide - require pairs" " " 22 at_xfail=no ( - $as_echo "430. $at_setup_line: testing $at_desc ..." + $as_echo "431. $at_setup_line: testing $at_desc ..." $at_traceon @@ -32097,4 +32145,4 @@ $at_times_p && times >"$at_times_file" ) 5>&1 2>&1 7>&- | eval $at_tee_pipe read at_status <"$at_status_file" -#AT_STOP_430 +#AT_STOP_431