[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50384] [PATCH v2] Optimise search-patch (reducing I/O)
From: |
Maxime Devos |
Subject: |
[bug#50384] [PATCH v2] Optimise search-patch (reducing I/O) |
Date: |
Mon, 06 Sep 2021 00:40:25 +0200 |
User-agent: |
Evolution 3.34.2 |
Maxime Devos schreef op zo 05-09-2021 om 21:48 [+0200]:
> Ludovic Courtès schreef op zo 05-09-2021 om 00:04 [+0200]:
> > Maxime Devos <maximedevos@telenet.be> skribis:
> >
[..]
> I added two patches adding (limited) dependency tracking to compile-all.scm.
> If a patch file is now modified or deleted, the corresponding package modules
> will be recompiled. This should remove the ‘evilness’ I think.
Oops, I forgot to include the following change to build-aux/compile-all.scm:
(or (not (file-exists? go))
(file-mtime<? go file)
- (any (cut file-mtime<? go <>) extra-dependencies))))
+ (any (lambda (dependency)
+ (or (not (file-exists? dependency))
+ (file-mtime<? go dependency))) extra-dependencies))))
It will be included in the v3.
Greetings,
Maxime.
signature.asc
Description: This is a digitally signed message part
- [bug#50384] [PATCH] Optimise search-patch (reducing I/O), Maxime Devos, 2021/09/04
- [bug#50384] [PATCH] Optimise search-patch (reducing I/O), Ludovic Courtès, 2021/09/04
- [bug#50384] [PATCH] Optimise search-patch (reducing I/O), Ludovic Courtès, 2021/09/04
- [bug#50384] [PATCH v2] Optimise search-patch (reducing I/O), Maxime Devos, 2021/09/05
- [bug#50384] [PATCH] Optimise search-patch (reducing I/O), Ludovic Courtès, 2021/09/09
- [bug#50384] [PATCH v4] Optimise search-patch (reducing I/O), Ludovic Courtès, 2021/09/21
- [bug#50384] [PATCH v4] Optimise search-patch (reducing I/O), Maxime Devos, 2021/09/23
- [bug#50384] [PATCH v4] Optimise search-patch (reducing I/O), Ludovic Courtès, 2021/09/27
[bug#50384] [PATCH v3] Optimise search-patch (reducing I/O), Maxime Devos, 2021/09/09