From owner-svn-ports-all@freebsd.org Tue May 1 17:45:54 2018 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 88574FB1EA7; Tue, 1 May 2018 17:45:54 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3D4517F0D6; Tue, 1 May 2018 17:45:54 +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 3819525418; Tue, 1 May 2018 17:45:54 +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 w41Hjsku051502; Tue, 1 May 2018 17:45:54 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w41HjsHa051500; Tue, 1 May 2018 17:45:54 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201805011745.w41HjsHa051500@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Tue, 1 May 2018 17:45:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468774 - in head/x11/alacritty: . files X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/x11/alacritty: . files X-SVN-Commit-Revision: 468774 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.25 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: Tue, 01 May 2018 17:45:54 -0000 Author: zeising Date: Tue May 1 17:45:53 2018 New Revision: 468774 URL: https://svnweb.freebsd.org/changeset/ports/468774 Log: Fix GL context creation Add patch from upstream to fix errors in creating GL context. See Upstream issue for details: https://github.com/jwilm/alacritty/issues/921 PR: 227846 Submitted by: Sascha Holzleiter MFH: 2018Q2 Added: head/x11/alacritty/files/ head/x11/alacritty/files/patch-src_window.rs (contents, props changed) Modified: head/x11/alacritty/Makefile Modified: head/x11/alacritty/Makefile ============================================================================== --- head/x11/alacritty/Makefile Tue May 1 17:45:33 2018 (r468773) +++ head/x11/alacritty/Makefile Tue May 1 17:45:53 2018 (r468774) @@ -2,7 +2,7 @@ PORTNAME= alacritty PORTVERSION= g20180126 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MAINTAINER= zeising@FreeBSD.org Added: head/x11/alacritty/files/patch-src_window.rs ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/alacritty/files/patch-src_window.rs Tue May 1 17:45:53 2018 (r468774) @@ -0,0 +1,10 @@ +--- src/window.rs.orig 2018-04-23 07:37:25 UTC ++++ src/window.rs +@@ -200,6 +200,7 @@ impl Window { + .with_transparency(true) + .with_decorations(window_config.decorations()); + let context = ContextBuilder::new() ++ .with_srgb(true) + .with_vsync(true); + let window = ::glutin::GlWindow::new(window, context, &event_loop)?; + window.show();