From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1C421139357 for ; Sun, 9 Aug 2015 14:42:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C605141CD; Sun, 9 Aug 2015 14:42:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BAFAD141CD for ; Sun, 9 Aug 2015 14:41:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0ED89340A61 for ; Sun, 9 Aug 2015 14:41:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55239129 for ; Sun, 9 Aug 2015 14:41:55 +0000 (UTC) From: "Julian Ospald" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julian Ospald" Message-ID: <1439131252.d09acb34e7a76961f52dd7fef851c236e16f9a05.hasufell@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-renpy/files/, app-eselect/eselect-renpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-eselect/eselect-renpy/eselect-renpy-0.6.ebuild app-eselect/eselect-renpy/files/renpy.eselect-0.6 X-VCS-Directories: app-eselect/eselect-renpy/files/ app-eselect/eselect-renpy/ X-VCS-Committer: hasufell X-VCS-Committer-Name: Julian Ospald X-VCS-Revision: d09acb34e7a76961f52dd7fef851c236e16f9a05 X-VCS-Branch: master Date: Sun, 9 Aug 2015 14:41:55 +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: af7341c9-6cf0-4927-8ddb-fe42ec298563 X-Archives-Hash: d0ade1ed56e0ab44eb7c69342b83ca89 commit: d09acb34e7a76961f52dd7fef851c236e16f9a05 Author: Julian Ospald gentoo org> AuthorDate: Sun Aug 9 14:34:14 2015 +0000 Commit: Julian Ospald gentoo org> CommitDate: Sun Aug 9 14:40:52 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d09acb34 app-eselect/eselect-renpy: version bump to 0.6 Preparation for games-engines/renpy-6.99.5 bump. app-eselect/eselect-renpy/eselect-renpy-0.6.ebuild | 39 ++++++++++++++++++++++ app-eselect/eselect-renpy/files/renpy.eselect-0.6 | 15 +++++++++ 2 files changed, 54 insertions(+) diff --git a/app-eselect/eselect-renpy/eselect-renpy-0.6.ebuild b/app-eselect/eselect-renpy/eselect-renpy-0.6.ebuild new file mode 100644 index 0000000..cee7ecb --- /dev/null +++ b/app-eselect/eselect-renpy/eselect-renpy-0.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit games + +DESCRIPTION="Manages renpy symlink" +HOMEPAGE="http://www.gentoo.org/proj/en/eselect/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="app-eselect/eselect-lib-bin-symlink" + +S=${WORKDIR} + +pkg_setup() { :; } + +src_prepare() { + sed \ + -e "s#@GAMES_BINDIR@#${GAMES_BINDIR}#" \ + "${FILESDIR}"/renpy.eselect-${PV} > "${WORKDIR}"/renpy.eselect || die +} + +src_configure() { :; } + +src_compile() { :; } + +src_install() { + insinto /usr/share/eselect/modules + doins renpy.eselect +} + +pkg_preinst() { :; } + +pkg_postinst() { :; } diff --git a/app-eselect/eselect-renpy/files/renpy.eselect-0.6 b/app-eselect/eselect-renpy/files/renpy.eselect-0.6 new file mode 100644 index 0000000..cc9d140 --- /dev/null +++ b/app-eselect/eselect-renpy/files/renpy.eselect-0.6 @@ -0,0 +1,15 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id: renpy.eselect-0.5,v 1.1 2014/08/23 02:24:04 hasufell Exp $ + +DESCRIPTION="Manage default renpy version" +MAINTAINER="hasufell@gentoo.org" +VERSION="0.6" + +SYMLINK_PATH="@GAMES_BINDIR@/renpy" +SYMLINK_TARGETS=( renpy-6.14 renpy-6.15 renpy-6.16 renpy-6.17 renpy-6.18 renpy-6.99 ) +SYMLINK_DESCRIPTION='default renpy' +SYMLINK_CRUCIAL=1 + +inherit bin-symlink +