Package Details: isso 0.13.1.dev0-1

Git Clone URL: https://aur.archlinux.org/isso.git (read-only, click to copy)
Package Base: isso
Description: A commenting python server similar to Disqus
Upstream URL: http://posativ.org/isso/
Licenses: MIT
Submitter: None
Maintainer: HLFH
Last Packager: HLFH
Votes: 11
Popularity: 0.000044
First Submitted: 2014-06-07 10:21 (UTC)
Last Updated: 2024-05-05 18:57 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

milouse commented on 2015-05-10 07:35 (UTC)

Be warned that after a recent python upgrade, you need to rebuild the misaka package (even if it does not have changed) in order to have it working again.

bricewge commented on 2015-03-25 08:29 (UTC)

Yes, the service file work well, this one doesn't need the /etc/conf.d/isso file anymore. By the way I have modified the service file since then. Feel free to drop some of the modifications of the package.

rhester72 commented on 2015-03-25 03:14 (UTC)

bricewge, what is the change to the service file? Seems to work (reasonably) well as-is.

bricewge commented on 2015-03-24 23:34 (UTC)

Here is a update of this package: https://gist.github.com/bricewge/4d479b329d557f360159 And a list of the modification I have made to it: - Check the PGP signature - Update the checksum algorithm from sha1 to sha256 - Use licence file directly from the repository - Update the service file with the one in https://copr.fedoraproject.org/coprs/jujens/isso/ - Add the man pages - Use the official conf file, path changed form /etc/isso.cfg to /etc/isso.conf - isso.install show instructions, as it should be, instead of automating the task

rhester72 commented on 2015-03-09 16:43 (UTC)

isso itself now looks good and starts up properly, though I can't fully test due to issues trying to integrate it into Hiawatha webserver. Thank you!

<deleted-account> commented on 2015-03-04 22:45 (UTC)

Can you try this version, rhester72 ?

<deleted-account> commented on 2015-02-27 07:35 (UTC)

It seems it is related to an upstream "bug" (an error that's not catched). I reported the issue to the main developper on irc, on hold (it happens when the website configured as the host is not reachable, try to change the value). So, wait and see…

rhester72 commented on 2015-02-26 17:59 (UTC)

Certainly, there really isn't much to it: [root@igor ~]# cat /etc/conf.d/isso # # Configuration file of isso # ISSO_CONF="/etc/isso.cfg" #See http://posativ.org/isso/docs/configuration/server/ [root@igor ~]# cat /etc/isso.cfg [general] dbpath = /var/lib/isso/comments.db host = http://www.multics.us/ https://www.multics.us/ [server] listen = http://localhost:1234/ I'm using the service file that's part of your build to start.

<deleted-account> commented on 2015-02-26 17:57 (UTC)

It seems I do not use gevent. Can I ask for your configuration ? Thank you.

rhester72 commented on 2015-02-26 16:07 (UTC)

Notice "No module named 'gevent'" below. That's true, there is no gevent for Python 3, which is what isso is trying to use (i.e. /usr/bin/python *is* Python 3, /usr/bin/python2 is 2.7). Changing /usr/bin/isso to point at /usr/bin/python2 results in much more...interesting breakage. My question to you is, since you made it dependent on package "python", which is by definition Python *3*, how do you have it working? ----- Feb 26 11:04:41 igor isso[1716]: Traceback (most recent call last): Feb 26 11:04:42 igor isso[1716]: File "/usr/lib/python3.4/site-packages/isso/__init__.py", line 251, in main Feb 26 11:04:42 igor isso[1716]: from gevent.pywsgi import WSGIServer Feb 26 11:04:42 igor isso[1716]: ImportError: No module named 'gevent' Feb 26 11:04:42 igor isso[1716]: During handling of the above exception, another exception occurred: Feb 26 11:04:42 igor isso[1716]: Traceback (most recent call last): Feb 26 11:04:42 igor isso[1716]: File "/usr/bin/isso", line 9, in <module> Feb 26 11:04:42 igor isso[1716]: load_entry_point('isso==0.9.8', 'console_scripts', 'isso')() Feb 26 11:04:42 igor isso[1716]: File "/usr/lib/python3.4/site-packages/isso/__init__.py", line 254, in main Feb 26 11:04:42 igor isso[1716]: run_simple(host, port, make_app(conf), threaded=True, Feb 26 11:04:42 igor isso[1716]: File "/usr/lib/python3.4/site-packages/isso/__init__.py", line 169, in make_app Feb 26 11:04:42 igor isso[1716]: with http.curl('HEAD', host, '/', 5) as resp: Feb 26 11:04:42 igor isso[1716]: File "/usr/lib/python3.4/site-packages/isso/utils/http.py", line 42, in __enter__ Feb 26 11:04:42 igor isso[1716]: return self.con.getresponse() Feb 26 11:04:42 igor isso[1716]: File "/usr/lib/python3.4/http/client.py", line 1172, in getresponse Feb 26 11:04:42 igor isso[1716]: response.begin() Feb 26 11:04:42 igor isso[1716]: File "/usr/lib/python3.4/http/client.py", line 351, in begin Feb 26 11:04:42 igor isso[1716]: version, status, reason = self._read_status() Feb 26 11:04:42 igor isso[1716]: File "/usr/lib/python3.4/http/client.py", line 321, in _read_status Feb 26 11:04:42 igor isso[1716]: raise BadStatusLine(line) Feb 26 11:04:42 igor isso[1716]: http.client.BadStatusLine: '' Feb 26 11:04:42 igor systemd[1]: isso.service: main process exited, code=exited, status=1/FAILURE Feb 26 11:04:42 igor systemd[1]: Unit isso.service entered failed state. Feb 26 11:04:42 igor systemd[1]: isso.service failed.