Skip to content

Commit 712d5ec

Browse files
author
Richard Jones
committed
setup.py had broken reference to roundup.cgi [SF#1593573]
1 parent 31239de commit 712d5ec

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGES.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
2006-??-?? 1.3.0
4+
2006-??-?? 1.3.1
5+
Fixed:
6+
- setup.py had broken reference to roundup.cgi (sf bug 1593573)
7+
8+
9+
2006-09-11 1.3.0
510
Feature:
611
- WSGI support via roundup.cgi.wsgi_handler
712

doc/index.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ Andrey Lebedev,
122122
Henrik Levkowetz,
123123
David Linke,
124124
Fredrik Lundh,
125+
Will Maier,
125126
Georges Martin,
126127
Gordon McMillan,
127128
John F Meinel Jr,

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.43 2006-11-09 05:38:54 richard Exp $
18+
# $Id: __init__.py,v 1.44 2006-11-10 03:29:37 richard Exp $
1919

2020
'''Roundup - issue tracking for knowledge workers.
2121
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '1.3.0'
71+
__version__ = '1.3.1'
7272

7373
# vim: set filetype=python ts=4 sw=4 et si

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.93 2006-11-09 06:13:18 richard Exp $
19+
# $Id: setup.py,v 1.94 2006-11-10 03:29:37 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -300,7 +300,7 @@ def main():
300300
'roundup.scripts',
301301
]
302302
installdatafiles = [
303-
('share/roundup/cgi-bin', ['cgi-bin/roundup.cgi']),
303+
('share/roundup/cgi-bin', ['frontends/roundup.cgi']),
304304
]
305305
py_modules = ['roundup.demo',]
306306

0 commit comments

Comments
 (0)