From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48910) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gK3ix-0001Wf-FT for guix-patches@gnu.org; Tue, 06 Nov 2018 10:57:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gK3iw-0002Kt-Ep for guix-patches@gnu.org; Tue, 06 Nov 2018 10:57:03 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33230) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gK3iw-0002Kn-Ad for guix-patches@gnu.org; Tue, 06 Nov 2018 10:57:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gK3iw-0005w6-8H for guix-patches@gnu.org; Tue, 06 Nov 2018 10:57:02 -0500 Subject: bug#33087: [PATCH] gnu: xorg: Add xcb-util-errors. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: Date: Tue, 06 Nov 2018 16:56:23 +0100 In-Reply-To: ("Stefan \=\?utf-8\?Q\?Stefanovi\=C4\=87\=22's\?\= message of "Sat, 20 Oct 2018 00:29:07 +0200") Message-ID: <87h8guw66w.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Stefan =?UTF-8?Q?Stefanovi=C4=87?= Cc: 33087-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Stefan Stefanovi=C4=87 skribis: > From d99569a104ee893b2b4bd31d7b21d20689405cf2 Mon Sep 17 00:00:00 2001 > From: =3D?UTF-8?q?Stefan=3D20Stefanovi=3DC4=3D87?=3D > Date: Sat, 20 Oct 2018 00:20:25 +0200 > Subject: [PATCH] gnu: Add xcb-util-errors. > > * gnu/packages/xorg.scm (xcb-util-errors): New variable. Applied with the minor changes below, thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 7e4fdefe2f..49baef5f04 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -5513,6 +5513,9 @@ The XCB util module provides the following libraries: (modify-phases %standard-phases (replace 'bootstrap (lambda _ + ;; The default 'bootstrap' phase would run 'autogen.sh', which + ;; would try to run ./configure and fail due to unpatched + ;; shebangs. (invoke "autoreconf" "-v" "--install")))))) (home-page "https://cgit.freedesktop.org/xcb/util-errors/") (synopsis "XCB helper library for printing information about X11 errors") @@ -5524,12 +5527,10 @@ and interfaces which make the raw X protocol more usable. Some of the libraries also provide client-side code which is not strictly part of the X protocol but which has traditionally been provided by Xlib. -The XCB util-errors module provides the following library: - -- errors: utility library that gives human readable names to -error codes, event codes and also to major and minor numbers.") - (license (license:non-copyleft - "file://COPYING" "See COPYING in the distribution."))))) +The XCB util-errors module provides a utility library that gives human +readable names to error codes, event codes, and also to major and minor +numbers.") + (license license:x11)))) (define-public xcb-util-image (package --=-=-=--