From owner-svn-ports-all@freebsd.org Thu Jul 30 05:41:13 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 9DDAB378FCA; Thu, 30 Jul 2020 05:41:13 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BHK5j3krLz3WFp; Thu, 30 Jul 2020 05:41:13 +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 64135C40C; Thu, 30 Jul 2020 05:41:13 +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 06U5fDWu019890; Thu, 30 Jul 2020 05:41:13 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06U5fC6D019885; Thu, 30 Jul 2020 05:41:12 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202007300541.06U5fC6D019885@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 30 Jul 2020 05:41:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543710 - in head/audio: . bliss bliss/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio: . bliss bliss/files X-SVN-Commit-Revision: 543710 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.33 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: Thu, 30 Jul 2020 05:41:13 -0000 Author: yuri Date: Thu Jul 30 05:41:12 2020 New Revision: 543710 URL: https://svnweb.freebsd.org/changeset/ports/543710 Log: New port: audio/bliss: Multithreaded C library used to compute distance between songs Added: head/audio/bliss/ head/audio/bliss/Makefile (contents, props changed) head/audio/bliss/distinfo (contents, props changed) head/audio/bliss/files/ head/audio/bliss/files/patch-CMakeLists.txt (contents, props changed) head/audio/bliss/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Thu Jul 30 05:16:00 2020 (r543709) +++ head/audio/Makefile Thu Jul 30 05:41:12 2020 (r543710) @@ -58,6 +58,7 @@ SUBDIR += beets SUBDIR += bharvestr-lv2 SUBDIR += bjumblr-lv2 + SUBDIR += bliss SUBDIR += blop SUBDIR += blop-lv2 SUBDIR += bristol Added: head/audio/bliss/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/bliss/Makefile Thu Jul 30 05:41:12 2020 (r543710) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= bliss +DISTVERSION= 1.2.0.20200615 +CATEGORIES= audio +PKGNAMESUFFIX= -music-analyzer + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Multithreaded C library used to compute distance between songs + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ + libfftw3.so:math/fftw3 + +USES= cmake pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= Polochon-street +GH_TAGNAME= fa6c62588df645b5ccee53207efc6a0d9a303b3a +USE_LDCONFIG= yes + +PLIST_FILES= include/bliss.h \ + lib/libbliss.so + +.include Added: head/audio/bliss/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/bliss/distinfo Thu Jul 30 05:41:12 2020 (r543710) @@ -0,0 +1,3 @@ +TIMESTAMP = 1596086046 +SHA256 (Polochon-street-bliss-1.2.0.20200615-fa6c62588df645b5ccee53207efc6a0d9a303b3a_GH0.tar.gz) = 71985ade63fcf9ab1e0f732df6a2b69d25b790119d3eb997000edd510438920b +SIZE (Polochon-street-bliss-1.2.0.20200615-fa6c62588df645b5ccee53207efc6a0d9a303b3a_GH0.tar.gz) = 3734783 Added: head/audio/bliss/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/bliss/files/patch-CMakeLists.txt Thu Jul 30 05:41:12 2020 (r543710) @@ -0,0 +1,13 @@ +--- CMakeLists.txt.orig 2020-07-30 05:15:51 UTC ++++ CMakeLists.txt +@@ -93,8 +93,8 @@ set_tests_properties(ctest_run_test_decode PROPERTIES + ################### + # Install targets # + ################### +-install(TARGETS bliss DESTINATION /usr/lib) +-install(FILES include/bliss.h DESTINATION /usr/include) ++install(TARGETS bliss DESTINATION lib) ++install(FILES include/bliss.h DESTINATION include) + + ############## + # Generators # Added: head/audio/bliss/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/bliss/pkg-descr Thu Jul 30 05:41:12 2020 (r543710) @@ -0,0 +1,8 @@ +Bliss music library is a multithreaded C library used to compute distance +between songs. It is especially usable through MPD with Blissify. It is can be +useful for creating "intelligent" playlists and/or continuous play, a la +Spotify/Grooveshark Radio. + +Bliss is really useful when used as a plug-in for audio players. + +WWW: https://github.com/Polochon-street/bliss