diff options
author | Marek Szuba <marecki@gentoo.org> | 2021-08-11 10:34:54 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2021-08-11 10:34:54 +0100 |
commit | 75bcef11ff837f6741f19768f9202a8cd7d16ea8 (patch) | |
tree | 47e41acf782a5e1f7e5140b92ed381946f4fc12b /dev-vcs/git-flow | |
parent | dev-python/cython-test-exception-raiser: Bump to 1.0.2 (diff) | |
download | gentoo-75bcef11ff837f6741f19768f9202a8cd7d16ea8.tar.gz gentoo-75bcef11ff837f6741f19768f9202a8cd7d16ea8.tar.bz2 gentoo-75bcef11ff837f6741f19768f9202a8cd7d16ea8.zip |
dev-vcs/git-flow: drop 1.12.3
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'dev-vcs/git-flow')
-rw-r--r-- | dev-vcs/git-flow/git-flow-1.12.3.ebuild | 40 |
1 files changed, 0 insertions, 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 ca2e613a0b71..000000000000 --- 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} -} |