gpsd-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Fw: [Git][gpsd/gpsd][master] Ubuntu has abolished /usr/bin/python, chang


From: Gary E. Miller
Subject: Fw: [Git][gpsd/gpsd][master] Ubuntu has abolished /usr/bin/python, change shebangs to python3.
Date: Mon, 20 Sep 2021 11:27:17 -0700

Yo Eric!

> Ubuntu has abolished /usr/bin/python, change shebangs to python3.

A bit early to declare /usr/bin/python dead...

=====================================
devtools/aivdmtable
=====================================
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python4=3

Can that be right?

RGDS
GARY
---------------------------------------------------------------------------
Gary E. Miller Rellim 109 NW Wilmington Ave., Suite E, Bend, OR 97703
        gem@rellim.com  Tel:+1 541 382 8588

            Veritas liberabit vos. -- Quid est veritas?
    "If you can't measure it, you can't improve it." - Lord Kelvin

Eric S. Raymond pushed to branch master at gpsd / gpsd

Commits:

18 changed files:

Changes:

  • contrib/gpsData.py
    1
    -#! /usr/bin/python
    
    1
    +#! /usr/bin/python3
    
    2 2
     # Written by Dan Mandle http://dan.mandle.me September 2012
    
    3 3
     # http://www.danmandle.com/blog/getting-gpsd-to-work-with-python/
    
    4 4
     # License: GPL 2.0
    

  • devtools/ais.py
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     #
    
    3 3
     # A Python AIVDM/AIVDO decoder
    
    4 4
     #
    

  • devtools/aivdmtable
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python4=3
    
    2 2
     #
    
    3 3
     # Generate an asciidoc table of the six-bit encoding used in AIVDM packets.
    
    4 4
     #
    

  • devtools/cycle_analyzer
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     #
    
    3 3
     # This file is Copyright 2010 by the GPSD project
    
    4 4
     # SPDX-License-Identifier: BSD-2-clause
    

  • devtools/get_geoid_table.py
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     
    
    3 3
     """Simple program to exact 5x5 geoid separations in EGM2008.
    
    4 4
     
    

  • devtools/get_mag_var_table.py
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     # This code run compatibly under Python 2 and 3.x for x >= 2.
    
    3 3
     # Preserve this property!
    
    4 4
     #
    

  • devtools/identify_failing_build_options.py
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     
    
    3 3
     # This file is Copyright 2010 by the GPSD project
    
    4 4
     # SPDX-License-Identifier: BSD-2-Clause
    

  • devtools/regress-builder
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     #
    
    3 3
     # This file is Copyright 2010 by the GPSD project
    
    4 4
     # SPDX-License-Identifier: BSD-2-clause
    

  • devtools/regressdiff
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     #
    
    3 3
     # Walk through a pair of textfiles looking for where they begin to differ.
    
    4 4
     # May be useful for comparing logs when regression tests break.
    

  • devtools/sizes
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     #
    
    3 3
     # sizes -- explore the sizes of static gpsd binaries
    
    4 4
     #
    

  • devtools/striplog
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     #
    
    3 3
     # striplog -- strip leading lines from logs
    
    4 4
     #
    

  • devtools/tablegen.py
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     # This code runs compatibly under Python 2 and 3.x for x >= 2.
    
    3 3
     # Preserve this property!
    
    4 4
     
    

  • devtools/test_json_validity.py
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     #
    
    3 3
     # Christian Gagneraud - 2012
    
    4 4
     # This code runs compatibly under Python 2 and 3.x for x >= 2.
    

  • devtools/uninstall_cleanup.py
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     
    
    3 3
     # Codacy D203 and D211 conflict, I choose D203
    
    4 4
     # Codacy D212 and D213 conflict, I choose D212
    

  • example_aiogps_run
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     # -*- coding: utf-8 -*-
    
    3 3
     
    
    4 4
     # Copyright 2019 Grand Joldes (grandwork2@yahoo.com).
    

  • libgps/jsongen.py
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     #
    
    3 3
     # This file is Copyright 2010 by the GPSD project
    
    4 4
     # SPDX-License-Identifier: BSD-2-clause
    

  • maskaudit.py
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     #
    
    3 3
     # This file is Copyright 2010 by the GPSD project
    
    4 4
     # SPDX-License-Identifier: BSD-2-clause
    

  • valgrind-audit.py
    1
    -#!/usr/bin/env python
    
    1
    +#!/usr/bin/env python3
    
    2 2
     #
    
    3 3
     # This file is Copyright 2010 by the GPSD project
    
    4 4
     # SPDX-License-Identifier: BSD-2-clause
    

  • Attachment: pgpigI7MtcLjT.pgp
    Description: OpenPGP digital signature


    reply via email to

    [Prev in Thread] Current Thread [Next in Thread]