Changeset f18209a


Ignore:
Timestamp:
2020-08-30T18:11:01Z (4 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
62d375b
Parents:
b8b931d
git-author:
Jelmer Vernooij <jelmer@…> (30-08-20 17:35:07)
git-committer:
Jelmer Vernooij <jelmer@…> (30-08-20 18:11:01)
Message:

Use python3 if 'python' is not available.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • configure

    rb8b931d rf18209a  
    776776
    777777if [ -z "$PYTHON" ]; then
    778         PYTHON=python
     778        for pp in python python3 python2; do
     779                if which $pp > /dev/null; then
     780                        PYTHON=$pp
     781                        break
     782                fi
     783        done
    779784fi
    780785
     
    980985fi
    981986
     987echo '  Using python: '$PYTHON
    982988echo '  Using event handler: '$events
    983989echo '  Using SSL library: '$ssl
  • debian/changelog

    rb8b931d rf18209a  
    1717  [ Debian Janitor ]
    1818  * Upgrade to newer source format.
     19
     20  [ Jelmer Vernooij ]
     21  * Use python3 since python2 is being removed. Closes: #942954
    1922
    2023 -- Debian Janitor <janitor@jelmer.uk>  Thu, 21 Mar 2019 00:10:27 +0000
  • debian/control

    rb8b931d rf18209a  
    55Uploaders: Jelmer Vernooij <jelmer@debian.org>
    66Standards-Version: 3.9.8
    7 Build-Depends: libglib2.0-dev (>= 2.4), libevent-dev, libgnutls28-dev | libgnutls-dev | gnutls-dev, po-debconf, libpurple-dev, libotr5-dev, debhelper (>= 9), python
     7Build-Depends: libglib2.0-dev (>= 2.4), libevent-dev, libgnutls28-dev | libgnutls-dev | gnutls-dev, po-debconf, libpurple-dev, libotr5-dev, debhelper (>= 9), python3
    88Homepage: https://www.bitlbee.org/
    99Vcs-Git: https://github.com/bitlbee/bitlbee
Note: See TracChangeset for help on using the changeset viewer.