[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/09: gnu-maintenance: Do not look for releases in "w32" sub-directorie
From: |
Ludovic Courtès |
Subject: |
06/09: gnu-maintenance: Do not look for releases in "w32" sub-directories. |
Date: |
Mon, 07 Dec 2015 22:34:07 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit e3cc793e7c5a71189564f11ce825735b008871b6
Author: Ludovic Courtès <address@hidden>
Date: Mon Dec 7 22:45:52 2015 +0100
gnu-maintenance: Do not look for releases in "w32" sub-directories.
* guix/gnu-maintenance.scm (latest-release): Filter out "w32"
directories.
---
guix/gnu-maintenance.scm | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/guix/gnu-maintenance.scm b/guix/gnu-maintenance.scm
index b3240f8..ab9577f 100644
--- a/guix/gnu-maintenance.scm
+++ b/guix/gnu-maintenance.scm
@@ -354,11 +354,14 @@ open (resp. close) FTP connections; this can be useful to
reuse connections."
(let* ((entries (ftp-list conn directory))
;; Filter out sub-directories that do not contain digits---e.g.,
- ;; /gnuzilla/lang and /gnupg/patches.
+ ;; /gnuzilla/lang and /gnupg/patches. Filter out "w32"
+ ;; directories as found on ftp.gnutls.org.
(subdirs (filter-map (match-lambda
(((? patch-directory-name? dir)
'directory . _)
#f)
+ (("w32" 'directory . _)
+ #f)
(((? contains-digit? dir) 'directory . _)
dir)
(_ #f))
- branch master updated (1eca745 -> e80c0f8), Ludovic Courtès, 2015/12/07
- 01/09: doc: 'guix environment --container' does not create '/env'., Ludovic Courtès, 2015/12/07
- 03/09: gnu-maintenance: Adjust tarball regexp for IceCat tarballs., Ludovic Courtès, 2015/12/07
- 06/09: gnu-maintenance: Do not look for releases in "w32" sub-directories.,
Ludovic Courtès <=
- 02/09: gnu-maintenance: Fix URLs returned by 'latest-release' for deep trees., Ludovic Courtès, 2015/12/07
- 04/09: gnu-maintenance: Properly handle TeXmacs., Ludovic Courtès, 2015/12/07
- 05/09: gnu-maintenance: Add tests for 'release-file?'., Ludovic Courtès, 2015/12/07
- 07/09: refresh: Bail out when asked for a nonexistent updater., Ludovic Courtès, 2015/12/07
- 08/09: gnu-maintenance: Generalize 'latest-ftp-release'., Ludovic Courtès, 2015/12/07
- 09/09: gnu-maintenance: Add GNOME updater., Ludovic Courtès, 2015/12/07