This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ha034
Recipients BreamoreBoy, fmoreau, ha034, lemburg
Date 2015-04-16.11:49:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429184982.26.0.460258026731.issue20454@psf.upfronthosting.co.za>
In-reply-to
Content
Hey guys,

Just add:

    if os.path.exists('/etc/arch-release'):
        distname = 'arch'

in "_dist_try_harder"

then replace the old list with this one:

_supported_dists = (
    'SuSE', 'debian', 'fedora', 'redhat', 'centos',
    'mandrake', 'mandriva', 'rocks', 'slackware', 'yellowdog', 'gentoo',
    'UnitedLinux', 'turbolinux', 'arch')

And that's it, it works.
History
Date User Action Args
2015-04-16 11:49:42ha034setrecipients: + ha034, lemburg, BreamoreBoy, fmoreau
2015-04-16 11:49:42ha034setmessageid: <1429184982.26.0.460258026731.issue20454@psf.upfronthosting.co.za>
2015-04-16 11:49:42ha034linkissue20454 messages
2015-04-16 11:49:41ha034create