Ping.
On Thu, 14 Feb 2019 18:55:27 +0100 Charlene Wendling wrote: > Hi, > > Can someone check this update out please? > > Charlène. > > On Wed, 6 Feb 2019 17:31:47 +0100 > Charlene Wendling wrote: > > > Hi ports, > > > > abcde 2.9.3 has been released yesterday, so here is an update! > > > > What's new upstream [1]: > > > > - Replace non portable sed code with a simple awk statement > > - Deal with bizarre cdda2wav behaviour when doing cdtext lookup > > - Add support for detecting if recode is installed when the > > mungefilename directive is used in abcde.conf > > > > What's new in the port: > > > > - Changed my MAINTAINER mail address > > - Dropped the upstreamed patch > > > > What i've tested successfully, with the default abcde.conf: > > > > - ripping to wav, mp3, flac, ogg > > - embedded album art > > - musicbrainz support > > > > Any comments/feedback? > > > > Charlène. > > > > > > [1] > > https://git.einval.com/cgi-bin/gitweb.cgi?p=abcde.git;a=blob_plain;f=changelog;h=e72086e88e069b5ec5a24b93672b1a1da2aa2d89;hb=HEAD > > > > > > Index: Makefile > > =================================================================== > > RCS file: /cvs/ports/audio/abcde/Makefile,v > > retrieving revision 1.28 > > diff -u -p -u -p -r1.28 Makefile > > --- Makefile 31 Aug 2018 08:48:12 -0000 1.28 > > +++ Makefile 6 Feb 2019 14:14:59 -0000 > > @@ -2,13 +2,13 @@ > > > > COMMENT= command-line utility to rip and encode audio cds > > > > -DISTNAME= abcde-2.9.2 > > +DISTNAME= abcde-2.9.3 > > EPOCH= 0 > > CATEGORIES= audio > > > > HOMEPAGE= https://abcde.einval.com/ > > > > -MAINTAINER= Charlene Wendling <juliana...@posteo.jp> > > +MAINTAINER= Charlene Wendling <c...@openbsd.org> > > > > # Artistic or GPLv2+ > > PERMIT_PACKAGE_CDROM= Yes > > Index: distinfo > > =================================================================== > > RCS file: /cvs/ports/audio/abcde/distinfo,v > > retrieving revision 1.14 > > diff -u -p -u -p -r1.14 distinfo > > --- distinfo 31 Aug 2018 08:48:12 -0000 1.14 > > +++ distinfo 6 Feb 2019 14:14:59 -0000 > > @@ -1,2 +1,2 @@ > > -SHA256 (abcde-2.9.2.tar.gz) = > > NDVsbqTMObM8gHJhv9+OjaiQWy7VAxMUfHiyg+72hY0= -SIZE > > (abcde-2.9.2.tar.gz) = 160799 +SHA256 (abcde-2.9.3.tar.gz) = > > BGzQu6eN1LvcvPgv5iWGXGDfNaAFSC3hOmaZxaO4MSQ= +SIZE > > (abcde-2.9.3.tar.gz) = 160876 Index: patches/patch-abcde > > =================================================================== > > RCS file: patches/patch-abcde > > diff -N patches/patch-abcde > > --- patches/patch-abcde 31 Aug 2018 08:48:12 -0000 > > 1.10 +++ /dev/null 1 Jan 1970 00:00:00 -0000 > > @@ -1,15 +0,0 @@ > > -$OpenBSD: patch-abcde,v 1.10 2018/08/31 08:48:12 landry Exp $ > > -Fix tracks offsets list gathering, will be fixed for v2.9.3 > > -Upstream commit 8de69dd9476d40b4d61b25532f0a22acd932d765 > > -Index: abcde > > ---- abcde.orig > > -+++ abcde > > -@@ -2110,7 +2110,7 @@ do_discid () > > - CDPARANOIAAUDIOTRACKS="$TRACKS" > > - > > - LEADOUT="$(echo > > "$CDPARANOIAOUTPUT" > > | grep -Eo '^TOTAL[[:space:]]+([[:digit:]]+)' | get_last)" > > -- OFFSETS="$(echo > > "$CDPARANOIAOUTPUT" > > | sed -n -e's/^ .* \([0-9]\+\) \[.*/\1/p')" > > | -+ OFFSETS="$(echo > > | "$CDPARANOIAOUTPUT" | awk '/^ +.*\[/ {print $4}')" > > - makeids > > - ;; > > - *) > > > > >