Thomas Petazzoni
f75239d1b5
package/pkg-python: use host-python3-setuptools when needed
...
When a package uses "setuptools" as its <pkg>_SETUP_TYPE, we currently
add a dependency on host-python-setuptools. This means that:
(1) When BR2_PACKAGE_PYTHON=y, the default host Python version is
Python 2.x, and host-python-setuptools is installed for
host-python.
(2) When BR2_PACKAGE_PYTHON3=y, the default host Python version is
Python 3.x, and host-python-setuptools is installed for
host-python3.
(3) When no target Python interpreter is selected, the default host
Python version is Python 2.x, and host-python-setuptools is
installed for host-python.
Situations (1) and (3) are problematic for host Python packages that
need Python 3.x. Such packages use <pkg>_NEEDS_HOST_PYTHON = python3,
but if they use setuptools as their setup type, they will not find
setuptools installed for host-python3 in situations (1) and (3)
described above.
We currently have a single package that sets <pkg>_NEEDS_HOST_PYTHON =
python3: host-meson. host-meson generally works because if setuptools
is not found, it falls back to distutils, which is part of the
standard Python library. However, if there is a setuptools version
installed system-wide, it may be picked up, but may not necessarily be
the same version as Buildroot setuptools, potentially causing
problems.
This commit makes the necessary change to the python-package
infrastructure to fix this behavior, by identifying the following
cases:
- When a host Python package says <pkg>_NEEDS_HOST_PYTHON = python3,
then we know it wants setuptools installed for host-python3, so we
use host-python3-setuptools.
- When a host Python package says <pkg>_NEEDS_HOST_PYTHON = python2,
then we known it wants setuptools installed for host-python, so we
use host-python-setuptools.
- When BR2_PACKAGE_PYTHON3=y, and we have a target package, or a host
package with no NEEDS_HOST_PYTHON option, then we want setuptools
installed for host-python3, so we use host-python3-setuptools.
- When BR2_PACKAGE_PYTHON=y or no target interpreter is enabled at
all, and we have a target package, or a host package with no
NEEDS_HOST_PYTHON option, then we want setuptools for host-python,
so we use host-python-setuptools.
To make this happen, we use host-python3-setuptools introduced in a
previous commit, but we also change host-python-setuptools to force
its installation for host-python. The latter is needed if you build
with BR2_PACKAGE_PYTHON3=y but want to install a Python-based package
that has NEEDS_HOST_PYTHON=python2.
There is one single package that needs be adjusted following this:
lirc-tools, because it is not using the python-package
infrastructure. It directly depends on host-python-setuptools, which
no longer works because host-python-setuptools now only installs for
Python 2.x, while lirc-tools Python binding only supports Python
3.x. Switching to host-python3-setuptools solves this problem.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
Reviewed-by: Asaf Kahlon <asafka7@gmail.com >
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2019-01-01 11:16:10 +01:00
..
2018-12-30 17:00:22 +01:00
2018-12-13 21:58:42 +01:00
2018-12-13 21:21:39 +01:00
2018-11-18 20:52:48 +01:00
2018-12-14 22:38:19 +01:00
2018-11-24 10:29:26 +01:00
2018-12-30 16:38:11 +01:00
2018-12-31 17:45:01 +01:00
2018-12-26 21:12:17 +01:00
2018-12-31 13:31:50 +01:00
2018-11-09 14:08:02 +01:00
2018-11-03 22:22:49 +01:00
2018-12-16 21:17:26 +01:00
2018-12-30 22:32:53 +01:00
2018-11-01 22:25:45 +01:00
2018-11-07 23:06:32 +01:00
2018-11-07 23:04:06 +01:00
2018-12-06 21:05:06 +01:00
2018-12-13 21:22:17 +01:00
2018-10-21 16:35:31 +01:00
2018-10-26 17:09:51 +02:00
2018-11-23 21:47:50 +01:00
2018-10-26 11:59:46 +02:00
2018-12-10 22:14:05 +01:00
2018-12-01 22:20:30 +01:00
2018-10-21 14:36:32 +01:00
2018-11-01 14:52:15 +01:00
2018-12-13 21:19:33 +01:00
2018-12-31 17:45:01 +01:00
2018-12-06 21:44:43 +01:00
2018-12-13 21:31:26 +01:00
2018-12-27 16:38:46 +01:00
2018-12-03 23:08:20 +01:00
2019-01-01 11:13:49 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-13 21:38:41 +01:00
2018-11-29 22:39:00 +01:00
2018-12-31 17:45:01 +01:00
2018-12-02 08:16:10 +01:00
2018-11-02 22:41:03 +01:00
2018-11-29 22:55:27 +01:00
2018-10-26 10:34:04 +02:00
2018-12-28 11:51:36 +01:00
2018-12-03 21:24:21 +01:00
2018-12-16 12:22:14 +01:00
2018-12-30 16:57:14 +01:00
2018-12-03 21:11:03 +01:00
2018-12-09 17:38:50 +01:00
2018-11-24 10:13:10 +01:00
2018-11-24 10:13:10 +01:00
2018-11-17 21:58:50 +01:00
2018-12-31 14:33:33 +01:00
2018-12-03 13:38:00 +01:00
2018-11-26 17:26:13 +01:00
2018-12-30 17:07:23 +01:00
2018-11-17 22:04:04 +01:00
2018-12-06 21:11:36 +01:00
2018-11-13 09:16:58 +01:00
2018-12-14 21:52:53 +01:00
2018-11-28 22:38:20 +01:00
2018-11-28 22:37:45 +01:00
2018-11-28 22:38:17 +01:00
2018-11-28 22:38:08 +01:00
2018-11-28 22:38:14 +01:00
2018-11-28 22:37:50 +01:00
2018-11-28 22:38:11 +01:00
2018-11-28 22:37:48 +01:00
2018-11-28 22:37:41 +01:00
2018-11-28 22:37:55 +01:00
2018-11-28 22:38:02 +01:00
2018-11-28 22:38:05 +01:00
2018-11-28 22:37:59 +01:00
2018-11-12 23:00:00 +01:00
2018-12-14 22:43:52 +01:00
2018-12-30 22:34:06 +01:00
2018-11-03 15:02:07 +01:00
2018-11-25 09:32:06 +01:00
2018-11-04 22:36:13 +01:00
2018-11-19 16:07:21 +01:00
2018-11-18 19:02:05 +01:00
2018-12-03 09:08:57 +01:00
2018-12-27 17:09:56 +01:00
2018-11-29 17:18:31 +01:00
2018-11-29 21:35:38 +01:00
2018-11-21 20:56:42 +01:00
2018-12-10 11:48:22 +01:00
2018-12-26 21:34:10 +01:00
2018-11-29 19:57:09 +01:00
2018-10-26 21:16:56 +02:00
2018-12-31 13:52:56 +01:00
2018-12-02 08:16:10 +01:00
2018-11-01 13:56:44 +01:00
2018-12-03 21:25:58 +01:00
2018-12-16 12:17:47 +01:00
2018-10-27 22:59:15 +02:00
2018-12-31 15:52:12 +01:00
2018-11-18 08:35:29 +01:00
2018-11-13 00:08:27 +01:00
2018-10-21 19:11:20 +02:00
2018-11-24 15:14:53 +01:00
2018-12-16 12:24:14 +01:00
2018-12-13 22:08:33 +01:00
2018-11-05 23:20:55 +01:00
2018-10-21 18:16:29 +02:00
2018-11-23 10:48:39 +01:00
2018-12-11 23:09:33 +01:00
2018-10-27 22:58:22 +02:00
2018-11-12 23:00:29 +01:00
2018-11-25 09:21:16 +01:00
2018-11-12 22:48:23 +01:00
2018-12-14 21:53:00 +01:00
2018-12-27 16:41:55 +01:00
2018-11-19 21:40:25 +01:00
2019-01-01 11:11:43 +01:00
2018-11-25 09:39:20 +01:00
2018-12-06 22:04:37 +01:00
2018-12-14 21:28:48 +01:00
2018-10-28 08:14:28 +01:00
2018-11-16 23:12:41 +01:00
2018-12-03 22:28:38 +01:00
2018-11-20 23:12:48 +01:00
2018-12-27 16:41:57 +01:00
2018-12-03 21:26:22 +01:00
2018-11-29 22:50:47 +01:00
2018-12-31 14:14:22 +01:00
2018-10-26 21:14:34 +02:00
2018-11-09 22:16:09 +01:00
2018-12-26 22:15:28 +01:00
2018-11-01 13:55:13 +01:00
2018-12-16 21:09:27 +01:00
2018-12-30 22:45:38 +01:00
2018-11-01 13:53:36 +01:00
2018-12-13 21:48:51 +01:00
2018-11-09 21:58:46 +01:00
2018-12-15 09:49:57 +01:00
2018-12-02 08:16:10 +01:00
2018-12-21 22:52:06 +01:00
2018-12-06 21:21:03 +01:00
2018-10-28 17:36:17 +01:00
2018-11-24 11:24:59 +01:00
2018-12-16 21:52:30 +01:00
2018-12-09 00:15:32 +01:00
2018-12-02 08:16:10 +01:00
2018-12-08 23:38:33 +01:00
2018-11-09 22:28:28 +01:00
2018-11-29 22:34:25 +01:00
2018-12-02 08:16:10 +01:00
2018-11-01 13:53:49 +01:00
2018-11-13 09:16:13 +01:00
2018-11-13 09:16:28 +01:00
2018-12-10 11:42:14 +01:00
2018-12-08 09:22:56 +01:00
2018-11-21 22:31:28 +01:00
2018-12-16 12:48:58 +01:00
2018-12-13 22:11:37 +01:00
2018-12-09 22:23:08 +01:00
2018-11-17 12:58:58 +01:00
2018-10-24 01:18:13 +02:00
2018-12-27 16:41:57 +01:00
2018-11-13 21:22:12 +01:00
2018-11-17 21:59:47 +01:00
2018-11-17 21:59:54 +01:00
2018-11-16 22:30:07 +01:00
2018-11-24 18:33:52 +01:00
2018-12-14 22:46:58 +01:00
2018-11-04 21:28:29 +01:00
2018-11-19 22:08:14 +01:00
2018-11-30 09:43:41 +01:00
2018-12-01 23:20:11 +01:00
2018-10-26 17:15:40 +02:00
2018-10-28 08:12:30 +01:00
2018-12-16 21:17:35 +01:00
2018-12-13 21:22:39 +01:00
2018-12-13 21:48:21 +01:00
2018-10-31 18:08:16 +01:00
2018-10-31 12:52:24 +01:00
2018-10-31 10:52:14 +01:00
2018-12-28 11:47:59 +01:00
2018-12-16 16:22:03 +01:00
2018-11-13 20:58:05 +01:00
2018-11-24 11:12:47 +01:00
2018-12-13 21:18:00 +01:00
2019-01-01 11:16:10 +01:00
2018-10-23 16:31:03 +02:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:43:45 +01:00
2018-12-13 22:20:22 +01:00
2018-12-27 16:38:41 +01:00
2018-12-28 11:59:54 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-11-19 22:13:30 +01:00
2018-12-09 17:38:50 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-11 23:08:03 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-30 14:48:33 +01:00
2018-12-30 15:05:48 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-09 17:06:35 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:43:45 +01:00
2019-01-01 11:13:03 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-12-31 17:45:01 +01:00
2018-11-23 11:10:51 +01:00
2018-12-14 22:04:49 +01:00
2018-12-06 21:20:00 +01:00
2018-12-06 21:57:11 +01:00
2018-11-20 08:17:43 +01:00
2018-12-30 16:33:03 +01:00
2018-11-17 21:57:24 +01:00
2018-12-26 22:33:27 +01:00
2018-12-16 12:15:36 +01:00
2018-12-16 12:15:36 +01:00
2018-12-28 11:52:58 +01:00
2018-11-30 09:52:44 +01:00
2018-12-03 22:28:38 +01:00
2018-10-28 08:02:39 +01:00
2018-11-25 22:01:28 +01:00
2018-10-21 18:01:28 +02:00
2018-12-21 22:51:59 +01:00
2018-11-21 20:55:34 +01:00
2018-11-09 22:27:51 +01:00
2018-11-09 22:28:11 +01:00
2018-12-09 17:38:50 +01:00
2018-12-02 08:16:10 +01:00
2018-12-30 16:29:17 +01:00
2018-11-24 11:21:39 +01:00
2018-11-04 12:49:25 +01:00
2018-10-26 21:28:31 +02:00
2018-11-11 21:25:13 +01:00
2018-10-30 20:56:10 +01:00
2018-12-21 15:40:29 +01:00
2018-11-20 08:56:32 +01:00
2018-11-29 17:22:33 +01:00
2018-12-28 11:51:23 +01:00
2018-10-30 22:50:30 +01:00
2018-11-02 10:48:52 +01:00
2018-11-13 21:59:04 +01:00
2018-12-13 22:20:00 +01:00
2018-11-05 23:18:28 +01:00
2018-12-10 11:47:50 +01:00
2018-10-21 01:50:35 +02:00
2018-10-21 01:50:35 +02:00
2018-12-03 23:07:55 +01:00
2018-11-01 23:00:40 +01:00
2018-10-21 16:29:36 +02:00
2018-11-16 23:28:50 +01:00
2018-12-31 14:33:32 +01:00
2018-10-30 22:48:22 +01:00
2018-12-08 23:01:20 +01:00
2018-12-31 17:59:52 +01:00
2018-10-26 10:34:18 +02:00
2018-11-16 23:11:21 +01:00
2018-12-16 16:26:51 +01:00
2018-11-01 14:51:30 +01:00
2018-12-03 13:30:29 +01:00
2018-11-01 14:41:01 +01:00
2018-10-24 00:33:49 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-10-24 00:33:49 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-10-24 00:33:49 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-10-24 00:33:49 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-10-24 00:33:49 +01:00
2018-10-24 00:33:49 +01:00
2018-10-24 00:33:49 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-10-24 00:33:49 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-10-26 21:20:15 +02:00
2018-11-01 14:41:01 +01:00
2018-10-24 00:33:49 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-10-24 00:33:49 +01:00
2018-10-24 00:33:49 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-10-24 00:33:49 +01:00
2018-11-29 19:55:32 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-10-24 00:33:49 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-11-01 14:41:01 +01:00
2018-12-28 14:04:00 +01:00
2018-12-31 17:15:01 +01:00
2018-12-16 16:39:59 +01:00
2018-12-21 16:34:59 +01:00
2018-11-28 00:08:20 +01:00
2018-11-08 20:55:19 +01:00
2018-11-01 14:23:29 +01:00
2018-12-06 22:05:25 +01:00
2018-12-09 17:34:03 +01:00
2018-12-09 16:54:26 +01:00
2018-12-31 15:58:00 +01:00
2018-12-27 17:14:28 +01:00
2019-01-01 11:15:35 +01:00
2018-11-13 10:34:09 +01:00
2018-12-26 22:23:57 +01:00
2018-12-08 23:57:34 +01:00
2018-12-09 00:12:23 +01:00
2018-12-08 23:55:33 +01:00
2018-12-08 23:51:46 +01:00
2018-12-08 23:53:36 +01:00
2018-12-09 00:14:03 +01:00
2018-12-09 17:11:16 +01:00
2018-11-01 13:33:07 +01:00
2018-12-18 22:48:09 +01:00
2018-12-14 21:29:17 +01:00
2018-10-30 21:10:52 +01:00
2018-11-13 22:44:02 +01:00
2018-11-30 09:01:24 +01:00
2018-11-25 09:35:34 +01:00
2018-12-14 21:30:21 +01:00
2018-10-27 22:58:56 +02:00
2018-12-05 22:57:44 +01:00
2018-12-21 14:53:56 +01:00
2018-10-27 22:58:13 +02:00
2018-12-05 22:58:56 +01:00
2018-12-01 21:49:34 +01:00
2018-12-01 22:10:48 +01:00
2018-11-28 22:08:28 +01:00
2018-11-09 22:20:49 +01:00
2018-11-28 22:08:55 +01:00
2018-11-29 21:29:30 +01:00
2018-11-30 09:01:26 +01:00
2018-12-16 16:40:22 +01:00
2018-11-02 19:20:53 +01:00
2018-11-07 23:07:54 +01:00
2018-10-30 22:48:35 +01:00
2018-11-01 22:25:45 +01:00
2018-12-30 20:15:37 +01:00
2019-01-01 11:11:04 +01:00
2018-11-13 10:33:53 +01:00
2018-11-28 22:06:53 +01:00
2018-11-29 23:01:36 +01:00
2018-12-30 15:29:28 +01:00
2018-10-30 22:48:45 +01:00
2018-12-14 21:29:24 +01:00
2018-11-01 11:57:11 +01:00
2018-12-10 20:51:09 +01:00
2018-10-23 16:35:32 +02:00
2018-10-23 16:35:44 +02:00
2019-01-01 11:16:10 +01:00
2018-12-30 17:11:05 +01:00
2018-11-24 12:59:33 +01:00
2018-11-02 19:25:04 +01:00
2018-10-31 09:42:07 +01:00
2018-11-03 14:26:56 +01:00
2018-11-01 11:42:51 +01:00
2018-11-29 23:01:26 +01:00
2018-10-30 21:09:57 +01:00
2018-12-03 23:03:31 +01:00
2018-12-14 21:29:43 +01:00
2018-10-31 11:29:12 +01:00
2018-12-28 11:44:59 +01:00
2018-11-08 21:00:49 +01:00
2018-12-10 20:49:09 +01:00
2018-12-02 08:16:10 +01:00
2018-12-30 22:42:27 +01:00
2018-10-24 01:20:43 +02:00
2018-12-31 17:45:01 +01:00
2018-11-19 16:06:12 +01:00
2018-12-10 22:14:05 +01:00
2018-10-30 21:05:19 +01:00
2018-12-30 14:39:16 +01:00
2018-11-29 15:48:30 +01:00
2018-11-18 18:54:54 +01:00
2018-11-23 22:01:09 +01:00
2018-12-13 21:17:16 +01:00
2018-12-27 16:35:55 +01:00
2018-11-29 22:59:00 +01:00
2018-11-30 17:54:40 +01:00
2018-12-21 14:55:17 +01:00
2018-12-31 15:57:03 +01:00
2018-12-31 14:32:44 +01:00
2018-12-30 20:15:01 +01:00
2018-12-30 16:48:12 +01:00
2018-12-30 22:41:29 +01:00
2018-12-08 00:11:36 +01:00
2018-12-02 08:16:10 +01:00
2018-11-28 21:54:22 +01:00
2018-12-08 23:48:52 +01:00
2018-12-03 22:55:44 +01:00
2018-12-26 21:24:03 +01:00
2018-11-11 22:09:02 +01:00
2018-12-18 14:41:09 +01:00
2018-10-30 21:00:35 +01:00
2018-12-10 22:15:51 +01:00
2018-12-10 22:17:20 +01:00
2018-12-30 15:30:41 +01:00
2018-10-26 19:49:48 +02:00
2018-12-30 16:57:19 +01:00
2018-12-27 16:35:53 +01:00
2018-11-04 22:35:51 +01:00
2018-12-03 13:26:28 +01:00
2018-11-20 23:20:02 +01:00
2018-11-24 15:08:39 +01:00
2018-11-11 21:22:02 +01:00
2018-11-07 22:09:38 +01:00
2018-12-13 21:14:13 +01:00
2018-11-28 21:55:13 +01:00
2018-11-08 22:20:51 +01:00
2018-12-13 21:19:06 +01:00
2018-11-18 20:15:37 +01:00
2018-12-31 14:38:16 +01:00
2018-11-24 13:03:23 +01:00
2018-11-23 10:46:54 +01:00
2018-11-08 21:03:21 +01:00
2018-11-30 09:00:21 +01:00
2018-12-14 22:39:35 +01:00
2018-11-19 22:18:59 +01:00
2018-12-08 23:00:33 +01:00
2018-11-19 22:24:40 +01:00
2018-12-10 22:01:37 +01:00
2018-12-13 21:54:16 +01:00
2018-12-13 21:54:21 +01:00
2018-12-26 15:11:04 +01:00
2018-11-18 19:52:56 +01:00
2018-12-18 22:47:06 +01:00
2018-12-30 17:10:13 +01:00
2018-12-11 23:00:22 +01:00
2018-11-23 10:47:25 +01:00
2018-12-31 14:31:46 +01:00
2018-11-29 22:31:06 +01:00
2018-12-16 12:24:09 +01:00
2018-12-31 17:59:52 +01:00
2018-12-31 17:59:52 +01:00
2018-12-31 17:59:52 +01:00
2018-12-28 11:51:30 +01:00
2018-12-31 17:45:01 +01:00
2018-12-16 12:08:47 +01:00
2018-11-29 16:29:24 +01:00
2018-12-31 14:14:22 +01:00
2018-11-03 15:02:07 +01:00
2018-12-02 08:16:10 +01:00
2018-12-02 11:22:11 +01:00
2018-11-29 21:21:36 +01:00
2018-12-31 17:46:11 +01:00
2018-12-28 11:54:04 +01:00
2018-10-24 00:45:41 +01:00
2019-01-01 11:16:10 +01:00
2018-12-09 17:24:17 +01:00
2018-10-21 19:13:20 +02:00