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 8FB1259CA3 for ; Tue, 8 Mar 2016 16:55:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8259821C005; Tue, 8 Mar 2016 16:55:44 +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 2731821C005 for ; Tue, 8 Mar 2016 16:55:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B8D28340896 for ; Tue, 8 Mar 2016 16:55:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02B5518A5 for ; Tue, 8 Mar 2016 16:55:40 +0000 (UTC) From: "Jason Donenfeld" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Donenfeld" Message-ID: <1457456136.30d4947f33a0520c41792f0ba1ed6e093510ebb2.zx2c4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/ctmg/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/ctmg/Manifest sys-fs/ctmg/ctmg-1.2.ebuild X-VCS-Directories: sys-fs/ctmg/ X-VCS-Committer: zx2c4 X-VCS-Committer-Name: Jason Donenfeld X-VCS-Revision: 30d4947f33a0520c41792f0ba1ed6e093510ebb2 X-VCS-Branch: master Date: Tue, 8 Mar 2016 16:55:40 +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: b168b37c-c104-4e02-b0d1-b5113f88ba95 X-Archives-Hash: 5b127fa2823a9955ebf7c54a56b1f302 commit: 30d4947f33a0520c41792f0ba1ed6e093510ebb2 Author: Jason A. Donenfeld gentoo org> AuthorDate: Tue Mar 8 16:55:36 2016 +0000 Commit: Jason Donenfeld gentoo org> CommitDate: Tue Mar 8 16:55:36 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30d4947f sys-fs/ctmg: version bump Package-Manager: portage-2.2.27 sys-fs/ctmg/Manifest | 1 + sys-fs/ctmg/ctmg-1.2.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/sys-fs/ctmg/Manifest b/sys-fs/ctmg/Manifest index a263344..e00a401 100644 --- a/sys-fs/ctmg/Manifest +++ b/sys-fs/ctmg/Manifest @@ -1 +1,2 @@ DIST ctmg-1.1.tar.xz 3128 SHA256 adf8c75329b61ecd508c55a557eeaf00344356ba69ba436ea7c44c79d0d41771 SHA512 e5230ad1c4d8de9bdbef5d911e5e7e775757113addd62ab08879e8c93473d3d987b139ea0431d3f486616640ad862c683196fd6b3699c7a77e921b75df58282c WHIRLPOOL cf8a932bdff90079d7fc4522dad6b98256e5cf53218c1dd2b48bad146c7f5aa38f044a36662780e6783f724b1d3b7f1224fd5fcad27e85f63a9f003f3efca81e +DIST ctmg-1.2.tar.xz 3824 SHA256 694f3164bb43395a4997a0a112b035776d8532d4f2b9be3c1b862e658ccb5db6 SHA512 6c4b7881c57cead41c7c0065c55805af7fee901723f61bdb06e5cb64dbba08add382d80f931f3321dca5e1e0f8080ab7da4520e58494694ba21900d23717c816 WHIRLPOOL b52cf84a1d1bd992900a863b87a1ba8eeeee9623606450e8c83bc981abb183ed3bb898562331d3e60eb471ee7735ea9bacf54a68120daefa973181218d6674fe diff --git a/sys-fs/ctmg/ctmg-1.2.ebuild b/sys-fs/ctmg/ctmg-1.2.ebuild new file mode 100644 index 0000000..95a4470 --- /dev/null +++ b/sys-fs/ctmg/ctmg-1.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="Simple wrapper around cryptsetup for encrypted containers" +HOMEPAGE="http://git.zx2c4.com/ctmg/about/" +SRC_URI="http://git.zx2c4.com/${PN}/snapshot/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~arm ~arm64" +IUSE="" + +DEPEND="" +RDEPEND="sys-fs/cryptsetup sys-apps/util-linux sys-fs/e2fsprogs sys-apps/coreutils app-admin/sudo" + +src_compile() { :; } + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +}