Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libbytesize for openSUSE:Factory 
checked in at 2021-05-12 19:31:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libbytesize (Old)
 and      /work/SRC/openSUSE:Factory/.libbytesize.new.2988 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libbytesize"

Wed May 12 19:31:30 2021 rev:5 rq:891865 version:2.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/libbytesize/libbytesize.changes  2020-08-19 
18:48:58.191596750 +0200
+++ /work/SRC/openSUSE:Factory/.libbytesize.new.2988/libbytesize.changes        
2021-05-12 19:31:47.863141737 +0200
@@ -1,0 +2,9 @@
+Sat Jan 30 00:02:11 UTC 2021 - Dirk M??ller <dmuel...@suse.com>
+
+- update to 2.5:
+  * translation updates
+  * tools: Read input from stdin when not running in a tty
+  * Add support to ppc64le for debian build
+  * testsuite fixes
+
+-------------------------------------------------------------------

Old:
----
  libbytesize-2.4.tar.gz

New:
----
  libbytesize-2.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libbytesize.spec ++++++
--- /var/tmp/diff_new_pack.zScgrD/_old  2021-05-12 19:31:48.363139740 +0200
+++ /var/tmp/diff_new_pack.zScgrD/_new  2021-05-12 19:31:48.363139740 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libbytesize
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define somajor 1
 %define libname %{name}%{somajor}
 Name:           libbytesize
-Version:        2.4
+Version:        2.5
 Release:        0
 Summary:        A library for working with sizes in bytes
 License:        LGPL-2.1-only

++++++ libbytesize-2.4.tar.gz -> libbytesize-2.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/Makefile.am 
new/libbytesize-2.5/Makefile.am
--- old/libbytesize-2.4/Makefile.am     2020-07-31 08:10:15.000000000 +0200
+++ new/libbytesize-2.5/Makefile.am     2020-11-19 13:37:30.000000000 +0100
@@ -45,8 +45,37 @@
        @which ansible-playbook >/dev/null 2>&1 || ( echo "Please install 
Ansible to install testing dependencies"; exit 1 )
        @ansible-playbook -K -i "localhost," -c local 
misc/install-test-dependencies.yml
 
+pylint:
+       @echo "*** Running pylint ***"
+       @if test `which pylint-3` ; then \
+               pylint='pylint-3' ; \
+       elif test `which pylint` ; then \
+               pylint='pylint' ; \
+       else \
+               echo "You need to install pylint to run this check."; exit 1; \
+       fi ; \
+       PYTHONPATH=src/python:$(PYTHONPATH) $$pylint -E tools/bs_calc.py.in
+
+pep8:
+       @echo "*** Running pep8 compliance check ***"
+       @if test `which pycodestyle-3` ; then \
+               pep8='pycodestyle-3' ; \
+       elif test `which pycodestyle` ; then \
+               pep8='pycodestyle' ; \
+       elif test `which pep8` ; then \
+               pep8='pep8' ; \
+       else \
+               echo "You need to install pycodestyle/pep8 to run this check."; 
exit 1; \
+       fi ; \
+       $$pep8 --ignore=E501,E402,E731,W504 tools/bs_calc.py.in
+
+
 test:
-       $(MAKE) check
+       @status=0; \
+       $(MAKE) check || status=1; \
+       $(MAKE) pep8 || status=1; \
+       $(MAKE) pylint || status=1; \
+       exit $$status
 
 ci:
        $(MAKE) distcheck; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/Makefile.in 
new/libbytesize-2.5/Makefile.in
--- old/libbytesize-2.4/Makefile.in     2020-07-31 08:11:26.000000000 +0200
+++ new/libbytesize-2.5/Makefile.in     2021-01-27 14:58:11.000000000 +0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# Makefile.in generated by automake 1.16.2 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -601,6 +601,10 @@
        tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c 
>$(distdir).tar.xz
        $(am__post_remove_distdir)
 
+dist-zstd: distdir
+       tardir=$(distdir) && $(am__tar) | zstd -c 
$${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
+       $(am__post_remove_distdir)
+
 dist-tarZ: distdir
        @echo WARNING: "Support for distribution archives compressed with" \
                       "legacy program 'compress' is deprecated." >&2
@@ -643,6 +647,8 @@
          eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
        *.zip*) \
          unzip $(distdir).zip ;;\
+       *.tar.zst*) \
+         zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
        esac
        chmod -R a-w $(distdir)
        chmod u+w $(distdir)
@@ -821,7 +827,7 @@
        am--refresh check check-am clean clean-cscope clean-generic \
        clean-libtool cscope cscopelist-am ctags ctags-am dist \
        dist-all dist-bzip2 dist-gzip dist-hook dist-lzip dist-shar \
-       dist-tarZ dist-xz dist-zip distcheck distclean \
+       dist-tarZ dist-xz dist-zip dist-zstd distcheck distclean \
        distclean-generic distclean-libtool distclean-tags \
        distcleancheck distdir distuninstallcheck dvi dvi-am html \
        html-am info info-am install install-am install-data \
@@ -859,8 +865,36 @@
        @which ansible-playbook >/dev/null 2>&1 || ( echo "Please install 
Ansible to install testing dependencies"; exit 1 )
        @ansible-playbook -K -i "localhost," -c local 
misc/install-test-dependencies.yml
 
+pylint:
+       @echo "*** Running pylint ***"
+       @if test `which pylint-3` ; then \
+               pylint='pylint-3' ; \
+       elif test `which pylint` ; then \
+               pylint='pylint' ; \
+       else \
+               echo "You need to install pylint to run this check."; exit 1; \
+       fi ; \
+       PYTHONPATH=src/python:$(PYTHONPATH) $$pylint -E tools/bs_calc.py.in
+
+pep8:
+       @echo "*** Running pep8 compliance check ***"
+       @if test `which pycodestyle-3` ; then \
+               pep8='pycodestyle-3' ; \
+       elif test `which pycodestyle` ; then \
+               pep8='pycodestyle' ; \
+       elif test `which pep8` ; then \
+               pep8='pep8' ; \
+       else \
+               echo "You need to install pycodestyle/pep8 to run this check."; 
exit 1; \
+       fi ; \
+       $$pep8 --ignore=E501,E402,E731,W504 tools/bs_calc.py.in
+
 test:
-       $(MAKE) check
+       @status=0; \
+       $(MAKE) check || status=1; \
+       $(MAKE) pep8 || status=1; \
+       $(MAKE) pylint || status=1; \
+       exit $$status
 
 ci:
        $(MAKE) distcheck; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/aclocal.m4 
new/libbytesize-2.5/aclocal.m4
--- old/libbytesize-2.4/aclocal.m4      2020-07-31 08:11:25.000000000 +0200
+++ new/libbytesize-2.5/aclocal.m4      2021-01-27 14:58:10.000000000 +0100
@@ -1,6 +1,6 @@
-# generated automatically by aclocal 1.16.1 -*- Autoconf -*-
+# generated automatically by aclocal 1.16.2 -*- Autoconf -*-
 
-# Copyright (C) 1996-2018 Free Software Foundation, Inc.
+# Copyright (C) 1996-2020 Free Software Foundation, Inc.
 
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -20,7 +20,7 @@
 If you have problems, you may need to regenerate the build system entirely.
 To do so, use the procedure documented by the package, typically 
'autoreconf'.])])
 
-# Copyright (C) 2002-2018 Free Software Foundation, Inc.
+# Copyright (C) 2002-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -35,7 +35,7 @@
 [am__api_version='1.16'
 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
 dnl require some minimum version.  Point them to the right macro.
-m4_if([$1], [1.16.1], [],
+m4_if([$1], [1.16.2], [],
       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
 ])
 
@@ -51,12 +51,12 @@
 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.16.1])dnl
+[AM_AUTOMAKE_VERSION([1.16.2])dnl
 m4_ifndef([AC_AUTOCONF_VERSION],
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
 
-# Copyright (C) 2011-2018 Free Software Foundation, Inc.
+# Copyright (C) 2011-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -118,7 +118,7 @@
 
 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
 
-# Copyright (C) 2001-2018 Free Software Foundation, Inc.
+# Copyright (C) 2001-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -170,7 +170,7 @@
 
 # AM_CONDITIONAL                                            -*- Autoconf -*-
 
-# Copyright (C) 1997-2018 Free Software Foundation, Inc.
+# Copyright (C) 1997-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -201,7 +201,7 @@
 Usually this means the macro was only invoked conditionally.]])
 fi])])
 
-# Copyright (C) 1999-2018 Free Software Foundation, Inc.
+# Copyright (C) 1999-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -392,7 +392,7 @@
 
 # Generate code to set up dependency tracking.              -*- Autoconf -*-
 
-# Copyright (C) 1999-2018 Free Software Foundation, Inc.
+# Copyright (C) 1999-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -431,7 +431,9 @@
   done
   if test $am_rc -ne 0; then
     AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
-    for automatic dependency tracking.  Try re-running configure with the
+    for automatic dependency tracking.  If GNU make was not used, consider
+    re-running the configure script with MAKE="gmake" (or whatever is
+    necessary).  You can also try re-running configure with the
     '--disable-dependency-tracking' option to at least be able to build
     the package (albeit without support for automatic dependency tracking).])
   fi
@@ -458,7 +460,7 @@
 
 # Do all the work for Automake.                             -*- Autoconf -*-
 
-# Copyright (C) 1996-2018 Free Software Foundation, Inc.
+# Copyright (C) 1996-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -655,7 +657,7 @@
 done
 echo "timestamp for $_am_arg" 
>`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
 
-# Copyright (C) 2001-2018 Free Software Foundation, Inc.
+# Copyright (C) 2001-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -676,7 +678,7 @@
 fi
 AC_SUBST([install_sh])])
 
-# Copyright (C) 2003-2018 Free Software Foundation, Inc.
+# Copyright (C) 2003-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -697,7 +699,7 @@
 
 # Check to see how 'make' treats includes.                 -*- Autoconf -*-
 
-# Copyright (C) 2001-2018 Free Software Foundation, Inc.
+# Copyright (C) 2001-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -740,7 +742,7 @@
 
 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
 
-# Copyright (C) 1997-2018 Free Software Foundation, Inc.
+# Copyright (C) 1997-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -779,7 +781,7 @@
 
 # Helper functions for option handling.                     -*- Autoconf -*-
 
-# Copyright (C) 2001-2018 Free Software Foundation, Inc.
+# Copyright (C) 2001-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -808,7 +810,7 @@
 AC_DEFUN([_AM_IF_OPTION],
 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
 
-# Copyright (C) 1999-2018 Free Software Foundation, Inc.
+# Copyright (C) 1999-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -855,7 +857,7 @@
 # For backward compatibility.
 AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
 
-# Copyright (C) 1999-2018 Free Software Foundation, Inc.
+# Copyright (C) 1999-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -1093,7 +1095,7 @@
 sys.exit(sys.hexversion < minverhex)"
   AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
 
-# Copyright (C) 2001-2018 Free Software Foundation, Inc.
+# Copyright (C) 2001-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -1112,7 +1114,7 @@
 
 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
 
-# Copyright (C) 1996-2018 Free Software Foundation, Inc.
+# Copyright (C) 1996-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -1193,7 +1195,7 @@
 rm -f conftest.file
 ])
 
-# Copyright (C) 2009-2018 Free Software Foundation, Inc.
+# Copyright (C) 2009-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -1253,7 +1255,7 @@
 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
 ])
 
-# Copyright (C) 2001-2018 Free Software Foundation, Inc.
+# Copyright (C) 2001-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -1281,7 +1283,7 @@
 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
 AC_SUBST([INSTALL_STRIP_PROGRAM])])
 
-# Copyright (C) 2006-2018 Free Software Foundation, Inc.
+# Copyright (C) 2006-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -1300,7 +1302,7 @@
 
 # Check how to create a tarball.                            -*- Autoconf -*-
 
-# Copyright (C) 2004-2018 Free Software Foundation, Inc.
+# Copyright (C) 2004-2020 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/ar-lib new/libbytesize-2.5/ar-lib
--- old/libbytesize-2.4/ar-lib  2020-07-31 08:10:59.000000000 +0200
+++ new/libbytesize-2.5/ar-lib  2021-01-27 14:57:54.000000000 +0100
@@ -2,9 +2,9 @@
 # Wrapper for Microsoft lib.exe
 
 me=ar-lib
-scriptversion=2012-03-01.08; # UTC
+scriptversion=2019-07-04.01; # UTC
 
-# Copyright (C) 2010-2018 Free Software Foundation, Inc.
+# Copyright (C) 2010-2020 Free Software Foundation, Inc.
 # Written by Peter Rosin <p...@lysator.liu.se>.
 #
 # This program is free software; you can redistribute it and/or modify
@@ -53,7 +53,7 @@
          MINGW*)
            file_conv=mingw
            ;;
-         CYGWIN*)
+         CYGWIN* | MSYS*)
            file_conv=cygwin
            ;;
          *)
@@ -65,7 +65,7 @@
        mingw)
          file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
          ;;
-       cygwin)
+       cygwin | msys)
          file=`cygpath -m "$file" || echo "$file"`
          ;;
        wine)
@@ -224,10 +224,11 @@
       esac
     done
   else
-    $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
-    do
-      $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
-    done
+    $AR -NOLOGO -LIST "$archive" | tr -d '\r' | sed -e 's/\\/\\\\/g' \
+      | while read member
+        do
+          $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
+        done
   fi
 
 elif test -n "$quick$replace"; then
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/compile new/libbytesize-2.5/compile
--- old/libbytesize-2.4/compile 2020-07-31 08:10:59.000000000 +0200
+++ new/libbytesize-2.5/compile 2021-01-27 14:57:54.000000000 +0100
@@ -3,7 +3,7 @@
 
 scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 1999-2018 Free Software Foundation, Inc.
+# Copyright (C) 1999-2020 Free Software Foundation, Inc.
 # Written by Tom Tromey <tro...@cygnus.com>.
 #
 # This program is free software; you can redistribute it and/or modify
@@ -53,7 +53,7 @@
          MINGW*)
            file_conv=mingw
            ;;
-         CYGWIN*)
+         CYGWIN* | MSYS*)
            file_conv=cygwin
            ;;
          *)
@@ -67,7 +67,7 @@
        mingw/*)
          file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
          ;;
-       cygwin/*)
+       cygwin/* | msys/*)
          file=`cygpath -m "$file" || echo "$file"`
          ;;
        wine/*)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/configure 
new/libbytesize-2.5/configure
--- old/libbytesize-2.4/configure       2020-07-31 08:11:26.000000000 +0200
+++ new/libbytesize-2.5/configure       2021-01-27 14:58:11.000000000 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for libbytesize 2.4.
+# Generated by GNU Autoconf 2.69 for libbytesize 2.5.
 #
 # Report bugs to <vpodz...@redhat.com>.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='libbytesize'
 PACKAGE_TARNAME='libbytesize'
-PACKAGE_VERSION='2.4'
-PACKAGE_STRING='libbytesize 2.4'
+PACKAGE_VERSION='2.5'
+PACKAGE_STRING='libbytesize 2.5'
 PACKAGE_BUGREPORT='vpodz...@redhat.com'
 PACKAGE_URL=''
 
@@ -1349,7 +1349,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 libbytesize 2.4 to adapt to many kinds of systems.
+\`configure' configures libbytesize 2.5 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1419,7 +1419,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of libbytesize 2.4:";;
+     short | recursive ) echo "Configuration of libbytesize 2.5:";;
    esac
   cat <<\_ACEOF
 
@@ -1542,7 +1542,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libbytesize configure 2.4
+libbytesize configure 2.5
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1911,7 +1911,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libbytesize $as_me 2.4, which was
+It was created by libbytesize $as_me 2.5, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2809,7 +2809,7 @@
 
 # Define the identity of the package.
  PACKAGE='libbytesize'
- VERSION='2.4'
+ VERSION='2.5'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -14276,7 +14276,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libbytesize $as_me 2.4, which was
+This file was extended by libbytesize $as_me 2.5, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -14333,7 +14333,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-libbytesize config.status 2.4
+libbytesize config.status 2.5
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
@@ -15261,7 +15261,9 @@
     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 as_fn_error $? "Something went wrong bootstrapping makefile fragments
-    for automatic dependency tracking.  Try re-running configure with the
+    for automatic dependency tracking.  If GNU make was not used, consider
+    re-running the configure script with MAKE=\"gmake\" (or whatever is
+    necessary).  You can also try re-running configure with the
     '--disable-dependency-tracking' option to at least be able to build
     the package (albeit without support for automatic dependency tracking).
 See \`config.log' for more details" "$LINENO" 5; }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/configure.ac 
new/libbytesize-2.5/configure.ac
--- old/libbytesize-2.4/configure.ac    2020-07-31 08:11:23.000000000 +0200
+++ new/libbytesize-2.5/configure.ac    2021-01-27 14:58:08.000000000 +0100
@@ -1,6 +1,6 @@
 # configure.ac for libbytesize
 
-AC_INIT([libbytesize], [2.4], [vpodz...@redhat.com])
+AC_INIT([libbytesize], [2.5], [vpodz...@redhat.com])
 
 # Disable building static libraries.
 # This needs to be set before initializing automake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/depcomp new/libbytesize-2.5/depcomp
--- old/libbytesize-2.4/depcomp 2020-07-31 08:11:00.000000000 +0200
+++ new/libbytesize-2.5/depcomp 2021-01-27 14:57:54.000000000 +0100
@@ -3,7 +3,7 @@
 
 scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 1999-2018 Free Software Foundation, Inc.
+# Copyright (C) 1999-2020 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/dist/Makefile.in 
new/libbytesize-2.5/dist/Makefile.in
--- old/libbytesize-2.4/dist/Makefile.in        2020-07-31 08:11:26.000000000 
+0200
+++ new/libbytesize-2.5/dist/Makefile.in        2021-01-27 14:58:11.000000000 
+0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# Makefile.in generated by automake 1.16.2 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/dist/libbytesize.spec 
new/libbytesize-2.5/dist/libbytesize.spec
--- old/libbytesize-2.4/dist/libbytesize.spec   2020-07-31 08:11:29.000000000 
+0200
+++ new/libbytesize-2.5/dist/libbytesize.spec   2021-01-27 14:58:13.000000000 
+0100
@@ -16,7 +16,7 @@
 %define configure_opts %{?python3_opts} %{?tools_opts}
 
 Name:        libbytesize
-Version:     2.4
+Version:     2.5
 Release:     1%{?dist}
 Summary:     A library for working with sizes in bytes
 License:     LGPLv2+
@@ -75,7 +75,7 @@
 
 %build
 %configure %{?configure_opts}
-%{__make} %{?_smp_mflags}
+%make_build
 
 %install
 %{make_install}
@@ -114,6 +114,21 @@
 %endif
 
 %changelog
+* Wed Jan 27 2021 Vojtech Trefny <vtre...@redhat.com> - 2.5-1
+- Translated using Weblate (Hebrew) (sh.yaron)
+- Added translation using Weblate (Hebrew) (sh.yaron)
+- Add support to ppc64le for debian build (74309971+gururajrkatti)
+- Translated using Weblate (Finnish) (ricky.tigg)
+- tools: Read input from stdin when not running in a tty (vtrefny)
+- travis: Print logs after failed tests (vtrefny)
+- tests: Run pylint and pycodestyle on bscalc (vtrefny)
+- bscalc: Add option to print only single "human readable" result (vtrefny)
+- travis: Add --nogpgcheck when using dnf on Fedora (vtrefny)
+- Translated using Weblate (Asturian) (fitoschido)
+- Update translation files (noreply)
+- Translated using Weblate (Spanish) (fitoschido)
+- Sync spec with downstream (vtrefny)
+
 * Fri Jul 31 2020 Vojtech Trefny <vtre...@redhat.com> - 2.4-1
 - Add Travis build status badge (vtrefny)
 - Add Travis CI config and Dockerfiles for running tests (vtrefny)
@@ -124,6 +139,16 @@
 - Added translation using Weblate (Bengali (India)) (akarshan.biswas)
 - Fix library version in pkgconfig file (vtrefny)
 
+* Tue Jul 28 2020 Fedora Release Engineering <rel...@fedoraproject.org> - 2.3-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Mon Jul 13 2020 Tom Stellard <tstel...@redhat.com> - 2.3-3
+- Use make macros
+- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
+
+* Sat May 23 2020 Miro Hron??ok <mhron...@redhat.com> - 2.3-2
+- Rebuilt for Python 3.9
+
 * Thu May 21 2020 Vojtech Trefny <vtre...@redhat.com> - 2.3-1
 - Fix memory leak in bs_size_new_from_str (vtrefny)
 - Translated using Weblate (Turkish) (oguzersen)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/dist/libbytesize.spec.in 
new/libbytesize-2.5/dist/libbytesize.spec.in
--- old/libbytesize-2.4/dist/libbytesize.spec.in        2020-07-31 
08:11:23.000000000 +0200
+++ new/libbytesize-2.5/dist/libbytesize.spec.in        2021-01-27 
14:58:08.000000000 +0100
@@ -16,7 +16,7 @@
 %define configure_opts %{?python3_opts} %{?tools_opts}
 
 Name:        libbytesize
-Version:     2.4
+Version:     2.5
 Release:     1%{?dist}
 Summary:     A library for working with sizes in bytes
 License:     LGPLv2+
@@ -75,7 +75,7 @@
 
 %build
 %configure %{?configure_opts}
-%{__make} %{?_smp_mflags}
+%make_build
 
 %install
 %{make_install}
@@ -114,6 +114,21 @@
 %endif
 
 %changelog
+* Wed Jan 27 2021 Vojtech Trefny <vtre...@redhat.com> - 2.5-1
+- Translated using Weblate (Hebrew) (sh.yaron)
+- Added translation using Weblate (Hebrew) (sh.yaron)
+- Add support to ppc64le for debian build (74309971+gururajrkatti)
+- Translated using Weblate (Finnish) (ricky.tigg)
+- tools: Read input from stdin when not running in a tty (vtrefny)
+- travis: Print logs after failed tests (vtrefny)
+- tests: Run pylint and pycodestyle on bscalc (vtrefny)
+- bscalc: Add option to print only single "human readable" result (vtrefny)
+- travis: Add --nogpgcheck when using dnf on Fedora (vtrefny)
+- Translated using Weblate (Asturian) (fitoschido)
+- Update translation files (noreply)
+- Translated using Weblate (Spanish) (fitoschido)
+- Sync spec with downstream (vtrefny)
+
 * Fri Jul 31 2020 Vojtech Trefny <vtre...@redhat.com> - 2.4-1
 - Add Travis build status badge (vtrefny)
 - Add Travis CI config and Dockerfiles for running tests (vtrefny)
@@ -124,6 +139,16 @@
 - Added translation using Weblate (Bengali (India)) (akarshan.biswas)
 - Fix library version in pkgconfig file (vtrefny)
 
+* Tue Jul 28 2020 Fedora Release Engineering <rel...@fedoraproject.org> - 2.3-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Mon Jul 13 2020 Tom Stellard <tstel...@redhat.com> - 2.3-3
+- Use make macros
+- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
+
+* Sat May 23 2020 Miro Hron??ok <mhron...@redhat.com> - 2.3-2
+- Rebuilt for Python 3.9
+
 * Thu May 21 2020 Vojtech Trefny <vtre...@redhat.com> - 2.3-1
 - Fix memory leak in bs_size_new_from_str (vtrefny)
 - Translated using Weblate (Turkish) (oguzersen)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/docs/Makefile.in 
new/libbytesize-2.5/docs/Makefile.in
--- old/libbytesize-2.4/docs/Makefile.in        2020-07-31 08:11:26.000000000 
+0200
+++ new/libbytesize-2.5/docs/Makefile.in        2021-01-27 14:58:11.000000000 
+0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# Makefile.in generated by automake 1.16.2 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/docs/libbytesize-docs.xml 
new/libbytesize-2.5/docs/libbytesize-docs.xml
--- old/libbytesize-2.4/docs/libbytesize-docs.xml       2020-07-31 
08:11:29.000000000 +0200
+++ new/libbytesize-2.5/docs/libbytesize-docs.xml       2021-01-27 
14:58:13.000000000 +0100
@@ -8,7 +8,7 @@
   <bookinfo>
     <title>libbytesize Reference Manual</title>
     <releaseinfo>
-      for libbytesize 2.4.
+      for libbytesize 2.5.
       The latest version of this documentation can be found on-line at
       <ulink role="online-location" 
url="http://storaged.org/libbytesize";>http://storaged.org/libbytesize</ulink>.
     </releaseinfo>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/install-sh 
new/libbytesize-2.5/install-sh
--- old/libbytesize-2.4/install-sh      2020-07-31 08:11:00.000000000 +0200
+++ new/libbytesize-2.5/install-sh      2021-01-27 14:57:54.000000000 +0100
@@ -451,7 +451,18 @@
     trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
 
     # Copy the file name to the temp name.
-    (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
+    (umask $cp_umask &&
+     { test -z "$stripcmd" || {
+        # Create $dsttmp read-write so that cp doesn't create it read-only,
+        # which would cause strip to fail.
+        if test -z "$doit"; then
+          : >"$dsttmp" # No need to fork-exec 'touch'.
+        else
+          $doit touch "$dsttmp"
+        fi
+       }
+     } &&
+     $doit_exec $cpprog "$src" "$dsttmp") &&
 
     # and set any options; do chmod last to preserve setuid bits.
     #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/missing new/libbytesize-2.5/missing
--- old/libbytesize-2.4/missing 2020-07-31 08:11:00.000000000 +0200
+++ new/libbytesize-2.5/missing 2021-01-27 14:57:54.000000000 +0100
@@ -3,7 +3,7 @@
 
 scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 1996-2018 Free Software Foundation, Inc.
+# Copyright (C) 1996-2020 Free Software Foundation, Inc.
 # Originally written by Fran,cois Pinard <pin...@iro.umontreal.ca>, 1996.
 
 # This program is free software; you can redistribute it and/or modify
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/Makefile.in 
new/libbytesize-2.5/po/Makefile.in
--- old/libbytesize-2.4/po/Makefile.in  2020-07-31 08:11:26.000000000 +0200
+++ new/libbytesize-2.5/po/Makefile.in  2021-01-27 14:58:11.000000000 +0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# Makefile.in generated by automake 1.16.2 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/ast.po 
new/libbytesize-2.5/po/ast.po
--- old/libbytesize-2.4/po/ast.po       1970-01-01 01:00:00.000000000 +0100
+++ new/libbytesize-2.5/po/ast.po       2020-08-17 09:48:15.000000000 +0200
@@ -0,0 +1,104 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Red Hat, Inc.
+# This file is distributed under the same license as the libbytesize package.
+# Adolfo Jayme Barrientos <fitosch...@gmail.com>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: libbytesize 2.3\n"
+"Report-Msgid-Bugs-To: vtre...@redhat.com\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
+"PO-Revision-Date: 2020-08-16 11:29+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fitosch...@gmail.com>\n"
+"Language-Team: Asturian <https://translate.fedoraproject.org/projects/blivet/";
+"libbytesize/ast/>\n"
+"Language: ast\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.1.1\n"
+
+#. TRANSLATORS: 'B' for bytes
+#: src/bs_size.c:52 src/bs_size.c:73
+msgid "B"
+msgstr "B"
+
+#. TRANSLATORS: abbreviation for kibibyte, 2**10 bytes
+#: src/bs_size.c:54
+msgid "KiB"
+msgstr "KiB"
+
+#. TRANSLATORS: abbreviation for mebibyte, 2**20 bytes
+#: src/bs_size.c:56
+msgid "MiB"
+msgstr "MiB"
+
+#. TRANSLATORS: abbreviation for gibibyte, 2**30 bytes
+#: src/bs_size.c:58
+msgid "GiB"
+msgstr "GiB"
+
+#. TRANSLATORS: abbreviation for tebibyte, 2**40 bytes
+#: src/bs_size.c:60
+msgid "TiB"
+msgstr "TiB"
+
+#. TRANSLATORS: abbreviation for pebibyte, 2**50 bytes
+#: src/bs_size.c:62
+msgid "PiB"
+msgstr "PiB"
+
+#. TRANSLATORS: abbreviation for exbibyte, 2**60 bytes
+#: src/bs_size.c:64
+msgid "EiB"
+msgstr "EiB"
+
+#. TRANSLATORS: abbreviation for zebibyte, 2**70 bytes
+#: src/bs_size.c:66
+msgid "ZiB"
+msgstr "ZiB"
+
+#. TRANSLATORS: abbreviation for yobibyte, 2**80 bytes
+#: src/bs_size.c:68
+msgid "YiB"
+msgstr "YiB"
+
+#. TRANSLATORS: abbreviation for kilobyte, 10**3 bytes
+#: src/bs_size.c:75
+msgid "KB"
+msgstr "kB"
+
+#. TRANSLATORS: abbreviation for megabyte, 10**6 bytes
+#: src/bs_size.c:77
+msgid "MB"
+msgstr "MB"
+
+#. TRANSLATORS: abbreviation for gigabyte, 10**9 bytes
+#: src/bs_size.c:79
+msgid "GB"
+msgstr "GB"
+
+#. TRANSLATORS: abbreviation for terabyte, 10**12 bytes
+#: src/bs_size.c:81
+msgid "TB"
+msgstr "TB"
+
+#. TRANSLATORS: abbreviation for petabyte, 10**15 bytes
+#: src/bs_size.c:83
+msgid "PB"
+msgstr "PB"
+
+#. TRANSLATORS: abbreviation for exabyte, 10**18 bytes
+#: src/bs_size.c:85
+msgid "EB"
+msgstr "EB"
+
+#. TRANSLATORS: abbreviation for zettabyte, 10**21 bytes
+#: src/bs_size.c:87
+msgid "ZB"
+msgstr "ZB"
+
+#. TRANSLATORS: abbreviation for yottabyte, 10**24 bytes
+#: src/bs_size.c:89
+msgid "YB"
+msgstr "YB"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/be.po new/libbytesize-2.5/po/be.po
--- old/libbytesize-2.4/po/be.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/be.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2018-02-21 01:16+0000\n"
 "Last-Translator: Viktar Siarheichyk <v...@fedoraproject.org>\n"
 "Language-Team: Belarusian\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/bn_IN.po 
new/libbytesize-2.5/po/bn_IN.po
--- old/libbytesize-2.4/po/bn_IN.po     2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/bn_IN.po     2020-08-17 09:48:15.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 2.2\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2020-06-25 15:40+0000\n"
 "Last-Translator: Akarshan Biswas <akarshan.bis...@gmail.com>\n"
 "Language-Team: Bengali (India) <https://translate.fedoraproject.org/projects/";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/ca.po new/libbytesize-2.5/po/ca.po
--- old/libbytesize-2.4/po/ca.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/ca.po        2020-08-17 09:48:15.000000000 +0200
@@ -1,18 +1,20 @@
 # Robert Antoni Buj Gelonch <r...@fedoraproject.org>, 2016. #zanata
+# Adolfo Jayme Barrientos <fitosch...@gmail.com>, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
-"PO-Revision-Date: 2016-03-10 09:33+0000\n"
-"Last-Translator: Robert Antoni Buj Gelonch <r...@fedoraproject.org>\n"
-"Language-Team: Catalan\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
+"PO-Revision-Date: 2020-08-15 10:43+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fitosch...@gmail.com>\n"
+"Language-Team: Catalan <https://translate.fedoraproject.org/projects/blivet/";
+"libbytesize/ca/>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-"X-Generator: Zanata 4.6.2\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.1.1\n"
 
 #. TRANSLATORS: 'B' for bytes
 #: src/bs_size.c:52 src/bs_size.c:73
@@ -62,7 +64,7 @@
 #. TRANSLATORS: abbreviation for kilobyte, 10**3 bytes
 #: src/bs_size.c:75
 msgid "KB"
-msgstr "KB"
+msgstr "kB"
 
 #. TRANSLATORS: abbreviation for megabyte, 10**6 bytes
 #: src/bs_size.c:77
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/cs.po new/libbytesize-2.5/po/cs.po
--- old/libbytesize-2.4/po/cs.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/cs.po        2020-08-17 09:48:15.000000000 +0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2016-03-07 11:45+0000\n"
 "Last-Translator: Vratislav Podzimek <vpodz...@redhat.com>\n"
 "Language-Team: Czech\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/da.po new/libbytesize-2.5/po/da.po
--- old/libbytesize-2.4/po/da.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/da.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2017-04-24 09:35+0000\n"
 "Last-Translator: scootergrisen <scootergri...@gmail.com>\n"
 "Language-Team: Danish\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/de.po new/libbytesize-2.5/po/de.po
--- old/libbytesize-2.4/po/de.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/de.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2017-04-11 06:50+0000\n"
 "Last-Translator: Robert Scheck <rob...@fedoraproject.org>\n"
 "Language-Team: German\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/es.po new/libbytesize-2.5/po/es.po
--- old/libbytesize-2.4/po/es.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/es.po        2020-08-17 09:48:15.000000000 +0200
@@ -1,22 +1,23 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR Red Hat, Inc.
 # This file is distributed under the same license as the libbytesize package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # M??ximo Casta??eda Riloba <mcrc...@gmail.com>, 2016. #zanata
+# Adolfo Jayme Barrientos <fitosch...@gmail.com>, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
-"PO-Revision-Date: 2016-04-17 08:35+0000\n"
-"Last-Translator: M??ximo Casta??eda Riloba <mcrc...@gmail.com>\n"
-"Language-Team: Spanish\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
+"PO-Revision-Date: 2020-08-15 10:43+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fitosch...@gmail.com>\n"
+"Language-Team: Spanish <https://translate.fedoraproject.org/projects/blivet/";
+"libbytesize/es/>\n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-"X-Generator: Zanata 4.6.2\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.1.1\n"
 
 #. TRANSLATORS: 'B' for bytes
 #: src/bs_size.c:52 src/bs_size.c:73
@@ -66,7 +67,7 @@
 #. TRANSLATORS: abbreviation for kilobyte, 10**3 bytes
 #: src/bs_size.c:75
 msgid "KB"
-msgstr "KB"
+msgstr "kB"
 
 #. TRANSLATORS: abbreviation for megabyte, 10**6 bytes
 #: src/bs_size.c:77
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/fi.po new/libbytesize-2.5/po/fi.po
--- old/libbytesize-2.4/po/fi.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/fi.po        2020-12-08 09:00:11.000000000 +0100
@@ -1,22 +1,23 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR Red Hat, Inc.
 # This file is distributed under the same license as the libbytesize package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # Jiri Gr??nroos <jiri.gronr...@iki.fi>, 2018. #zanata
+# Ricky Tigg <ricky.t...@gmail.com>, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
-"PO-Revision-Date: 2018-08-19 12:33+0000\n"
-"Last-Translator: Jiri Gr??nroos <jiri.gronr...@iki.fi>\n"
-"Language-Team: Finnish\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
+"PO-Revision-Date: 2020-11-28 16:35+0000\n"
+"Last-Translator: Ricky Tigg <ricky.t...@gmail.com>\n"
+"Language-Team: Finnish <https://translate.fedoraproject.org/projects/blivet/";
+"libbytesize/fi/>\n"
 "Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-"X-Generator: Zanata 4.6.2\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.3.2\n"
 
 #. TRANSLATORS: 'B' for bytes
 #: src/bs_size.c:52 src/bs_size.c:73
@@ -56,12 +57,12 @@
 #. TRANSLATORS: abbreviation for zebibyte, 2**70 bytes
 #: src/bs_size.c:66
 msgid "ZiB"
-msgstr "ZiB"
+msgstr "Zit"
 
 #. TRANSLATORS: abbreviation for yobibyte, 2**80 bytes
 #: src/bs_size.c:68
 msgid "YiB"
-msgstr "YiB"
+msgstr "Yit"
 
 #. TRANSLATORS: abbreviation for kilobyte, 10**3 bytes
 #: src/bs_size.c:75
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/fr.po new/libbytesize-2.5/po/fr.po
--- old/libbytesize-2.4/po/fr.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/fr.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2016-07-15 05:07+0000\n"
 "Last-Translator: Jean-Baptiste Holcroft <jean-bapti...@holcroft.fr>\n"
 "Language-Team: French\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/fur.po 
new/libbytesize-2.5/po/fur.po
--- old/libbytesize-2.4/po/fur.po       2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/fur.po       2020-08-17 09:48:15.000000000 +0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 2.2\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2019-08-12 07:14+0000\n"
 "Last-Translator: Fabio Tomat <f.t.pub...@gmail.com>\n"
 "Language-Team: Friulian\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/he.po new/libbytesize-2.5/po/he.po
--- old/libbytesize-2.4/po/he.po        1970-01-01 01:00:00.000000000 +0100
+++ new/libbytesize-2.5/po/he.po        2021-01-27 14:56:27.000000000 +0100
@@ -0,0 +1,105 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Red Hat, Inc.
+# This file is distributed under the same license as the libbytesize package.
+# Yaron Shahrabani <sh.ya...@gmail.com>, 2021.
+msgid ""
+msgstr ""
+"Project-Id-Version: libbytesize 2.4\n"
+"Report-Msgid-Bugs-To: vtre...@redhat.com\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
+"PO-Revision-Date: 2021-01-13 19:36+0000\n"
+"Last-Translator: Yaron Shahrabani <sh.ya...@gmail.com>\n"
+"Language-Team: Hebrew <https://translate.fedoraproject.org/projects/blivet/";
+"libbytesize/he/>\n"
+"Language: he\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
+"n % 10 == 0) ? 2 : 3));\n"
+"X-Generator: Weblate 4.4.1\n"
+
+#. TRANSLATORS: 'B' for bytes
+#: src/bs_size.c:52 src/bs_size.c:73
+msgid "B"
+msgstr "????"
+
+#. TRANSLATORS: abbreviation for kibibyte, 2**10 bytes
+#: src/bs_size.c:54
+msgid "KiB"
+msgstr "KiB"
+
+#. TRANSLATORS: abbreviation for mebibyte, 2**20 bytes
+#: src/bs_size.c:56
+msgid "MiB"
+msgstr "MiB"
+
+#. TRANSLATORS: abbreviation for gibibyte, 2**30 bytes
+#: src/bs_size.c:58
+msgid "GiB"
+msgstr "GiB"
+
+#. TRANSLATORS: abbreviation for tebibyte, 2**40 bytes
+#: src/bs_size.c:60
+msgid "TiB"
+msgstr "TiB"
+
+#. TRANSLATORS: abbreviation for pebibyte, 2**50 bytes
+#: src/bs_size.c:62
+msgid "PiB"
+msgstr "PiB"
+
+#. TRANSLATORS: abbreviation for exbibyte, 2**60 bytes
+#: src/bs_size.c:64
+msgid "EiB"
+msgstr "EiB"
+
+#. TRANSLATORS: abbreviation for zebibyte, 2**70 bytes
+#: src/bs_size.c:66
+msgid "ZiB"
+msgstr "ZiB"
+
+#. TRANSLATORS: abbreviation for yobibyte, 2**80 bytes
+#: src/bs_size.c:68
+msgid "YiB"
+msgstr "YiB"
+
+#. TRANSLATORS: abbreviation for kilobyte, 10**3 bytes
+#: src/bs_size.c:75
+msgid "KB"
+msgstr "??????"
+
+#. TRANSLATORS: abbreviation for megabyte, 10**6 bytes
+#: src/bs_size.c:77
+msgid "MB"
+msgstr "??????"
+
+#. TRANSLATORS: abbreviation for gigabyte, 10**9 bytes
+#: src/bs_size.c:79
+msgid "GB"
+msgstr "??????"
+
+#. TRANSLATORS: abbreviation for terabyte, 10**12 bytes
+#: src/bs_size.c:81
+msgid "TB"
+msgstr "??????"
+
+#. TRANSLATORS: abbreviation for petabyte, 10**15 bytes
+#: src/bs_size.c:83
+msgid "PB"
+msgstr "??????"
+
+#. TRANSLATORS: abbreviation for exabyte, 10**18 bytes
+#: src/bs_size.c:85
+msgid "EB"
+msgstr "EB"
+
+#. TRANSLATORS: abbreviation for zettabyte, 10**21 bytes
+#: src/bs_size.c:87
+msgid "ZB"
+msgstr "ZB"
+
+#. TRANSLATORS: abbreviation for yottabyte, 10**24 bytes
+#: src/bs_size.c:89
+msgid "YB"
+msgstr "YB"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/hu.po new/libbytesize-2.5/po/hu.po
--- old/libbytesize-2.4/po/hu.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/hu.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2016-09-10 07:27+0000\n"
 "Last-Translator: Mesk?? Bal??zs <meskobal...@gmail.com>\n"
 "Language-Team: Hungarian\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/id.po new/libbytesize-2.5/po/id.po
--- old/libbytesize-2.4/po/id.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/id.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2017-06-15 09:17+0000\n"
 "Last-Translator: Andika Triwidada <and...@gmail.com>\n"
 "Language-Team: Indonesian\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/it.po new/libbytesize-2.5/po/it.po
--- old/libbytesize-2.4/po/it.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/it.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2017-04-12 02:49+0000\n"
 "Last-Translator: Luca Ciavatta <luca.ciava...@gmail.com>\n"
 "Language-Team: Italian\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/libbytesize.pot 
new/libbytesize-2.5/po/libbytesize.pot
--- old/libbytesize-2.4/po/libbytesize.pot      2020-07-31 08:11:29.000000000 
+0200
+++ new/libbytesize-2.5/po/libbytesize.pot      2021-01-27 14:58:13.000000000 
+0100
@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: libbytesize 2.4\n"
+"Project-Id-Version: libbytesize 2.5\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-07-31 08:11+0200\n"
+"POT-Creation-Date: 2021-01-27 14:58+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <l...@li.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/nl.po new/libbytesize-2.5/po/nl.po
--- old/libbytesize-2.4/po/nl.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/nl.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2016-10-11 02:55+0000\n"
 "Last-Translator: Geert Warrink <geert.warr...@onsnet.nu>\n"
 "Language-Team: Dutch\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/nn.po new/libbytesize-2.5/po/nn.po
--- old/libbytesize-2.4/po/nn.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/nn.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2018-09-01 06:27+0000\n"
 "Last-Translator: Andreas-Johann ?? Ulvestad <a...@aju.no>\n"
 "Language-Team: Norwegian Nynorsk\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/pl.po new/libbytesize-2.5/po/pl.po
--- old/libbytesize-2.4/po/pl.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/pl.po        2020-08-17 09:48:15.000000000 +0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2016-03-09 09:50+0000\n"
 "Last-Translator: Piotr Dr??g <piotrd...@gmail.com>\n"
 "Language-Team: Polish\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/pt.po new/libbytesize-2.5/po/pt.po
--- old/libbytesize-2.4/po/pt.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/pt.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2019-09-16 03:58+0000\n"
 "Last-Translator: Manuela Silva <mm...@sky.com>\n"
 "Language-Team: Portuguese\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/pt_BR.po 
new/libbytesize-2.5/po/pt_BR.po
--- old/libbytesize-2.4/po/pt_BR.po     2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/pt_BR.po     2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2016-09-06 09:18+0000\n"
 "Last-Translator: Emerson Santos <em3r...@linuxmail.org>\n"
 "Language-Team: Portuguese (Brazil)\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/ru.po new/libbytesize-2.5/po/ru.po
--- old/libbytesize-2.4/po/ru.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/ru.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2017-04-16 03:59+0000\n"
 "Last-Translator: Igor Gorbounov <igor.gorbou...@gmail.com>\n"
 "Language-Team: Russian\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/sk.po new/libbytesize-2.5/po/sk.po
--- old/libbytesize-2.4/po/sk.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/sk.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2016-10-11 05:59+0000\n"
 "Last-Translator: feonsu <feo...@gmail.com>\n"
 "Language-Team: Slovak\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/sq.po new/libbytesize-2.5/po/sq.po
--- old/libbytesize-2.4/po/sq.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/sq.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2016-09-09 02:26+0000\n"
 "Last-Translator: Anxhela Hyseni <anxhela.hyseni1...@gmail.com>\n"
 "Language-Team: Albanian\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/sv.po new/libbytesize-2.5/po/sv.po
--- old/libbytesize-2.4/po/sv.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/sv.po        2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2017-03-30 04:12+0000\n"
 "Last-Translator: G??ran Uddeborg <goe...@uddeborg.se>\n"
 "Language-Team: Swedish\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/tr.po new/libbytesize-2.5/po/tr.po
--- old/libbytesize-2.4/po/tr.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/tr.po        2020-08-17 09:48:15.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 2.2\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2020-03-24 18:38+0000\n"
 "Last-Translator: O??uz Ersen <oguzer...@protonmail.com>\n"
 "Language-Team: Turkish <https://translate.fedoraproject.org/projects/blivet/";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/uk.po new/libbytesize-2.5/po/uk.po
--- old/libbytesize-2.4/po/uk.po        2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/uk.po        2020-08-17 09:48:15.000000000 +0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2016-03-11 08:12+0000\n"
 "Last-Translator: \n"
 "Language-Team: Ukrainian\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/zh_CN.po 
new/libbytesize-2.5/po/zh_CN.po
--- old/libbytesize-2.4/po/zh_CN.po     2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/zh_CN.po     2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2017-04-11 05:28+0000\n"
 "Last-Translator: Charles Lee <lch...@gmail.com>\n"
 "Language-Team: Chinese (China)\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/po/zh_TW.po 
new/libbytesize-2.5/po/zh_TW.po
--- old/libbytesize-2.4/po/zh_TW.po     2020-07-27 10:00:59.000000000 +0200
+++ new/libbytesize-2.5/po/zh_TW.po     2020-08-17 09:48:15.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libbytesize 0.3\n"
 "Report-Msgid-Bugs-To: vtre...@redhat.com\n"
-"POT-Creation-Date: 2020-05-21 09:15+0200\n"
+"POT-Creation-Date: 2020-07-31 08:11+0200\n"
 "PO-Revision-Date: 2018-08-26 05:27+0000\n"
 "Last-Translator: Peter Pan <pan93...@gmail.com>\n"
 "Language-Team: Chinese (Taiwan)\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/src/Makefile.in 
new/libbytesize-2.5/src/Makefile.in
--- old/libbytesize-2.4/src/Makefile.in 2020-07-31 08:11:26.000000000 +0200
+++ new/libbytesize-2.5/src/Makefile.in 2021-01-27 14:58:11.000000000 +0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# Makefile.in generated by automake 1.16.2 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/src/python/Makefile.in 
new/libbytesize-2.5/src/python/Makefile.in
--- old/libbytesize-2.4/src/python/Makefile.in  2020-07-31 08:11:26.000000000 
+0200
+++ new/libbytesize-2.5/src/python/Makefile.in  2021-01-27 14:58:11.000000000 
+0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# Makefile.in generated by automake 1.16.2 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/test-driver 
new/libbytesize-2.5/test-driver
--- old/libbytesize-2.4/test-driver     2020-07-31 08:11:00.000000000 +0200
+++ new/libbytesize-2.5/test-driver     2021-01-27 14:57:54.000000000 +0100
@@ -3,7 +3,7 @@
 
 scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 2011-2018 Free Software Foundation, Inc.
+# Copyright (C) 2011-2020 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/tests/Makefile.in 
new/libbytesize-2.5/tests/Makefile.in
--- old/libbytesize-2.4/tests/Makefile.in       2020-07-31 08:11:26.000000000 
+0200
+++ new/libbytesize-2.5/tests/Makefile.in       2021-01-27 14:58:11.000000000 
+0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# Makefile.in generated by automake 1.16.2 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/tools/Makefile.in 
new/libbytesize-2.5/tools/Makefile.in
--- old/libbytesize-2.4/tools/Makefile.in       2020-07-31 08:11:26.000000000 
+0200
+++ new/libbytesize-2.5/tools/Makefile.in       2021-01-27 14:58:11.000000000 
+0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# Makefile.in generated by automake 1.16.2 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/tools/bs_calc.py 
new/libbytesize-2.5/tools/bs_calc.py
--- old/libbytesize-2.4/tools/bs_calc.py        2020-07-31 08:11:29.000000000 
+0200
+++ new/libbytesize-2.5/tools/bs_calc.py        2021-01-27 14:58:13.000000000 
+0100
@@ -13,6 +13,7 @@
 _DOUBLE_OPERATORS = {"/", "*"}  # // and ** are valid operators too
 _EXP_OPERATORS = {"-", "+"}     # 1e+2, 1e-2
 
+
 def _get_operand(op_str):
     try:
         return int(op_str)
@@ -68,7 +69,9 @@
     # TODO: support configurable n_places (aligned printing is not so easy 
then)
     n_places = 2
     if isinstance(result, Size):
-        if args.unit is not None:
+        if args.human_readable:
+            print(result.human_readable())
+        elif args.unit is not None:
             value = result.convert_to(args.unit)
             if int(value) == value:
                 print("%d %s" % (int(value), args.unit))
@@ -90,7 +93,7 @@
 
 def _main():
     ap = ArgumentParser(epilog="Report issues at 
https://github.com/storaged-project/libbytesize/issues";)
-    ap.add_argument("--version", action="version", version="2.4")
+    ap.add_argument("--version", action="version", version="2.5")
     ap.add_argument("-u", "--unit", choices=(b_units + d_units),
                     help="Unit to show the result in")
     ap.add_argument("-b", "-B", dest="unit", const="B",
@@ -103,9 +106,15 @@
         ap.add_argument("--" + d_unit,
                         dest="unit", const=d_unit,
                         help="Show result in " + d_unit, action="store_const")
+    ap.add_argument("-H", "--human-readable", dest="human_readable",
+                    help="Show only single 'best' result", action="store_true")
     ap.add_argument(metavar="EXPRESSION_PART", dest="expressions", nargs="+")
 
-    args = ap.parse_args()
+    if not sys.stdin.isatty():
+        stdin = sys.stdin.read().splitlines()
+        args = ap.parse_args(sys.argv[1:] + stdin)
+    else:
+        args = ap.parse_args()
 
     try:
         tokens = _tokenize(" ".join(args.expressions))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/tools/bs_calc.py.in 
new/libbytesize-2.5/tools/bs_calc.py.in
--- old/libbytesize-2.4/tools/bs_calc.py.in     2020-05-20 10:17:23.000000000 
+0200
+++ new/libbytesize-2.5/tools/bs_calc.py.in     2020-11-27 14:39:15.000000000 
+0100
@@ -13,6 +13,7 @@
 _DOUBLE_OPERATORS = {"/", "*"}  # // and ** are valid operators too
 _EXP_OPERATORS = {"-", "+"}     # 1e+2, 1e-2
 
+
 def _get_operand(op_str):
     try:
         return int(op_str)
@@ -68,7 +69,9 @@
     # TODO: support configurable n_places (aligned printing is not so easy 
then)
     n_places = 2
     if isinstance(result, Size):
-        if args.unit is not None:
+        if args.human_readable:
+            print(result.human_readable())
+        elif args.unit is not None:
             value = result.convert_to(args.unit)
             if int(value) == value:
                 print("%d %s" % (int(value), args.unit))
@@ -103,9 +106,15 @@
         ap.add_argument("--" + d_unit,
                         dest="unit", const=d_unit,
                         help="Show result in " + d_unit, action="store_const")
+    ap.add_argument("-H", "--human-readable", dest="human_readable",
+                    help="Show only single 'best' result", action="store_true")
     ap.add_argument(metavar="EXPRESSION_PART", dest="expressions", nargs="+")
 
-    args = ap.parse_args()
+    if not sys.stdin.isatty():
+        stdin = sys.stdin.read().splitlines()
+        args = ap.parse_args(sys.argv[1:] + stdin)
+    else:
+        args = ap.parse_args()
 
     try:
         tokens = _tokenize(" ".join(args.expressions))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libbytesize-2.4/tools/bscalc.man 
new/libbytesize-2.5/tools/bscalc.man
--- old/libbytesize-2.4/tools/bscalc.man        2020-07-31 08:12:41.000000000 
+0200
+++ new/libbytesize-2.5/tools/bscalc.man        2021-01-27 15:02:49.000000000 
+0100
@@ -1,13 +1,13 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.14.
-.TH BSCALC "1" "July 2020" "bscalc 2.4" "User Commands"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.16.
+.TH BSCALC "1" "January 2021" "bscalc 2.5" "User Commands"
 .SH NAME
-bscalc \- manual page for bscalc 2.4
+bscalc \- manual page for bscalc 2.5
 .SH DESCRIPTION
 usage: bscalc [\-h] [\-\-version]
 .IP
 [\-u {B,KiB,MiB,GiB,TiB,PiB,EiB,KB,MB,GB,TB,PB,EB}] [\-b] [\-k]
 [\-m] [\-g] [\-t] [\-p] [\-e] [\-\-KB] [\-\-MB] [\-\-GB] [\-\-TB] [\-\-PB]
-[\-\-EB]
+[\-\-EB] [\-H]
 EXPRESSION_PART [EXPRESSION_PART ...]
 .SS "positional arguments:"
 .IP
@@ -61,5 +61,8 @@
 .TP
 \fB\-\-EB\fR
 Show result in EB
+.TP
+\fB\-H\fR, \fB\-\-human\-readable\fR
+Show only single 'best' result
 .PP
 Report issues at https://github.com/storaged\-project/libbytesize/issues

Reply via email to