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 3DD091382C5 for ; Mon, 29 Jun 2020 20:53:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B692E088C; Mon, 29 Jun 2020 20:53:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 0CA81E088C for ; Mon, 29 Jun 2020 20:53:32 +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 7412B34F38F for ; Mon, 29 Jun 2020 20:53:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C16F292 for ; Mon, 29 Jun 2020 20:53:27 +0000 (UTC) From: "Matthias Coppens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Coppens" Message-ID: <1593463980.4211ab464b6ad019680b05e9042b98bc7b23af92.coppens.matthias@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/wdisplays/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/wdisplays/Manifest gui-apps/wdisplays/metadata.xml gui-apps/wdisplays/wdisplays-1.0.ebuild gui-apps/wdisplays/wdisplays-9999.ebuild X-VCS-Directories: gui-apps/wdisplays/ X-VCS-Committer: coppens.matthias X-VCS-Committer-Name: Matthias Coppens X-VCS-Revision: 4211ab464b6ad019680b05e9042b98bc7b23af92 X-VCS-Branch: dev Date: Mon, 29 Jun 2020 20:53:27 +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: feed8152-94fa-4f8e-97dc-d5712f31497b X-Archives-Hash: df64f3f1bf156fd3d53055e84d34f00c commit: 4211ab464b6ad019680b05e9042b98bc7b23af92 Author: Matthias Coppens gmail com> AuthorDate: Mon Jun 29 20:52:03 2020 +0000 Commit: Matthias Coppens gmail com> CommitDate: Mon Jun 29 20:53:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4211ab46 gui-apps/wdisplays: New package Package-Manager: Portage-2.3.99, Repoman-2.3.23 Signed-off-by: Matthias Coppens gmail.com> gui-apps/wdisplays/Manifest | 1 + gui-apps/wdisplays/metadata.xml | 8 ++++++++ gui-apps/wdisplays/wdisplays-1.0.ebuild | 27 +++++++++++++++++++++++++++ gui-apps/wdisplays/wdisplays-9999.ebuild | 27 +++++++++++++++++++++++++++ 4 files changed, 63 insertions(+) diff --git a/gui-apps/wdisplays/Manifest b/gui-apps/wdisplays/Manifest new file mode 100644 index 0000000..0cb2a7b --- /dev/null +++ b/gui-apps/wdisplays/Manifest @@ -0,0 +1 @@ +DIST wdisplays-1.0.tar.gz 106819 BLAKE2B d8a34ea82b88f99e27b5c42dc2e8bfed2bf69db719617d81d5f2c994e9020d206937e940f57452c99b534ceda241cea570899c7bdc74377009f7aa013e78b638 SHA512 876e883747331cf67d351b7afec963d6d52b6fa3870a57ed147acf898a662fb41407b3e835acc167d32de969d4001dbe8429340849ad09a7f7b8bfdabee61e3e diff --git a/gui-apps/wdisplays/metadata.xml b/gui-apps/wdisplays/metadata.xml new file mode 100644 index 0000000..7066f7e --- /dev/null +++ b/gui-apps/wdisplays/metadata.xml @@ -0,0 +1,8 @@ + + + + + Matthias Coppens + coppens.matthias.abc@gmail.com + + diff --git a/gui-apps/wdisplays/wdisplays-1.0.ebuild b/gui-apps/wdisplays/wdisplays-1.0.ebuild new file mode 100644 index 0000000..02f3aa3 --- /dev/null +++ b/gui-apps/wdisplays/wdisplays-1.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGIT_REPO_URI="https://github.com/cyclopsian/${PN}" +case "${PV}" in + "9999") + inherit git-r3 + ;; + *) + SRC_URI="${EGIT_REPO_URI}/archive/${PV}.tar.gz -> ${P}.tar.gz" +esac +inherit meson xdg + +DESCRIPTION="GUI display configurator for wlroots compositors" +HOMEPAGE="https://cyclopsian.github.io/${PN}" + +BDEPEND=" + x11-libs/gtk+:3 + gui-libs/wlroots" +DEPEND="${BDEPEND}" + +LICENSE="GPL-3+" +SLOT="0" + +KEYWORDS="~amd64" diff --git a/gui-apps/wdisplays/wdisplays-9999.ebuild b/gui-apps/wdisplays/wdisplays-9999.ebuild new file mode 100644 index 0000000..88406d3 --- /dev/null +++ b/gui-apps/wdisplays/wdisplays-9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGIT_REPO_URI="https://github.com/cyclopsian/${PN}" +case "${PV}" in + "9999") + inherit git-r3 + ;; + *) + SRC_URI="${EGIT_REPO_URI}/archive/${PV}.tar.gz -> ${P}.tar.gz" +esac +inherit meson xdg + +DESCRIPTION="GUI display configurator for wlroots compositors" +HOMEPAGE="https://cyclopsian.github.io/${PN}" + +BDEPEND=" + x11-libs/gtk+:3 + gui-libs/wlroots" +DEPEND="${BDEPEND}" + +LICENSE="GPL-3+" +SLOT="0" + +KEYWORDS=""