[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/29: website: packages: Correctly compute supported systems.
From: |
Ludovic Courtès |
Subject: |
13/29: website: packages: Correctly compute supported systems. |
Date: |
Wed, 6 Dec 2017 09:24:25 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix-artwork.
commit d30d57c315d1f2ad5ae4db775359a988b4038819
Author: Ludovic Courtès <address@hidden>
Date: Tue Aug 29 00:11:30 2017 +0200
website: packages: Correctly compute supported systems.
* website/apps/packages/templates/components.scm (supported-systems->shtml):
Fix computation of 'systems'.
---
website/apps/packages/templates/components.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/website/apps/packages/templates/components.scm
b/website/apps/packages/templates/components.scm
index 5224ba2..33a9941 100644
--- a/website/apps/packages/templates/components.scm
+++ b/website/apps/packages/templates/components.scm
@@ -14,6 +14,7 @@
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix gnu-maintenance)
+ #:use-module (srfi srfi-1)
#:export (detailed-package-preview
issue-count->shtml
lint-issue->shtml
@@ -209,7 +210,10 @@
(package-id (string-append (package-name package)
"-"
(package-version package)))
- (systems (package-supported-systems package)))
+ (systems (lset-intersection
+ string=?
+ %hydra-supported-systems
+ (package-transitive-supported-systems package))))
(if (null? systems)
"None"
(separate
- branch master updated (ae2d020 -> 81db25f), Ludovic Courtès, 2017/12/06
- 02/29: website: packages: Ignore third-party packages., Ludovic Courtès, 2017/12/06
- 04/29: website: utils: 'paginate' correctly handles the case with zero items., Ludovic Courtès, 2017/12/06
- 03/29: website: posts: Add missing tags and harmonize., Ludovic Courtès, 2017/12/06
- 05/29: website: packages: Implement grouping by letter., Ludovic Courtès, 2017/12/06
- 11/29: website: "download", not "test"., Ludovic Courtès, 2017/12/06
- 08/29: website: packages: Fix typo., Ludovic Courtès, 2017/12/06
- 07/29: website: packages: Add the commit in package source URLs., Ludovic Courtès, 2017/12/06
- 12/29: website: packages: Mark GNU packages in the listing., Ludovic Courtès, 2017/12/06
- 15/29: website: downloads: Change http to https in alpha.gnu.org URL., Ludovic Courtès, 2017/12/06
- 13/29: website: packages: Correctly compute supported systems.,
Ludovic Courtès <=
- 10/29: website: Use actual GuixSD screenshots., Ludovic Courtès, 2017/12/06
- 17/29: website: base: Change http to https in 'graphics'., Ludovic Courtès, 2017/12/06
- 19/29: website: base: Change URLs in 'data' from http to https., Ludovic Courtès, 2017/12/06
- 06/29: website: packages: Interpret synopsis/description Texinfo., Ludovic Courtès, 2017/12/06
- 21/29: website: packages: Gracefully deal with empty package descriptions., Ludovic Courtès, 2017/12/06
- 24/29: website: packages: Remove links to package issues., Ludovic Courtès, 2017/12/06
- 18/29: website: base: Change some http to https., Ludovic Courtès, 2017/12/06
- 23/29: website: Hard-code file:// URL root when GUIX_WEB_SITE_LOCAL., Ludovic Courtès, 2017/12/06
- 20/29: website: Change http to https in URLs., Ludovic Courtès, 2017/12/06
- 25/29: website: packages: 'all-packages' memoizes its result., Ludovic Courtès, 2017/12/06