diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2021-09-26 18:07:16 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-02 16:50:36 +0700 |
commit | 683429feac1d178ce48849a588d56201d360bfdc (patch) | |
tree | a997b38e2e3a95ec1691ac0a7a4902eba43094bb /python/python2-gattlib/dont_hardcode_python_versions.patch | |
parent | 38068c6727703048e17687ab4ea1bf525ff5297b (diff) |
python/python2-gattlib: Updated for version 0.20200121
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python2-gattlib/dont_hardcode_python_versions.patch')
-rw-r--r-- | python/python2-gattlib/dont_hardcode_python_versions.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/python/python2-gattlib/dont_hardcode_python_versions.patch b/python/python2-gattlib/dont_hardcode_python_versions.patch deleted file mode 100644 index 0e11e85d18..0000000000 --- a/python/python2-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', |