Package Details: isso 0.13.0-2

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.000058
First Submitted: 2014-06-07 10:21 (UTC)
Last Updated: 2022-10-14 12:24 (UTC)

Latest Comments

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

Libbum commented on 2019-11-20 09:36 (UTC)

Latest update may yield this failure on start:

Nov 20 10:25:14 kala systemd[1]: Started Isso Comment Server.
Nov 20 10:25:14 kala sudo[5018]: pam_unix(sudo:session): session closed for user root
Nov 20 10:25:14 kala isso[5024]: Traceback (most recent call last):
Nov 20 10:25:14 kala isso[5024]:   File "/usr/bin/isso", line 6, in <module>
Nov 20 10:25:14 kala isso[5024]:     from pkg_resources import load_entry_point
Nov 20 10:25:14 kala isso[5024]:   File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 3251, in <module>
Nov 20 10:25:14 kala isso[5024]:     def _initialize_master_working_set():
Nov 20 10:25:14 kala isso[5024]:   File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 3234, in _call_aside
Nov 20 10:25:14 kala isso[5024]:     f(*args, **kwargs)
Nov 20 10:25:14 kala isso[5024]:   File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 3263, in _initialize_master_working_set
Nov 20 10:25:14 kala isso[5024]:     working_set = WorkingSet._build_master()
Nov 20 10:25:14 kala isso[5024]:   File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 583, in _build_master
Nov 20 10:25:14 kala isso[5024]:     ws.require(__requires__)
Nov 20 10:25:14 kala isso[5024]:   File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 900, in require
Nov 20 10:25:14 kala isso[5024]:     needed = self.resolve(parse_requirements(requirements))
Nov 20 10:25:14 kala isso[5024]:   File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 786, in resolve
Nov 20 10:25:14 kala isso[5024]:     raise DistributionNotFound(req, requirers)
Nov 20 10:25:14 kala isso[5024]: pkg_resources.DistributionNotFound: The 'misaka<3.0,>=2.0' distribution was not found and is required by isso
Nov 20 10:25:14 kala systemd[1]: isso.service: Main process exited, code=exited, status=1/FAILURE
Nov 20 10:25:14 kala systemd[1]: isso.service: Failed with result 'exit-code'.

To fix it, you must rebuild python-misaka, as suggested below by milouse in 2015 when this issue happened to them.

flying-sheep commented on 2019-03-07 18:46 (UTC)

Hi! The following commit made using python-html5lib-9x07 superfluous:

https://github.com/posativ/isso/commit/f6271a04a27d076f0902a617d00d61320d391f5f

It’s included in versions 0.11 up, so could you please change the python-html5lib-9x07 dependency to python-html5lib? Then I can delete that package.

eschwartz commented on 2019-03-07 18:17 (UTC)

As per https://github.com/posativ/isso/pull/485 this should no longer depend on a restrictive version of html5lib; there is currently a deletion request for python-html5lib-9x07 due to the fact that it should not be needed by anything anymore.

petercxy commented on 2019-02-05 13:16 (UTC)

I have taken over this package. I've upgraded it to the latest version and everything seems to be working on my instance of ISSO. Please don't hesitate to report problems if you encounter one.

yhaupenthal commented on 2019-01-03 18:39 (UTC)

Unfortunately I don't have the time anymore to maintain this package, so I'll disown it. Maybe there will be someone out there using isso and willing to maintain it :)

yhaupenthal commented on 2018-01-04 00:17 (UTC)

To all the people flagging this version: 0.10.6 isn't officially released yet, so I'm not updating. The tagged "release" 0.10.6 also contains basically only one change: https://github.com/posativ/isso/commit/339318eb92de173d405cbf20843e0df386f855ca

Tetsumaki commented on 2017-08-15 05:07 (UTC) (edited on 2017-08-15 05:08 (UTC) by Tetsumaki)

Hello, If smtp is used and isso start before postfix (internal smtp) or network (external smtp), error is generated in journald on boot : For fix this, add this line in isso.service : After=network.target network-online.target nss-lookup.target [Unit] Description=Isso Comment Server After=network.target network-online.target nss-lookup.target [Service] Environment="ISSO_SETTINGS=/etc/isso.conf" ExecStart=/usr/bin/isso run [Install] WantedBy=multi-user.target

NickHu commented on 2017-04-01 12:07 (UTC) (edited on 2017-04-01 12:09 (UTC) by NickHu)

Doesn't seem to work anymore: pkg_resources.DistributionNotFound: The 'html5lib==0.9999999' distribution was not found and is required by isso Fixed by replacing dependency of python-html5lib with python-html5lib-9x07

izahn commented on 2016-06-20 16:14 (UTC)

A simple version bump and updated misaka dependency are all that are needed to bring this package up to date. Here is a diff; --- PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 14dffd5..0cfdb35 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,12 +1,12 @@ # Maintainer: Reventlov <contact+aur@volcanis.me> pkgname=isso -pkgver=0.9.9 +pkgver=0.10.4 pkgrel=1 pkgdesc="A commenting python server similar to disqus" arch=('any') url="http://posativ.org/isso/" license=('MIT') -depends=('python-werkzeug' 'python-html5lib' 'python-misaka' 'python-itsdangerous' 'python-six' 'sqlite' 'python-setuptools') +depends=('python-werkzeug' 'python-html5lib' 'python-misaka-v1' 'python-itsdangerous' 'python-six' 'sqlite' 'python-setuptools') makedepends=('git' 'python') backup=('etc/conf.d/isso') source=("https://pypi.python.org/packages/source/i/isso/isso-$pkgver.tar.gz" @@ -17,7 +17,7 @@ source=("https://pypi.python.org/packages/source/i/isso/isso-$pkgver.tar.gz" install=$pkgname.install validpgpkeys=("7757B21C0C6E5AE4BC6F6462FD1BA15E0E87FE5C") noextract=() -sha1sums=('b6fa8b1c05e1edcd2089c1512ce6f8e0cd2acdaa' +sha1sums=('f2889609b200b09397b3e7fc555885cfad8c6eee' 'SKIP' 'f3ca306eee19b55b14b791c728e4c57d6fd4a970' 'aed76333e2abcfe6e977965444de8f23596d533d' --

tohojo commented on 2016-05-27 13:56 (UTC)

This probably needs to depend on python-misaka-v1 instead :)