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 230A3138334 for ; Thu, 26 Jul 2018 21:39:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7E53E0934; Thu, 26 Jul 2018 21:39:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5034E0934 for ; Thu, 26 Jul 2018 21:39:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B129F335CC6 for ; Thu, 26 Jul 2018 21:39:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56AFD38A for ; Thu, 26 Jul 2018 21:39:44 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1532641180.1066ee1abde0483c71e8840a70119ac453f2854e.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/apg/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/apg/apg-2.3.0b-r5.ebuild X-VCS-Directories: app-admin/apg/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 1066ee1abde0483c71e8840a70119ac453f2854e X-VCS-Branch: master Date: Thu, 26 Jul 2018 21:39:44 +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: 54ef02bd-154c-4f86-aabd-5ea21e738aa1 X-Archives-Hash: b60c5f2823a9cb694aee7f8df63ee405 commit: 1066ee1abde0483c71e8840a70119ac453f2854e Author: Mikle Kolyada gentoo org> AuthorDate: Thu Jul 26 21:39:27 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Thu Jul 26 21:39:40 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1066ee1a app-admin/apg: Drop old Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-admin/apg/apg-2.3.0b-r5.ebuild | 51 -------------------------------------- 1 file changed, 51 deletions(-) diff --git a/app-admin/apg/apg-2.3.0b-r5.ebuild b/app-admin/apg/apg-2.3.0b-r5.ebuild deleted file mode 100644 index 818202c48ce..00000000000 --- a/app-admin/apg/apg-2.3.0b-r5.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit eutils toolchain-funcs - -DESCRIPTION="Another Password Generator" -HOMEPAGE="http://www.adel.nursat.kz/apg/" -SRC_URI="http://www.adel.nursat.kz/apg/download/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 hppa ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="cracklib" - -DEPEND="cracklib? ( sys-libs/cracklib )" -RDEPEND="${DEPEND}" - -src_prepare() { - chmod -R 0700 "${S}" - if use cracklib; then - epatch "${FILESDIR}"/${P}-cracklib.patch - epatch "${FILESDIR}"/${PN}-glibc-2.4.patch - fi - epatch "${FILESDIR}"/${P}-crypt_password.patch -} - -src_compile() { - sed -i 's,^#\(APG_CS_CLIBS += -lnsl\)$,\1,' Makefile \ - || die "Sed failed" - if [[ ${CHOST} == *-darwin* ]]; then - sed -i 's,^APG_CLIBS += -lcrypt,APG_CLIBS += ,' Makefile \ - || die "Sed failed" - fi - - emake \ - FLAGS="${CFLAGS} ${LDFLAGS}" CFLAGS="${CFLAGS} ${LDFLAGS}" \ - CC="$(tc-getCC)" \ - standalone || die "compile problem" - emake FLAGS="${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)" \ - -C bfconvert || die "compile problem" -} - -src_install() { - dobin apg apgbfm bfconvert/bfconvert || die - dodoc CHANGES INSTALL README THANKS TODO || die - cd doc - doman man/apg.1 man/apgbfm.1 || die - dodoc APG_TIPS pronun.txt rfc0972.txt rfc1750.txt || die -}