From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 666971382C5 for ; Wed, 20 May 2020 17:44:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B148E099F; Wed, 20 May 2020 17:44:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76AC7E0986 for ; Wed, 20 May 2020 17:44:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7695234F21A for ; Wed, 20 May 2020 17:44:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20970256 for ; Wed, 20 May 2020 17:44:22 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1589996601.1739fd23bf2fa5d49730ecb997f0e353c213a650.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xisxwayland/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-apps/xisxwayland/Manifest x11-apps/xisxwayland/metadata.xml x11-apps/xisxwayland/xisxwayland-1.ebuild x11-apps/xisxwayland/xisxwayland-9999.ebuild X-VCS-Directories: x11-apps/xisxwayland/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 1739fd23bf2fa5d49730ecb997f0e353c213a650 X-VCS-Branch: master Date: Wed, 20 May 2020 17:44:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: eaff1398-b0d6-46b3-a329-237a6a0d95e4 X-Archives-Hash: 226774f1a3b780994769802fdcb435f7 commit: 1739fd23bf2fa5d49730ecb997f0e353c213a650 Author: Matt Turner gentoo org> AuthorDate: Wed May 20 17:32:23 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed May 20 17:43:21 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1739fd23 x11-apps/xisxwayland: New package Signed-off-by: Matt Turner gentoo.org> x11-apps/xisxwayland/Manifest | 1 + x11-apps/xisxwayland/metadata.xml | 8 ++++++++ x11-apps/xisxwayland/xisxwayland-1.ebuild | 24 ++++++++++++++++++++++++ x11-apps/xisxwayland/xisxwayland-9999.ebuild | 24 ++++++++++++++++++++++++ 4 files changed, 57 insertions(+) diff --git a/x11-apps/xisxwayland/Manifest b/x11-apps/xisxwayland/Manifest new file mode 100644 index 00000000000..b38a23609e7 --- /dev/null +++ b/x11-apps/xisxwayland/Manifest @@ -0,0 +1 @@ +DIST xisxwayland-1.tar.xz 4168 BLAKE2B a8e4a658427f5b03e3d05b25772c4f136c13be47a68619a6beab3db72a70e836e495fcbc8a19d5f9347f3336a1dc9b353f483fb75e47ebfdbb9b8409e63444f0 SHA512 9514442313cff4df0c71fed445ba0e3fe52f3c84ebbec81725a590f68cc42ea01ac96b23736a0108fe206da3aee48434c5c30d1c58905bfc75db35205c288bca diff --git a/x11-apps/xisxwayland/metadata.xml b/x11-apps/xisxwayland/metadata.xml new file mode 100644 index 00000000000..e943b72b8a4 --- /dev/null +++ b/x11-apps/xisxwayland/metadata.xml @@ -0,0 +1,8 @@ + + + + + x11@gentoo.org + X11 + + diff --git a/x11-apps/xisxwayland/xisxwayland-1.ebuild b/x11-apps/xisxwayland/xisxwayland-1.ebuild new file mode 100644 index 00000000000..13f4c99748f --- /dev/null +++ b/x11-apps/xisxwayland/xisxwayland-1.ebuild @@ -0,0 +1,24 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} = 9999* ]]; then + GIT_ECLASS="git-r3" + EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/app/${PN}.git" +fi + +inherit ${GIT_ECLASS} meson + +DESCRIPTION="Tool to determine whether the X server in use is Xwayland" +HOMEPAGE="https://gitlab.freedesktop.org/xorg/app/xisxwayland" +if [[ ${PV} = 9999* ]]; then + SRC_URI="" +else + KEYWORDS="~amd64" + SRC_URI="https://xorg.freedesktop.org/archive/individual/app/${P}.tar.xz" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" diff --git a/x11-apps/xisxwayland/xisxwayland-9999.ebuild b/x11-apps/xisxwayland/xisxwayland-9999.ebuild new file mode 100644 index 00000000000..13f4c99748f --- /dev/null +++ b/x11-apps/xisxwayland/xisxwayland-9999.ebuild @@ -0,0 +1,24 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} = 9999* ]]; then + GIT_ECLASS="git-r3" + EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/app/${PN}.git" +fi + +inherit ${GIT_ECLASS} meson + +DESCRIPTION="Tool to determine whether the X server in use is Xwayland" +HOMEPAGE="https://gitlab.freedesktop.org/xorg/app/xisxwayland" +if [[ ${PV} = 9999* ]]; then + SRC_URI="" +else + KEYWORDS="~amd64" + SRC_URI="https://xorg.freedesktop.org/archive/individual/app/${P}.tar.xz" +fi + +LICENSE="MIT" +SLOT="0" +IUSE=""