From patchwork Mon Feb 21 18:33:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tanguy LE CARROUR X-Patchwork-Id: 37392 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id 27D3327BBEA; Mon, 21 Feb 2022 18:34:13 +0000 (GMT) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, SPF_HELO_PASS autolearn=unavailable autolearn_force=no version=3.4.6 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id F347C27BBE9 for ; Mon, 21 Feb 2022 18:34:12 +0000 (GMT) Received: from localhost ([::1]:55914 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nMDVk-0003W6-4N for patchwork@mira.cbaines.net; Mon, 21 Feb 2022 13:34:12 -0500 Received: from eggs.gnu.org ([209.51.188.92]:41192) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nMDVa-0003T4-LS for guix-patches@gnu.org; Mon, 21 Feb 2022 13:34:02 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:45108) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1nMDVa-0002Tq-At for guix-patches@gnu.org; Mon, 21 Feb 2022 13:34:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1nMDVa-0002FQ-9l for guix-patches@gnu.org; Mon, 21 Feb 2022 13:34:02 -0500 X-Loop: help-debbugs@gnu.org Subject: [bug#54090] [PATCH 1/2] gnu: Add wtype. References: <20220221174340.2287-1-tanguy@bioneland.org> In-Reply-To: <20220221174340.2287-1-tanguy@bioneland.org> Resent-From: Tanguy Le Carrour Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 21 Feb 2022 18:34:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54090 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54090@debbugs.gnu.org Cc: Tanguy Le Carrour Received: via spool by 54090-submit@debbugs.gnu.org id=B54090.16454684128581 (code B ref 54090); Mon, 21 Feb 2022 18:34:02 +0000 Received: (at 54090) by debbugs.gnu.org; 21 Feb 2022 18:33:32 +0000 Received: from localhost ([127.0.0.1]:39002 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMDV5-0002EL-Pl for submit@debbugs.gnu.org; Mon, 21 Feb 2022 13:33:31 -0500 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:46641) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMDV4-0002E5-2b for 54090@debbugs.gnu.org; Mon, 21 Feb 2022 13:33:30 -0500 Received: (Authenticated sender: tanguy@bioneland.org) by mail.gandi.net (Postfix) with ESMTPSA id 37C4A1BF203; Mon, 21 Feb 2022 18:33:22 +0000 (UTC) From: Tanguy Le Carrour Date: Mon, 21 Feb 2022 19:33:03 +0100 Message-Id: <20220221183304.5051-1-tanguy@bioneland.org> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/freedesktop.scm (wtype): New variable. --- gnu/packages/freedesktop.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index f89ec0742f..e2c17e0797 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -1201,6 +1201,29 @@ (define-public wev XEv.") (license license:expat))) +(define-public wtype + (package + (name "wtype") + (version "0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/atx/wtype.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bpix92vzip9vlhzihj3k8h9flrlna231x3y8ah7p4965l177yjd")))) + (build-system meson-build-system) + (native-inputs + (list pkg-config wayland libxkbcommon)) + (synopsis "Xdotool type for Wayland") + (description "Wtype lets you simulate keyboard input and mouse activity, +move and resize windows, etc.") + (home-page "https://github.com/atx/wtype") + ;; MIT License + (license license:expat))) + (define-public exempi (package (name "exempi")