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 09E95138010 for ; Mon, 15 Feb 2016 06:43:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2742DE0833; Mon, 15 Feb 2016 06:43:29 +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 901C4E0826 for ; Mon, 15 Feb 2016 06:43:28 +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 ABE22340FEB for ; Mon, 15 Feb 2016 06:43:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8AB71CFF for ; Mon, 15 Feb 2016 06:43: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: <1455518564.a05ae88fbe0f3ba3dec4d1124c361ac9e9dccd08.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/vmtouch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/vmtouch/Manifest dev-util/vmtouch/vmtouch-1.0.2.ebuild X-VCS-Directories: dev-util/vmtouch/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: a05ae88fbe0f3ba3dec4d1124c361ac9e9dccd08 X-VCS-Branch: master Date: Mon, 15 Feb 2016 06:43: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: 6d9987be-9143-4aa0-8b8b-5e2d267845cd X-Archives-Hash: 14fafcfe85fe8a26511928bf5f18f2a3 commit: a05ae88fbe0f3ba3dec4d1124c361ac9e9dccd08 Author: Yixun Lan gentoo org> AuthorDate: Mon Feb 15 05:47:45 2016 +0000 Commit: Yixun Lan gentoo org> CommitDate: Mon Feb 15 06:42:44 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05ae88f dev-util/vmtouch: version bump 1.0.2 Package-Manager: portage-2.2.27 dev-util/vmtouch/Manifest | 1 + dev-util/vmtouch/vmtouch-1.0.2.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-util/vmtouch/Manifest b/dev-util/vmtouch/Manifest index ffdd57e..037504f 100644 --- a/dev-util/vmtouch/Manifest +++ b/dev-util/vmtouch/Manifest @@ -1 +1,2 @@ DIST vmtouch-0.8.0.tar.gz 224882 SHA256 6848b9355451e8ab848501b5604f47a396bce1ef1dcb613577feaaaea1dfe262 SHA512 71756a2b93545f916441913b11a6d366fe886df99d131303df2ae2ac382346321f47809620711f57f0a2df4133c175524234128abafdea47747b5c74017062bb WHIRLPOOL 54b645fa1a7eeb5fe86182de0bb3c9f54684698f9da0ad5392910bf8316008560a6f4592bf3c7720519db11bbd3759c306637acfb3f33e76c163b697936e459d +DIST vmtouch-1.0.2.tar.gz 13404 SHA256 48d41e5b805a0fcac46c12feeb4650e4b9def44b75d528d7c66c2f8b3a747c39 SHA512 df0d8a1599c970540e70e050dab33327589f0dd64548640c7d44607c3ef3397c7b1d2184fe80195ec5cb9a73d7218d7fd1b2cda2cee227ce84a8c20e8874f489 WHIRLPOOL 903813783d93395b637b565a887b8d0d3d5d3b7d548d9a98d49c1ab9bfc82322a495c771937cc7688561de30d0ec2aca6edb6d599508c440bd963547b78915b9 diff --git a/dev-util/vmtouch/vmtouch-1.0.2.ebuild b/dev-util/vmtouch/vmtouch-1.0.2.ebuild new file mode 100644 index 0000000..f4beade --- /dev/null +++ b/dev-util/vmtouch/vmtouch-1.0.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit toolchain-funcs + +DESCRIPTION="Virtual Memory Toucher, portable file system cache diagnostics and control" +HOMEPAGE="http://hoytech.com/vmtouch/" +SRC_URI="https://github.com/hoytech/${PN}/archive/${P}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}"/${PN}-${P} + +src_install() { + local my_prefix="${ED}/usr" + emake PREFIX="${my_prefix}" MANDIR="${my_prefix}/share/man" install + dodoc CHANGES README.md TODO +}