Hi, I updated slrn to Version 1.0.3 which is a bugfix update. Building, running and posting tested on amd64. I made the following changes to the Makefile:
- Add WRKDIST since the tarball is called slrn-1.0.3a but unzips as slrn-1.0.3 (without the 'a'). Hope I got this right. - Add EXTRACT_SUFX since tarballs are now bziped - Changed HOMEPAGE to current website - MASTER_SITES now have HTTPS Cheers Matthias
diff --git a/news/slrn/Makefile b/news/slrn/Makefile index 67d3321c84d..b7e2b85a31a 100644 --- a/news/slrn/Makefile +++ b/news/slrn/Makefile @@ -2,19 +2,23 @@ COMMENT= SLang-based newsreader -DISTNAME= slrn-1.0.2 -REVISION= 3 +PKGNAME= slrn-1.0.3 +DISTNAME= ${PKGNAME}a +WRKDIST= ${WRKDIR}/${PKGNAME} + CATEGORIES= news -HOMEPAGE= http://slrn.sourceforge.net/ +EXTRACT_SUFX= .tar.bz2 + +HOMEPAGE= https://slrn.info/ # GPLv2+ PERMIT_PACKAGE= Yes WANTLIB= c crypto iconv intl m ssl slang -MASTER_SITES= http://jedsoft.org/releases/slrn/ \ - http://jedsoft.org/releases/slrn/old/ +MASTER_SITES= https://jedsoft.org/releases/slrn/ \ + https://jedsoft.org/releases/slrn/old/ MAKE_ARGS+= LDFLAGS="${LDFLAGS}" diff --git a/news/slrn/distinfo b/news/slrn/distinfo index a0b1dfbe94c..5373c598a8f 100644 --- a/news/slrn/distinfo +++ b/news/slrn/distinfo @@ -1,2 +1,2 @@ -SHA256 (slrn-1.0.2.tar.gz) = Iuz46X5NH1nEu6MwHmR0z5mJsx11fJpgttYKBb+oxr4= -SIZE (slrn-1.0.2.tar.gz) = 1532224 +SHA256 (slrn-1.0.3a.tar.bz2) = O6ik1UkgFkDyuC1T+xvsElD5CAUqeYPwBhyYPGNMLaw= +SIZE (slrn-1.0.3a.tar.bz2) = 997138 diff --git a/news/slrn/patches/patch-autoconf_configure_ac b/news/slrn/patches/patch-autoconf_configure_ac index e1d5d2baab0..4c10d51da7d 100644 --- a/news/slrn/patches/patch-autoconf_configure_ac +++ b/news/slrn/patches/patch-autoconf_configure_ac @@ -3,7 +3,7 @@ $OpenBSD: patch-autoconf_configure_ac,v 1.1 2019/05/22 11:54:37 naddy Exp $ Index: autoconf/configure.ac --- autoconf/configure.ac.orig +++ autoconf/configure.ac -@@ -213,6 +213,7 @@ m4_include([./include/po.m4]) +@@ -216,6 +216,7 @@ m4_include([./include/po.m4]) m4_include([./include/lib-ld.m4]) m4_include([./include/lib-link.m4]) m4_include([./include/lib-prefix.m4])