unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#49813] [PATCH 00/34] Fix regexes in FIND-FILES invocations.
@ 2021-08-01 21:16 Sarah Morgensen
  2021-08-01 21:18 ` [bug#49813] [PATCH 01/34] gnu: wpa-supplicant-minimal: Fix regex in FIND-FILES invocation Sarah Morgensen
                   ` (34 more replies)
  0 siblings, 35 replies; 37+ messages in thread
From: Sarah Morgensen @ 2021-08-01 21:16 UTC (permalink / raw)
  To: 49813

Hello Guix,

This is a start to addressing [0], which points out that there are many
incorrect usages of regexes in callers of FIND-FILES. I chose packages with 0-3
dependent packages, and according to `guix refresh -l`, this patchset
incurs just 25 rebuilds:

--8<---------------cut here---------------start------------->8---
$ xargs -a packages.txt guix refresh -l
Building the following 18 packages would ensure 25 dependent packages are rebuilt: c-reduce@2.10.0 cataclysm-dda@0.F kdevelop@5.6.1 aegis@4.24 openttd@1.11.2 bitmask@0.21.6 guile-gnome@2.16.5 linphone-desktop@4.2.5 kaldi-gstreamer-server@0-2.f68cab4 python-keras@2.2.4 claws-mail@4.0.0 python-git-multimail@1.5.0.post1 mumps@5.2.1 shogun@6.1.3 rcm@1.3.4 t-todo-manager@1.2.0-97.89ad444 superstarfighter@0.6.4 openmw@0.46.0
--8<---------------cut here---------------end--------------->8---

[0] <https://issues.guix.gnu.org/37150> Erroneous uses of regex in the
invokation of FIND-FILES

--
Sarah Morgensen (34):
  gnu: wpa-supplicant-minimal: Fix regex in FIND-FILES invocation.
  gnu: hostapd: Fix regex in FIND-FILES invocation.
  gnu: infamous-plugins: Fix regex in FIND-FILES invocation.
  gnu: tao: Fix regex in FIND-FILES invocation.
  gnu: kcov: Fix regex in FIND-FILES invocation.
  gnu: astyle: Fix regex in FIND-FILES invocation.
  gnu: unshield: Fix regex in FIND-FILES invocation.
  gnu: cook: Fix regex in FIND-FILES invocation.
  gnu: libabigail: Fix regex in FIND-FILES invocation.
  gnu: grfcodec: Fix regex in FIND-FILES invocation.
  gnu: go-github-com-keybase-go-ps: Fix regex in FIND-FILES invocation.
  gnu: guile-sly: Fix regex in FIND-FILES invocation.
  gnu: g-wrap: Fix regex in FIND-FILES invocation.
  gnu: guile-ncurses: Fix regex in FIND-FILES invocation.
  gnu: guile-gi: Fix regex in FIND-FILES invocation.
  gnu: guile-ac-d-bus: Fix regex in FIND-FILES invocation.
  gnu: belle-sip: Fix regex in FIND-FILES invocation.
  gnu: python-libsvm: Fix regex in FIND-FILES invocation.
  gnu: kaldi: Fix regex in FIND-FILES invocation.
  gnu: kaldi-gstreamer-server: Fix regex in FIND-FILES invocation.
  gnu: tensorflow: Fix regex in FIND-FILES invocation.
  gnu: sendmail: Fix regex in FIND-FILES invocation.
  gnu: scotch: Fix regex in FIND-FILES invocation.
  gnu: atlas: Fix regex in FIND-FILES invocation.
  gnu: hypre: Fix regex in FIND-FILES invocation.
  gnu: qtpass: Fix regex in FIND-FILES invocation.
  gnu: john-the-ripper-jumbo: Fix regex in FIND-FILES invocation.
  gnu: python-robotframework-sshlibrary: Fix regex in FIND-FILES
    invocation.
  gnu: python-cram: Fix regex in FIND-FILES invocation.
  gnu: aegis: Fix regex in FIND-FILES invocation.
  gnu: bullet: Fix regex in FIND-FILES invocation.
  gnu: shogun: Fix regex in FIND-FILES invocation.
  gnu: alpine: Fix regex in FIND-FILES invocation.
  gnu: rtags: Fix regex in FIND-FILES invocation.

 gnu/packages/admin.scm            |  9 +++++----
 gnu/packages/audio.scm            |  7 ++++---
 gnu/packages/code.scm             |  9 +++++----
 gnu/packages/compression.scm      |  3 ++-
 gnu/packages/cook.scm             |  3 ++-
 gnu/packages/elf.scm              |  3 ++-
 gnu/packages/game-development.scm |  5 +++--
 gnu/packages/golang.scm           |  2 +-
 gnu/packages/guile-xyz.scm        | 11 ++++++-----
 gnu/packages/linphone.scm         |  3 ++-
 gnu/packages/machine-learning.scm | 29 +++++++++++++++--------------
 gnu/packages/mail.scm             |  7 ++++---
 gnu/packages/maths.scm            | 11 ++++++-----
 gnu/packages/password-utils.scm   | 13 +++++++------
 gnu/packages/python-xyz.scm       |  7 ++++---
 gnu/packages/version-control.scm  |  3 ++-
 16 files changed, 70 insertions(+), 55 deletions(-)


base-commit: fcba63f8b7806493fc5060b267af93cdb7d21aa6
-- 
2.31.1





^ permalink raw reply	[flat|nested] 37+ messages in thread

end of thread, other threads:[~2021-08-28 23:00 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-01 21:16 [bug#49813] [PATCH 00/34] Fix regexes in FIND-FILES invocations Sarah Morgensen
2021-08-01 21:18 ` [bug#49813] [PATCH 01/34] gnu: wpa-supplicant-minimal: Fix regex in FIND-FILES invocation Sarah Morgensen
2021-08-01 21:18 ` [bug#49813] [PATCH 02/34] gnu: hostapd: " Sarah Morgensen
2021-08-01 21:18 ` [bug#49813] [PATCH 03/34] gnu: infamous-plugins: " Sarah Morgensen
2021-08-01 21:18 ` [bug#49813] [PATCH 04/34] gnu: tao: " Sarah Morgensen
2021-08-22  9:53   ` Maxime Devos
2021-08-01 21:18 ` [bug#49813] [PATCH 05/34] gnu: kcov: " Sarah Morgensen
2021-08-01 21:18 ` [bug#49813] [PATCH 06/34] gnu: astyle: " Sarah Morgensen
2021-08-01 21:18 ` [bug#49813] [PATCH 07/34] gnu: unshield: " Sarah Morgensen
2021-08-01 21:18 ` [bug#49813] [PATCH 08/34] gnu: cook: " Sarah Morgensen
2021-08-01 21:18 ` [bug#49813] [PATCH 09/34] gnu: libabigail: " Sarah Morgensen
2021-08-01 21:20 ` [bug#49813] [PATCH 10/34] gnu: grfcodec: " Sarah Morgensen
2021-08-01 21:20 ` [bug#49813] [PATCH 11/34] gnu: go-github-com-keybase-go-ps: " Sarah Morgensen
2021-08-01 21:20 ` [bug#49813] [PATCH 12/34] gnu: guile-sly: " Sarah Morgensen
2021-08-01 21:20 ` [bug#49813] [PATCH 13/34] gnu: g-wrap: " Sarah Morgensen
2021-08-01 21:20 ` [bug#49813] [PATCH 14/34] gnu: guile-ncurses: " Sarah Morgensen
2021-08-01 21:20 ` [bug#49813] [PATCH 15/34] gnu: guile-gi: " Sarah Morgensen
2021-08-01 21:20 ` [bug#49813] [PATCH 16/34] gnu: guile-ac-d-bus: " Sarah Morgensen
2021-08-01 21:20 ` [bug#49813] [PATCH 17/34] gnu: belle-sip: " Sarah Morgensen
2021-08-01 21:21 ` [bug#49813] [PATCH 18/34] gnu: python-libsvm: " Sarah Morgensen
2021-08-01 21:21 ` [bug#49813] [PATCH 19/34] gnu: kaldi: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 20/34] gnu: kaldi-gstreamer-server: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 21/34] gnu: tensorflow: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 22/34] gnu: sendmail: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 23/34] gnu: scotch: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 24/34] gnu: atlas: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 25/34] gnu: hypre: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 26/34] gnu: qtpass: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 27/34] gnu: john-the-ripper-jumbo: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 28/34] gnu: python-robotframework-sshlibrary: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 29/34] gnu: python-cram: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 30/34] gnu: aegis: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 31/34] gnu: bullet: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 32/34] gnu: shogun: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 33/34] gnu: alpine: " Sarah Morgensen
2021-08-02  3:27 ` [bug#49813] [PATCH 34/34] gnu: rtags: " Sarah Morgensen
2021-08-28 22:59 ` [bug#49813] [PATCH 04/34] gnu: tao: " Sarah Morgensen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).