app-crypt/tomb: Remove from overlay. - parlay - yet another gentoo overlay
HTML git clone https://git.parazyd.org/parlay
DIR Log
DIR Files
DIR Refs
DIR README
---
DIR commit f7a071047fc0be03e1f8d521778758ccded013b8
DIR parent 22d2d0c5e618e264e96483acd5426d516818496e
HTML Author: parazyd <parazyd@dyne.org>
Date: Tue, 5 Jan 2021 17:03:57 +0100
app-crypt/tomb: Remove from overlay.
Diffstat:
D app-crypt/tomb/Manifest | 1 -
D app-crypt/tomb/metadata.xml | 10 ----------
D app-crypt/tomb/tomb-2.4-r2.ebuild | 50 -------------------------------
3 files changed, 0 insertions(+), 61 deletions(-)
---
DIR diff --git a/app-crypt/tomb/Manifest b/app-crypt/tomb/Manifest
@@ -1 +0,0 @@
-DIST Tomb-2.4.tar.gz 4711295 SHA256 7907775e563290afb56f3aa4b6297f6cf38a2cfafb8c6081c45c1fadd2e161c3 SHA512 f80bc7511feb5c9cbb6afb62239f9ade7d07afbb00ff7faee57a9deedbb7a0fe6c49af4b76b903d8bc4e3a3db2973b318cde7e2e385121a67b71cacc0c7c2ac8 WHIRLPOOL 7510ec210e056f4df3e9a423c1ce32d1b78c673592fe3b41197227a9c25b26fc81e3b018a32c8c4d84a05b981386ec773d5a394fe359d2c0d3434707afcd6066
DIR diff --git a/app-crypt/tomb/metadata.xml b/app-crypt/tomb/metadata.xml
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
- <email>parazyd@dyne.org</email>
-</maintainer>
-<use>
- <flag name="tools">Enable kdf and steghide</flag>
-</use>
-</pkgmetadata>
DIR diff --git a/app-crypt/tomb/tomb-2.4-r2.ebuild b/app-crypt/tomb/tomb-2.4-r2.ebuild
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit eutils
-
-DESCRIPTION="The Crypto Undertaker"
-HOMEPAGE="https://www.dyne.org/software/tomb"
-SRC_URI="https://files.dyne.org/${PN}/Tomb-${PV}.tar.gz"
-
-S="${WORKDIR}/Tomb-${PV}"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64"
-IUSE="+tools"
-
-DEPEND="
- app-shells/zsh
- sys-fs/cryptsetup
- app-admin/sudo
- app-crypt/pinentry
- app-crypt/gnupg
- tools? (
- dev-libs/libgcrypt:0
- )
-"
-
-RDEPEND="${DEPEND}"
-
-DOCS=( doc/TODO.org README.txt KNOWN_BUGS.txt ChangeLog.txt AUTHORS.txt INSTALL.txt COPYING.txt )
-
-src_compile() {
- if use tools; then
- emake CC=$(tc-getCC) -C extras/kdf-keys/
- fi
-}
-
-src_install() {
- dobin tomb
- doman doc/tomb.1
- dodoc "${DOCS[@]}"
-
- if use tools; then
- dobin extras/kdf-keys/tomb-kdb-hexencode
- dobin extras/kdf-keys/tomb-kdb-pbkdf2
- dobin extras/kdf-keys/tomb-kdb-pbkdf2-gensalt
- dobin extras/kdf-keys/tomb-kdb-pbkdf2-getiter
- fi
-}