commit 388ea31d25d8ad77f324f97b03ef95afc82edb72
parent b9f6cee92a151b09337fa9062d4b2fc07cb8318b
Author: parazyd <parazyd@dyne.org>
Date: Sat, 17 Feb 2018 09:51:10 +0100
app-crypt/opmsg: Remove.
Diffstat:
6 files changed, 0 insertions(+), 135 deletions(-)
diff --git a/app-crypt/opmsg/Manifest b/app-crypt/opmsg/Manifest
@@ -1 +0,0 @@
-DIST rel-1.76s.tar.gz 66107 SHA256 1af1495cba67ad177025a89df522745d33898c6331726157ef349cec5b79eec8 SHA512 b2605d73295722a9d66b9add60f7d4c765bef5abc45bcddf77239b590fda54b84ff79c8e7cf64749b90d349809311a3bcb453a2deec2bb785a2c2fde2c58d85b WHIRLPOOL d2d28dcb44cfd7bd0855d858f8c7f8f0e925e0b2efff11284de2d02db38c4448e7eb600c40abc7f917c48c56d5ab22715609f209836a04a390d5a281de1e1704
diff --git a/app-crypt/opmsg/files/opmsg-libressl.patch b/app-crypt/opmsg/files/opmsg-libressl.patch
@@ -1,21 +0,0 @@
-diff --git a/src/Makefile b/src/Makefile
-index ec0b3fb..ca4e38a 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -16,11 +16,11 @@ INC=
-
-
- # LibreSSL setups, define your paths here
--#INC+=-I/usr/local/libressl/include
--#LIBS+=-L/usr/local/libressl/lib64
--#LIBS+=-Wl,--rpath=/usr/local/libressl/lib64
--#DEFS+=-DHAVE_BN_GENCB_NEW=0
--#DEFS+=-DHAVE_LIBRESSL
-+INC+=-I/usr/include/openssl
-+LIBS+=-L/usr/lib
-+LIBS+=-Wl,--rpath=/usr/lib
-+DEFS+=-DHAVE_BN_GENCB_NEW=0
-+DEFS+=-DHAVE_LIBRESSL
-
-
- # BoringSSL. Be warned, BoringSSL creates incompatible
diff --git a/app-crypt/opmsg/files/opmsg-static.patch b/app-crypt/opmsg/files/opmsg-static.patch
@@ -1,17 +0,0 @@
-diff --git a/src/Makefile b/src/Makefile
-index ec0b3fb..35c7465 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -36,10 +36,10 @@ INC=
- # Enable chacha20-poly1305 if avail
- #DEFS+=-DCHACHA20
-
--CXXFLAGS=-Wall -O2 -pedantic -std=c++11 $(INC) $(DEFS)
-+CXXFLAGS=-Wall -O2 -pedantic -std=c++11 $(INC) $(DEFS) -static
-
- LD=c++
--LDFLAGS=
-+LDFLAGS=-static
- LIBS+=-lcrypto
-
-
diff --git a/app-crypt/opmsg/metadata.xml b/app-crypt/opmsg/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 contrib tools to integrate with gnupg</flag>
-</use>
-</pkgmetadata>
diff --git a/app-crypt/opmsg/opmsg-1.76.ebuild b/app-crypt/opmsg/opmsg-1.76.ebuild
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils
-
-DESCRIPTION="opmsg message encryption"
-HOMEPAGE="https://github.com/stealth/opmsg"
-SRC_URI="https://github.com/stealth/opmsg/archive/rel-${PV}s.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="libressl tools static"
-
-DEPEND="
- !libressl? ( dev-libs/openssl:0 )
- libressl? ( dev-libs/libressl )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-rel-${PV}s"
-
-src_prepare() {
- default
- use libressl && epatch "${FILESDIR}/${PN}-libressl.patch"
- use static && epatch "${FILESDIR}/${PN}-static.patch"
-}
-
-src_compile() {
- cd src
- emake
- use tools && emake contrib
- cd -
-}
-
-src_install() {
- dobin src/opmsg
- use tools && {
- dobin src/opmux
- dobin src/opcoin
- }
-}
diff --git a/app-crypt/opmsg/opmsg-9999.ebuild b/app-crypt/opmsg/opmsg-9999.ebuild
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit git-r3
-
-DESCRIPTION="opmsg message encryption"
-HOMEPAGE="https://github.com/stealth/opmsg"
-EGIT_REPO_URI="https://github.com/stealth/opmsg.git"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS=""
-IUSE="libressl tools static"
-
-DEPEND="
- !libressl? ( dev-libs/openssl:0 )
- libressl? ( dev-libs/libressl )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- default
- use libressl && epatch "${FILESDIR}/${PN}-libressl.patch"
- use static && epatch "${FILESDIR}/${PN}-static.patch"
-}
-
-src_compile() {
- cd src
- emake
- use tools && emake contrib
- cd -
-}
-
-src_install() {
- dobin src/opmsg
- use tools && {
- dobin src/opmux
- dobin src/opcoin
- }
-}