From owner-svn-ports-head@freebsd.org Mon Oct 26 06:29:50 2020 Return-Path: Delivered-To: svn-ports-head@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 A7B5743B557; Mon, 26 Oct 2020 06:29:50 +0000 (UTC) (envelope-from zeising@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 4CKQ1B3jn2z3XdH; Mon, 26 Oct 2020 06:29:50 +0000 (UTC) (envelope-from zeising@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 4511016705; Mon, 26 Oct 2020 06:29:50 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09Q6ToKX007293; Mon, 26 Oct 2020 06:29:50 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09Q6TnAV007291; Mon, 26 Oct 2020 06:29:49 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <202010260629.09Q6TnAV007291@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Mon, 26 Oct 2020 06:29:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r553321 - head/audio/strawberry X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/audio/strawberry X-SVN-Commit-Revision: 553321 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2020 06:29:50 -0000 Author: zeising Date: Mon Oct 26 06:29:49 2020 New Revision: 553321 URL: https://svnweb.freebsd.org/changeset/ports/553321 Log: audio/strawberry: Update to 0.8.2 Update audio/strawberry to 0.8.2 * Removed broken imobiledevice (iPhone) support. * QT6 ready. * Improvement of several interface options. PR: 248662 Submitted by: Daniel Menelkir (maintainer) Modified: head/audio/strawberry/Makefile head/audio/strawberry/distinfo Modified: head/audio/strawberry/Makefile ============================================================================== --- head/audio/strawberry/Makefile Mon Oct 26 06:13:33 2020 (r553320) +++ head/audio/strawberry/Makefile Mon Oct 26 06:29:49 2020 (r553321) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= strawberry -DISTVERSION= 0.6.13 -PORTREVISION= 1 +DISTVERSION= 0.8.2 CATEGORIES= audio MASTER_SITES= https://github.com/strawberrymusicplayer/${PORTNAME}/releases/download/${DISTVERSION}/ \ https://files.jkvinge.net/packages/strawberry/ @@ -30,7 +29,7 @@ USE_QT= buildtools_build concurrent core dbus gui net USE_XORG= ice sm x11 xcb xext INSTALLS_ICONS= yes -CMAKE_ARGS= -DUSE_SYSTEM_TAGLIB=ON -DENABLE_UDISKS2=OFF -DENABLE_XINE=OFF \ +CMAKE_ARGS= -DUSE_SYSTEM_TAGLIB=ON -DENABLE_UDISKS2=OFF \ -DENABLE_GSTREAMER:BOOL=true \ -DENABLE_TRANSLATIONS:BOOL=true @@ -44,7 +43,7 @@ TEST_TARGET= strawberry_test # error: member initializer 'transcode_dialog_' does not name a non-static data member or base class # transcode_dialog_([=]() { -OPTIONS_DEFINE= APPLEDEV AUDIOCD IPOD MOODBAR MTPDEV MUSICBRAINZ \ +OPTIONS_DEFINE= AUDIOCD IPOD MOODBAR MTPDEV MUSICBRAINZ \ SUBSONIC TIDAL VLC APPLEDEV_IMPLIES= IPOD @@ -53,7 +52,6 @@ OPTIONS_DEFAULT= PULSEAUDIO MOODBAR OPTIONS_MULTI= SOUND OPTIONS_MULTI_SOUND= ALSA PULSEAUDIO -APPLEDEV_DESC= Enable support for more recent Apple devices AUDIOCD_DESC= Enable support for Audio CDs IPOD_DESC= Enable support for iPod Classic MOODBAR_DESC= Enable moodbar @@ -62,11 +60,6 @@ MUSICBRAINZ_DESC= Enable tag fetching from MusicBrainz SUBSONIC_DESC= Enable support for Subsonic music streamer TIDAL_DESC= Enable support for TIDAL music service VLC_DESC= Multimedia support via (lib)vlc - -APPLEDEV_CMAKE_BOOL= ENABLE_IMOBILEDEVICE -APPLEDEV_LIB_DEPENDS= libimobiledevice.so:comms/libimobiledevice \ - libplist.so:devel/libplist \ - libusbmuxd.so:comms/libusbmuxd ALSA_CMAKE_BOOL= ENABLE_ALSA ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib Modified: head/audio/strawberry/distinfo ============================================================================== --- head/audio/strawberry/distinfo Mon Oct 26 06:13:33 2020 (r553320) +++ head/audio/strawberry/distinfo Mon Oct 26 06:29:49 2020 (r553321) @@ -1,3 +1,3 @@ -TIMESTAMP = 1596223522 -SHA256 (strawberry-0.6.13.tar.xz) = 0c0cee6c1f75541dcc89c3dcb2db29e79f07d7b4dabc911c89853ad0b50fba29 -SIZE (strawberry-0.6.13.tar.xz) = 10156576 +TIMESTAMP = 1602849353 +SHA256 (strawberry-0.8.2.tar.xz) = 89fe3d06f190a7cf721f81b8cbb64b26842bceeb03e95f6a87f1e50a39803c9e +SIZE (strawberry-0.8.2.tar.xz) = 10280568