diff options
author | Dave Woodfall <dave@slackbuilds.org> | 2021-05-06 17:11:18 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-08 01:41:48 +0700 |
commit | c6830b5760af44e674cb97ec71e3f14132bd70ff (patch) | |
tree | d7861409e19bf64851b568df8f4bcf1a35eade29 /python/python-gattlib/dont_hardcode_python_versions.patch | |
parent | 8eec73c9fbe6957dad9a0b3f8edae4dadc01dafc (diff) |
python/python-gattlib: Renamed python2-gattlib.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python-gattlib/dont_hardcode_python_versions.patch')
-rw-r--r-- | python/python-gattlib/dont_hardcode_python_versions.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/python/python-gattlib/dont_hardcode_python_versions.patch b/python/python-gattlib/dont_hardcode_python_versions.patch deleted file mode 100644 index 0e11e85d18..0000000000 --- a/python/python-gattlib/dont_hardcode_python_versions.patch +++ /dev/null @@ -1,19 +0,0 @@ -Matteo Bernardini <ponce@slackbuilds.org> ---- -Don't hardcode python versions - -diff -Naur gattlib-0.20150805.orig/setup.py gattlib-0.20150805/setup.py ---- gattlib-0.20150805.orig/setup.py 2015-08-05 15:16:56.000000000 +0200 -+++ gattlib-0.20150805/setup.py 2018-05-02 09:45:04.625893000 +0200 -@@ -19,9 +19,9 @@ - glib_libs = [x.strip() for x in glib_libs if x] - - if sys.version_info.major == 3: -- boost_libs = ["boost_python-py34"] -+ boost_libs = ["boost_python3"+str(sys.version_info.minor)] - else: -- boost_libs = ["boost_python"] -+ boost_libs = ["boost_python2"+str(sys.version_info.minor)] - extension_modules = [ - Extension( - 'gattlib', |