From owner-svn-ports-all@freebsd.org Mon Dec 16 16:45:07 2019 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 9DC301C899B; Mon, 16 Dec 2019 16:45:07 +0000 (UTC) (envelope-from jbeich@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) server-signature RSA-PSS (4096 bits) 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 47c6ZW3cmBz41fd; Mon, 16 Dec 2019 16:45:07 +0000 (UTC) (envelope-from jbeich@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 7791C23C; Mon, 16 Dec 2019 16:45:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBGGj7wu024502; Mon, 16 Dec 2019 16:45:07 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBGGj7p1024500; Mon, 16 Dec 2019 16:45:07 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201912161645.xBGGj7p1024500@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 16 Dec 2019 16:45:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520271 - head/graphics/vapoursynth-waifu2x-w2xc X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/graphics/vapoursynth-waifu2x-w2xc X-SVN-Commit-Revision: 520271 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.29 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: Mon, 16 Dec 2019 16:45:07 -0000 Author: jbeich Date: Mon Dec 16 16:45:06 2019 New Revision: 520271 URL: https://svnweb.freebsd.org/changeset/ports/520271 Log: graphics/vapoursynth-waifu2x-w2xc: update to r8 Changes: https://github.com/HomeOfVapourSynthEvolution/VapourSynth-Waifu2x-w2xc/compare/r6...r8 Modified: head/graphics/vapoursynth-waifu2x-w2xc/Makefile (contents, props changed) head/graphics/vapoursynth-waifu2x-w2xc/distinfo (contents, props changed) Modified: head/graphics/vapoursynth-waifu2x-w2xc/Makefile ============================================================================== --- head/graphics/vapoursynth-waifu2x-w2xc/Makefile Mon Dec 16 16:44:57 2019 (r520270) +++ head/graphics/vapoursynth-waifu2x-w2xc/Makefile Mon Dec 16 16:45:06 2019 (r520271) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= waifu2x-w2xc -DISTVERSION= r6 -PORTREVISION= 5 +DISTVERSION= r8 CATEGORIES= graphics PKGNAMEPREFIX= vapoursynth- @@ -19,15 +18,7 @@ USE_GITHUB= yes GH_ACCOUNT= HomeOfVapourSynthEvolution GH_PROJECT= VapourSynth-Waifu2x-w2xc -USES= compiler:c++11-lib gmake localbase pkgconfig -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --install="${STAGEDIR}${DATADIR}" \ - --cxx="${CXX}" \ - --extra-cxxflags="${CPPFLAGS} ${CXXFLAGS}" \ - --extra-ldflags="${LDFLAGS}" \ - --extra-libs="${LIBS}" -MAKEFILE= GNUmakefile -MAKE_ARGS= STRIP="${STRIP_CMD}" +USES= compiler:c++14-lang localbase:ldflags meson pkgconfig DATADIR= ${PREFIX}/lib/vapoursynth DOCSDIR= ${PREFIX}/share/doc/${PKGBASE} PORTDATA= lib${PORTNAME}.so models @@ -36,14 +27,10 @@ PORTDOCS= *.md OPTIONS_DEFINE= DOCS post-patch: - @${REINPLACE_CMD} -e 's/\*linux\*/*/' \ - -e 's/-O3 //; /=.*-mfpmath/d; /-msse/d' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} '/STRIP/s/-x //' ${WRKSRC}/${MAKEFILE} +# FreeBSD i386 defaults to -march=i686 (i486 with Clang < 9) + @${REINPLACE_CMD} '/-msse2/d' ${WRKSRC}/meson.build post-install: - (cd ${WRKSRC}/Waifu2x-w2xc && ${COPYTREE_SHARE} \ - "${PORTDATA:N*.so}" ${STAGEDIR}${DATADIR}) (cd ${WRKSRC} && ${COPYTREE_SHARE} \ "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}) Modified: head/graphics/vapoursynth-waifu2x-w2xc/distinfo ============================================================================== --- head/graphics/vapoursynth-waifu2x-w2xc/distinfo Mon Dec 16 16:44:57 2019 (r520270) +++ head/graphics/vapoursynth-waifu2x-w2xc/distinfo Mon Dec 16 16:45:06 2019 (r520271) @@ -1,2 +1,3 @@ -SHA256 (HomeOfVapourSynthEvolution-VapourSynth-Waifu2x-w2xc-r6_GH0.tar.gz) = ae3ecf72aca8169977cc4427242df618967fa231b93a7e7c23557266d7544b76 -SIZE (HomeOfVapourSynthEvolution-VapourSynth-Waifu2x-w2xc-r6_GH0.tar.gz) = 28921662 +TIMESTAMP = 1560765788 +SHA256 (HomeOfVapourSynthEvolution-VapourSynth-Waifu2x-w2xc-r8_GH0.tar.gz) = 9dad7048962ce521a7722d73b4bb97a50df879958edd537129a83db4e264976f +SIZE (HomeOfVapourSynthEvolution-VapourSynth-Waifu2x-w2xc-r8_GH0.tar.gz) = 24200190