From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6D596138330 for ; Mon, 3 Oct 2016 23:11:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F1ACE0B85; Mon, 3 Oct 2016 23:11:22 +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 4CCCCE0B85 for ; Mon, 3 Oct 2016 23:11:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A8FC8340F07 for ; Mon, 3 Oct 2016 23:11:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F21E24A0 for ; Mon, 3 Oct 2016 23:11:17 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1475536260.15d6cfa59d824a2f23345554edc30502fee2c07e.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/bcrypt/files/, profiles/, app-crypt/bcrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/bcrypt/Manifest app-crypt/bcrypt/bcrypt-1.1.ebuild app-crypt/bcrypt/files/bcrypt-1.1-Makefile.patch app-crypt/bcrypt/metadata.xml profiles/package.mask X-VCS-Directories: app-crypt/bcrypt/ profiles/ app-crypt/bcrypt/files/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 15d6cfa59d824a2f23345554edc30502fee2c07e X-VCS-Branch: master Date: Mon, 3 Oct 2016 23:11:17 +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: 30f072bf-a7a3-4ec3-8095-2d2584011336 X-Archives-Hash: db6808ccf1aa7a2ac39fc5904340e136 commit: 15d6cfa59d824a2f23345554edc30502fee2c07e Author: Alon Bar-Lev gentoo org> AuthorDate: Mon Oct 3 23:10:08 2016 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Mon Oct 3 23:11:00 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d6cfa5 app-crypt/bcrypt: remove from tree # Alon Bar-Lev gentoo.org (09 Sep 2016) # Weak cryptography (bug #592114) # Package will be removed from Gentoo in 30 days. app-crypt/bcrypt Bug: 592114 app-crypt/bcrypt/Manifest | 1 - app-crypt/bcrypt/bcrypt-1.1.ebuild | 33 ------------------------ app-crypt/bcrypt/files/bcrypt-1.1-Makefile.patch | 19 -------------- app-crypt/bcrypt/metadata.xml | 11 -------- profiles/package.mask | 5 ---- 5 files changed, 69 deletions(-) diff --git a/app-crypt/bcrypt/Manifest b/app-crypt/bcrypt/Manifest deleted file mode 100644 index 2e9b9ad..00000000 --- a/app-crypt/bcrypt/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST bcrypt-1.1.tar.gz 36781 SHA256 b9c1a7c0996a305465135b90123b0c63adbb5fa7c47a24b3f347deb2696d417d SHA512 4cc939e997b125b48a66c20469d9743ec227dbee080d89b1ab2515a3c41749c6e8fb6d2d4276cd23eaf6bed0614989431f1f87c23220a94ad595024f8985d68b WHIRLPOOL 9ff061cb2aba0e7cca7ba131ee2789b4136b9251a6704f3713eb897a549a6619e38b9efcced9647d17aa4eb9baea80cb477af53cbfdc9e21cc96079127412a94 diff --git a/app-crypt/bcrypt/bcrypt-1.1.ebuild b/app-crypt/bcrypt/bcrypt-1.1.ebuild deleted file mode 100644 index 07266aa..00000000 --- a/app-crypt/bcrypt/bcrypt-1.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit eutils toolchain-funcs - -DESCRIPTION="A file encryption utility using Paul Kocher's implementation of the blowfish algorithm" -HOMEPAGE="http://bcrypt.sourceforge.net/" -SRC_URI="mirror://sourceforge/bcrypt/${P}.tar.gz" -SLOT="0" -LICENSE="BSD" -KEYWORDS="alpha amd64 ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="" -DEPEND="sys-libs/zlib" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${P}-Makefile.patch -} - -src_compile() { - tc-export CC - emake || die -} - -src_install() { - dobin bcrypt || die - dodoc README || die - doman bcrypt.1 || die -} diff --git a/app-crypt/bcrypt/files/bcrypt-1.1-Makefile.patch b/app-crypt/bcrypt/files/bcrypt-1.1-Makefile.patch deleted file mode 100644 index 1b21039..00000000 --- a/app-crypt/bcrypt/files/bcrypt-1.1-Makefile.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- Makefile.old 2006-11-23 13:58:19.000000000 +0100 -+++ Makefile 2006-11-23 13:59:52.000000000 +0100 -@@ -1,13 +1,12 @@ - DEFAULTS = Makefile includes.h blowfish.h functions.h config.h --CC = gcc --CFLAGS = -O2 -Wall -+CFLAGS += -Wall - COMPILE = ${CC} ${CFLAGS} - OBJS = main.o blowfish.o rwfile.o keys.o wrapbf.o endian.o wrapzl.o --LDFLAGS = -L/usr/local/lib -lz -+LIBS = -lz - PREFIX = /usr/local - - bcrypt: ${OBJS} Makefile -- ${COMPILE} -o bcrypt ${OBJS} ${LDFLAGS} -+ ${COMPILE} ${LDFLAGS} -o bcrypt ${OBJS} ${LIBS} - - install: bcrypt Makefile - mkdir -p ${PREFIX}/bin;\ diff --git a/app-crypt/bcrypt/metadata.xml b/app-crypt/bcrypt/metadata.xml deleted file mode 100644 index 71c6151..00000000 --- a/app-crypt/bcrypt/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - crypto@gentoo.org - Crypto - - - bcrypt - - diff --git a/profiles/package.mask b/profiles/package.mask index ac31c18..50664ed 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -162,11 +162,6 @@ dev-libs/vrb # Removal in 30 days. app-misc/subsurface -# Alon Bar-Lev (06 Sep 2016) # Breaks samba's nmbd process (bug #592502) =sys-libs/tevent-0.9.30