Github messages for voidlinux
 help / color / mirror / Atom feed
From: ahesford <ahesford@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Closed]: python3: update to 3.10.0
Date: Sat, 09 Oct 2021 14:13:00 +0200	[thread overview]
Message-ID: <20211009121300.C7zR4UzzBVMi7Dc5IAQPwuwMYbsI3Kx204lowHIpuMk@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-33097@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 1668 bytes --]

There's a closed pull request on the void-packages repository

python3: update to 3.10.0
https://github.com/void-linux/void-packages/pull/33097

Description:
[ci skip]
Opening this early to keep track of things. The template currently uses Python 3.10.0rc2. Over the next several days or weeks I will run the entire list through the full build matrix and start chipping away at any issues that arise, then start running my local Python stack on 3.10 to look for any issues. Help is appreciated.

Package list was determined by running several scripts and computing the unique packages:
```zsh
foreach f ($(grep -l pycompile srcpkgs/*/template))
    grep -q python_version=2 $f && continue
    grep -q python_version=3 $f || grep -q python3 $f || continue
    pkg=$(xsubpkg -m $(basename ${f%/template}))
    echo $pkg >> pkgs.combined
end
```

```zsh
(cd srcpkgs && echo python3-* | xargs -n1 realpath -e | xargs -n1 basename | sort | uniq) >> pkgs.combined
```

```zsh
xrevshlib python3 >> pkgs.combined
```

```zsh
xlocate usr/lib/python3 | cut -f1 | sort | uniq | \
    xargs -n1 xbps-uhelper getpkgname | \
    xargs -n1 xsubpkg -m | sort | uniq >> pkgs.combined
```

If you use these scripts, I *highly* recommend parallelizing `xargs`.

I had to modify the regexes in `post-install/04-create-xbps-metadata-scripts.sh` and `pre-pkg/03-rewrite-python-shebnag.sh` to accommodate the extra digit in the "3.10" version string.

The `python3` and `python3-tkinter` templates have been altered to pull `python3` in `hostmakedepends` for cross builds rather than custom-building a host version in `do_build`. Thanks to @q66 for this idea.

      parent reply	other threads:[~2021-10-09 12:13 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-25  3:31 [PR PATCH] [NOMERGE] " ahesford
2021-09-25 14:46 ` [PR PATCH] [Updated] " ahesford
2021-09-25 19:35 ` ahesford
2021-09-25 20:30 ` ahesford
2021-09-26  1:50 ` ahesford
2021-09-26  3:47 ` ahesford
2021-09-26 14:04 ` ahesford
2021-09-26 18:58 ` ahesford
2021-09-26 19:54 ` ahesford
2021-09-26 21:28 ` ahesford
2021-09-26 21:31 ` ahesford
2021-09-26 21:47 ` ahesford
2021-09-26 22:19 ` ahesford
2021-09-26 22:19 ` [PR PATCH] [Updated] " ahesford
2021-09-27  1:23 ` ahesford
2021-09-27  1:33 ` ahesford
2021-09-27  1:59 ` ahesford
2021-09-27  2:03 ` ahesford
2021-09-27  2:03 ` ahesford
2021-09-27  2:11 ` ahesford
2021-09-27  2:31 ` ahesford
2021-09-27  2:35 ` [PR PATCH] [Updated] " ahesford
2021-09-27 10:56 ` leahneukirchen
2021-09-27 10:57 ` leahneukirchen
2021-09-27 12:21 ` [PR PATCH] [Updated] " ahesford
2021-09-27 12:23 ` ahesford
2021-09-27 12:29 ` ahesford
2021-09-27 12:29 ` ahesford
2021-09-27 13:28 ` ahesford
2021-09-27 14:01 ` ericonr
2021-09-27 15:14 ` [PR PATCH] [Updated] " ahesford
2021-09-27 15:40 ` ahesford
2021-09-27 15:50 ` ahesford
2021-09-27 16:15 ` ahesford
2021-09-27 22:02 ` ahesford
2021-09-27 22:08 ` paper42
2021-09-27 23:51 ` ahesford
2021-09-27 23:52 ` ahesford
2021-09-27 23:52 ` ahesford
2021-09-28  0:24 ` [PR PATCH] [Updated] " ahesford
2021-09-28 15:00 ` ahesford
2021-09-28 15:16 ` ahesford
2021-09-28 17:42 ` ahesford
2021-09-28 17:47 ` [PR PATCH] [Updated] " ahesford
2021-09-28 18:04 ` ahesford
2021-09-28 18:06 ` ahesford
2021-09-28 18:06 ` ahesford
2021-09-28 18:58 ` [PR PATCH] [Updated] " ahesford
2021-09-29 14:34 ` ahesford
2021-09-29 14:44 ` ahesford
2021-09-29 14:57 ` ahesford
2021-09-29 15:28 ` ahesford
2021-09-30  0:52 ` ahesford
2021-09-30  1:01 ` ahesford
2021-09-30 18:10 ` [PR REVIEW] " yopito
2021-10-04  2:38 ` [PR PATCH] [Updated] " ahesford
2021-10-05 17:57 ` ahesford
2021-10-06  0:57 ` ahesford
2021-10-06  0:57 ` ahesford
2021-10-08 13:54 ` [PR PATCH] [Updated] " ahesford
2021-10-09  0:40 ` ahesford
2021-10-09  0:48 ` ahesford
2021-10-09  1:44 ` ahesford
2021-10-09 12:13 ` ahesford
2021-10-09 12:13 ` ahesford [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211009121300.C7zR4UzzBVMi7Dc5IAQPwuwMYbsI3Kx204lowHIpuMk@z \
    --to=ahesford@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).