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 094821382C5 for ; Tue, 16 Jun 2020 22:03:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E2E8E0917; Tue, 16 Jun 2020 22:02:59 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E624CE0917 for ; Tue, 16 Jun 2020 22:02:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B76C334EFF6 for ; Tue, 16 Jun 2020 22:02:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A3031EF for ; Tue, 16 Jun 2020 22:02:56 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1592344965.52f6c194081e8e9305621f717df81511000fe035.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvsps/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/cvsps/cvsps-2.2_beta1.ebuild X-VCS-Directories: dev-vcs/cvsps/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 52f6c194081e8e9305621f717df81511000fe035 X-VCS-Branch: master Date: Tue, 16 Jun 2020 22:02:56 +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: c13a5781-c7ff-48c3-bc14-1160a8a05942 X-Archives-Hash: 0ce0a9510112481aa664fa75fd826fa2 commit: 52f6c194081e8e9305621f717df81511000fe035 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jun 16 17:33:14 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jun 16 22:02:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52f6c194 dev-vcs/cvsps: Drop 2.2_beta1 (r0) Closes: https://bugs.gentoo.org/724134 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-vcs/cvsps/cvsps-2.2_beta1.ebuild | 37 ------------------------------------ 1 file changed, 37 deletions(-) diff --git a/dev-vcs/cvsps/cvsps-2.2_beta1.ebuild b/dev-vcs/cvsps/cvsps-2.2_beta1.ebuild deleted file mode 100644 index a00d4cde594..00000000000 --- a/dev-vcs/cvsps/cvsps-2.2_beta1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit eutils toolchain-funcs - -MY_P="${P/_beta/b}" -DESCRIPTION="Generates patchset information from a CVS repository" -HOMEPAGE="http://www.catb.org/~esr/cvsps/" -SRC_URI="http://www.cobite.com/cvsps/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="" - -RDEPEND="sys-libs/zlib" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-2.1-build.patch - epatch "${FILESDIR}"/${P}-solaris.patch - # no configure around - if [[ ${CHOST} == *-solaris* ]] ; then - sed -i -e '/^LDLIBS+=/s/$/ -lsocket/' Makefile || die - fi - tc-export CC -} - -src_install() { - dobin cvsps - doman cvsps.1 - dodoc README CHANGELOG -}