tags 934861 +patch
thanks
The fix for this is included in my merge request on Salsa (which
includes several patches):
https://salsa.debian.org/auth-team/python-yubico/merge_requests/1
I'll also attach the patch specific to this bug. Its change log entry
would be:
* Fix python-yubico-tools not installable. (Closes: #934861)
>From cbe7fc670f2d449bc30e1bd1a12ee500d0d2f689 Mon Sep 17 00:00:00 2001
From: Darsey Litzenberger <[email protected]>
Date: Thu, 15 Aug 2019 16:55:44 -0700
Subject: [PATCH 1/3] Fix python-yubico-tools not installable
The package depended on python:any (>= 2.8~), which does not exist.
Current Python packaging policy says that X-Python-Version and
XB-Python-Version can be removed, since only version 2.7 of the
python:any package exists (and there will never be a 2.8).
---
debian/control | 3 ---
1 file changed, 3 deletions(-)
diff --git a/debian/control b/debian/control
index f2cfb9f..3903f34 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,6 @@ Standards-Version: 3.9.8
Homepage: https://developers.yubico.com/python-yubico/
Vcs-Browser: https://salsa.debian.org/auth-team/python-yubico
Vcs-Git: https://salsa.debian.org/auth-team/python-yubico.git
-X-Python-Version: >= 2.8
X-Python3-Version: >= 3.6
Package: python-yubico
@@ -25,7 +24,6 @@ Architecture: all
Depends: ${python:Depends},
${misc:Depends},
python-usb
-XB-Python-Version: ${python:Versions}
Provides: ${python:Provides}
Description: Python library for talking to Yubico YubiKeys
The YubiKey is a hardware authentication token. This is a Python
@@ -39,7 +37,6 @@ Depends: ${python:Depends},
${misc:Depends},
python-argparse,
python-yubico (= ${binary:Version})
-XB-Python-Version: ${python:Versions}
Provides: ${python:Provides}
Description: Tools for Yubico YubiKeys
The YubiKey is a hardware authentication token. This package
--
2.23.0.rc1