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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 427B6158091 for ; Tue, 24 May 2022 14:51:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9325AE089A; Tue, 24 May 2022 14:51:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4B3A8E0896 for ; Tue, 24 May 2022 14:51:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C0A1335DBF for ; Tue, 24 May 2022 14:51:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69E684A2 for ; Tue, 24 May 2022 14:51:06 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1653403729.1c284417dcdf7cfea290686cd77009f3e0754a94.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-apps/asus-numpad/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-apps/asus-numpad/Manifest sys-apps/asus-numpad/asus-numpad-0.1.ebuild sys-apps/asus-numpad/asus-numpad-9999.ebuild X-VCS-Directories: sys-apps/asus-numpad/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 1c284417dcdf7cfea290686cd77009f3e0754a94 X-VCS-Branch: master Date: Tue, 24 May 2022 14:51:06 +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: 5e2f46b8-a6dc-452a-b1df-c555b62010c3 X-Archives-Hash: 043c7d2714ef2391eb0caf2a5bb3abf1 commit: 1c284417dcdf7cfea290686cd77009f3e0754a94 Author: Patrick Nicolas laposte net> AuthorDate: Tue May 24 14:48:49 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Tue May 24 14:48:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c284417 sys-apps/asus-numpad: new package, add 0.1, 9999 Signed-off-by: Patrick Nicolas laposte.net> sys-apps/asus-numpad/Manifest | 1 + sys-apps/asus-numpad/asus-numpad-0.1.ebuild | 34 ++++++++++++++++++++++++++++ sys-apps/asus-numpad/asus-numpad-9999.ebuild | 34 ++++++++++++++++++++++++++++ 3 files changed, 69 insertions(+) diff --git a/sys-apps/asus-numpad/Manifest b/sys-apps/asus-numpad/Manifest new file mode 100644 index 000000000..424fc2558 --- /dev/null +++ b/sys-apps/asus-numpad/Manifest @@ -0,0 +1 @@ +DIST asus-numpad-0.1.tar.gz 17307 BLAKE2B 9a6601d4a45c08ed09b283ff6011483878dd2e00949e304fc05804b35f9794728676bcdf580411bd13dfa2e0600807a22239672409994152d9cf60a7bb903e73 SHA512 97d92a03a96c23659a35d6e3d86027284ec5494174aec8cd775273d7981be94957355a6352d4e90aeebbfe19268f8787a272754cc09345d0107d77aab9dfdb73 diff --git a/sys-apps/asus-numpad/asus-numpad-0.1.ebuild b/sys-apps/asus-numpad/asus-numpad-0.1.ebuild new file mode 100644 index 000000000..39edef631 --- /dev/null +++ b/sys-apps/asus-numpad/asus-numpad-0.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/xytovl/asus-numpad.git" + inherit git-r3 +else + TAG="v${PV}" + SRC_URI="https://github.com/xytovl/${PN}/archive/${TAG}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +inherit linux-info meson + +DESCRIPTION="User-space driver for Asus numpad" +HOMEPAGE="https://github.com/xytovl/asus-numpad" + +LICENSE="GPL-3" +SLOT="0" + +COMMON_DEPEND=">=dev-libs/libevdev-1.12.0" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" +BDEPEND="" + +src_configure() { + meson_src_configure +} + +src_install() { + meson_src_install +} diff --git a/sys-apps/asus-numpad/asus-numpad-9999.ebuild b/sys-apps/asus-numpad/asus-numpad-9999.ebuild new file mode 100644 index 000000000..39edef631 --- /dev/null +++ b/sys-apps/asus-numpad/asus-numpad-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/xytovl/asus-numpad.git" + inherit git-r3 +else + TAG="v${PV}" + SRC_URI="https://github.com/xytovl/${PN}/archive/${TAG}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +inherit linux-info meson + +DESCRIPTION="User-space driver for Asus numpad" +HOMEPAGE="https://github.com/xytovl/asus-numpad" + +LICENSE="GPL-3" +SLOT="0" + +COMMON_DEPEND=">=dev-libs/libevdev-1.12.0" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" +BDEPEND="" + +src_configure() { + meson_src_configure +} + +src_install() { + meson_src_install +}