Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.debian.maint.python > #7797

Re: Does “${python3:Depends}” reliably generate correct dependencies?

Path csiph.com!goblin1!goblin2!goblin.stu.neva.ru!aioe.org!bofh.it!news.nic.it!robomod
From Dmitry Shachnev <mitya57@debian.org>
Newsgroups linux.debian.maint.python
Subject Re: Does “${python3:Depends}” reliably generate correct dependencies?
Date Sun, 25 Oct 2015 10:20:02 +0100
Message-ID <qnpD4-t9-17@gated-at.bofh.it> (permalink)
References <qnlSN-643-1@gated-at.bofh.it> <qnptn-mg-13@gated-at.bofh.it>
X-Original-To debian-python@lists.debian.org
X-Mailbox-Line From debian-python-request@lists.debian.org Sun Oct 25 09:16:49 2015
Old-Return-Path <mitya57@gmail.com>
X-Amavis-Spam-Status No, score=-9.979 tagged_above=-10000 required=5.3 tests=[BAYES_00=-2, FOURLA=0.1, FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FORGED_FROMDOMAIN=0.001, FREEMAIL_FROM=0.001, HEADER_FROM_DIFFERENT_DOMAINS=0.001, LDO_WHITELIST=-5, MONEY=0.5, PGPSIGNATURE=-5, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SARE_HEAD_8BIT_SPAM=0.888, STOCKLIKE=1] autolearn=ham autolearn_force=no
X-Policyd-Weight DYN_NJABL=ERR(0) NOT_IN_SBL_XBL_SPAMHAUS=-1.5 BL_NJABL=ERR(-1.5) CL_IP_EQ_HELO_IP=-2 (check from: .gmail. - helo: .mail-lf0-f46.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2; rate: -7
X-Google-Dkim-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=content-type:mime-version:to:from:in-reply-to:references:subject :date:message-id; bh=kBPEG1Lk8MzQFLwdp75pOg4z8/B0NadNJGcejih2NKY=; b=jqfFZTXURslrjniYFXv/n4qFkJIi6nAkBjdp0tBzmgQmovC1bP4e/iy34hae6VrXR2 LXreBdyplEdOVuy5nAyFDAHgnS47Od0K6p0pbLJelk3+CbHKZu5v8AiRhip9T7SzTkI0 eporIxXnEIQIsIvnISH1A/w7i2hMxtWHo/WsafV7iVf1FBInziAA6sQGjuoQfpX647Eo gc16SIquGu8MTBp/me2QSAOmIZtaC+dOsBt+2wTK8IPTAm47Bzclzya7OQznSd/Yq5n1 L3E4M6lev0in7WrielH6LysxFUBTshaewmSDZ/gXplh0sCgo0riUqEMpEfh5octnSXHK NFjQ==
X-Received by 10.112.157.74 with SMTP id wk10mr15158702lbb.54.1445764582497; Sun, 25 Oct 2015 02:16:22 -0700 (PDT)
Content-Type multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha1"; boundary="===============2949605774251384629=="
MIME-Version 1.0
X-Mailing-List <debian-python@lists.debian.org> archive/latest/13109
List-ID <debian-python.lists.debian.org>
List-URL <https://lists.debian.org/debian-python/>
List-Archive https://lists.debian.org/msgid-search/144576457797.3804.14463176112766272284@mitya57.me
Approved robomod@news.nic.it
Lines 43
Organization linux.* mail to news gateway
Sender robomod@news.nic.it
X-Original-Date Sun, 25 Oct 2015 12:16:17 +0300
X-Original-Message-ID <144576457797.3804.14463176112766272284@mitya57.me>
X-Original-References <85twpfo7c2.fsf@benfinney.id.au> <33A5A116-A256-43E8-86DB-07832778396A@kitterman.com>
Xref csiph.com linux.debian.maint.python:7797

Show key headers only | View raw


[Multipart message — attachments visible in raw view] - view raw

On Sun, 25 Oct 2015 05:05:08 -0400, Scott Kitterman wrote:
> Usually you only get the dependency on the specific python3 interpreters if
> there's a script with a shebang using that version.  I'd check for that.
>
> It could either be in the original source or due to dh_python3 doing something
> interesting in shebang rewriting (IIRC there's a known issue that P1otr is
> working on).

I think this is intended because:

  $ head -n1 </usr/bin/python3.4-coverage 
  #!/usr/bin/python3.4
  $ head -n1 </usr/bin/python3.5-coverage 
  #!/usr/bin/python3.5

Looks like coverage supports being invoked as “python3.x -m coverage”, so there
is no point in shipping per-Python-version scripts (having one script named
python3-coverage will be enough).

--
Dmitry Shachnev

Back to linux.debian.maint.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Does “${python3:Depends}” reliably  generate correct dependencies? Ben Finney <ben+debian@benfinney.id.au> - 2015-10-25 06:20 +0100
  Re: Does “${python3:Depends}”  reliably generate correct dependencies? Brian May <brian@linuxpenguins.xyz> - 2015-10-25 08:00 +0100
  Re: Does “${python3:Depends}” reliably generate correct dependencies? Scott Kitterman <debian@kitterman.com> - 2015-10-25 10:10 +0100
    Re: Does “${python3:Depends}” reliably generate  correct dependencies? Dmitry Shachnev <mitya57@debian.org> - 2015-10-25 10:20 +0100
    Re: Does “${python3:Depends}”  reliably generate correct dependencies? Piotr Ożarowski <piotr@debian.org> - 2015-10-25 10:40 +0100
  Re: Does “${python3:Depends}”  reliably generate correct dependencies? Piotr Ożarowski <piotr@debian.org> - 2015-10-25 10:30 +0100

csiph-web