From owner-svn-ports-all@freebsd.org Sun Feb 7 06:32:08 2021 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 685DF4FA058; Sun, 7 Feb 2021 06:32:08 +0000 (UTC) (envelope-from yuri@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DYK7r2Z0Mz3mMx; Sun, 7 Feb 2021 06:32:08 +0000 (UTC) (envelope-from yuri@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 4AC2E1F93B; Sun, 7 Feb 2021 06:32:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 1176W88I009055; Sun, 7 Feb 2021 06:32:08 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 1176W790009051; Sun, 7 Feb 2021 06:32:07 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202102070632.1176W790009051@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 7 Feb 2021 06:32:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r564605 - in head/audio: . rnnoise X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio: . rnnoise X-SVN-Commit-Revision: 564605 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: Sun, 07 Feb 2021 06:32:08 -0000 Author: yuri Date: Sun Feb 7 06:32:07 2021 New Revision: 564605 URL: https://svnweb.freebsd.org/changeset/ports/564605 Log: New port: audio/rnnoise: Recurrent neural network for audio noise reduction Added: head/audio/rnnoise/ head/audio/rnnoise/Makefile (contents, props changed) head/audio/rnnoise/distinfo (contents, props changed) head/audio/rnnoise/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sun Feb 7 05:42:13 2021 (r564604) +++ head/audio/Makefile Sun Feb 7 06:32:07 2021 (r564605) @@ -676,6 +676,7 @@ SUBDIR += ripit SUBDIR += ripperx SUBDIR += rkr-lv2 + SUBDIR += rnnoise SUBDIR += rnnoise-nu SUBDIR += rosegarden SUBDIR += rplay Added: head/audio/rnnoise/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/rnnoise/Makefile Sun Feb 7 06:32:07 2021 (r564605) @@ -0,0 +1,39 @@ +# $FreeBSD$ + +PORTNAME= rnnoise +DISTVERSION= g20210122 +CATEGORIES= audio + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Recurrent neural network for audio noise reduction + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= autoreconf gmake libtool +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-static --disable-examples +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= xiph +GH_TAGNAME= 1cbdbcf + +INSTALL_TARGET= install-strip + +OPTIONS_DEFINE= DOCS + +DOCS_CONFIGURE_ENABLE= doc + +PORTDOCS= * # API documentation feature is broken: https://github.com/xiph/rnnoise/issues/44 + +PLIST_FILES= include/rnnoise.h \ + lib/librnnoise.so \ + lib/librnnoise.so.0 \ + lib/librnnoise.so.0.4.1 \ + libdata/pkgconfig/rnnoise.pc + +post-install-DOCS-on: + @${RM} ${STAGEDIR}${DOCSDIR}/COPYING + +.include Added: head/audio/rnnoise/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/rnnoise/distinfo Sun Feb 7 06:32:07 2021 (r564605) @@ -0,0 +1,3 @@ +TIMESTAMP = 1612679142 +SHA256 (xiph-rnnoise-g20210122-1cbdbcf_GH0.tar.gz) = e2aedecd6ee74c2c04caa90c4f02c4f1ceca6303d4a24bb59f0c00895b4fdcf0 +SIZE (xiph-rnnoise-g20210122-1cbdbcf_GH0.tar.gz) = 173753 Added: head/audio/rnnoise/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/rnnoise/pkg-descr Sun Feb 7 06:32:07 2021 (r564605) @@ -0,0 +1,3 @@ +RNNoise is a noise suppression library based on a recurrent neural network. + +WWW: https://github.com/xiph/rnnoise