Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Jul 2020 01:39:35 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r542700 - in head/audio/lv2lint: . files
Message-ID:  <202007210139.06L1dZDU034070@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Tue Jul 21 01:39:35 2020
New Revision: 542700
URL: https://svnweb.freebsd.org/changeset/ports/542700

Log:
  audio/lv2lint: Update 0.6.0 -> 0.8.0
  
  Reported by:	portscout

Added:
  head/audio/lv2lint/files/
  head/audio/lv2lint/files/patch-lv2lint.c   (contents, props changed)
Modified:
  head/audio/lv2lint/Makefile
  head/audio/lv2lint/distinfo

Modified: head/audio/lv2lint/Makefile
==============================================================================
--- head/audio/lv2lint/Makefile	Tue Jul 21 01:32:56 2020	(r542699)
+++ head/audio/lv2lint/Makefile	Tue Jul 21 01:39:35 2020	(r542700)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	lv2lint
-DISTVERSION=	0.6.0
+DISTVERSION=	0.8.0
 CATEGORIES=	audio
 
 MAINTAINER=	yuri@FreeBSD.org

Modified: head/audio/lv2lint/distinfo
==============================================================================
--- head/audio/lv2lint/distinfo	Tue Jul 21 01:32:56 2020	(r542699)
+++ head/audio/lv2lint/distinfo	Tue Jul 21 01:39:35 2020	(r542700)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1586864438
-SHA256 (OpenMusicKontrollers-lv2lint-0.6.0_GH0.tar.gz) = 6fde72ed4fc352e125fcf61a84538f5acc9172a1174ae86446771ed84c94bd28
-SIZE (OpenMusicKontrollers-lv2lint-0.6.0_GH0.tar.gz) = 53442
+TIMESTAMP = 1595295219
+SHA256 (OpenMusicKontrollers-lv2lint-0.8.0_GH0.tar.gz) = 783c00c5feb8dd218d320dff5265c1e60be0673ced35413943e83c37f6431440
+SIZE (OpenMusicKontrollers-lv2lint-0.8.0_GH0.tar.gz) = 56989

Added: head/audio/lv2lint/files/patch-lv2lint.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/lv2lint/files/patch-lv2lint.c	Tue Jul 21 01:39:35 2020	(r542700)
@@ -0,0 +1,14 @@
+--- lv2lint.c.orig	2020-07-21 01:36:43 UTC
++++ lv2lint.c
+@@ -668,7 +668,11 @@ _pattern_match(const char *pattern, const char *str)
+ 	}
+ 
+ #if defined(HAS_FNMATCH)
++#if defined(FNM_EXTMATCH) // a GNU extension not available on FreeBSD
+ 	if(fnmatch(pattern, str, FNM_CASEFOLD | FNM_EXTMATCH) == 0)
++#else
++	if(fnmatch(pattern, str, FNM_CASEFOLD) == 0)
++#endif
+ #else
+ 	if(strcasecmp(pattern, str) == 0)
+ #endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007210139.06L1dZDU034070>