at 22.05-pre 24 kB view raw
1<?xml version="1.0" encoding="UTF-8"?> 2<article xmlns="http://docbook.org/ns/docbook" 3 xmlns:xlink="http://www.w3.org/1999/xlink"> 4 <title>Nixpkgs Release Notes</title> 5 <section xml:id="release-notes-0.14"> 6 <title>Release 0.14 (June 4, 2012)</title> 7 8 <para> 9 In preparation for the switch from Subversion to Git, this release is mainly the prevent the Nixpkgs version number from going backwards. (This would happen because prerelease version numbers produced for the Git repository are lower than those for the Subversion repository.) 10 </para> 11 12 <para> 13 Since the last release, there have been thousands of changes and new packages by numerous contributors. For details, see the commit logs. 14 </para> 15 </section> 16 <section xml:id="release-notes-0.13"> 17 <title>Release 0.13 (February 5, 2010)</title> 18 19 <para> 20 As always, there are many changes. Some of the most important updates are: 21 <itemizedlist> 22 <listitem> 23 <para> 24 Glibc 2.9. 25 </para> 26 </listitem> 27 <listitem> 28 <para> 29 GCC 4.3.3. 30 </para> 31 </listitem> 32 <listitem> 33 <para> 34 Linux 2.6.32. 35 </para> 36 </listitem> 37 <listitem> 38 <para> 39 X.org 7.5. 40 </para> 41 </listitem> 42 <listitem> 43 <para> 44 KDE 4.3.4. 45 </para> 46 </listitem> 47 </itemizedlist> 48 </para> 49 </section> 50 <section xml:id="release-notes-0.12"> 51 <title>Release 0.12 (April 24, 2009)</title> 52 53 <para> 54 There are way too many additions to Nixpkgs since the last release to list here: for example, the number of packages on Linux has increased from 1002 to 2159. However, some specific improvements are worth listing: 55 <itemizedlist> 56 <listitem> 57 <para> 58 Nixpkgs now has a manual. In particular, it describes the standard build environment in detail. 59 </para> 60 </listitem> 61 <listitem> 62 <para> 63 Major new packages: 64 <itemizedlist> 65 <listitem> 66 <para> 67 KDE 4. 68 </para> 69 </listitem> 70 <listitem> 71 <para> 72 TeXLive. 73 </para> 74 </listitem> 75 <listitem> 76 <para> 77 VirtualBox. 78 </para> 79 </listitem> 80 </itemizedlist> 81 … and many others. 82 </para> 83 </listitem> 84 <listitem> 85 <para> 86 Important updates: 87 <itemizedlist> 88 <listitem> 89 <para> 90 Glibc 2.7. 91 </para> 92 </listitem> 93 <listitem> 94 <para> 95 GCC 4.2.4. 96 </para> 97 </listitem> 98 <listitem> 99 <para> 100 Linux 2.6.25 — 2.6.28. 101 </para> 102 </listitem> 103 <listitem> 104 <para> 105 Firefox 3. 106 </para> 107 </listitem> 108 <listitem> 109 <para> 110 X.org 7.3. 111 </para> 112 </listitem> 113 </itemizedlist> 114 </para> 115 </listitem> 116 <listitem> 117 <para> 118 Support for building derivations in a virtual machine, including RPM and Debian builds in automatically generated VM images. See <filename>pkgs/build-support/vm/default.nix</filename> for details. 119 </para> 120 </listitem> 121 <listitem> 122 <para> 123 Improved support for building Haskell packages. 124 </para> 125 </listitem> 126 </itemizedlist> 127 </para> 128 129 <para> 130 The following people contributed to this release: Andres Löh, Arie Middelkoop, Armijn Hemel, Eelco Dolstra, Lluís Batlle, Ludovic Courtès, Marc Weber, Mart Kolthof, Martin Bravenboer, Michael Raskin, Nicolas Pierron, Peter Simons, Pjotr Prins, Rob Vermaas, Sander van der Burg, Tobias Hammerschmidt, Valentin David, Wouter den Breejen and Yury G. Kudryashov. In addition, several people contributed patches on the <literal>nix-dev</literal> mailing list. 131 </para> 132 </section> 133 <section xml:id="release-notes-0.11"> 134 <title>Release 0.11 (September 11, 2007)</title> 135 136 <para> 137 This release has the following improvements: 138 <itemizedlist> 139 <listitem> 140 <para> 141 The standard build environment (<literal>stdenv</literal>) is now pure on the <literal>x86_64-linux</literal> and <literal>powerpc-linux</literal> platforms, just as on <literal>i686-linux</literal>. (Purity means that building and using the standard environment has no dependencies outside of the Nix store. For instance, it doesn’t require an external C compiler such as <filename>/usr/bin/gcc</filename>.) Also, the statically linked binaries used in the bootstrap process are now automatically reproducible, making it easy to update the bootstrap tools and to add support for other Linux platforms. See <filename>pkgs/stdenv/linux/make-bootstrap-tools.nix</filename> for details. 142 </para> 143 </listitem> 144 <listitem> 145 <para> 146 Hook variables in the generic builder are now executed using the <function>eval</function> shell command. This has a major advantage: you can write hooks directly in Nix expressions. For instance, rather than writing a builder like this: 147<programlisting> 148source $stdenv/setup 149 150postInstall=postInstall 151postInstall() { 152 ln -sf gzip $out/bin/gunzip 153 ln -sf gzip $out/bin/zcat 154} 155 156genericBuild</programlisting> 157 (the <literal>gzip</literal> builder), you can just add this attribute to the derivation: 158<programlisting> 159postInstall = "ln -sf gzip $out/bin/gunzip; ln -sf gzip $out/bin/zcat";</programlisting> 160 and so a separate build script becomes unnecessary. This should allow us to get rid of most builders in Nixpkgs. 161 </para> 162 </listitem> 163 <listitem> 164 <para> 165 It is now possible to have the generic builder pass arguments to <command>configure</command> and <command>make</command> that contain whitespace. Previously, for example, you could say in a builder, 166<programlisting> 167configureFlags="CFLAGS=-O0"</programlisting> 168 but not 169<programlisting> 170configureFlags="CFLAGS=-O0 -g"</programlisting> 171 since the <literal>-g</literal> would be interpreted as a separate argument to <command>configure</command>. Now you can say 172<programlisting> 173configureFlagsArray=("CFLAGS=-O0 -g")</programlisting> 174 or similarly 175<programlisting> 176configureFlagsArray=("CFLAGS=-O0 -g" "LDFLAGS=-L/foo -L/bar")</programlisting> 177 which does the right thing. Idem for <literal>makeFlags</literal>, <literal>installFlags</literal>, <literal>checkFlags</literal> and <literal>distFlags</literal>. 178 </para> 179 <para> 180 Unfortunately you can't pass arrays to Bash through the environment, so you can't put the array above in a Nix expression, e.g., 181<programlisting> 182configureFlagsArray = ["CFLAGS=-O0 -g"];</programlisting> 183 since it would just be flattened to a since string. However, you <emphasis>can</emphasis> use the inline hooks described above: 184<programlisting> 185preConfigure = "configureFlagsArray=(\"CFLAGS=-O0 -g\")";</programlisting> 186 </para> 187 </listitem> 188 <listitem> 189 <para> 190 The function <function>fetchurl</function> now has support for two different kinds of mirroring of files. First, it has support for <emphasis>content-addressable mirrors</emphasis>. For example, given the <function>fetchurl</function> call 191<programlisting> 192fetchurl { 193 url = "http://releases.mozilla.org/<replaceable>...</replaceable>/firefox-2.0.0.6-source.tar.bz2"; 194 sha1 = "eb72f55e4a8bf08e8c6ef227c0ade3d068ba1082"; 195}</programlisting> 196 <function>fetchurl</function> will first try to download this file from <link 197 xlink:href="http://tarballs.nixos.org/sha1/eb72f55e4a8bf08e8c6ef227c0ade3d068ba1082"/>. If that file doesn’t exist, it will try the original URL. In general, the “content-addressed” location is <replaceable>mirror</replaceable><literal>/</literal><replaceable>hash-type</replaceable><literal>/</literal><replaceable>hash</replaceable>. There is currently only one content-addressable mirror (<link 198 xlink:href="http://tarballs.nixos.org"/>), but more can be specified in the <varname>hashedMirrors</varname> attribute in <filename>pkgs/build-support/fetchurl/mirrors.nix</filename>, or by setting the <envar>NIX_HASHED_MIRRORS</envar> environment variable to a whitespace-separated list of URLs. 199 </para> 200 <para> 201 Second, <function>fetchurl</function> has support for widely-mirrored distribution sites such as SourceForge or the Linux kernel archives. Given a URL of the form <literal>mirror://<replaceable>site</replaceable>/<replaceable>path</replaceable></literal>, it will try to download <replaceable>path</replaceable> from a configurable list of mirrors for <replaceable>site</replaceable>. (This idea was borrowed from Gentoo Linux.) Example: 202<programlisting> 203fetchurl { 204 url = mirror://gnu/gcc/gcc-4.2.0/gcc-core-4.2.0.tar.bz2; 205 sha256 = "0ykhzxhr8857dr97z0j9wyybfz1kjr71xk457cfapfw5fjas4ny1"; 206}</programlisting> 207 Currently <replaceable>site</replaceable> can be <literal>sourceforge</literal>, <literal>gnu</literal> and <literal>kernel</literal>. The list of mirrors is defined in <filename>pkgs/build-support/fetchurl/mirrors.nix</filename>. You can override the list of mirrors for a particular site by setting the environment variable <envar>NIX_MIRRORS_<replaceable>site</replaceable></envar>, e.g. 208<programlisting> 209export NIX_MIRRORS_sourceforge=http://osdn.dl.sourceforge.net/sourceforge/</programlisting> 210 </para> 211 </listitem> 212 <listitem> 213 <para> 214 Important updates: 215 <itemizedlist> 216 <listitem> 217 <para> 218 Glibc 2.5. 219 </para> 220 </listitem> 221 <listitem> 222 <para> 223 GCC 4.1.2. 224 </para> 225 </listitem> 226 <listitem> 227 <para> 228 Gnome 2.16.3. 229 </para> 230 </listitem> 231 <listitem> 232 <para> 233 X11R7.2. 234 </para> 235 </listitem> 236 <listitem> 237 <para> 238 Linux 2.6.21.7 and 2.6.22.6. 239 </para> 240 </listitem> 241 <listitem> 242 <para> 243 Emacs 22.1. 244 </para> 245 </listitem> 246 </itemizedlist> 247 </para> 248 </listitem> 249 <listitem> 250 <para> 251 Major new packages: 252 <itemizedlist> 253 <listitem> 254 <para> 255 KDE 3.5.6 Base. 256 </para> 257 </listitem> 258 <listitem> 259 <para> 260 Wine 0.9.43. 261 </para> 262 </listitem> 263 <listitem> 264 <para> 265 OpenOffice 2.2.1. 266 </para> 267 </listitem> 268 <listitem> 269 <para> 270 Many Linux system packages to support NixOS. 271 </para> 272 </listitem> 273 </itemizedlist> 274 </para> 275 </listitem> 276 </itemizedlist> 277 </para> 278 279 <para> 280 The following people contributed to this release: Andres Löh, Arie Middelkoop, Armijn Hemel, Eelco Dolstra, Marc Weber, Mart Kolthof, Martin Bravenboer, Michael Raskin, Wouter den Breejen and Yury G. Kudryashov. 281 </para> 282 </section> 283 <section xml:id="release-notes-0.10"> 284 <title>Release 0.10 (October 12, 2006)</title> 285 286 <note> 287 <para> 288 This release of Nixpkgs requires <link 289xlink:href='https://nixos.org/releases/nix/nix-0.10/'>Nix 0.10</link> or higher. 290 </para> 291 </note> 292 293 <para> 294 This release has the following improvements: 295 </para> 296 297 <itemizedlist> 298 <listitem> 299 <para> 300 <filename>pkgs/system/all-packages-generic.nix</filename> is gone, we now just have <filename>pkgs/top-level/all-packages.nix</filename> that contains all available packages. This should cause much less confusion with users. <filename>all-packages.nix</filename> is a function that by default returns packages for the current platform, but you can override this by specifying a different <varname>system</varname> argument. 301 </para> 302 </listitem> 303 <listitem> 304 <para> 305 Certain packages in Nixpkgs are now user-configurable through a configuration file, i.e., without having to edit the Nix expressions in Nixpkgs. For instance, the Firefox provided in the Nixpkgs channel is built without the RealPlayer plugin (for legal reasons). Previously, you could easily enable RealPlayer support by editing the call to the Firefox function in <filename>all-packages.nix</filename>, but such changes are not respected when Firefox is subsequently updated through the Nixpkgs channel. 306 </para> 307 <para> 308 The Nixpkgs configuration file (found in <filename>~/.nixpkgs/config.nix</filename> or through the <envar>NIXPKGS_CONFIG</envar> environment variable) is an attribute set that contains configuration options that <filename>all-packages.nix</filename> reads and uses for certain packages. For instance, the following configuration file: 309<programlisting> 310{ 311 firefox = { 312 enableRealPlayer = true; 313 }; 314}</programlisting> 315 persistently enables RealPlayer support in the Firefox build. 316 </para> 317 <para> 318 (Actually, <literal>firefox.enableRealPlayer</literal> is the <emphasis>only</emphasis> configuration option currently available, but more are sure to be added.) 319 </para> 320 </listitem> 321 <listitem> 322 <para> 323 Support for new platforms: 324 <itemizedlist> 325 <listitem> 326 <para> 327 <literal>i686-cygwin</literal>, i.e., Windows (using <link xlink:href="http://www.cygwin.com/">Cygwin</link>). The standard environment on <literal>i686-cygwin</literal> by default builds binaries for the Cygwin environment (i.e., it uses Cygwin tools and produces executables that use the Cygwin library). However, there is also a standard environment that produces binaries that use <link 328 xlink:href="http://www.mingw.org/">MinGW</link>. You can use it by calling <filename>all-package.nix</filename> with the <varname>stdenvType</varname> argument set to <literal>"i686-mingw"</literal>. 329 </para> 330 </listitem> 331 <listitem> 332 <para> 333 <literal>i686-darwin</literal>, i.e., Mac OS X on Intel CPUs. 334 </para> 335 </listitem> 336 <listitem> 337 <para> 338 <literal>powerpc-linux</literal>. 339 </para> 340 </listitem> 341 <listitem> 342 <para> 343 <literal>x86_64-linux</literal>, i.e., Linux on 64-bit AMD/Intel CPUs. Unlike <literal>i686-linux</literal>, this platform doesn’t have a pure <literal>stdenv</literal> yet. 344 </para> 345 </listitem> 346 </itemizedlist> 347 </para> 348 </listitem> 349 <listitem> 350 <para> 351 The default compiler is now GCC 4.1.1. 352 </para> 353 </listitem> 354 <listitem> 355 <para> 356 X11 updated to X.org’s X11R7.1. 357 </para> 358 </listitem> 359 <listitem> 360 <para> 361 Notable new packages: 362 <itemizedlist> 363 <listitem> 364 <para> 365 Opera. 366 </para> 367 </listitem> 368 <listitem> 369 <para> 370 Microsoft Visual C++ 2005 Express Edition and the Windows SDK. 371 </para> 372 </listitem> 373 </itemizedlist> 374 In total there are now around 809 packages in Nixpkgs. 375 </para> 376 </listitem> 377 <listitem> 378 <para> 379 It is now <emphasis>much</emphasis> easier to override the default C compiler and other tools in <literal>stdenv</literal> for specific packages. <filename>all-packages.nix</filename> provides two utility functions for this purpose: <function>overrideGCC</function> and <function>overrideInStdenv</function>. Both take a <literal>stdenv</literal> and return an augmented <literal>stdenv</literal>; the formed changes the C compiler, and the latter adds additional packages to the front of <literal>stdenv</literal>’s initial <envar>PATH</envar>, allowing tools to be overridden. 380 </para> 381 <para> 382 For instance, the package <varname>strategoxt</varname> doesn’t build with the GNU Make in <literal>stdenv</literal> (version 3.81), so we call it with an augmented <literal>stdenv</literal> that uses GNU Make 3.80: 383<programlisting> 384strategoxt = (import ../development/compilers/strategoxt) { 385 inherit fetchurl pkgconfig sdf aterm; 386 stdenv = overrideInStdenv stdenv [gnumake380]; 387}; 388 389gnumake380 = <replaceable>...</replaceable>;</programlisting> 390 Likewise, there are many packages that don’t compile with the default GCC (4.1.1), but that’s easily fixed: 391<programlisting> 392exult = import ../games/exult { 393 inherit fetchurl SDL SDL_mixer zlib libpng unzip; 394 stdenv = overrideGCC stdenv gcc34; 395};</programlisting> 396 </para> 397 </listitem> 398 <listitem> 399 <para> 400 It has also become much easier to experiment with changes to the <literal>stdenv</literal> setup script (which notably contains the generic builder). Since edits to <filename>pkgs/stdenv/generic/setup.sh</filename> trigger a rebuild of <emphasis>everything</emphasis>, this was formerly quite painful. But now <literal>stdenv</literal> contains a function to “regenerate” <literal>stdenv</literal> with a different setup script, allowing the use of a different setup script for specific packages: 401<programlisting> 402pkg = import <replaceable>...</replaceable> { 403 stdenv = stdenv.regenerate ./my-setup.sh; 404 <replaceable>...</replaceable> 405}</programlisting> 406 </para> 407 </listitem> 408 <listitem> 409 <para> 410 Packages can now have a human-readable <emphasis>description</emphasis> field. Package descriptions are shown by <literal>nix-env -qa --description</literal>. In addition, they’re shown on the Nixpkgs release page. A description can be added to a package as follows: 411<programlisting> 412stdenv.mkDerivation { 413 name = "exult-1.2"; 414 <replaceable>...</replaceable> 415 meta = { 416 description = "A reimplementation of the Ultima VII game engine"; 417 }; 418}</programlisting> 419 The <varname>meta</varname> attribute is not passed to the builder, so changes to the description do not trigger a rebuild. Additional <varname>meta</varname> attributes may be defined in the future (such as the URL of the package’s homepage, the license, etc.). 420 </para> 421 </listitem> 422 </itemizedlist> 423 424 <para> 425 The following people contributed to this release: Andres Löh, Armijn Hemel, Christof Douma, Eelco Dolstra, Eelco Visser, Mart Kolthof, Martin Bravenboer, Merijn de Jonge, Rob Vermaas and Roy van den Broek. 426 </para> 427 </section> 428 <section xml:id="release-notes-0.9"> 429 <title>Release 0.9 (January 31, 2006)</title> 430 431 <para> 432 There have been zillions of changes since the last release of Nixpkgs. Many packages have been added or updated. The following are some of the more notable changes: 433 </para> 434 435 <itemizedlist> 436 <listitem> 437 <para> 438 Distribution files have been moved to <link 439 xlink:href="https://nixos.org/" />. 440 </para> 441 </listitem> 442 <listitem> 443 <para> 444 The C library on Linux, Glibc, has been updated to version 2.3.6. 445 </para> 446 </listitem> 447 <listitem> 448 <para> 449 The default compiler is now GCC 3.4.5. GCC 4.0.2 is also available. 450 </para> 451 </listitem> 452 <listitem> 453 <para> 454 The old, unofficial Xlibs has been replaced by the official modularised X11 distribution from X.org, i.e., X11R7.0. X11R7.0 consists of 287 (!) packages, all of which are in Nixpkgs though not all have been tested. It is now possible to build a working X server (previously we only had X client libraries). We use a fully Nixified X server on NixOS. 455 </para> 456 </listitem> 457 <listitem> 458 <para> 459 The Sun JDK 5 has been purified, i.e., it doesn’t require any non-Nix components such as <filename>/lib/ld-linux.so.2</filename>. This means that Java applications such as Eclipse and Azureus can run on NixOS. 460 </para> 461 </listitem> 462 <listitem> 463 <para> 464 Hardware-accelerated OpenGL support, used by games like Quake 3 (which is now built from source). 465 </para> 466 </listitem> 467 <listitem> 468 <para> 469 Improved support for FreeBSD on x86. 470 </para> 471 </listitem> 472 <listitem> 473 <para> 474 Improved Haskell support; e.g., the GHC build is now pure. 475 </para> 476 </listitem> 477 <listitem> 478 <para> 479 Some support for cross-compilation: cross-compiling builds of GCC and Binutils, and cross-compiled builds of the C library uClibc. 480 </para> 481 </listitem> 482 <listitem> 483 <para> 484 Notable new packages: 485 <itemizedlist> 486 <listitem> 487 <para> 488 teTeX, including support for building LaTeX documents using Nix (with automatic dependency determination). 489 </para> 490 </listitem> 491 <listitem> 492 <para> 493 Ruby. 494 </para> 495 </listitem> 496 <listitem> 497 <para> 498 System-level packages to support NixOS, e.g. Grub, GNU <literal>parted</literal> and so on. 499 </para> 500 </listitem> 501 <listitem> 502 <para> 503 <literal>ecj</literal>, the Eclipse Compiler for Java, so we finally have a freely distributable compiler that supports Java 5.0. 504 </para> 505 </listitem> 506 <listitem> 507 <para> 508 <literal>php</literal>. 509 </para> 510 </listitem> 511 <listitem> 512 <para> 513 The GIMP. 514 </para> 515 </listitem> 516 <listitem> 517 <para> 518 Inkscape. 519 </para> 520 </listitem> 521 <listitem> 522 <para> 523 GAIM. 524 </para> 525 </listitem> 526 <listitem> 527 <para> 528 <literal>kdelibs</literal>. This allows us to add KDE-based packages (such as <literal>kcachegrind</literal>). 529 </para> 530 </listitem> 531 </itemizedlist> 532 </para> 533 </listitem> 534 </itemizedlist> 535 536 <para> 537 The following people contributed to this release: Andres Löh, Armijn Hemel, Bogdan Dumitriu, Christof Douma, Eelco Dolstra, Eelco Visser, Mart Kolthof, Martin Bravenboer, Rob Vermaas and Roy van den Broek. 538 </para> 539 </section> 540 <section xml:id="release-notes-0.8"> 541 <title>Release 0.8 (April 11, 2005)</title> 542 543 <para> 544 This release is mostly to remain synchronised with the changed hashing scheme in Nix 0.8. 545 </para> 546 547 <para> 548 Notable updates: 549 <itemizedlist> 550 <listitem> 551 <para> 552 Adobe Reader 7.0 553 </para> 554 </listitem> 555 <listitem> 556 <para> 557 Various security updates (zlib 1.2.2, etc.) 558 </para> 559 </listitem> 560 </itemizedlist> 561 </para> 562 </section> 563 <section xml:id="release-notes-0.7"> 564 <title>Release 0.7 (March 14, 2005)</title> 565 566 <itemizedlist> 567 <listitem> 568 <para> 569 The bootstrap process for the standard build environment on Linux (stdenv-linux) has been improved. It is no longer dependent in its initial bootstrap stages on the system Glibc, GCC, and other tools. Rather, Nixpkgs contains a statically linked bash and curl, and uses that to download other statically linked tools. These are then used to build a Glibc and dynamically linked versions of all other tools. 570 </para> 571 <para> 572 This change also makes the bootstrap process faster. For instance, GCC is built only once instead of three times. 573 </para> 574 <para> 575 (Contributed by Armijn Hemel.) 576 </para> 577 </listitem> 578 <listitem> 579 <para> 580 Tarballs used by Nixpkgs are now obtained from the same server that hosts Nixpkgs (<link 581 xlink:href="http://catamaran.labs.cs.uu.nl/" />). This reduces the risk of packages being unbuildable due to moved or deleted files on various servers. 582 </para> 583 </listitem> 584 <listitem> 585 <para> 586 There now is a generic mechanism for building Perl modules. See the various Perl modules defined in pkgs/system/all-packages-generic.nix. 587 </para> 588 </listitem> 589 <listitem> 590 <para> 591 Notable new packages: 592 <itemizedlist> 593 <listitem> 594 <para> 595 Qt 3 596 </para> 597 </listitem> 598 <listitem> 599 <para> 600 MySQL 601 </para> 602 </listitem> 603 <listitem> 604 <para> 605 MythTV 606 </para> 607 </listitem> 608 <listitem> 609 <para> 610 Mono 611 </para> 612 </listitem> 613 <listitem> 614 <para> 615 MonoDevelop (alpha) 616 </para> 617 </listitem> 618 <listitem> 619 <para> 620 Xine 621 </para> 622 </listitem> 623 </itemizedlist> 624 </para> 625 </listitem> 626 <listitem> 627 <para> 628 Notable updates: 629 <itemizedlist> 630 <listitem> 631 <para> 632 GCC 3.4.3 633 </para> 634 </listitem> 635 <listitem> 636 <para> 637 Glibc 2.3.4 638 </para> 639 </listitem> 640 <listitem> 641 <para> 642 GTK 2.6 643 </para> 644 </listitem> 645 </itemizedlist> 646 </para> 647 </listitem> 648 </itemizedlist> 649 </section> 650</article>