unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob fbcd6b49d87882498caa76975f6f6480a1a6d294 6693 bytes (raw)
name: website/www/download.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
 
(define-module (www download)
  #:export (download))

(define download
  '(html (@ (lang "en"))
	 (head (meta (@ (charset "utf-8")))
	       (meta (@ (name "author")
			(content "GuixSD Contributors")))
	       (meta (@ (name "description")
			(content
			 "GuixSD is GNU's advanced system distribution. GNU is an operating system which respects the freedom of computer users. You are free to run the system for any purpose, study how it works, improve it, and share it with the whole world.")))
	       (meta (@ (name "keywords")
			(content
			 "GNU, FSF, Free Software Foundation, Linux, Emacs, GCC, Unix, Free Software, Libre Software, Operating System, GNU Kernel, GNU Hurd, GUix Package Manager, Guile Scheme, Functional package management")))
	       (meta (@ (name "viewport")
			(content "width=device-width, initial-scale=1.0")))
	       (link (@ (type "text/css")
			(rel "stylesheet")
			(href "/software/guix/static/base/css/base.css")))
	       (link (@ (type "text/css")
			(rel "stylesheet")
			(href "/software/guix/static/base/css/download.css")))
	       (link (@ (type "image/png")
			(rel "icon")
			(href "/software/guix/static/base/img/favicon.png")))
	       (link (@ (rel "license") (href "Pending...")))
	       (title "Download - GuixSD"))
	 (body (div (@ (class "message-box msg-info"))
		    (span (@ (class "msg-label")) "Note")
		    " The Guix System Distribution (GuixSD) is alpha software. This means it is not production-ready. It may contain bugs and lack important features. But more than a disclaimer, this is an invitation to join us in improving it. See "
		    (a (@ (href "/software/guix/contribute/"))
		       "Contributing")
		    ", for more information. We hope you can soon switch to GuixSD without fear. ")
	       (div (@ (id "header-box"))
		    (a (@ (id "logo") (href "/software/guix/"))
		       (img (@ (src "/software/guix/static/base/img/GuixSD-logo.png")
			       (alt "GuixSD"))))
		    (ul (@ (id "site-nav"))
			(li (a (@ (href "/software/guix/download/"))
			       "Download"))
			(li (a (@ (href "/software/guix/package-list.html"))
			       "Packages"))
			(li (a (@ (href "/software/guix/help/")) "Help"))
			(li (a (@ (href "/software/guix/contribute/"))
			       "Contribute"))
			(li (a (@ (href "/software/guix/donate/"))
			       "Donate"))
			(li (a (@ (href "/software/guix/about/"))
			       "About"))))
	       (div (@ (id "content-box"))
		    (article
		     (h1 "Download")
		     (p " As of version 0.8.1, the Guix System Distribution "
			(a (@ (href "/software/guix/manual/html_node/System-Installation.html"))
			   " can be installed")
			" on an i686 or x86_64 machine.  It uses the "
			(a (@ (href "/software/linux-libre"))
			   "Linux-Libre")
			" kernel and the "
			(a (@ (href "/software/dmd")) "GNU dmd")
			" init system. Alternately, its package manager, GNU Guix, can be installed as an additional package manager on top of an installed Linux-based system. ")
		     (div (@ (class "text-center"))
			  (div (@ (class "summary-box"))
			       (div (@ (class "text-center"))
				    (img (@ (src "/software/guix/static/base/img/GuixSD-package.png")
					    (alt ""))))
			       (h2 "GuixSD 0.8.2 (i686)")
			       (p " USB installer for machines with the following minimum system requirements: ")
			       (table (tbody (tr (th "Architecture")
						 (td "i686"))
					     (tr (th "Processor")
						 (td "1GHz"))
					     (tr (th "Memory")
						 (td "512MB"))
					     (tr (th "Hard Drive")
						 (td "5GB"))))
			       (p (@ (class "text-center"))
				  (a (@ (href "#")
					(class "hlink-yellow-boxed"))
				     "DOWNLOAD")
				  (br)
				  " (140MB approx.)"
				  (br)
				  (a (@ (href "#")) "Get signature"))
			       (p " See the "
				  (a (@ (href "/software/guix/manual/html_node/System-Installation.html"))
				     " installation instructions")
				  " from the manual. ")
			       (p " Alternative download methods: "
				  (a (@ (href "#")) "torrent")
				  ". "))
			  (div (@ (class "summary-box"))
			       (div (@ (class "text-center"))
				    (img (@ (src "/software/guix/static/base/img/GuixSD-package.png")
					    (alt ""))))
			       (h2 "GuixSD 0.8.2 (x86_64)")
			       (p " USB installer for machines with the following minimum system  requirements: ")
			       (table (tbody (tr (th "Architecture")
						 (td "x86_64"))
					     (tr (th "Processor")
						 (td "1GHz"))
					     (tr (th "Memory")
						 (td "512MB"))
					     (tr (th "Hard Drive")
						 (td "5GB"))))
			       (p (@ (class "text-center"))
				  (a (@ (href "#")
					(class "hlink-yellow-boxed"))
				     "DOWNLOAD")
				  (br)
				  " (144MB approx.)"
				  (br)
				  (a (@ (href "#")) "Get signature"))
			       (p " See the "
				  (a (@ (href "/software/guix/manual/html_node/System-Installation.html"))
				     " installation instructions")
				  " from the manual. ")
			       (p " Alternative download methods: "
				  (a (@ (href "#")) "torrent")
				  ". "))
			  (div (@ (class "summary-box"))
			       (div (@ (class "text-center"))
				    (img (@ (src "/software/guix/static/base/img/Guix-package.png")
					    (alt ""))))
			       (h2 "GNU Guix 0.8.2")
			       (p " Archive distribution to install from source on machines with the  following minimum system requirements: ")
			       (table (tbody (tr (th "Architecture")
						 (td "i686, x86_64, mips64el, or armv7"))
					     (tr (th "Processor")
						 (td "1GHz"))
					     (tr (th "Memory")
						 (td "512MB"))
					     (tr (th "Hard Drive")
						 (td "5GB"))))
			       (p (@ (class "text-center"))
				  (a (@ (href "#")
					(class "hlink-yellow-boxed"))
				     "DOWNLOAD")
				  (br)
				  " (7.7MB approx.)"
				  (br)
				  (a (@ (href "#")) "Get signature"))
			       (p " See the "
				  (a (@ (href "/software/guix/manual/html_node/System-Installation.html"))
				     " installation instructions")
				  " from the manual. ")
			       (p " Alternative download methods: "
				  (a (@ (href "#")) "torrent")
				  ". ")))
		     (p " Source code for the Guix System Distribution USB installation images as well as GNU Guix can be found on the GNU ftp server for "
			(em "alpha")
			" releases: "
			(a (@ (href "http://alpha.gnu.org/gnu/guix/"))
			   "http://alpha.gnu.org/gnu/guix/")
			" (via HTTP) and "
			(a (@ (href "ftp://alpha.gnu.org/gnu/guix/"))
			   "ftp://alpha.gnu.org/gnu/guix/")
			" (via FTP). ")))
	       (div (@ (id "footer-box"))
		    " copyleft 2015 GuixSD "
		    (a (@ (href "/software/guix/contribute/")
			  (class "hlink-yellow"))
		       " Contributors")
		    ". Made with "
		    (span (@ (class "metta")) "♥")
		    " by humans. "))))

debug log:

solving fbcd6b4 ...
found fbcd6b4 in https://yhetil.org/guix-devel/87r3qt3dqt.fsf@openmailbox.org/

applying [1/1] https://yhetil.org/guix-devel/87r3qt3dqt.fsf@openmailbox.org/
diff --git a/website/www/download.scm b/website/www/download.scm
new file mode 100644
index 0000000..fbcd6b4

Checking patch website/www/download.scm...
Applied patch website/www/download.scm cleanly.

index at:
100644 fbcd6b49d87882498caa76975f6f6480a1a6d294	website/www/download.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).