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 jdennis
Recipients eric.araujo, jdennis, tarek
Date 2011-02-04.01:51:15
SpamBayes Score 2.3449655e-05
Marked as misclassified No
Message-id <1296784278.57.0.380904421065.issue11104@psf.upfronthosting.co.za>
In-reply-to
Content
$ tar xzf distutils_bug.tar.gz
$ cd distutils_bug
$ ./setup.py sdist

$ ./setup.py sdist
running sdist
running check
warning: sdist: manifest template 'MANIFEST.in' does not exist (using default file list)

not writing to manually maintained manifest file 'MANIFEST'
creating foobar-1.0
making hard links in foobar-1.0...
hard linking README -> foobar-1.0
hard linking setup.py -> foobar-1.0
creating dist
Creating tar archive
removing 'foobar-1.0' (and everything under it)

$ cat MANIFEST 
README
setup.py
my_special_file

Note, the MANIFEST should have been read and the resulting tar file should have had my_special_file in it. sdist complains about a missing MANIFEST.in template which it shouldn't, it should use the existing MANIFEST, it also emits a warning about not overwriting a manually maintained MANIFEST which it shouldn't. It should just use the existing MANIFEST.
History
Date User Action Args
2011-02-04 01:51:18jdennissetrecipients: + jdennis, tarek, eric.araujo
2011-02-04 01:51:18jdennissetmessageid: <1296784278.57.0.380904421065.issue11104@psf.upfronthosting.co.za>
2011-02-04 01:51:15jdennislinkissue11104 messages
2011-02-04 01:51:15jdenniscreate