From mboxrd@z Thu Jan 1 00:00:00 1970 From: taylanbayirli@gmail.com (Taylan Ulrich =?UTF-8?Q?Bay=C4=B1rl=C4=B1/Kammer?=) Subject: bug#25254: [minor] 'About' page says GuixSD is a "GNU/Linux Date: Sun, 25 Dec 2016 20:50:53 +0100 Message-ID: <87k2andbz6.fsf@gmail.com> References: <87r34ywqat.fsf@gmail.com> <86dda095c910a87e098687f346b9ed1b@openmailbox.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50508) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cLEjC-0000u8-Dv for bug-guix@gnu.org; Sun, 25 Dec 2016 14:45:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cLEj8-00017C-FY for bug-guix@gnu.org; Sun, 25 Dec 2016 14:45:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:39564) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cLEj8-000178-Am for bug-guix@gnu.org; Sun, 25 Dec 2016 14:45:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cLEj7-0004vx-T0 for bug-guix@gnu.org; Sun, 25 Dec 2016 14:45:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <86dda095c910a87e098687f346b9ed1b@openmailbox.org> ("Luis Felipe =?UTF-8?Q?L=C3=B3pez?= Acevedo"'s message of "Sun, 25 Dec 2016 11:45:50 -0500") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Luis Felipe =?UTF-8?Q?L=C3=B3pez?= Acevedo Cc: 25254@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Luis Felipe L=C3=B3pez Acevedo writes: > Instead of the current patch, however, I'd change the whole paragraph > to something like this (a combination with the current first paragraph > on Wikipedia): > > GuixSD (Guix System Distribution) is a distribution of the [GNU > operating system][link] centered on the GNU Guix package manager. It > uses the [Linux-libre kernel][link] by default, with the [GNU > Hurd][link] being supported as of version 0.12.0. As a GNU > distribution, it is committed to respecting and enhancing the > [freedom][link] of its users, and adheres to the [GNU Free System > Distribution Guidelines][link]. I also like this idea. Here's a new patch. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-website-about-Refine-paragraph-about-GuixSD.patch >From b5672296e91671918035ca90370844c00f394340 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?= Date: Sat, 24 Dec 2016 22:14:18 +0100 Subject: [PATCH] website: about: Refine paragraph about GuixSD. * website/www/about.scm (about-page): Say that GuixSD is a distribution of GNU and not a GNU/Linux distribution. Mention use of Linux-libre by default and support of Hurd. --- website/www/about.scm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/website/www/about.scm b/website/www/about.scm index 38f3a1e..32646d8 100644 --- a/website/www/about.scm +++ b/website/www/about.scm @@ -48,8 +48,15 @@ volunteers around the world under the umbrella of the " "GNU Project") ". " " This is the official web site for both projects. ") - (p "GuixSD is a GNU/Linux distribution committed to -respecting and enhancing " + (p "GuixSD (Guix System Distribution) is a distribution of the " + (a (@ (href ,(gnu-url ""))) "GNU operating system") + " centered on the GNU Guix package manager. It uses the" + (a (@ (href ,(gnu-url "software/linux-libre"))) + "Linux-libre kernel") + " by default, with the " + (a (@ (href ,(gnu-url "software/hurd"))) "Hurd") + " being supported as of version 0.12.0. As a GNU +distribution, it is committed to respecting and enhancing " (a (@ (href ,(gnu-url "philosophy/free-sw.html"))) "the freedom of its users") ". As such, it adheres to the " -- 2.10.2 --=-=-=--