Ticket #6145: 6145.docs.distributions.diff

File 6145.docs.distributions.diff, 5.2 KB (added by Pete Crosier, 16 years ago)

Brings distro documentation up-to date

  • docs/distributions.txt

     
    22Third-party distributions of Django
    33===================================
    44
    5 Several third-party distributors are now providing versions of Django integrated
    6 with their package-management systems. These can make installation and upgrading
    7 much easier for users of Django since the integration includes the ability to
    8 automatically install dependancies (like database adapters) that Django
    9 requires.
     5Several third-party distributors are now providing versions of Django
     6through their package management systems. These can make installation and
     7upgrading much easier as the package managers typically include the ability
     8to automatically install dependencies that Django requires.
    109
    1110Typically, these packages are based on the latest stable release of Django, so
    1211if you want to use the development version of Django you'll need to follow the
     
    1817FreeBSD
    1918=======
    2019
    21 The `FreeBSD`_ ports system offers both Django 0.96 (`py-django`_) and a more
    22 recent, but not current, version based on Django's trunk (`py-django-devel`_).
    23 These are installed in the normal FreeBSD way; for Django 0.96, for example, type:
    24 ``cd /usr/ports/www/py-django && sudo make install clean``.
     20The `FreeBSD`_ ports system offers both Django 0.96.1 (`py-django`_) and a
     21more recent, but not current, version based on Django's trunk
     22(`py-django-devel`_). These are installed in the normal FreeBSD way; for
     23Django 0.96, for example, type: ``cd /usr/ports/www/py-django && sudo make
     24install clean``.
    2525
    2626.. _FreeBSD: http://www.freebsd.org/
    2727.. _py-django: http://www.freebsd.org/cgi/cvsweb.cgi/ports/www/py-django/
     
    3434------
    3535
    3636A `packaged version of Django`_ is available for `Debian GNU/Linux`_. Version
    37 0.95.1 is available in the "stable" repository; Version 0.96 is available in
    38 the "testing" and "unstable" repositories. Regardless of your chosen repository,
    39 you can install Django by typing ``apt-get install python-django``.
     370.95.1 is available in the "stable" repository; 0.96.1 is available in
     38the "testing" and "unstable" repositories. Regardless of your chosen
     39repository, you can install Django by typing ``apt-get install
     40python-django`` (typically as root).
    4041
    4142When you install this package, ``apt`` will recommend installing a database
    4243adapter; you should select and install the adapter for whichever database you
     
    4950------
    5051
    5152A Django package is available for `Fedora Linux`_, in the "Fedora Extras"
    52 repository. The `current Fedora package`_ is based on Django 0.96, and can be
    53 installed by typing ``yum install Django``. The previous link is for the i386
    54 binary. Users of other architectures should be able to use that as a starting
    55 point to find their preferred version.
     53repository. The `current Fedora package`_ (for i386) is based on Django 0.96,
     54and can be installed by typing ``yum install Django``.
    5655
    5756.. _Fedora Linux: http://fedora.redhat.com/
    5857.. _current Fedora package: http://download.fedora.redhat.com/pub/fedora/linux/extras/6/i386/repoview/Django.html
     
    6059Gentoo
    6160------
    6261
    63 A Django build is available for `Gentoo Linux`_, and is based on Django 0.96.
     62A Django build is available for `Gentoo Linux`_, and is based on Django 0.96.1.
    6463The `current Gentoo build`_ can be installed by typing ``emerge django``.
    6564
    6665.. _Gentoo Linux: http://www.gentoo.org/
     
    6968Ubuntu
    7069------
    7170
    72 The Debian ``python-django`` package is also available for `Ubuntu Linux`_, in
    73 the "universe" repository for Ubuntu 7.04 ("Feisty Fawn"). The `current Ubuntu
    74 package`_ is also based on Django 0.95.1 and can be installed in the same
    75 fashion as for Debian.
     71The ``python-django`` package is available for `Ubuntu Linux`_ - in
     72the "universe" repository for Ubuntu 7.10 ("Gutsy Gibbon"). The `current Ubuntu
     73package`_ is based on Django 0.96.1 and can be installed in the same way as
     74Debian.
    7675
    7776.. _Ubuntu Linux: http://www.ubuntu.com/
    78 .. _current Ubuntu package: http://packages.ubuntu.com/feisty/python/python-django
     77.. _current Ubuntu package: http://packages.ubuntu.com/gutsy/python/python-django
    7978
    8079
    8180Mac OS X
     
    8483MacPorts
    8584--------
    8685
    87 Django 0.96 can be installed via the `MacPorts`_ system. If you're using Python 2.4,
    88 type ``sudo port install py-django-devel``. For Python 2.5, type ``sudo port
    89 install py25-django-devel``. MacPorts can also be used to install a database,
    90 and the Python interface to your chosen database.
     86If you're using Python 2.4, type ``sudo port install py-django-devel`` for
     87Django 0.96. For Python 2.5, type ``sudo port install py25-django-devel`` for
     88Django 0.96.1. MacPorts can also be used to install a database, and the Python
     89interface to your chosen database.
    9190
    9291.. _MacPorts: http://www.macports.org/
    9392
    9493For distributors
    9594================
    9695
    97 If you'd like to package Django for distribution, we'd be happy to help out!
     96If you'd like to package Django for distribution we'd be happy to help out!
    9897Please join the `django-developers mailing list`_ and introduce yourself.
    9998
    10099We also encourage all distributors to subscribe to the `django-announce mailing
Back to Top