Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 677536 - sys-apps/logwatch-7.4.3: Unescaped left brace in regex is deprecated in services/http line 319
Summary: sys-apps/logwatch-7.4.3: Unescaped left brace in regex is deprecated in servi...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Gentoo's Team for Core System packages
URL:
Whiteboard:
Keywords:
: 687630 (view as bug list)
Depends on:
Blocks:
 
Reported: 2019-02-09 11:28 UTC by Attila Tóth
Modified: 2019-06-08 12:55 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
logwatch-7.5.0.ebuild (logwatch-7.5.0.ebuild,1.93 KB, text/plain)
2019-02-09 11:45 UTC, Attila Tóth
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Attila Tóth 2019-02-09 11:28:04 UTC
will be fatal in Perl 5.32.
Comment 1 Attila Tóth 2019-02-09 11:28:19 UTC
Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32),
passed through in regex; marked by <-- HERE in m/\G%({ <-- HERE .*?})?./ at
/usr/share/logwatch/scripts/services/http line 319.
Comment 2 Attila Tóth 2019-02-09 11:29:34 UTC
Latest version logwatch-7.5.0 takes care of this warning according to Changes published with the release.
Comment 3 Attila Tóth 2019-02-09 11:45:37 UTC
Created attachment 564322 [details]
logwatch-7.5.0.ebuild

Example upgraded ebuild - version bump request.
Comment 4 Jeroen Roovers (RETIRED) gentoo-dev 2019-02-09 12:00:39 UTC
Comment on attachment 564322 [details]
logwatch-7.5.0.ebuild

--- logwatch-7.4.3.ebuild       2018-11-18 11:31:09.054781208 +0100
+++ -   2019-02-09 13:00:02.231878807 +0100
@@ -25,10 +25,6 @@
        dev-perl/Sys-CPU
        dev-perl/Sys-MemInfo"

-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-7.4.2-openssh-hpn.patch
-}
-
 src_install() {
        dodir /usr/share/logwatch/lib
        dodir /usr/share/logwatch/scripts/services


Looks like an EAPI downgrade compared to the newer ebuild:


--- logwatch-7.4.3_p20171025.ebuild     2018-11-18 11:31:09.054781208 +0100
+++ -   2019-02-09 12:58:54.913300634 +0100
@@ -1,30 +1,20 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2

-EAPI="6"
+EAPI=5

-inherit tmpfiles
-
-MY_COMMIT="d36589f22a322a5ec4d77618b408803f4d193c2e"
-
-PATCHES=( "${FILESDIR}"/${PN}-7.4.3+-openssh-hpn.patch )
-
-if [[ ${PV} == "9999" ]] ; then
-       EGIT_REPO_URI="https://git.code.sf.net/p/logwatch/git ${PN}"
-       inherit git-r3
-else
-       SRC_URI="https://sourceforge.net/code-snapshots/git/l/lo/logwatch/git.git/logwatch-git-${MY_COMMIT}.zip -> ${P}.zip"
-       KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-fi
+inherit eutils

 DESCRIPTION="Analyzes and Reports on system logs"
 HOMEPAGE="http://www.logwatch.org/"
+SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz"

 LICENSE="MIT"
 SLOT="0"
+KEYWORDS="alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE=""

-DEPEND="app-arch/unzip"
+DEPEND=""
 RDEPEND="virtual/cron
        virtual/mta
        virtual/mailx
@@ -35,17 +25,6 @@
        dev-perl/Sys-CPU
        dev-perl/Sys-MemInfo"

-S="${WORKDIR}/${PN}-git-${MY_COMMIT}"
-
-src_prepare() {
-       default
-
-       sed \
-               -e "s:my \$Version = '7.4.3';:my \$Version = '${PV}';:" \
-               -e "s:my \$VDate = '04/27/16';:my \$VDate = '10/25/17';:" \
-               -i scripts/logwatch.pl || die
-}
-
 src_install() {
        dodir /usr/share/logwatch/lib
        dodir /usr/share/logwatch/scripts/services
@@ -55,9 +34,6 @@
        dodir /usr/share/logwatch/default.conf/html
        keepdir /etc/logwatch

-       # logwatch.pl requires cache dir (bug #607668)
-       newtmpfiles "${FILESDIR}"/logwatch.tmpfile ${PN}.conf
-
        newsbin scripts/logwatch.pl logwatch.pl

        exeinto /usr/share/logwatch/lib
@@ -95,14 +71,10 @@
 }

 pkg_postinst() {
-       # Migration from /etc/cron.daily/logwatch -> /etc/cron.daily/00-logwatch (bug #100243)
        if [[ -e ${ROOT}/etc/cron.daily/logwatch ]] ; then
                local md5=$(md5sum "${ROOT}"/etc/cron.daily/logwatch)
                [[ ${md5} == "edb003cbc0686ed4cf37db16025635f3" ]] \
                        && rm -f "${ROOT}"/etc/cron.daily/logwatch \
                        || ewarn "You have two logwatch files in /etc/cron.daily/"
        fi
-
-       # Trigger cache dir creation to allow immediate use of logwatch (bug #607668)
-       tmpfiles_process ${PN}.conf
 }
Comment 5 Attila Tóth 2019-02-09 12:06:33 UTC
(In reply to Jeroen Roovers from comment #4)
> Comment on attachment 564322 [details]
> logwatch-7.5.0.ebuild
> 
> Looks like an EAPI downgrade compared to the newer ebuild:
> 

Sorry, I modified the -7.4.3.ebuild.
Anyways, a version bump looks like to be straightforward.
Comment 6 Christophe PEREZ 2019-06-07 14:16:48 UTC
same error here
Comment 7 Larry the Git Cow gentoo-dev 2019-06-07 14:43:35 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=765e7e5e80b575d727f4270f05f66358f896d30f

commit 765e7e5e80b575d727f4270f05f66358f896d30f
Author:     Thomas Deutschmann <whissi@gentoo.org>
AuthorDate: 2019-06-07 14:40:43 +0000
Commit:     Thomas Deutschmann <whissi@gentoo.org>
CommitDate: 2019-06-07 14:40:43 +0000

    sys-apps/logwatch: bump to v7.5.1
    
    Closes: https://bugs.gentoo.org/677536
    Package-Manager: Portage-2.3.67, Repoman-2.3.14
    Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>

 sys-apps/logwatch/Manifest              |  1 +
 sys-apps/logwatch/logwatch-7.5.1.ebuild | 95 +++++++++++++++++++++++++++++++++
 sys-apps/logwatch/logwatch-9999.ebuild  |  2 +-
 3 files changed, 97 insertions(+), 1 deletion(-)
Comment 8 Thomas Deutschmann (RETIRED) gentoo-dev 2019-06-08 12:51:29 UTC
*** Bug 687630 has been marked as a duplicate of this bug. ***
Comment 9 Larry the Git Cow gentoo-dev 2019-06-08 12:55:20 UTC
The bug has been referenced in the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e121a776aaf7126fd4aff6b333699bfb1d5d76f

commit 7e121a776aaf7126fd4aff6b333699bfb1d5d76f
Author:     Thomas Deutschmann <whissi@gentoo.org>
AuthorDate: 2019-06-08 12:53:27 +0000
Commit:     Thomas Deutschmann <whissi@gentoo.org>
CommitDate: 2019-06-08 12:53:27 +0000

    sys-apps/logwatch: x86 stable, applying ALLARCHES policy
    
    Bug: https://bugs.gentoo.org/677536
    Package-Manager: Portage-2.3.67, Repoman-2.3.14
    Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>

 sys-apps/logwatch/logwatch-7.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)