Message2341
Contact: Will Maier <willmaier@ml1.net>
I'm working on a port of roundup 1.3.0 to OpenBSD, and
noticed a small issue with setup.py.
$ python setup.py bdist
[...]
running install_data
creating build/bdist.openbsd-4.0-i386/dumb/usr/local/share
creating
build/bdist.openbsd-4.0-i386/dumb/usr/local/share/roundup
creating
build/bdist.openbsd-4.0-i386/dumb/usr/local/share/roundup/cgi-bin
error: can't copy 'cgi-bin/roundup.cgi': doesn't exist
or not a regular file
The fix is trivial:
--- setup.py.orig Thu Nov 9 10:28:05 2006
+++ setup.py Thu Nov 9 10:28:16 2006
@@ -300,7 +300,7 @@ def main():
'roundup.scripts',
]
installdatafiles = [
- ('share/roundup/cgi-bin',
['cgi-bin/roundup.cgi']),
+ ('share/roundup/cgi-bin',
['frontends/roundup.cgi']),
]
py_modules = ['roundup.demo',]
I'm not sure how sf handles text, so I've made the
patch available via HTTP, too:
http://lass.lfod.us/~will/roundup-setup_py.diff
Thanks! |
|
Date |
User |
Action |
Args |
2009-02-03 14:21:55 | admin | link | issue1593573 messages |
2009-02-03 14:21:55 | admin | create | |
|