Turn Guix into "GNU Guix".

* configure.ac: Change package name to "GNU Guix", and bug-report
  address to `gnu-system-discuss@gnu.org'.
* doc/guix.texi: Replace "Guix" by "GNU Guix" in some places.
  (Top, Introduction): Mention "for the GNU system".
* HACKING, README: Use "GNU Guix" instead of "Guix" in some places.
This commit is contained in:
Ludovic Courtès 2012-11-18 15:22:00 +01:00
parent 68c141f144
commit f8348b91ad
4 changed files with 17 additions and 16 deletions

View File

@ -1,6 +1,6 @@
-*- mode: org; coding: utf-8; -*- -*- mode: org; coding: utf-8; -*-
#+TITLE: Hacking Guix and its incredible distro #+TITLE: Hacking GNU Guix and its incredible distro
Copyright © 2012 Ludovic Courtès <ludo@gnu.org> Copyright © 2012 Ludovic Courtès <ludo@gnu.org>

2
README
View File

@ -1,6 +1,6 @@
-*- mode: org -*- -*- mode: org -*-
Guix is Nix[0] from Guile[1]! GNU Guix is Nix[0] from Guile[1]!
Concretely, it allows Nix package management to be done entirely in Concretely, it allows Nix package management to be done entirely in
Scheme. The goal is to investigate whether Scheme, and in particular Scheme. The goal is to investigate whether Scheme, and in particular

View File

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ(2.68) AC_PREREQ(2.68)
AC_INIT([Guix], [0.1], [guile-user@gnu.org]) AC_INIT([GNU Guix], [0.1], [gnu-system-discuss@gnu.org])
AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.11 gnu silent-rules subdir-objects \ AM_INIT_AUTOMAKE([1.11 gnu silent-rules subdir-objects \

View File

@ -4,7 +4,7 @@
@c %**start of header @c %**start of header
@setfilename guix.info @setfilename guix.info
@documentencoding UTF-8 @documentencoding UTF-8
@settitle Guix Reference Manual @settitle GNU Guix Reference Manual
@c %**end of header @c %**end of header
@include version.texi @include version.texi
@ -19,8 +19,8 @@
@end direntry @end direntry
@titlepage @titlepage
@title{Guix Reference Manual} @title{GNU Guix Reference Manual}
@subtitle{Using the Guix Functional Package Manager} @subtitle{Using the GNU Guix Functional Package Manager}
@author Ludovic Courtès @author Ludovic Courtès
@page @page
@ -41,7 +41,7 @@ Documentation License''.
@end titlepage @end titlepage
@copying @copying
This manual documents Guix version @value{VERSION}. This manual documents GNU Guix version @value{VERSION}.
Copyright (C) 2012 Ludovic Courtès Copyright (C) 2012 Ludovic Courtès
@ -57,9 +57,10 @@ Documentation License.''
@c ********************************************************************* @c *********************************************************************
@node Top @node Top
@top Guix @top GNU Guix
This document describes Guix version @value{VERSION}. This document describes GNU Guix version @value{VERSION}, a functional
package management tool written for the GNU system.
@menu @menu
* Introduction:: What is Guix about? * Introduction:: What is Guix about?
@ -77,12 +78,12 @@ This document describes Guix version @value{VERSION}.
@node Introduction @node Introduction
@chapter Introduction @chapter Introduction
Guix is a functional package management tool. Package management GNU Guix is a functional package management tool for the GNU system.
consists in all the activities that relate to building packages from Package management consists in all the activities that relate to
source, honoring the build-time and run-time dependencies on packages, building packages from source, honoring the build-time and run-time
installing packages in user environments, upgrading installed packages dependencies on packages, installing packages in user environments,
to new versions or rolling back to a previous set, removing unused upgrading installed packages to new versions or rolling back to a
software packages, etc. previous set, removing unused software packages, etc.
@cindex functional package management @cindex functional package management
The term @dfn{functional} refers to a specific package management The term @dfn{functional} refers to a specific package management
@ -119,7 +120,7 @@ The remainder of this manual describes them.
@node Package Management @node Package Management
@chapter Package Management @chapter Package Management
The purpose of Guix is to allow users to easily install, upgrade, and The purpose of GNU Guix is to allow users to easily install, upgrade, and
remove software packages, without having to know about their build remove software packages, without having to know about their build
procedure or dependencies. Guix also goes beyond this obvious set of procedure or dependencies. Guix also goes beyond this obvious set of
features. features.