Roundup Tracker - Issues

Message6278

Author schlatterbeck
Recipients joseph_myers, rouilj, schlatterbeck, tekberg
Date 2018-10-10.08:17:36
Message-id <20181010081731.ncfto65tjm54qf6z@runtux.com>
In-reply-to <1539109581.88.0.545547206417.issue2551005@psf.upfronthosting.co.za> <20181009214849.A08FF4C031B@itserver6.localdomain> <alpine.DEB.2.21.1810100122260.16422@digraph.polyomino.org.uk>
On Tue, Oct 09, 2018 at 06:26:21PM +0000, Tom Ekberg wrote:
> [Ralf, hope you don't mine me putting you in the nosy list.]
Fine, thanks

> http://blog.dscpl.com.au/2010/06/modpython-project-is-now-officially.html
> 
> The first 2 lines in the body of the second link's page are:
> 
> Thursday, June 17, 2010
> The mod_python project is now officially dead.

I've personally never used mod_python, I'm using wsgi in production and
the built-in webserver for testing.

So, yes, let's drop support for mod_python and remove it from the
documentation.

On Tue, Oct 09, 2018 at 05:48:49PM -0400, John P. Rouillard wrote:
> Were you able to successfully deploy roundup under mod_wsgi using the
> installation instructions?

I'm running several instances with mod_wsgi.
And there is uwsgi which seems to be better supported, no experience
with that so far.

> suggest dropping
> 
>     httpd = make_server('', 8917, app)
>     httpd.serve_forever()
> 
> at the end of the doc example. I don't have a setup here to test with
> and I am not familiar with wsgi so ...

My wsgi script looks like this:

#!/usr/bin/python
from roundup.cgi.wsgi_handler import RequestDispatcher
tracker_home = '/path/to/tracker'
application = RequestDispatcher(tracker_home)

On Wed, Oct 10, 2018 at 01:35:21AM +0000, Joseph Myers wrote:
> 
> (Personally I think we should be moving towards a release with the current 
> state of the Python 3 support, suitably marked experimental

Do we have someone who volunteers for a release manager?
I'm quite busy and it would more likely be end of the year for a
release, so if someone steps up I'd gladly help where I can.

Ralf
-- 
Dr. Ralf Schlatterbeck                  Tel:   +43/2243/26465-16
Open Source Consulting                  www:   http://www.runtux.com
Reichergasse 131, A-3411 Weidling       email: office@runtux.com
History
Date User Action Args
2018-10-10 08:17:37schlatterbecksetrecipients: + schlatterbeck, rouilj, joseph_myers, tekberg
2018-10-10 08:17:37schlatterbecklinkissue2551005 messages
2018-10-10 08:17:36schlatterbeckcreate