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 9072D1381F3 for ; Mon, 15 Apr 2013 08:22:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BABFDE0825; Mon, 15 Apr 2013 08:22:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 49430E0825 for ; Mon, 15 Apr 2013 08:22:05 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E390D335E30 for ; Mon, 15 Apr 2013 08:22:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 83F98E4344 for ; Mon, 15 Apr 2013 08:22:02 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1366014114.89b0af77352998997fe768f95701c04f54e3cda9.dev-zero@gentoo> Subject: [gentoo-commits] dev/dev-zero:master commit in: sys-fs/nocache/ X-VCS-Repository: dev/dev-zero X-VCS-Files: sys-fs/nocache/Manifest sys-fs/nocache/nocache-9999.ebuild X-VCS-Directories: sys-fs/nocache/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: 89b0af77352998997fe768f95701c04f54e3cda9 X-VCS-Branch: master Date: Mon, 15 Apr 2013 08:22:02 +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: 146d50ab-7100-4b08-99ba-50df61bc4b0a X-Archives-Hash: 60633ac688cd3b8cd58590c8306e4a45 commit: 89b0af77352998997fe768f95701c04f54e3cda9 Author: Tiziano Müller dev-zero ch> AuthorDate: Mon Apr 15 08:21:54 2013 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Mon Apr 15 08:21:54 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=89b0af77 Initial commit. --- sys-fs/nocache/Manifest | 1 + sys-fs/nocache/nocache-9999.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 0 deletions(-) diff --git a/sys-fs/nocache/Manifest b/sys-fs/nocache/Manifest new file mode 100644 index 0000000..439509a --- /dev/null +++ b/sys-fs/nocache/Manifest @@ -0,0 +1 @@ +EBUILD nocache-9999.ebuild 502 SHA256 3efbb5a708168163d8d9383078178fbcab34144275fd86dc18ca05d966fff074 SHA512 d8f53ce61a4302e88bd5d7def30e0d4ffd2865c3e66cc7bfaf33e4c8a7b3d319befebc746044b986e6861f4af15eadbf6e37325da7f89cf20d942671b30a626d WHIRLPOOL 28e73467a497b83aba36dd189bc0cdabf9a38e28fd85ac14560c208da3969f776a59d7aa53e1385224ce8f1ea9bdffe854c8ad0cff891deffcc1a328a0f6b4f7 diff --git a/sys-fs/nocache/nocache-9999.ebuild b/sys-fs/nocache/nocache-9999.ebuild new file mode 100644 index 0000000..ced22b6 --- /dev/null +++ b/sys-fs/nocache/nocache-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit git-2 + +DESCRIPTION="Minimize filesystem caching effects" +HOMEPAGE="https://github.com/Feh/nocache" +EGIT_REPO_URI="https://github.com/Feh/nocache.git" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="" +RDEPEND="" + +# TODO: +# * fix build system + +src_install() { + dolib.so nocache.so + newbin nocache.global nocache + dobin cachestats cachedel + doman man/* +}