Discussion:
Last version of INN2 for production instance
Add Reply
R. C.
2024-11-23 17:38:16 UTC
Reply
Permalink
Hi *
I upgraded python, I need to recompile INN2, currently I run with version 2.7.2, what version do you recommend me to use now? or snapshoots?
thanks a lot!
--
R. C.
Nigel Reed
2024-11-24 01:53:49 UTC
Reply
Permalink
On Sat, 23 Nov 2024 18:38:16 +0100
Post by R. C.
Hi *
I upgraded python, I need to recompile INN2, currently I run with
version 2.7.2, what version do you recommend me to use now? or
snapshoots? thanks a lot!
I've been running 2.8.0 for some time and have not had any issues that
I know of, at least.
--
End Of The Line BBS - Plano, TX
telnet endofthelinebbs.com 23
R. C.
2024-11-24 10:43:39 UTC
Reply
Permalink
"Nigel Reed" wrote:


,----[ Quote ***@wibble.sysadmininc.com ]
| I've been running 2.8.0 for some time and have not had any issues that
| I know of, at least.
`----

Thanks for your reply, Usenet is a Very good instrument that consent
to people to communicate all around the world. I would like to do it
in the best way possible!
R. C.
2024-11-24 13:19:35 UTC
Reply
Permalink
me wrote:

I compiled the version of INN2 -> inn-2.8.20241006-i586-1_SBo.tgz

I updated some libraries as:

"""
perl-DBD-SQLite-1.76-i586-1_SBo.tgz
perl-GD-2.83-i586-1_SBo.tgz
perl-MailTools-2.21-i586-1_SBo.tgz
perl-TimeDate-2.30-i586-1_SBo.tgz
libcanlock-3.3.1-i586-1_SBo.tgz
perl-File-Which-1.27-i586-1_SBo.tgz
perl-MIME-tools-5.515-i586-1_SBo.tgz
perl-Test-Fork-0.02-i586-1_SBo.tgz
"""

all good so far on the test machine, but i have problem with
cleanfeed i need review of script with python3-3.12.7-i686-1...

"""
errlog say:
/usr/inn/filter/filter_innd.py:121: SyntaxWarning: invalid escape sequence '\s'
self.re_newrmgroup = re.compile("(?:new|rm)group\s")
/usr/inn/filter/filter_innd.py:124: SyntaxWarning: invalid escape sequence '\d'
self.re_none44 = re.compile("none\d+\.yet>")
/usr/inn/filter/filter_innd.py:126: SyntaxWarning: invalid escape sequence '\!'
self.re_meow = re.compile("^Meow\!", re.M)
"""

have you fixed yet?
R. C.
2024-11-24 13:45:31 UTC
Reply
Permalink
me wrote:


,----[ Quote vhv958$oti$***@gatto.corradoroberto.it ]
| """
| /usr/inn/filter/filter_innd.py:121: SyntaxWarning: invalid escape sequence '\s'
| self.re_newrmgroup = re.compile("(?:new|rm)group\s")
| /usr/inn/filter/filter_innd.py:124: SyntaxWarning: invalid escape sequence '\d'
| self.re_none44 = re.compile("none\d+\.yet>")
| /usr/inn/filter/filter_innd.py:126: SyntaxWarning: invalid escape sequence '\!'
| self.re_meow = re.compile("^Meow\!", re.M)
| """
`----

https://onecompiler.com/python/42z3prksp

"""
import re
re.compile(r"(?:new|rm)group\s")

re.compile(r"none\d+\.yet>")

re.compile(r"^Meow\!", re.M)
"""
candycanearter07
2024-11-25 05:00:03 UTC
Reply
Permalink
Post by R. C.
| """
| /usr/inn/filter/filter_innd.py:121: SyntaxWarning: invalid escape sequence '\s'
| self.re_newrmgroup = re.compile("(?:new|rm)group\s")
| /usr/inn/filter/filter_innd.py:124: SyntaxWarning: invalid escape sequence '\d'
| self.re_none44 = re.compile("none\d+\.yet>")
| /usr/inn/filter/filter_innd.py:126: SyntaxWarning: invalid escape sequence '\!'
| self.re_meow = re.compile("^Meow\!", re.M)
| """
`----
https://onecompiler.com/python/42z3prksp
"""
import re
re.compile(r"(?:new|rm)group\s")
re.compile(r"none\d+\.yet>")
re.compile(r"^Meow\!", re.M)
"""
Weird, I don't think I've had this issue before.
Also, I like how you quote messages
--
user <candycane> is generated from /dev/urandom
roby
2024-11-25 07:43:23 UTC
Reply
Permalink
Post by candycanearter07
Weird, I don't think I've had this issue before.
Also, I like how you quote messages
well i'll call it as candicane hook quote ;-)
Nigel Reed
2024-11-24 20:24:27 UTC
Reply
Permalink
On Sun, 24 Nov 2024 14:19:35 +0100
Post by R. C.
all good so far on the test machine, but i have problem with
cleanfeed i need review of script with python3-3.12.7-i686-1...
"""
/usr/inn/filter/filter_innd.py:121: SyntaxWarning: invalid escape
sequence '\s' self.re_newrmgroup = re.compile("(?:new|rm)group\s")
/usr/inn/filter/filter_innd.py:124: SyntaxWarning: invalid escape
sequence '\d' self.re_none44 = re.compile("none\d+\.yet>")
/usr/inn/filter/filter_innd.py:126: SyntaxWarning: invalid escape
sequence '\!' self.re_meow = re.compile("^Meow\!", re.M)
"""
have you fixed yet?
I have Python 3.10.12 here and don't see that problem in my logs, then
again. I'm not even sure if I'm using that one tbh.
--
End Of The Line BBS - Plano, TX
telnet endofthelinebbs.com 23
R. C.
2024-11-24 20:53:36 UTC
Reply
Permalink
"Nigel Reed" wrote:


,----[ Quote ***@wibble.sysadmininc.com ]
| I have Python 3.10.12 here and don't see that problem in my logs, then
| again. I'm not even sure if I'm using that one tbh.
`----

The SyntaxWarning write out comes only with the >= 3.12.x of Python
my Linux distribution is Slackware®-current, this is a very up-to-date!
Nigel Reed
2024-11-25 02:26:00 UTC
Reply
Permalink
On Sun, 24 Nov 2024 21:53:36 +0100
Post by R. C.
| I have Python 3.10.12 here and don't see that problem in my logs,
then | again. I'm not even sure if I'm using that one tbh.
`----
The SyntaxWarning write out comes only with the >= 3.12.x of Python
my Linux distribution is Slackware®-current, this is a very
up-to-date!
That's the problem with going all latest and greatest. Open a git issue
maybe and have it fixed at the source?
--
End Of The Line BBS - Plano, TX
telnet endofthelinebbs.com 23
roby
2024-11-25 07:47:29 UTC
Reply
Permalink
Post by Nigel Reed
That's the problem with going all latest and greatest. Open a git issue
maybe and have it fixed at the source?
i have open a new issue on github!
Julien ÉLIE
2024-11-26 11:11:25 UTC
Reply
Permalink
Hi Roberto,
Post by roby
i have open a new issue on github!
Thanks for the bug report. I'll fix it upstream soon.
Post by roby
The SyntaxWarning write out comes only with the >= 3.12.x of Python
my Linux distribution is Slackware®-current, this is a very up-to-
date!
Indeed. This is mentioned in the language changes of Python 3.12:
https://docs.python.org/3.12/whatsnew/3.12.html

"""
A backslash-character pair that is not a valid escape sequence now
generates a SyntaxWarning, instead of DeprecationWarning. For example,
re.compile("\d+\.\d+") now emits a SyntaxWarning ("\d" is an invalid
escape sequence, use raw strings for regular expression:
re.compile(r"\d+\.\d+")). In a future Python version, SyntaxError will
eventually be raised, instead of SyntaxWarning. (Contributed by Victor
Stinner in gh-98401.)
"""
--
Julien ÉLIE

« Ce vieux forban d'Asthmatix, il ne manquait pas d'air ! » (Astérix)
Julien ÉLIE
2024-11-26 11:11:23 UTC
Reply
Permalink
Hi Roberto,
Post by R. C.
I upgraded python, I need to recompile INN2, currently I run with
version 2.7.2, what version do you recommend me to use now? or
snapshoots?
Either the latest official release (2.7.2) or snapshots are fine (2.7
STABLE branch or 2.8 CURRENT branch). All of them can be considered stable.

Before updating, I would suggest to have a look at the changelog in case
there's something special to take care of, especially if you're running
an unreleased major release (CURRENT 2.8):
https://www.eyrie.org/~eagle/software/inn/docs/news.html

There's currently no specific change, though. So updating from 2.7.2 to
a snapshot of 2.7.3 or 2.8.0 will be smooth.
--
Julien ÉLIE

« Je suis adroit de la main gauche et je suis gauche de la main
droite. » (Raymond Devos)
roby
2024-11-27 14:50:28 UTC
Reply
Permalink
Post by Julien ÉLIE
https://www.eyrie.org/~eagle/software/inn/docs/news.html
There's currently no specific change, though. So updating from 2.7.2 to
a snapshot of 2.7.3 or 2.8.0 will be smooth.
thanks

Loading...