From owner-svn-ports-all@freebsd.org Sun Apr 28 18:04:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 866C41584F21; Sun, 28 Apr 2019 18:04:04 +0000 (UTC) (envelope-from tcberner@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 235D26E636; Sun, 28 Apr 2019 18:04:04 +0000 (UTC) (envelope-from tcberner@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 B15CAE414; Sun, 28 Apr 2019 18:04:02 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3SI42l5068709; Sun, 28 Apr 2019 18:04:02 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3SI410M068705; Sun, 28 Apr 2019 18:04:01 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201904281804.x3SI410M068705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 28 Apr 2019 18:04:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r500340 - in head/audio: . noson-app X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/audio: . noson-app X-SVN-Commit-Revision: 500340 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 235D26E636 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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: Sun, 28 Apr 2019 18:04:04 -0000 Author: tcberner Date: Sun Apr 28 18:04:01 2019 New Revision: 500340 URL: https://svnweb.freebsd.org/changeset/ports/500340 Log: New port: audio/noson-app -- a SONOS controller Noson is a SONOS controller for Linux platforms The fast and smart controller for your SONOS devices. You can browse your music library and play track or radio on any zones. You can manage grouping zones, queue, and playlists, and fully control the playback. Written with QML/C++ for maximal performance WWW: http://janbar.github.io/noson-app/index.html Added: head/audio/noson-app/ head/audio/noson-app/Makefile (contents, props changed) head/audio/noson-app/distinfo (contents, props changed) head/audio/noson-app/pkg-descr (contents, props changed) head/audio/noson-app/pkg-plist (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sun Apr 28 18:03:53 2019 (r500339) +++ head/audio/Makefile Sun Apr 28 18:04:01 2019 (r500340) @@ -566,6 +566,7 @@ SUBDIR += noise-repellent-lv2 SUBDIR += normalize SUBDIR += nosefart + SUBDIR += noson-app SUBDIR += nspmod SUBDIR += nuvolaplayer SUBDIR += oaml Added: head/audio/noson-app/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/noson-app/Makefile Sun Apr 28 18:04:01 2019 (r500340) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= noson-app +DISTVERSION= 3.11.4 +CATEGORIES= audio net + +MAINTAINER= tcberner@FreeBSD.org +COMMENT= Fast and smart SONOS controller + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libFLAC.so:audio/flac + +USES= cmake qt:5 ssl +USE_QT= core declarative gui network quickcontrols2 \ + svg widgets xml \ + buildtools_build qmake_build +USE_GITHUB= yes +GH_ACCOUNT= janbar + +OPTIONS_DEFINE= PULSEAUDIO +PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio +PULSEAUDIO_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Pulse \ + CMAKE_DISABLE_FIND_PACKAGE_Pulse-simple + +.include Added: head/audio/noson-app/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/noson-app/distinfo Sun Apr 28 18:04:01 2019 (r500340) @@ -0,0 +1,3 @@ +TIMESTAMP = 1556469837 +SHA256 (janbar-noson-app-3.11.4_GH0.tar.gz) = 3d35194a147780b44f6e224b4fd4602731585db10e7d1dda937569c72e1bce37 +SIZE (janbar-noson-app-3.11.4_GH0.tar.gz) = 8398910 Added: head/audio/noson-app/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/noson-app/pkg-descr Sun Apr 28 18:04:01 2019 (r500340) @@ -0,0 +1,9 @@ +Noson is a SONOS controller for Linux platforms + +The fast and smart controller for your SONOS devices. You can browse your music +library and play track or radio on any zones. You can manage grouping zones, +queue, and playlists, and fully control the playback. + +Written with QML/C++ for maximal performance + +WWW: http://janbar.github.io/noson-app/index.html Added: head/audio/noson-app/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/noson-app/pkg-plist Sun Apr 28 18:04:01 2019 (r500340) @@ -0,0 +1,12 @@ +bin/noson-app +lib/noson/NosonApp/libNosonApp.so +lib/noson/NosonApp/qmldir +lib/noson/NosonMediaScanner/libNosonMediaScanner.so +lib/noson/NosonMediaScanner/qmldir +lib/noson/NosonThumbnailer/libNosonThumbnailer.so +lib/noson/NosonThumbnailer/qmldir +lib/noson/noson-cli +lib/noson/noson-gui +share/applications/io.github.janbar.noson.desktop +share/icons/hicolor/256x256/apps/noson.png +share/metainfo/io.github.janbar.noson.appdata.xml