mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 06:32:36 +01:00
3.18.1 upgrade scons still requires python2, and some of the gps utilities no longer work with python2 The 0001-workaround-for-scons-using-python2.patch explicitly uses python3 as the interpreter 3.18.1 insists on putting the python utilites in /usr/local - we manually move them as part of the _py subpackage
41 lines
837 B
Diff
41 lines
837 B
Diff
diff --git a/gpscat b/gpscat
|
|
index 26c9acf..6cf4765 100755
|
|
--- a/gpscat
|
|
+++ b/gpscat
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
#
|
|
"Display GPS output. Hexify it if necessary."
|
|
|
|
diff --git a/gpsfake b/gpsfake
|
|
index e02d64a..ec10974 100755
|
|
--- a/gpsfake
|
|
+++ b/gpsfake
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
#
|
|
'''
|
|
gpsfake -- test harness for gpsd
|
|
diff --git a/ubxtool b/ubxtool
|
|
index 6bdb0ba..82f5b2e 100755
|
|
--- a/ubxtool
|
|
+++ b/ubxtool
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: UTF-8
|
|
'''
|
|
ubxtool -- u-blox configurator and packet decoder
|
|
diff --git a/zerk b/zerk
|
|
index 745c765..2e1b73a 100755
|
|
--- a/zerk
|
|
+++ b/zerk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: UTF-8
|
|
'''
|
|
zerk -- GREIS configurator and packet decoder
|