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 089A9138334 for ; Thu, 8 Aug 2019 13:33:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3054E07F6; Thu, 8 Aug 2019 13:33:33 +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 CDBA5E07F6 for ; Thu, 8 Aug 2019 13:33:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DDABF349679 for ; Thu, 8 Aug 2019 13:33:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E17F5755 for ; Thu, 8 Aug 2019 13:33:29 +0000 (UTC) From: "Tony Vroon" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tony Vroon" Message-ID: <1565271191.5065c6198313ab3ecdfa34f75b4c8e06c0c18969.chainsaw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/light/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/light/Manifest sys-apps/light/light-1.2.ebuild sys-apps/light/metadata.xml X-VCS-Directories: sys-apps/light/ X-VCS-Committer: chainsaw X-VCS-Committer-Name: Tony Vroon X-VCS-Revision: 5065c6198313ab3ecdfa34f75b4c8e06c0c18969 X-VCS-Branch: master Date: Thu, 8 Aug 2019 13:33:29 +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: ae5c2b30-917d-4141-bc86-8839fc78983e X-Archives-Hash: 5bd6e01fea2839601da43d0266abe9b5 commit: 5065c6198313ab3ecdfa34f75b4c8e06c0c18969 Author: Tony Vroon gentoo org> AuthorDate: Thu Aug 8 13:33:11 2019 +0000 Commit: Tony Vroon gentoo org> CommitDate: Thu Aug 8 13:33:11 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5065c619 sys-apps/light: Initial commit. Ebuild adapted from the bugzilla submission of Pallav Agarwal. Suggested-By: Pallav Agarwal gmail.com> Signed-Off-By: Tony Vroon gentoo.org> Package-Manager: Portage-2.3.69, Repoman-2.3.16 sys-apps/light/Manifest | 1 + sys-apps/light/light-1.2.ebuild | 26 ++++++++++++++++++++++++++ sys-apps/light/metadata.xml | 8 ++++++++ 3 files changed, 35 insertions(+) diff --git a/sys-apps/light/Manifest b/sys-apps/light/Manifest new file mode 100644 index 00000000000..bb1931fe604 --- /dev/null +++ b/sys-apps/light/Manifest @@ -0,0 +1 @@ +DIST light-1.2.tar.gz 32592 BLAKE2B 86d2bf4a88cf61ec1b7af16510db3d26698397d5cc3ddee7f663c1f501ca6b5bf238e5f29f17142d6196908e1d444795abed41a12560c9411214d4a874c96ddb SHA512 3f876262a730ef34219e0d596065c725376218ca88a2e9f56f62a25956b9ba505168f32c5877715abf746090c053873322a3292680055cc2f5b77ec8c0d466a4 diff --git a/sys-apps/light/light-1.2.ebuild b/sys-apps/light/light-1.2.ebuild new file mode 100644 index 00000000000..96d743e0796 --- /dev/null +++ b/sys-apps/light/light-1.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Program to easily change brightness on backlight-controllers." +HOMEPAGE="https://github.com/haikarainen/light" +SRC_URI="https://github.com/haikarainen/light/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="udev" +DEPEND="udev? ( virtual/udev )" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_with udev udev /lib/udev/rules.d) +} diff --git a/sys-apps/light/metadata.xml b/sys-apps/light/metadata.xml new file mode 100644 index 00000000000..1a06e96ebdc --- /dev/null +++ b/sys-apps/light/metadata.xml @@ -0,0 +1,8 @@ + + + + + chainsaw@gentoo.org + Tony Vroon + +