Mock Version: 3.0 Mock Version: 3.0 Mock Version: 3.0 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target noarch --nodeps /builddir/build/SPECS/tuxpaint-stamps.spec'], chrootPath='/var/lib/mock/f38-build-side-42-init-devel-459098-22621/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=864000uid=996gid=135user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target noarch --nodeps /builddir/build/SPECS/tuxpaint-stamps.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'} and shell False warning: %patchN is deprecated (1 usages found), use %patch N (or %patch -P N) Building target platforms: noarch Building for target noarch setting SOURCE_DATE_EPOCH=1674259200 Wrote: /builddir/build/SRPMS/tuxpaint-stamps-2020.05.29-7.fc38.src.rpm RPM build warnings: %patchN is deprecated (1 usages found), use %patch N (or %patch -P N) Child return code was: 0 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target noarch --nodeps /builddir/build/SPECS/tuxpaint-stamps.spec'], chrootPath='/var/lib/mock/f38-build-side-42-init-devel-459098-22621/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=864000uid=996gid=135user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target noarch --nodeps /builddir/build/SPECS/tuxpaint-stamps.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'} and shell False warning: %patchN is deprecated (1 usages found), use %patch N (or %patch -P N) Building target platforms: noarch Building for target noarch setting SOURCE_DATE_EPOCH=1674259200 Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.OTAwsW + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf tuxpaint-stamps-2020.05.29 + /usr/lib/rpm/rpmuncompress -x /builddir/build/SOURCES/tuxpaint-stamps-2020.05.29.tar.gz + STATUS=0 + '[' 0 -ne 0 ']' + cd tuxpaint-stamps-2020.05.29 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + sed -i 's/VER_DATE=`date +"%Y.%m.%d"`/VER_DATE=`date +2020.05.29`/' Makefile + sed -i 's|/usr/bin/env python|/usr/bin/env python3|' po/po2txt.py + sed -i 's|/usr/bin/env python|/usr/bin/env python3|' po/txt2pot.py + 2to3 -w po/po2txt.py /usr/bin/2to3:3: DeprecationWarning: lib2to3 package is deprecated and may not be able to parse Python 3.10+ from lib2to3.main import main RefactoringTool: Skipping optional fixer: buffer RefactoringTool: Skipping optional fixer: idioms RefactoringTool: Skipping optional fixer: set_literal RefactoringTool: Skipping optional fixer: ws_comma RefactoringTool: Refactored po/po2txt.py RefactoringTool: Files that were modified: RefactoringTool: po/po2txt.py --- po/po2txt.py (original) +++ po/po2txt.py (refactored) @@ -7,14 +7,14 @@ fnlist = os.path.splitext(fname) # change the file ext name to .txt whan ready. if fnlist[1] == ".txt": - print ">> " + fname + print(">> " + fname) # open txt file to read. txtFile = open(os.path.join(dirname, fname), 'rb') # get first line : the stamp description. searchText_unescaped = txtFile.readline()[:-1] searchText = string.replace(searchText_unescaped, '"', '\\"') fullsearchText = "msgid \"" + searchText + "\"\n" - print " " + searchText_unescaped + print(" " + searchText_unescaped) if searchText in msgidsList: # reopen txt file to write. txtFile = open(os.path.join(dirname, fname), 'wb') @@ -45,9 +45,9 @@ def parsePOT(potFileName): try: potFile = open(potFileName, 'rb') - except IOError, e: - print "Unable to open the file:" , potFileName, e - print potFileName + except IOError as e: + print("Unable to open the file:" , potFileName, e) + print(potFileName) # pass the pot header while len(potFile.readline()) > 1 : pass # parse filename and msgid + 2to3 -w po/txt2pot.py /usr/bin/2to3:3: DeprecationWarning: lib2to3 package is deprecated and may not be able to parse Python 3.10+ from lib2to3.main import main RefactoringTool: Skipping optional fixer: buffer RefactoringTool: Skipping optional fixer: idioms RefactoringTool: Skipping optional fixer: set_literal RefactoringTool: Skipping optional fixer: ws_comma RefactoringTool: Refactored po/txt2pot.py RefactoringTool: Files that were modified: RefactoringTool: po/txt2pot.py --- po/txt2pot.py (original) +++ po/txt2pot.py (refactored) @@ -59,7 +59,7 @@ if __name__ == '__main__': poFile = open('./tuxpaint-stamps.pot', 'wb') - print ">>", poFile.name + print(">>", poFile.name) poFile.write(poHeader) os.path.walk('../stamps/', lister, None) poFile.close() Patch #0 (indent.patch): + echo 'Patch #0 (indent.patch):' + /usr/bin/patch --no-backup-if-mismatch -f -p0 --fuzz=0 patching file po/po2txt.py patching file po/po2txt.py patching file po/po2txt.py patching file po/po2txt.py patching file po/txt2pot.py + RPM_EC=0 ++ jobs -p + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.seuljT + umask 022 + cd /builddir/build/BUILD + CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fno-omit-frame-pointer ' + export CFLAGS + CXXFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fno-omit-frame-pointer ' + export CXXFLAGS + FFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fno-omit-frame-pointer -I/usr/lib/gfortran/modules ' + export FFLAGS + FCFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fno-omit-frame-pointer -I/usr/lib/gfortran/modules ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 ' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd tuxpaint-stamps-2020.05.29 + cd po + sh ./createpo.sh File "/builddir/build/BUILD/tuxpaint-stamps-2020.05.29/po/./txt2pot.py", line 40 line = txtFile.readline() TabError: inconsistent use of tabs and spaces in indentation fgrep: warning: fgrep is obsolescent; using grep -F tuxpaint-stamps-ach.po ............................................................................................ done. tuxpaint-stamps-af.po ....................................................................................... done. tuxpaint-stamps-ak.po ............................................................................................................. done. tuxpaint-stamps-am.po ......................................................................................................... done. tuxpaint-stamps-an.po .......................................................................................................... done. tuxpaint-stamps-ar.po ........................................................................................................... done. tuxpaint-stamps-ast.po ....................................................................................................... done. tuxpaint-stamps-be.po ........................................................................................................... done. tuxpaint-stamps-bg.po ............................................................................................................. done. tuxpaint-stamps-br.po .......................................................................................................... done. tuxpaint-stamps-ca.po ....................................................................................................... done. tuxpaint-stamps-ca@valencia.po ....................................................................................... done. tuxpaint-stamps-cs.po ..................................................................................................... done. tuxpaint-stamps-cy.po ....................................................................................... done. tuxpaint-stamps-da.po ............................................................................................ done. tuxpaint-stamps-de.po ................................................................................................ done. tuxpaint-stamps-el.po ............................................................................................................... done. tuxpaint-stamps-en_AU.po .................................................................................................................. done. tuxpaint-stamps-en_GB.po ........................................................................................................... done. tuxpaint-stamps-eo.po .................................................................................................. done. tuxpaint-stamps-es.po ....................................................................................... done. tuxpaint-stamps-eu.po ....................................................................................... done. tuxpaint-stamps-fa.po ................................................................................................... done. tuxpaint-stamps-ff.po ....................................................................................... done. tuxpaint-stamps-fi.po ........................................................................................ done. tuxpaint-stamps-fr.po ......................................................................................................... done. tuxpaint-stamps-ga.po ...................................................................................................... done. tuxpaint-stamps-gd.po ........................................................................................ done. tuxpaint-stamps-gl.po ........................................................................................................... done. tuxpaint-stamps-gu.po ....................................................................................... done. tuxpaint-stamps-he.po ..................................................................................................... done. tuxpaint-stamps-hi.po ....................................................................................... done. tuxpaint-stamps-hr.po ....................................................................................... done. tuxpaint-stamps-hu.po ...................................................................................................... done. tuxpaint-stamps-hy.po .......................................................................................................... done. tuxpaint-stamps-id.po ....................................................................................... done. tuxpaint-stamps-is.po .............................................................................................................. done. tuxpaint-stamps-it.po .......................................................................................................... done. tuxpaint-stamps-iu.po ............................................................................................................. done. tuxpaint-stamps-ja.po .............................................................................................................. done. tuxpaint-stamps-ka.po ...................................................................................................... done. tuxpaint-stamps-kab.po ..................................................................................................... done. tuxpaint-stamps-km.po ..................................................................................................... done. tuxpaint-stamps-ko.po ....................................................................................... done. tuxpaint-stamps-ku.po ......................................................................................... done. tuxpaint-stamps-lt.po ......................................................................................................... done. tuxpaint-stamps-lv.po ......................................................................................................... done. tuxpaint-stamps-mk.po .............................................................................................................. done. tuxpaint-stamps-ml.po ........................................................................................................ done. tuxpaint-stamps-mn.po .................................................................................................. done. tuxpaint-stamps-ms.po ............................................................................................................. done. tuxpaint-stamps-nb.po ....................................................................................... done. tuxpaint-stamps-nl.po ................................................................................................................ done. tuxpaint-stamps-nn.po ....................................................................................... done. tuxpaint-stamps-nso.po ................................................................................................................ done. tuxpaint-stamps-oc.po ................................................................................................... done. tuxpaint-stamps-pl.po ................................................................................................ done. tuxpaint-stamps-pt.po ............................................................................................................... done. tuxpaint-stamps-pt_BR.po ........................................................................................................... done. tuxpaint-stamps-ro.po ...................................................................................................... done. tuxpaint-stamps-ru.po .......................................................................................................... done. tuxpaint-stamps-shs.po ....................................................................................... done. tuxpaint-stamps-sk.po ............................................................................................................ done. tuxpaint-stamps-sl.po ....................................................................................................... done. tuxpaint-stamps-son.po ............................................................................................................ done. tuxpaint-stamps-sq.po ............................................................................................. done. tuxpaint-stamps-sr.po ......................................................................................................... done. tuxpaint-stamps-sr@latin.po ............................................................................................................... done. tuxpaint-stamps-sv.po ................................................................................................... done. tuxpaint-stamps-sw.po ................................................................................................................ done. tuxpaint-stamps-ta.po ........................................................................................................ done. tuxpaint-stamps-th.po ................................................................................................... done. tuxpaint-stamps-tr.po ................................................................................................................... done. tuxpaint-stamps-uk.po ............................................................................................................ done. tuxpaint-stamps-vec.po ......................................................................................................... done. tuxpaint-stamps-vi.po ....................................................................................... done. tuxpaint-stamps-wa.po .......................................................................................................... done. tuxpaint-stamps-zh_CN.po .............................................................................................................. done. tuxpaint-stamps-zh_TW.po ........................................................................................................... done. tuxpaint-stamps-zu.po ...................................................................................................... done. + cd po + ./createtxt.sh ./tuxpaint-stamps.pot + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.m4T7r5 + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch '!=' / ']' + rm -rf /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch ++ dirname /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch + CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fno-omit-frame-pointer ' + export CFLAGS + CXXFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fno-omit-frame-pointer ' + export CXXFLAGS + FFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fno-omit-frame-pointer -I/usr/lib/gfortran/modules ' + export FFLAGS + FCFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fno-omit-frame-pointer -I/usr/lib/gfortran/modules ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 ' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd tuxpaint-stamps-2020.05.29 + install -d /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps + make install-all PREFIX=/builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr ...Installing 'animals' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/animals) ...Installing 'clothes' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/clothes) ...Installing 'food' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/food) ...Installing 'hobbies' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/hobbies) ...Installing 'household' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/household) ...Installing 'medical' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/medical) ...Installing 'military' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/military) ...Installing 'naturalforces' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/naturalforces) ...Installing 'people' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/people) ...Installing 'plants' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/plants) ...Installing 'seasonal' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/seasonal) ...Installing 'space' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/space) ...Installing 'town' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/town) ...Installing 'sports' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/sports) ...Installing 'symbols' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/symbols) ...Installing 'vehicles' stamp files... (to /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/vehicles) ...Setting proper file permissions... (in /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/) All done! Now (preferably NOT as 'root' superuser), you can type the command 'tuxpaint' to run the program and see these stamps!!! For more information, see the 'tuxpaint' man page, run 'tuxpaint --usage' or see README.txt which: no tuxpaint in (/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin) (Tux Paint doesn't appear to be installed, though!!!) + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/appdata + cat ~/build/BUILD/tuxpaint-stamps-2020.05.29/po ~/build/BUILD/tuxpaint-stamps-2020.05.29 + pushd po + for file in *.po ++ echo tuxpaint-stamps-ach.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ach + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ach/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ach/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ach.po + for file in *.po ++ echo tuxpaint-stamps-af.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=af + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/af/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/af/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-af.po + for file in *.po ++ echo tuxpaint-stamps-ak.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ak + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ak/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ak/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ak.po + for file in *.po ++ echo tuxpaint-stamps-am.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=am + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/am/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/am/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-am.po + for file in *.po ++ echo tuxpaint-stamps-an.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=an + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/an/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/an/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-an.po + for file in *.po ++ echo tuxpaint-stamps-ar.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ar + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ar/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ar/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ar.po + for file in *.po ++ echo tuxpaint-stamps-ast.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ast + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ast/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ast/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ast.po + for file in *.po ++ echo tuxpaint-stamps-be.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=be + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/be/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/be/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-be.po + for file in *.po ++ echo tuxpaint-stamps-bg.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=bg + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/bg/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/bg/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-bg.po + for file in *.po ++ echo tuxpaint-stamps-br.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=br + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/br/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/br/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-br.po + for file in *.po ++ echo tuxpaint-stamps-ca.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ca + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ca/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ca/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ca.po + for file in *.po ++ echo tuxpaint-stamps-ca@valencia.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ca@valencia + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ca@valencia/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ca@valencia/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ca@valencia.po + for file in *.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' ++ echo tuxpaint-stamps-cs.po + loc=cs + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/cs/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/cs/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-cs.po + for file in *.po ++ echo tuxpaint-stamps-cy.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=cy + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/cy/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/cy/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-cy.po + for file in *.po ++ echo tuxpaint-stamps-da.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=da + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/da/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/da/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-da.po + for file in *.po ++ echo tuxpaint-stamps-de.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=de + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/de/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/de/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-de.po + for file in *.po ++ echo tuxpaint-stamps-el.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=el + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/el/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/el/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-el.po + for file in *.po ++ echo tuxpaint-stamps-en_AU.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=en_AU + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/en_AU/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/en_AU/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-en_AU.po + for file in *.po ++ echo tuxpaint-stamps-en_GB.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=en_GB + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/en_GB/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/en_GB/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-en_GB.po + for file in *.po ++ echo tuxpaint-stamps-eo.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=eo + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/eo/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/eo/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-eo.po + for file in *.po ++ echo tuxpaint-stamps-es.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=es + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/es/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/es/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-es.po + for file in *.po ++ echo tuxpaint-stamps-eu.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=eu + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/eu/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/eu/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-eu.po + for file in *.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' ++ echo tuxpaint-stamps-fa.po + loc=fa + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/fa/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/fa/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-fa.po + for file in *.po ++ echo tuxpaint-stamps-ff.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ff + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ff/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ff/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ff.po + for file in *.po ++ echo tuxpaint-stamps-fi.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=fi + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/fi/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/fi/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-fi.po + for file in *.po ++ echo tuxpaint-stamps-fr.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=fr + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/fr/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/fr/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-fr.po + for file in *.po ++ echo tuxpaint-stamps-ga.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ga + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ga/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ga/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ga.po + for file in *.po ++ echo tuxpaint-stamps-gd.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=gd + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/gd/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/gd/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-gd.po + for file in *.po ++ echo tuxpaint-stamps-gl.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=gl + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/gl/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/gl/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-gl.po + for file in *.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' ++ echo tuxpaint-stamps-gu.po + loc=gu + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/gu/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/gu/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-gu.po + for file in *.po ++ echo tuxpaint-stamps-he.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=he + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/he/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/he/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-he.po + for file in *.po ++ echo tuxpaint-stamps-hi.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=hi + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/hi/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/hi/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-hi.po + for file in *.po ++ echo tuxpaint-stamps-hr.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=hr + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/hr/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/hr/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-hr.po + for file in *.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' ++ echo tuxpaint-stamps-hu.po + loc=hu + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/hu/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/hu/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-hu.po + for file in *.po ++ echo tuxpaint-stamps-hy.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=hy + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/hy/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/hy/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-hy.po + for file in *.po ++ echo tuxpaint-stamps-id.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=id + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/id/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/id/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-id.po + for file in *.po ++ echo tuxpaint-stamps-is.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=is + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/is/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/is/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-is.po + for file in *.po ++ echo tuxpaint-stamps-it.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=it + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/it/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/it/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-it.po + for file in *.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' ++ echo tuxpaint-stamps-iu.po + loc=iu + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/iu/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/iu/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-iu.po + for file in *.po ++ echo tuxpaint-stamps-ja.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ja + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ja/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ja/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ja.po + for file in *.po ++ echo tuxpaint-stamps-ka.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ka + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ka/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ka/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ka.po + for file in *.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' ++ echo tuxpaint-stamps-kab.po + loc=kab + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/kab/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/kab/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-kab.po + for file in *.po ++ echo tuxpaint-stamps-km.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=km + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/km/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/km/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-km.po + for file in *.po ++ echo tuxpaint-stamps-ko.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ko + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ko/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ko/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ko.po + for file in *.po ++ echo tuxpaint-stamps-ku.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ku + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ku/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ku/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ku.po + for file in *.po ++ echo tuxpaint-stamps-lt.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=lt + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/lt/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/lt/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-lt.po + for file in *.po ++ echo tuxpaint-stamps-lv.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=lv + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/lv/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/lv/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-lv.po + for file in *.po ++ echo tuxpaint-stamps-mk.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=mk + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/mk/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/mk/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-mk.po + for file in *.po ++ echo tuxpaint-stamps-ml.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ml + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ml/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ml/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ml.po + for file in *.po ++ echo tuxpaint-stamps-mn.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=mn + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/mn/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/mn/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-mn.po + for file in *.po ++ echo tuxpaint-stamps-ms.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ms + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ms/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ms/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ms.po + for file in *.po ++ echo tuxpaint-stamps-nb.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=nb + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/nb/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/nb/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-nb.po + for file in *.po ++ echo tuxpaint-stamps-nl.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=nl + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/nl/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/nl/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-nl.po + for file in *.po ++ echo tuxpaint-stamps-nn.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=nn + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/nn/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/nn/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-nn.po + for file in *.po ++ echo tuxpaint-stamps-nso.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=nso + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/nso/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/nso/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-nso.po + for file in *.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' ++ echo tuxpaint-stamps-oc.po + loc=oc + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/oc/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/oc/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-oc.po + for file in *.po ++ echo tuxpaint-stamps-pl.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=pl + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/pl/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/pl/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-pl.po + for file in *.po ++ echo tuxpaint-stamps-pt.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=pt + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/pt/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/pt/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-pt.po + for file in *.po ++ echo tuxpaint-stamps-pt_BR.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=pt_BR + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/pt_BR/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/pt_BR/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-pt_BR.po + for file in *.po ++ echo tuxpaint-stamps-ro.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ro + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ro/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ro/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ro.po + for file in *.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' ++ echo tuxpaint-stamps-ru.po + loc=ru + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ru/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ru/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ru.po + for file in *.po ++ echo tuxpaint-stamps-shs.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=shs + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/shs/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/shs/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-shs.po + for file in *.po ++ echo tuxpaint-stamps-sk.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=sk + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sk/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sk/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-sk.po + for file in *.po ++ echo tuxpaint-stamps-sl.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=sl + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sl/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sl/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-sl.po + for file in *.po ++ echo tuxpaint-stamps-son.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=son + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/son/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/son/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-son.po + for file in *.po ++ echo tuxpaint-stamps-sq.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=sq + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sq/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sq/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-sq.po + for file in *.po ++ echo tuxpaint-stamps-sr.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=sr + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sr/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sr/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-sr.po + for file in *.po ++ echo tuxpaint-stamps-sr@latin.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=sr@latin + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sr@latin/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sr@latin/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-sr@latin.po + for file in *.po ++ echo tuxpaint-stamps-sv.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=sv + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sv/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sv/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-sv.po + for file in *.po ++ echo tuxpaint-stamps-sw.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=sw + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sw/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/sw/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-sw.po + for file in *.po ++ echo tuxpaint-stamps-ta.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=ta + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ta/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/ta/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-ta.po + for file in *.po ++ echo tuxpaint-stamps-th.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=th + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/th/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/th/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-th.po + for file in *.po ++ echo tuxpaint-stamps-tr.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=tr + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/tr/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/tr/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-tr.po + for file in *.po ++ echo tuxpaint-stamps-uk.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=uk + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/uk/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/uk/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-uk.po + for file in *.po ++ echo tuxpaint-stamps-vec.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=vec + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/vec/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/vec/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-vec.po + for file in *.po ++ echo tuxpaint-stamps-vi.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=vi + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/vi/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/vi/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-vi.po + for file in *.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' ++ echo tuxpaint-stamps-wa.po + loc=wa + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/wa/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/wa/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-wa.po + for file in *.po ++ echo tuxpaint-stamps-zh_CN.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=zh_CN + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/zh_CN/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/zh_CN/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-zh_CN.po + for file in *.po ++ echo tuxpaint-stamps-zh_TW.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=zh_TW + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/zh_TW/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/zh_TW/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-zh_TW.po + for file in *.po ++ echo tuxpaint-stamps-zu.po ++ sed -e 's/tuxpaint-stamps-\(.*\).po/\1/' + loc=zu + mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/zu/LC_MESSAGES + msgfmt -o /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/locale/zu/LC_MESSAGES/tuxpaint-stamps.mo tuxpaint-stamps-zu.po + popd ~/build/BUILD/tuxpaint-stamps-2020.05.29 + rm -rf /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/tuxpaint/stamps/vehicles/emergency/firetruck.ogg + /usr/lib/rpm/find-lang.sh /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch tuxpaint-stamps + /usr/bin/find-debuginfo -j8 --strict-build-id -m -i --build-id-seed 2020.05.29-7.fc38 --unique-debug-suffix -2020.05.29-7.fc38.noarch --unique-debug-src-base tuxpaint-stamps-2020.05.29-7.fc38.noarch --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 50000000 -S debugsourcefiles.list /builddir/build/BUILD/tuxpaint-stamps-2020.05.29 + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-ldconfig + /usr/lib/rpm/brp-compress + /usr/lib/rpm/redhat/brp-strip-lto /usr/bin/strip + /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/check-rpaths + /usr/lib/rpm/redhat/brp-mangle-shebangs + /usr/lib/rpm/brp-remove-la-files + env /usr/lib/rpm/redhat/brp-python-bytecompile '' 1 0 -j8 + /usr/lib/rpm/redhat/brp-python-hardlink Processing files: tuxpaint-stamps-2020.05.29-7.fc38.noarch Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.yWYlVe + umask 022 + cd /builddir/build/BUILD + cd tuxpaint-stamps-2020.05.29 + DOCDIR=/builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/doc/tuxpaint-stamps + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/doc/tuxpaint-stamps + cp -pr docs/CHANGES.txt docs/CONTRIBUTORS.txt docs/COPYING.txt docs/README.txt docs/RELEASE.txt docs/TODO.txt /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/doc/tuxpaint-stamps + cp -pr docs/el /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/doc/tuxpaint-stamps + cp -pr docs/es /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/doc/tuxpaint-stamps + cp -pr docs/fr /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/doc/tuxpaint-stamps + cp -pr docs/hu /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch/usr/share/doc/tuxpaint-stamps + RPM_EC=0 ++ jobs -p + exit 0 Provides: metainfo() metainfo(tuxpaint-stamps.metainfo.xml) tuxpaint-stamps = 2020.05.29-7.fc38 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch Wrote: /builddir/build/RPMS/tuxpaint-stamps-2020.05.29-7.fc38.noarch.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.B1r4RZ + umask 022 + cd /builddir/build/BUILD + cd tuxpaint-stamps-2020.05.29 + /usr/bin/rm -rf /builddir/build/BUILDROOT/tuxpaint-stamps-2020.05.29-7.fc38.noarch + RPM_EC=0 ++ jobs -p + exit 0 Executing(rmbuild): /bin/sh -e /var/tmp/rpm-tmp.MRTSew + umask 022 + cd /builddir/build/BUILD + rm -rf tuxpaint-stamps-2020.05.29 tuxpaint-stamps-2020.05.29.gemspec + RPM_EC=0 ++ jobs -p + exit 0 RPM build warnings: %patchN is deprecated (1 usages found), use %patch N (or %patch -P N) Child return code was: 0