From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56504) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fU0tm-0008WV-3I for guix-patches@gnu.org; Fri, 15 Jun 2018 22:25:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fU0ti-0004PU-Ps for guix-patches@gnu.org; Fri, 15 Jun 2018 22:25:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42891) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fU0ti-0004Nm-LL for guix-patches@gnu.org; Fri, 15 Jun 2018 22:25:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fU0ti-0003Wq-DH for guix-patches@gnu.org; Fri, 15 Jun 2018 22:25:02 -0400 Subject: [bug#31854] [PATCH 1/8] gnu: Add perl-x11-protocol-other. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fU0t7-0008Tk-35 for guix-patches@gnu.org; Fri, 15 Jun 2018 22:24:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fU0t3-0002Xj-SK for guix-patches@gnu.org; Fri, 15 Jun 2018 22:24:25 -0400 Received: from mout01.posteo.de ([185.67.36.65]:43655) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fU0t3-0002Aj-Hr for guix-patches@gnu.org; Fri, 15 Jun 2018 22:24:21 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id F3DAA210FB for ; Sat, 16 Jun 2018 04:24:11 +0200 (CEST) From: Kei Kebreau Date: Fri, 15 Jun 2018 22:24:07 -0400 Message-Id: <20180616022407.432-1-kkebreau@posteo.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 31854@debbugs.gnu.org Cc: Kei Kebreau * gnu/packages/xorg.scm (perl-x11-protocol-other): New variable. --- gnu/packages/xorg.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 54001187d..5e930fe0d 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -15,6 +15,7 @@ ;;; Copyright =C2=A9 2017, 2018 Rutger Helling ;;; Copyright =C2=A9 2017 Arun Isaac ;;; Copyright =C2=A9 2018 Tobias Geerinckx-Rice +;;; Copyright =C2=A9 2018 Kei Kebreau ;;; ;;; This file is part of GNU Guix. ;;; @@ -5855,6 +5856,32 @@ perl programs to display windows and graphics on X= 11 servers.") ;; for details)." (license license:perl-license))) =20 +(define-public perl-x11-protocol-other + (package + (name "perl-x11-protocol-other") + (version "30") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/K/KR/KRYDE/X11-Protocol-Other-" + version ".tar.gz")) + (sha256 + (base32 + "1mambi57cdkj82wiw1l8y2f70a60qsamdas0165hlj10drryfgrj")))) + (build-system perl-build-system) + (native-inputs + `(("perl-encode-hanextra" ,perl-encode-hanextra) + ("perl-module-util" ,perl-module-util))) + (propagated-inputs + `(("perl-x11-protocol" ,perl-x11-protocol))) + (home-page "http://search.cpan.org/dist/X11-Protocol-Other/") + (synopsis "Miscellaneous helpers for X11::Protocol connections") + (description + "X11::Protocol::Other contains window manager related functions for= use by +client programs, as per the ICCCM and some of the EWMH.") + (license license:gpl3+))) + (define-public xcompmgr (package (name "xcompmgr") --=20 2.17.1