From owner-svn-ports-all@freebsd.org Wed Dec 16 18:04:54 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5D7C14C33C2; Wed, 16 Dec 2020 18:04:54 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cx31f2GfYz3kR7; Wed, 16 Dec 2020 18:04:54 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 40E311EFC; Wed, 16 Dec 2020 18:04:54 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BGI4s9Q009880; Wed, 16 Dec 2020 18:04:54 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BGI4rcC009877; Wed, 16 Dec 2020 18:04:53 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202012161804.0BGI4rcC009877@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Wed, 16 Dec 2020 18:04:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r558235 - head/audio/swhplugins X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/audio/swhplugins X-SVN-Commit-Revision: 558235 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Dec 2020 18:04:54 -0000 Author: pkubaj Date: Wed Dec 16 18:04:53 2020 New Revision: 558235 URL: https://svnweb.freebsd.org/changeset/ports/558235 Log: audio/swhplugins: update to 0.4.17 - enable on all architectures, tested to build now on aarch64 and powerpc64 - upstream moved to GitHub, the port needs to as well, - add dependency for textproc/p5-XML-Parser, it's now necessary, - add USES=autoreconf, upstream does not provide configure and Makefile, - add USES=shebangfix for /usr/bin/perl in makestub.pl's shebang, - add USES=localbase:ldflags instead of specifying flags manually, - remove post-patch step, it's not necessary now. Modified: head/audio/swhplugins/Makefile head/audio/swhplugins/distinfo head/audio/swhplugins/pkg-plist Modified: head/audio/swhplugins/Makefile ============================================================================== --- head/audio/swhplugins/Makefile Wed Dec 16 17:55:27 2020 (r558234) +++ head/audio/swhplugins/Makefile Wed Dec 16 18:04:53 2020 (r558235) @@ -2,11 +2,9 @@ # $FreeBSD$ PORTNAME= swhplugins -PORTVERSION= 0.4.15 -PORTREVISION= 7 +PORTVERSION= 0.4.17 +DISTVERSIONPREFIX= v CATEGORIES= audio -MASTER_SITES= http://plugin.org.uk/releases/${PORTVERSION}/ -DISTNAME= swh-plugins-${PORTVERSION} MAINTAINER= arved@FreeBSD.org COMMENT= Steve Harris' huge Collection of LADSPA Plugins @@ -15,16 +13,17 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa \ - ${LOCALBASE}/include/fftw3.h:math/fftw3 + ${LOCALBASE}/include/fftw3.h:math/fftw3 \ + p5-XML-Parser>=0:textproc/p5-XML-Parser LIB_DEPENDS= libfftw3f.so:math/fftw3-float -# includes assembler code -ONLY_FOR_ARCHS= amd64 i386 -USES= gmake libtool pkgconfig +USES= autoreconf gmake libtool localbase:ldflags pkgconfig shebangfix +USE_GITHUB= yes +GH_ACCOUNT= swh +GH_PROJECT= ladspa +SHEBANG_FILES= makestub.pl GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes CFLAGS+= -fPIC -DPIC -fgnu89-inline @@ -41,11 +40,5 @@ NLS_CONFIGURE_ENABLE= nls 3DNOW_CONFIGURE_ENABLE= 3dnow SSE_CONFIGURE_ENABLE= sse - -post-patch: - @${REINPLACE_CMD} -e \ - 's|="$$CFLAGS -Wall .*"|="$$CFLAGS"|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e \ - 's|||g' ${WRKSRC}/ladspa-util.h .include Modified: head/audio/swhplugins/distinfo ============================================================================== --- head/audio/swhplugins/distinfo Wed Dec 16 17:55:27 2020 (r558234) +++ head/audio/swhplugins/distinfo Wed Dec 16 18:04:53 2020 (r558235) @@ -1,2 +1,3 @@ -SHA256 (swh-plugins-0.4.15.tar.gz) = d05ee8a4f4d92e828412bce3449a034f6ef16bb630eaf60f8fe4e15a89168640 -SIZE (swh-plugins-0.4.15.tar.gz) = 1051623 +TIMESTAMP = 1608128502 +SHA256 (swh-ladspa-v0.4.17_GH0.tar.gz) = d1b090feec4c5e8f9605334b47faaad72db7cc18fe91d792b9161a9e3b821ce7 +SIZE (swh-ladspa-v0.4.17_GH0.tar.gz) = 456472 Modified: head/audio/swhplugins/pkg-plist ============================================================================== --- head/audio/swhplugins/pkg-plist Wed Dec 16 17:55:27 2020 (r558234) +++ head/audio/swhplugins/pkg-plist Wed Dec 16 18:04:53 2020 (r558235) @@ -89,6 +89,7 @@ lib/ladspa/transient_1206.so lib/ladspa/triple_para_1204.so lib/ladspa/valve_1209.so lib/ladspa/valve_rect_1405.so +lib/ladspa/vocoder_1337.so lib/ladspa/vynil_1905.so lib/ladspa/wave_terrain_1412.so lib/ladspa/xfade_1915.so