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 75B34139360 for ; Wed, 11 Aug 2021 09:35:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A29EE0821; Wed, 11 Aug 2021 09:35:15 +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 3F209E0821 for ; Wed, 11 Aug 2021 09:35:15 +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 E8A44342B74 for ; Wed, 11 Aug 2021 09:35:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F726737 for ; Wed, 11 Aug 2021 09:35:12 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1628674494.75bcef11ff837f6741f19768f9202a8cd7d16ea8.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-flow/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-flow/git-flow-1.12.3.ebuild X-VCS-Directories: dev-vcs/git-flow/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 75bcef11ff837f6741f19768f9202a8cd7d16ea8 X-VCS-Branch: master Date: Wed, 11 Aug 2021 09:35:12 +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: 1ada4a5c-8e77-4490-822f-f1f44a86f96d X-Archives-Hash: 5bd4b76bd5af4916573d1356ad2614f7 commit: 75bcef11ff837f6741f19768f9202a8cd7d16ea8 Author: Marek Szuba gentoo org> AuthorDate: Wed Aug 11 09:34:54 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Wed Aug 11 09:34:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75bcef11 dev-vcs/git-flow: drop 1.12.3 Signed-off-by: Marek Szuba gentoo.org> dev-vcs/git-flow/git-flow-1.12.3.ebuild | 40 --------------------------------- 1 file changed, 40 deletions(-) diff --git a/dev-vcs/git-flow/git-flow-1.12.3.ebuild b/dev-vcs/git-flow/git-flow-1.12.3.ebuild deleted file mode 100644 index ca2e613a0b7..00000000000 --- a/dev-vcs/git-flow/git-flow-1.12.3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="${PN/-/}-avh" -COMP_PN="${PN}-completion" -COMP_PV="0.6.0" -COMP_P="${COMP_PN}-${COMP_PV}" -inherit bash-completion-r1 - -DESCRIPTION="Git extensions to provide high-level repository operations" -HOMEPAGE="https://github.com/petervanderdoes/gitflow-avh" -SRC_URI="https://github.com/petervanderdoes/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz -https://github.com/petervanderdoes/${COMP_PN}/archive/${COMP_PV}.tar.gz -> ${COMP_P}.tar.gz" - -LICENSE="BSD MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND="dev-vcs/git" - -DOCS=( AUTHORS CHANGELOG.md README.md ) - -S="${WORKDIR}/${MY_PN}-${PV}" - -src_prepare() { - default - sed -i "s/doc\/gitflow/doc\/${P}/" Makefile || die "fixing doc path failed" -} - -src_compile() { - true -} - -src_install() { - emake prefix="${D}/usr" install - einstalldocs - newbashcomp "${WORKDIR}/${COMP_P}/${COMP_PN}.bash" ${PN} -}