[Twisted-Python] creating source tarball from svn tree
I'm trying to build a source distribution of the svn tree using the following command: python setup.py all sdist but I get the error below - any thoughts? running sdist warning: sdist: manifest template 'MANIFEST.in' does not exist (using default file list) Traceback (most recent call last): File "twisted/topfiles/setup.py", line 113, in ? dist.setup(**setup_args) File "./twisted/python/dist.py", line 69, in setup return core.setup(**kw) File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/distutils/core.py", line 149, in setup dist.run_commands() File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/distutils/dist.py", line 907, in run_commands self.run_command(cmd) File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/distutils/dist.py", line 927, in run_command cmd_obj.run() File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/distutils/command/sdist.py", line 143, in run self.get_file_list() File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/distutils/command/sdist.py", line 240, in get_file_list self.add_defaults() File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/distutils/command/sdist.py", line 301, in add_defaults self.filelist.extend(build_ext.get_source_files()) File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/distutils/command/build_ext.py", line 361, in get_source_files self.check_extensions_list(self.extensions) File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/distutils/command/build_ext.py", line 294, in check_extensions_list (ext_name, build_info) = ext TypeError: unpack non-sequence Error: Subprocess exited with result 1 for project core --- Bear http://code-bear.com Open Source Applications Foundation (OSAF) http://www.osafoundation.org PGP Fingerprint = 9996 719F 973D B11B E111 D770 9331 E822 40B3 CD29
On Apr 26, 2005, at 1:32 AM, Mike Taylor wrote:
I'm trying to build a source distribution of the svn tree using the following command:
python setup.py all sdist
You probably just want to do something like this (from the parent directory of your Twisted checkout): svn export Twisted Twisted-20050426 tar zcvf Twisted-20050426.tar.gz Twisted-20050426 The release script looks like it does something much, much worse :) -bob
ahh, the "out of the box" solution - thanks! --- Bear http://code-bear.com Open Source Applications Foundation (OSAF) http://www.osafoundation.org PGP Fingerprint = 9996 719F 973D B11B E111 D770 9331 E822 40B3 CD29 On Apr 26, 2005, at 5:04 AM, Bob Ippolito wrote:
On Apr 26, 2005, at 1:32 AM, Mike Taylor wrote:
I'm trying to build a source distribution of the svn tree using the following command:
python setup.py all sdist
You probably just want to do something like this (from the parent directory of your Twisted checkout):
svn export Twisted Twisted-20050426 tar zcvf Twisted-20050426.tar.gz Twisted-20050426
The release script looks like it does something much, much worse :)
-bob
_______________________________________________ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
participants (2)
-
Bob Ippolito
-
Mike Taylor