Blame SOURCES/libbytesize-tests.patch

1519b5
From cae191ae459e046dc317b7bc57941e3f1cec910d Mon Sep 17 00:00:00 2001
1519b5
From: Vojtech Trefny <vtrefny@redhat.com>
1519b5
Date: Fri, 10 Aug 2018 08:35:51 +0200
1519b5
Subject: [PATCH 1/4] Run all libbytesize tests from one script
1519b5
1519b5
This also makes sure we run tests with all supported python versions.
1519b5
---
1519b5
 tests/Makefile.am                | 2 +-
1519b5
 tests/libbytesize_unittest.sh.in | 2 ++
1519b5
 tests/libbytesize_unittest.sh    | 2 ++
1519b5
 3 files changed, 5 insertions(+), 1 deletion(-)
1519b5
1519b5
diff --git a/tests/Makefile.am b/tests/Makefile.am
1519b5
index 1f59f64..1e51834 100644
1519b5
--- a/tests/Makefile.am
1519b5
+++ b/tests/Makefile.am
1519b5
@@ -2,7 +2,7 @@ AM_TESTS_ENVIRONMENT = top_srcdir="$(top_srcdir)" top_builddir="$(top_builddir)"
1519b5
1519b5
 dist_noinst_SCRIPTS = libbytesize_unittest.sh libbytesize_unittest.py lbs_py_override_unittest.py locale_utils.py testenv.sh canary_tests.sh
1519b5
1519b5
-TESTS = libbytesize_unittest.sh lbs_py_override_unittest.py canary_tests.sh
1519b5
+TESTS = libbytesize_unittest.sh canary_tests.sh
1519b5
1519b5
 # Add the translation-canary source files to the tarball
1519b5
 EXTRA_DIST = $(top_srcdir)/translation-canary/translation_canary/*.py \
1519b5
diff --git a/tests/libbytesize_unittest.sh.in b/tests/libbytesize_unittest.sh.in
1519b5
index 7896675..e5ca56d 100644
1519b5
--- a/tests/libbytesize_unittest.sh.in
1519b5
+++ b/tests/libbytesize_unittest.sh.in
1519b5
@@ -9,10 +9,12 @@ fi
1519b5
1519b5
 if [ @WITH_PYTHON2@ = 1 ]; then
1519b5
     python2 ${srcdir}/libbytesize_unittest.py || status=1
1519b5
+    python2 ${srcdir}/lbs_py_override_unittest.py || status=1
1519b5
 fi
1519b5
1519b5
 if [ @WITH_PYTHON3@ = 1 ]; then
1519b5
     python3 ${srcdir}/libbytesize_unittest.py || status=1
1519b5
+    python3 ${srcdir}/lbs_py_override_unittest.py || status=1
1519b5
 fi
1519b5
1519b5
 if [ @WITH_PYTHON2@ = 1 ]; then
1519b5
diff --git a/tests/libbytesize_unittest.sh b/tests/libbytesize_unittest.sh
1519b5
index 7896675..e5ca56d 100644
1519b5
--- a/tests/libbytesize_unittest.sh
1519b5
+++ b/tests/libbytesize_unittest.sh
1519b5
@@ -9,10 +9,12 @@ fi
1519b5
1519b5
 if [ 1 = 1 ]; then
1519b5
     python2 ${srcdir}/libbytesize_unittest.py || status=1
1519b5
+    python2 ${srcdir}/lbs_py_override_unittest.py || status=1
1519b5
 fi
1519b5
1519b5
 if [ 1 = 1 ]; then
1519b5
     python3 ${srcdir}/libbytesize_unittest.py || status=1
1519b5
+    python3 ${srcdir}/lbs_py_override_unittest.py || status=1
1519b5
 fi
1519b5
1519b5
 if [ 1 = 1 ]; then
1519b5
--
1519b5
2.20.1
1519b5
1519b5
1519b5
From 2c376a25813bf6966ec9c6da5a558dd5f4edc423 Mon Sep 17 00:00:00 2001
1519b5
From: Vojtech Trefny <vtrefny@redhat.com>
1519b5
Date: Tue, 5 Mar 2019 14:20:14 +0100
1519b5
Subject: [PATCH 2/4] Add all "public" python API  symbols to __init__.py
1519b5
1519b5
So it can be imported as "from bytesize import xyz" instead of
1519b5
"from bytesize.bytesize import xyz".
1519b5
---
1519b5
 src/python/__init__.py | 3 +++
1519b5
 1 file changed, 3 insertions(+)
1519b5
1519b5
diff --git a/src/python/__init__.py b/src/python/__init__.py
1519b5
index 6ab80dc..57403d5 100644
1519b5
--- a/src/python/__init__.py
1519b5
+++ b/src/python/__init__.py
1519b5
@@ -1 +1,4 @@
1519b5
 from .bytesize import Size
1519b5
+from .bytesize import B, KiB, MiB, GiB, TiB, PiB, EiB, ZiB, YiB, KB, MB, GB, TB, PB, EB, ZB, YB
1519b5
+from .bytesize import ROUND_UP, ROUND_DOWN, ROUND_HALF_UP
1519b5
+from .bytesize import SizeError, InvalidSpecError, OverflowError, ZeroDivisionError
1519b5
--
1519b5
2.20.1
1519b5
1519b5
1519b5
From f07701b397907cefd7e43063b76277cc991f5339 Mon Sep 17 00:00:00 2001
1519b5
From: Vojtech Trefny <vtrefny@redhat.com>
1519b5
Date: Tue, 5 Mar 2019 14:55:20 +0100
1519b5
Subject: [PATCH 3/4] Allow running tests using installed library
1519b5
1519b5
We need to be able to import the SizeStruct object from installed
1519b5
python-bytesize.
1519b5
---
1519b5
 tests/libbytesize_unittest.py | 10 ++++++++--
1519b5
 1 file changed, 8 insertions(+), 2 deletions(-)
1519b5
1519b5
diff --git a/tests/libbytesize_unittest.py b/tests/libbytesize_unittest.py
1519b5
index 5e63778..d7400be 100755
1519b5
--- a/tests/libbytesize_unittest.py
1519b5
+++ b/tests/libbytesize_unittest.py
1519b5
@@ -8,7 +8,14 @@ import ctypes
1519b5
1519b5
 from locale_utils import get_avail_locales, requires_locales
1519b5
1519b5
-from bytesize import SizeStruct, KiB, GiB, ROUND_UP, ROUND_DOWN, ROUND_HALF_UP, OverflowError
1519b5
+from bytesize import KiB, GiB, ROUND_UP, ROUND_DOWN, ROUND_HALF_UP, OverflowError
1519b5
+
1519b5
+# SizeStruct is part of the 'private' API and needs to be imported differently
1519b5
+# when running from locally build tree and when using installed library
1519b5
+try:
1519b5
+    from bytesize import SizeStruct
1519b5
+except ImportError:
1519b5
+    from bytesize.bytesize import SizeStruct
1519b5
1519b5
 DEFAULT_LOCALE = "en_US.utf8"
1519b5
1519b5
@@ -759,4 +766,3 @@ if __name__=='__main__':
1519b5
         sys.argv = [sys.argv[0]]
1519b5
     unittest.main()
1519b5
 #endif
1519b5
-
1519b5
--
1519b5
2.20.1
1519b5
1519b5
1519b5
From 4d692ac4eb178121c4e91ab881645aef94d65ed4 Mon Sep 17 00:00:00 2001
1519b5
From: Vojtech Trefny <vtrefny@redhat.com>
1519b5
Date: Wed, 6 Mar 2019 09:27:41 +0100
1519b5
Subject: [PATCH 4/4] Remove Python 2 support
1519b5
1519b5
Python 2 EOL is close and we are no longer shipping python2
1519b5
package in newest distributions, so it makes sense to remove
1519b5
Python 2 support entirely.
1519b5
---
1519b5
 Makefile.am                       |  2 +-
1519b5
 configure.ac                      | 16 ----------------
1519b5
 dist/libbytesize.spec.in          | 31 +------------------------------
1519b5
 src/python/Makefile.am            |  9 +--------
1519b5
 tests/lbs_py_override_unittest.py |  4 +---
1519b5
 tests/libbytesize_unittest.py     |  2 +-
1519b5
 tests/libbytesize_unittest.sh.in  |  9 ---------
1519b5
 tests/libbytesize_unittest.sh     |  9 ---------
1519b5
 8 files changed, 5 insertions(+), 77 deletions(-)
1519b5
1519b5
diff --git a/Makefile.am b/Makefile.am
1519b5
index 93279f2..1ac10bd 100644
1519b5
--- a/Makefile.am
1519b5
+++ b/Makefile.am
1519b5
@@ -38,7 +38,7 @@ dist-hook:
1519b5
 	done
1519b5
1519b5
 run-ipython: all
1519b5
-	LD_LIBRARY_PATH=${LIBDIRS} PYTHONPATH=$(PYTHONDIR) ipython
1519b5
+	LD_LIBRARY_PATH=${LIBDIRS} PYTHONPATH=$(PYTHONDIR) ipython3
1519b5
1519b5
 check-requires:
1519b5
 	@echo "*** Checking if the dependencies required for testing and analysis are available ***"
1519b5
diff --git a/configure.ac b/configure.ac
1519b5
index 749d929..c2306dc 100644
1519b5
--- a/configure.ac
1519b5
+++ b/configure.ac
1519b5
@@ -50,22 +50,6 @@ AC_CHECK_HEADERS([langinfo.h gmp.h mpfr.h stdint.h stdbool.h stdarg.h string.h s
1519b5
                  [LIBBYTESIZE_SOFT_FAILURE([Header file $ac_header not found.])],
1519b5
                  [])
1519b5
1519b5
-AC_ARG_WITH([python2],
1519b5
-    AS_HELP_STRING([--with-python2], [support python2 @<:@default=check@:>@]),
1519b5
-    [],
1519b5
-    [with_python2=check])
1519b5
-
1519b5
-AC_SUBST(WITH_PYTHON2, 0)
1519b5
-if test "x$with_python2" != "xno"; then
1519b5
-    AC_PATH_PROG([python2], [python2], [no])
1519b5
-    AS_IF([test "x$python2" == "xno"],
1519b5
-    [if test "x$with_python2" = "xyes"; then
1519b5
-      LIBBYTESIZE_SOFT_FAILURE([Python2 support requested, but python2 is not available])
1519b5
-      fi],
1519b5
-    [AC_SUBST(WITH_PYTHON2, 1)])
1519b5
-fi
1519b5
-AM_CONDITIONAL(WITH_PYTHON2, test "x$with_python2" != "xno" -a "x$python2" != "xno")
1519b5
-
1519b5
 AC_ARG_WITH([python3],
1519b5
     AS_HELP_STRING([--with-python3], [support python3 @<:@default=check@:>@]),
1519b5
     [],
1519b5
diff --git a/dist/libbytesize.spec.in b/dist/libbytesize.spec.in
1519b5
index 3f306f9..9658a7c 100644
1519b5
--- a/dist/libbytesize.spec.in
1519b5
+++ b/dist/libbytesize.spec.in
1519b5
@@ -1,5 +1,4 @@
1519b5
 %define realname bytesize
1519b5
-%define with_python2 @WITH_PYTHON2@
1519b5
 %define with_python3 @WITH_PYTHON3@
1519b5
 %define with_gtk_doc @WITH_GTK_DOC@
1519b5
1519b5
@@ -8,13 +7,7 @@
1519b5
 %define python3_opts --without-python3
1519b5
 %endif
1519b5
1519b5
-# python2 is not available on RHEL > 7 and not needed on Fedora > 28
1519b5
-%if 0%{?rhel} > 7 || 0%{?fedora} > 28 || %{with_python2} == 0
1519b5
-%define with_python2 0
1519b5
-%define python2_opts --without-python2
1519b5
-%endif
1519b5
-
1519b5
-%define configure_opts %{?python3_opts} %{?python2_opts}
1519b5
+%define configure_opts %{?python3_opts}
1519b5
1519b5
 Name:        libbytesize
1519b5
 Version:     1.4
1519b5
@@ -29,9 +22,6 @@ BuildRequires: gmp-devel
1519b5
 BuildRequires: mpfr-devel
1519b5
 BuildRequires: pcre-devel
1519b5
 BuildRequires: gettext-devel
1519b5
-%if %{with_python2}
1519b5
-BuildRequires: python2-devel
1519b5
-%endif
1519b5
 %if %{with_python3}
1519b5
 BuildRequires: python3-devel
1519b5
 %endif
1519b5
@@ -53,19 +43,6 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
1519b5
 This package contains header files and pkg-config files needed for development
1519b5
 with the libbytesize library.
1519b5
1519b5
-%if %{with_python2}
1519b5
-%package -n python2-%{realname}
1519b5
-Summary: Python 2 bindings for libbytesize
1519b5
-%{?python_provide:%python_provide python2-%{realname}}
1519b5
-%{?python_provide:%python_provide python2-libbytesize}
1519b5
-Requires: %{name}%{?_isa} = %{version}-%{release}
1519b5
-Requires: python2-six
1519b5
-
1519b5
-%description -n python2-%{realname}
1519b5
-This package contains Python 2 bindings for libbytesize making the use of
1519b5
-the library from Python 2 easier and more convenient.
1519b5
-%endif
1519b5
-
1519b5
 %if %{with_python3}
1519b5
 %package -n python3-%{realname}
1519b5
 Summary: Python 3 bindings for libbytesize
1519b5
@@ -108,12 +85,6 @@ find %{buildroot} -type f -name "*.la" | xargs %{__rm}
1519b5
 %{_datadir}/gtk-doc/html/libbytesize
1519b5
 %endif
1519b5
1519b5
-%if %{with_python2}
1519b5
-%files -n python2-%{realname}
1519b5
-%dir %{python2_sitearch}/bytesize
1519b5
-%{python2_sitearch}/bytesize/*
1519b5
-%endif
1519b5
-
1519b5
 %if %{with_python3}
1519b5
 %files -n python3-%{realname}
1519b5
 %dir %{python3_sitearch}/bytesize
1519b5
diff --git a/src/python/Makefile.am b/src/python/Makefile.am
1519b5
index e0261a6..cb2b197 100644
1519b5
--- a/src/python/Makefile.am
1519b5
+++ b/src/python/Makefile.am
1519b5
@@ -1,14 +1,7 @@
1519b5
-if WITH_PYTHON2
1519b5
-pylibdir = $(shell python -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(1,0,prefix='${exec_prefix}'))")
1519b5
-
1519b5
-pybytesizedir     = $(pylibdir)/bytesize
1519b5
-dist_pybytesize_DATA = bytesize.py __init__.py
1519b5
-endif
1519b5
-
1519b5
 if WITH_PYTHON3
1519b5
 py3libdir = $(shell python3 -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(1,0,prefix='${exec_prefix}'))")
1519b5
 py3bytesizedir    = $(py3libdir)/bytesize
1519b5
-nodist_py3bytesize_DATA = bytesize.py __init__.py
1519b5
+dist_py3bytesize_DATA = bytesize.py __init__.py
1519b5
 endif
1519b5
1519b5
 MAINTAINERCLEANFILES = Makefile.in
1519b5
diff --git a/tests/lbs_py_override_unittest.py b/tests/lbs_py_override_unittest.py
1519b5
index c5f3cb2..9a219f2 100755
1519b5
--- a/tests/lbs_py_override_unittest.py
1519b5
+++ b/tests/lbs_py_override_unittest.py
1519b5
@@ -1,4 +1,4 @@
1519b5
-#!/usr/bin/env python
1519b5
+#!/usr/bin/python3
1519b5
 # -*- coding: utf-8 -*-
1519b5
1519b5
 import unittest
1519b5
@@ -306,5 +306,3 @@ class SizeTestCase(unittest.TestCase):
1519b5
 if __name__=='__main__':
1519b5
     unittest.main()
1519b5
 #endif
1519b5
-
1519b5
-
1519b5
diff --git a/tests/libbytesize_unittest.py b/tests/libbytesize_unittest.py
1519b5
index d7400be..1c57d2a 100755
1519b5
--- a/tests/libbytesize_unittest.py
1519b5
+++ b/tests/libbytesize_unittest.py
1519b5
@@ -1,4 +1,4 @@
1519b5
-#!/usr/bin/env python2
1519b5
+#!/usr/bin/python3
1519b5
 # -*- coding: utf-8 -*-
1519b5
1519b5
 import locale
1519b5
diff --git a/tests/libbytesize_unittest.sh.in b/tests/libbytesize_unittest.sh.in
1519b5
index e5ca56d..816bc28 100644
1519b5
--- a/tests/libbytesize_unittest.sh.in
1519b5
+++ b/tests/libbytesize_unittest.sh.in
1519b5
@@ -7,20 +7,11 @@ if [ -z "$srcdir" ]; then
1519b5
     srcdir="$(dirname "$0")"
1519b5
 fi
1519b5
1519b5
-if [ @WITH_PYTHON2@ = 1 ]; then
1519b5
-    python2 ${srcdir}/libbytesize_unittest.py || status=1
1519b5
-    python2 ${srcdir}/lbs_py_override_unittest.py || status=1
1519b5
-fi
1519b5
-
1519b5
 if [ @WITH_PYTHON3@ = 1 ]; then
1519b5
     python3 ${srcdir}/libbytesize_unittest.py || status=1
1519b5
     python3 ${srcdir}/lbs_py_override_unittest.py || status=1
1519b5
 fi
1519b5
1519b5
-if [ @WITH_PYTHON2@ = 1 ]; then
1519b5
-    python2 ${srcdir}/libbytesize_unittest.py fr_FR.UTF8 || status=1
1519b5
-fi
1519b5
-
1519b5
 if [ @WITH_PYTHON3@ = 1 ]; then
1519b5
     python3 ${srcdir}/libbytesize_unittest.py fr_FR.UTF8 || status=1
1519b5
 fi
1519b5
diff --git a/tests/libbytesize_unittest.sh b/tests/libbytesize_unittest.sh
1519b5
index e5ca56d..816bc28 100644
1519b5
--- a/tests/libbytesize_unittest.sh
1519b5
+++ b/tests/libbytesize_unittest.sh
1519b5
@@ -7,20 +7,11 @@ if [ -z "$srcdir" ]; then
1519b5
     srcdir="$(dirname "$0")"
1519b5
 fi
1519b5
1519b5
-if [ 1 = 1 ]; then
1519b5
-    python2 ${srcdir}/libbytesize_unittest.py || status=1
1519b5
-    python2 ${srcdir}/lbs_py_override_unittest.py || status=1
1519b5
-fi
1519b5
-
1519b5
 if [ 1 = 1 ]; then
1519b5
     python3 ${srcdir}/libbytesize_unittest.py || status=1
1519b5
     python3 ${srcdir}/lbs_py_override_unittest.py || status=1
1519b5
 fi
1519b5
1519b5
-if [ 1 = 1 ]; then
1519b5
-    python2 ${srcdir}/libbytesize_unittest.py fr_FR.UTF8 || status=1
1519b5
-fi
1519b5
-
1519b5
 if [ 1 = 1 ]; then
1519b5
     python3 ${srcdir}/libbytesize_unittest.py fr_FR.UTF8 || status=1
1519b5
 fi
1519b5
--
1519b5
2.20.1