From owner-svn-ports-all@freebsd.org Mon Oct 5 00:07:54 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 041133F00F4; Mon, 5 Oct 2020 00:07:54 +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) 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 4C4LX96LnDz4R87; Mon, 5 Oct 2020 00:07:53 +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 B9732CF93; Mon, 5 Oct 2020 00:07:53 +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 09507r6Z023086; Mon, 5 Oct 2020 00:07:53 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09507roq023084; Mon, 5 Oct 2020 00:07:53 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202010050007.09507roq023084@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 5 Oct 2020 00:07:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r551470 - head/x11/waybar X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/x11/waybar X-SVN-Commit-Revision: 551470 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: Mon, 05 Oct 2020 00:07:54 -0000 Author: jbeich Date: Mon Oct 5 00:07:53 2020 New Revision: 551470 URL: https://svnweb.freebsd.org/changeset/ports/551470 Log: x11/waybar: backport SNDIO support Modified: head/x11/waybar/Makefile (contents, props changed) head/x11/waybar/distinfo (contents, props changed) Modified: head/x11/waybar/Makefile ============================================================================== --- head/x11/waybar/Makefile Sun Oct 4 23:08:37 2020 (r551469) +++ head/x11/waybar/Makefile Mon Oct 5 00:07:53 2020 (r551470) @@ -2,8 +2,13 @@ PORTNAME= waybar DISTVERSION= 0.9.4 +PORTREVISION= 1 CATEGORIES= x11 +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ +PATCHFILES+= e4427cb017f2.patch:-p1 # https://github.com/Alexays/Waybar/pull/849 +PATCHFILES+= 22e46ea6cc64.patch:-p1 # https://github.com/Alexays/Waybar/pull/849 + MAINTAINER= jbeich@FreeBSD.org COMMENT= Highly customizable Wayland bar for Sway and wlroots-based compositors @@ -34,8 +39,8 @@ SUB_FILES+= date.pc post-patch: apply-slist .endif -OPTIONS_DEFINE= DBUS GLS ICONSFONT MANPAGES MPD PULSEAUDIO UDEV -OPTIONS_DEFAULT=DBUS GLS ICONSFONT MANPAGES MPD PULSEAUDIO UDEV +OPTIONS_DEFINE= DBUS GLS ICONSFONT MANPAGES MPD PULSEAUDIO SNDIO UDEV +OPTIONS_DEFAULT=DBUS GLS ICONSFONT MANPAGES MPD PULSEAUDIO SNDIO UDEV DBUS_LIB_DEPENDS= libdbusmenu-gtk3.so:devel/libdbusmenu DBUS_MESON_ENABLED= dbusmenu-gtk @@ -62,6 +67,7 @@ MANPAGES_PLIST_FILES= man/man5/${PORTNAME}-backlight.5 man/man5/${PORTNAME}-network.5.gz \ man/man5/${PORTNAME}-pulseaudio.5.gz \ man/man5/${PORTNAME}-river-tags.5.gz \ + man/man5/${PORTNAME}-sndio.5.gz \ man/man5/${PORTNAME}-states.5.gz \ man/man5/${PORTNAME}-sway-mode.5.gz \ man/man5/${PORTNAME}-sway-window.5.gz \ @@ -78,6 +84,10 @@ MPD_MESON_ENABLED= mpd PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_MESON_ENABLED= pulseaudio + +SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio +SNDIO_USES= localbase:ldflags +SNDIO_MESON_ENABLED= sndio UDEV_DESC= Monitor backlight level via libudev UDEV_LIB_DEPENDS= libepoll-shim.so:devel/libepoll-shim \ Modified: head/x11/waybar/distinfo ============================================================================== --- head/x11/waybar/distinfo Sun Oct 4 23:08:37 2020 (r551469) +++ head/x11/waybar/distinfo Mon Oct 5 00:07:53 2020 (r551470) @@ -1,3 +1,7 @@ TIMESTAMP = 1600683522 SHA256 (Alexays-Waybar-0.9.4_GH0.tar.gz) = d49c09ee253ca9cc9688d1b4d8602adc9bdae613b02e2fa1a2e7277ddc9e82e8 SIZE (Alexays-Waybar-0.9.4_GH0.tar.gz) = 137409 +SHA256 (e4427cb017f2.patch) = b37743cc5b9564f815ca95dbd97404324ce8a456674a183d4d89070a57768ce2 +SIZE (e4427cb017f2.patch) = 11956 +SHA256 (22e46ea6cc64.patch) = a8e4030c105e7c08331fe0bf09b3c2129161abc3c4accb09b8c64233ea211099 +SIZE (22e46ea6cc64.patch) = 3686