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 014781384AE for ; Sat, 19 Sep 2015 11:00:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E4C221C0ED; Sat, 19 Sep 2015 10:59:41 +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 7AEE821C0ED for ; Sat, 19 Sep 2015 10:59:40 +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 A5570340DDF for ; Sat, 19 Sep 2015 10:59:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41602200 for ; Sat, 19 Sep 2015 10:59:33 +0000 (UTC) From: "Heather Cynede" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Heather Cynede" Message-ID: <1442067896.1292f29d3c95417425e0de1d194ae3f50ba5aa8c.cynede@gentoo> Subject: [gentoo-commits] proj/dotnet:master commit in: eclass/ X-VCS-Repository: proj/dotnet X-VCS-Files: eclass/mpt-r20150903.eclass X-VCS-Directories: eclass/ X-VCS-Committer: cynede X-VCS-Committer-Name: Heather Cynede X-VCS-Revision: 1292f29d3c95417425e0de1d194ae3f50ba5aa8c X-VCS-Branch: master Date: Sat, 19 Sep 2015 10:59:33 +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: 413e5869-0003-4222-ba68-9319731c962f X-Archives-Hash: a4af0d7811cc9d7e9f8d2b8a1fb32eda commit: 1292f29d3c95417425e0de1d194ae3f50ba5aa8c Author: ArsenShnurkov gmail com> AuthorDate: Thu Sep 3 07:17:53 2015 +0000 Commit: Heather Cynede gentoo org> CommitDate: Sat Sep 12 14:24:56 2015 +0000 URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=1292f29d text of eclass, initial version eclass/mpt-r20150903.eclass | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/eclass/mpt-r20150903.eclass b/eclass/mpt-r20150903.eclass new file mode 100644 index 0000000..6e8a78d --- /dev/null +++ b/eclass/mpt-r20150903.eclass @@ -0,0 +1,35 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +# @ECLASS: mpt-r20150903.eclass +# @MAINTAINER: cynede@gentoo.org +# @BLURB: wrappers for mono-packaging-tools package +# @DESCRIPTION: +# This eclass include function wrappers + +inherit eutils versionator mono-env dotnet + +DEPEND+=" dev-util/mono-packaging-tools" + +# @FUNCTION: empt-gitmodules +# @DESCRIPTION: wraps mpt-gitmodules +empt-gitmodules() { + mpt-gitmodules $@ || die +} + +# @FUNCTION: empt-sln +# @DESCRIPTION: wraps mpt-sln +empt-sln() { + empt-sln $@ || die +} +# @FUNCTION: empt-csproj +# @DESCRIPTION: wraps mpt-csproj +empt-csproj() { + empt-csproj $@ || die +} +# @FUNCTION: eempt-machine +# @DESCRIPTION: wraps empt-machine +empt-machine() { + empt-machine $@ || die +}