[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/08: list-packages: Add status link only for systems supported on Hydr
From: |
Ludovic Courtès |
Subject: |
04/08: list-packages: Add status link only for systems supported on Hydra. |
Date: |
Fri, 01 May 2015 15:39:59 +0000 |
civodul pushed a commit to branch core-updates
in repository guix.
commit 75c5475f31963a171e89d83b372a4858c8741498
Author: Ludovic Courtès <address@hidden>
Date: Fri May 1 16:10:08 2015 +0200
list-packages: Add status link only for systems supported on Hydra.
* build-aux/list-packages.scm (package->sxml)[status]:
Intersect (package-transitive-supported-systems package) with
%HYDRA-SUPPORTED-SYSTEMS.
---
build-aux/list-packages.scm | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/build-aux/list-packages.scm b/build-aux/list-packages.scm
index f3e4ac2..c4f4452 100755
--- a/build-aux/list-packages.scm
+++ b/build-aux/list-packages.scm
@@ -167,7 +167,11 @@ decreasing, is 1."
,system))
`(div "status: "
- ,(list-join (map url (package-transitive-supported-systems package))
+ ,(list-join (map url
+ (lset-intersection
+ string=?
+ %hydra-supported-systems
+ (package-transitive-supported-systems package)))
" ")))
(define (package-logo name)
- branch core-updates updated (9e63a38 -> 868ef9a), Ludovic Courtès, 2015/05/01
- 01/08: Merge branch 'master' into core-updates, Ludovic Courtès, 2015/05/01
- 02/08: gnu: ganv: Set the RUNPATH of binaries to $libdir., Ludovic Courtès, 2015/05/01
- 04/08: list-packages: Add status link only for systems supported on Hydra.,
Ludovic Courtès <=
- 03/08: packages: Add '%hydra-supported-systems'., Ludovic Courtès, 2015/05/01
- 05/08: gnu: mariadb: Remove now unneeded workaround., Ludovic Courtès, 2015/05/01
- 06/08: check-available-binaries: Use %HYDRA-SUPPORTED-SYSTEMS., Ludovic Courtès, 2015/05/01
- 08/08: bash completion: Complete long options with no short variant., Ludovic Courtès, 2015/05/01
- 07/08: gnu: polkit-qt: Add $libdir to RUNPATH., Ludovic Courtès, 2015/05/01