From owner-svn-ports-head@freebsd.org Mon Jan 7 06:41:43 2019 Return-Path: Delivered-To: svn-ports-head@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 C6DF81488A03; Mon, 7 Jan 2019 06:41:43 +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) 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 6E550764BB; Mon, 7 Jan 2019 06:41:43 +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 61489C2AC; Mon, 7 Jan 2019 06:41:43 +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 x076fhB9007067; Mon, 7 Jan 2019 06:41:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x076fgli007061; Mon, 7 Jan 2019 06:41:42 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201901070641.x076fgli007061@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 7 Jan 2019 06:41:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489559 - in head: x11 x11-toolkits/wlroots x11/xcb-util-errors X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: x11 x11-toolkits/wlroots x11/xcb-util-errors X-SVN-Commit-Revision: 489559 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6E550764BB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.998,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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, 07 Jan 2019 06:41:44 -0000 Author: jbeich Date: Mon Jan 7 06:41:41 2019 New Revision: 489559 URL: https://svnweb.freebsd.org/changeset/ports/489559 Log: x11-toolkits/wlroots: improve error messages Added: head/x11/xcb-util-errors/ head/x11/xcb-util-errors/Makefile (contents, props changed) head/x11/xcb-util-errors/distinfo (contents, props changed) head/x11/xcb-util-errors/pkg-descr (contents, props changed) head/x11/xcb-util-errors/pkg-plist (contents, props changed) Modified: head/x11-toolkits/wlroots/Makefile (contents, props changed) head/x11/Makefile (contents, props changed) Modified: head/x11-toolkits/wlroots/Makefile ============================================================================== --- head/x11-toolkits/wlroots/Makefile Mon Jan 7 06:32:29 2019 (r489558) +++ head/x11-toolkits/wlroots/Makefile Mon Jan 7 06:41:41 2019 (r489559) @@ -2,7 +2,7 @@ PORTNAME= wlroots DISTVERSION= 0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ @@ -38,16 +38,12 @@ OPTIONS_DEFINE= X11 OPTIONS_DEFAULT=X11 OPTIONS_SUB= yes -X11_LIB_DEPENDS=libxcb-icccm.so:x11/xcb-util-wm +X11_LIB_DEPENDS=libxcb-errors.so:x11/xcb-util-errors \ + libxcb-icccm.so:x11/xcb-util-wm X11_RUN_DEPENDS=Xwayland:x11-servers/xwayland X11_USE= XORG=x11,xcb X11_MESON_ON= -Dx11-backend=enabled -Dxcb-icccm=enabled -Dxwayland=enabled X11_MESON_OFF= -Dx11-backend=disabled -Dxcb-icccm=disabled -Dxwayland=disabled - -# https://github.com/swaywm/wlroots/commit/f8428d1063c6 -.if exists(${.CURDIR:H:H}/x11/xcb-util-errors) -X11_LIB_DEPENDS+= libxcb-errors.so:x11/xcb-util-errors -.endif post-patch: # Ignore unused dependencies Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Mon Jan 7 06:32:29 2019 (r489558) +++ head/x11/Makefile Mon Jan 7 06:41:41 2019 (r489559) @@ -367,6 +367,7 @@ SUBDIR += xcb-proto SUBDIR += xcb-util SUBDIR += xcb-util-cursor + SUBDIR += xcb-util-errors SUBDIR += xcb-util-image SUBDIR += xcb-util-keysyms SUBDIR += xcb-util-renderutil Added: head/x11/xcb-util-errors/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcb-util-errors/Makefile Mon Jan 7 06:41:41 2019 (r489559) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= xcb-util-errors +PORTVERSION= 1.0 +CATEGORIES= x11 +MASTER_SITES= http://xcb.freedesktop.org/dist/ + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Pretty-print XCB codes + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= xcb-proto>=1.6:x11/xcb-proto + +XORG_CAT= lib +USE_XORG= xcb +INSTALL_TARGET= install-strip + +.include Added: head/x11/xcb-util-errors/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcb-util-errors/distinfo Mon Jan 7 06:41:41 2019 (r489559) @@ -0,0 +1,3 @@ +TIMESTAMP = 1430056740 +SHA256 (xorg/lib/xcb-util-errors-1.0.tar.bz2) = 682681769e818ba085870d1ccd65f1f282ca16ca7d6f0f73ee70bc3642aa1995 +SIZE (xorg/lib/xcb-util-errors-1.0.tar.bz2) = 297943 Added: head/x11/xcb-util-errors/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcb-util-errors/pkg-descr Mon Jan 7 06:41:41 2019 (r489559) @@ -0,0 +1,7 @@ +xcb-util-errors is a utility library that gives human readable +names to error codes and event codes and also to major and minor +numbers. The necessary information is drawn from xcb-proto's protocol +descriptions. This library is especially useful when working with +extensions and is mostly useful for debugging. + +WWW: http://xcb.freedesktop.org/ Added: head/x11/xcb-util-errors/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcb-util-errors/pkg-plist Mon Jan 7 06:41:41 2019 (r489559) @@ -0,0 +1,6 @@ +include/xcb/xcb_errors.h +lib/libxcb-errors.a +lib/libxcb-errors.so +lib/libxcb-errors.so.0 +lib/libxcb-errors.so.0.0.0 +libdata/pkgconfig/xcb-errors.pc