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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 69EA315800D for ; Sun, 2 Jul 2023 20:28:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3F65E088A; Sun, 2 Jul 2023 20:28:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9EFE8E088A for ; Sun, 2 Jul 2023 20:28:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D1820335DE9 for ; Sun, 2 Jul 2023 20:28:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68B16A6A for ; Sun, 2 Jul 2023 20:28:43 +0000 (UTC) From: "Lucio Sauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lucio Sauer" Message-ID: <1688329699.a2da0bfeaa5e4a8a79e252efda8d943a80ef5613.watermanpaint@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/lsbcrypt/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/lsbcrypt/lsbcrypt-1.0.0.ebuild X-VCS-Directories: dev-libs/lsbcrypt/ X-VCS-Committer: watermanpaint X-VCS-Committer-Name: Lucio Sauer X-VCS-Revision: a2da0bfeaa5e4a8a79e252efda8d943a80ef5613 X-VCS-Branch: dev Date: Sun, 2 Jul 2023 20:28:43 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9ac3a224-746b-465c-98e9-cec4af5775aa X-Archives-Hash: a8069db0610324b9fba6414dc8b85f4b commit: a2da0bfeaa5e4a8a79e252efda8d943a80ef5613 Author: Lucio Sauer posteo net> AuthorDate: Sun Jul 2 20:28:19 2023 +0000 Commit: Lucio Sauer posteo net> CommitDate: Sun Jul 2 20:28:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a2da0bfe dev-libs/lsbcrypt: drop 1.0.0 Signed-off-by: Lucio Sauer posteo.net> dev-libs/lsbcrypt/lsbcrypt-1.0.0.ebuild | 37 --------------------------------- 1 file changed, 37 deletions(-) diff --git a/dev-libs/lsbcrypt/lsbcrypt-1.0.0.ebuild b/dev-libs/lsbcrypt/lsbcrypt-1.0.0.ebuild deleted file mode 100644 index ab505bdd8..000000000 --- a/dev-libs/lsbcrypt/lsbcrypt-1.0.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake git-r3 - -DESCRIPTION="libcrypt Wrapper for LiteSpeedTech" -HOMEPAGE="https://github.com/litespeedtech/libbcrypt/" -EGIT_REPO_URI="https://github.com/litespeedtech/libbcrypt/" - -LICENSE="CC0-1.0" -SLOT="0" -KEYWORDS="" - -src_prepare() { - eapply_user -} - -src_configure() { - true -} - -src_compile() { - make -} - -src_install() { - true -} - -pkg_preinst() { - mkdir -p ${D}/usr/lib/ - mkdir -p ${D}/usr/include/ - cp -a ${S}/bcrypt.h ${D}/usr/include/ - cp -a ${S}/bcrypt.a ${D}/usr/lib/ -}