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 4EBB0138330 for ; Tue, 20 Sep 2016 06:12:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18FA5E0B5F; Tue, 20 Sep 2016 06:12:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 814D8E0B5F for ; Tue, 20 Sep 2016 06:12:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EFD3D340C30 for ; Tue, 20 Sep 2016 06:12:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A866246F for ; Tue, 20 Sep 2016 06:12:25 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1474351941.cc228f0b0c7425a49d53e30577c37bfeea179722.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-electron/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-eselect/eselect-electron/Manifest app-eselect/eselect-electron/eselect-electron-1.0.0.ebuild app-eselect/eselect-electron/metadata.xml X-VCS-Directories: app-eselect/eselect-electron/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: cc228f0b0c7425a49d53e30577c37bfeea179722 X-VCS-Branch: master Date: Tue, 20 Sep 2016 06:12:25 +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-Archives-Salt: b184dd31-c79d-4ba2-b605-3e7292d3e0d6 X-Archives-Hash: 363903ccc63ba2997e1ac3afca410247 commit: cc228f0b0c7425a49d53e30577c37bfeea179722 Author: Elvis Pranskevichus magic io> AuthorDate: Thu Sep 15 13:26:06 2016 +0000 Commit: Yixun Lan gentoo org> CommitDate: Tue Sep 20 06:12:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc228f0b app-eselect/eselect-electron: Eselect module for Electron Package-Manager: portage-2.2.28 Signed-off-by: Yixun Lan gentoo.org> app-eselect/eselect-electron/Manifest | 1 + .../eselect-electron/eselect-electron-1.0.0.ebuild | 26 ++++++++++++++++++++++ app-eselect/eselect-electron/metadata.xml | 12 ++++++++++ 3 files changed, 39 insertions(+) diff --git a/app-eselect/eselect-electron/Manifest b/app-eselect/eselect-electron/Manifest new file mode 100644 index 00000000..68c731d --- /dev/null +++ b/app-eselect/eselect-electron/Manifest @@ -0,0 +1 @@ +DIST v1.0.0.tar.gz 9814 SHA256 fb7fdf681d06d96e85b2e532809503d1d3efcdde6af005c2cef894c76c769c73 SHA512 7356ec1f88befb5369b9fef08b77144f945c69c2ee79861887647fa0d23400f7ebfe8fc1ef6d62d59cab57a5eecb71e5fcc19cda27f89a468f6ca840100d8685 WHIRLPOOL e912886b6598292e358bf1040bed791e32ce0289773539fa7d87d6d9bae6696fd962d0c5536fb30dc6dda23bf092b19efc906ede34c1f09b5e835f97f6b2f0a6 diff --git a/app-eselect/eselect-electron/eselect-electron-1.0.0.ebuild b/app-eselect/eselect-electron/eselect-electron-1.0.0.ebuild new file mode 100644 index 00000000..507e1a4 --- /dev/null +++ b/app-eselect/eselect-electron/eselect-electron-1.0.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +DESCRIPTION="Utility to select the default Electron slot" +HOMEPAGE="https://www.gentoo.org/" +SRC_URI="https://github.com/elprans/${PN}/archive/v${PV}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris" +IUSE="" + +RDEPEND="app-admin/eselect" + +src_install() { + keepdir /etc/eselect/electron + + insinto /usr/share/eselect/modules + doins electron.eselect +} + +pkg_postinst() { + eselect electron update +} diff --git a/app-eselect/eselect-electron/metadata.xml b/app-eselect/eselect-electron/metadata.xml new file mode 100644 index 00000000..bcf6082 --- /dev/null +++ b/app-eselect/eselect-electron/metadata.xml @@ -0,0 +1,12 @@ + + + + + elvis@magic.io + Elvis Pranskevichus + + + proxy-maint@gentoo.org + Proxy Maintainers + +