From 804d753b22faf03a3296b47195fd1c7566e265d8 Mon Sep 17 00:00:00 2001 From: Johannes Huber Date: Sat, 28 Nov 2015 11:31:03 +0100 Subject: dev-vcs/git-flow: Remove old Package-Manager: portage-2.2.26 --- dev-vcs/git-flow/Manifest | 2 - .../files/git-flow-0.4.1-unbundle-shflags.patch | 32 -------------- dev-vcs/git-flow/git-flow-0.4.1.ebuild | 51 ---------------------- 3 files changed, 85 deletions(-) delete mode 100644 dev-vcs/git-flow/files/git-flow-0.4.1-unbundle-shflags.patch delete mode 100644 dev-vcs/git-flow/git-flow-0.4.1.ebuild (limited to 'dev-vcs/git-flow') diff --git a/dev-vcs/git-flow/Manifest b/dev-vcs/git-flow/Manifest index 8e83d604b8bd..3e844ee7f23f 100644 --- a/dev-vcs/git-flow/Manifest +++ b/dev-vcs/git-flow/Manifest @@ -1,4 +1,2 @@ -DIST git-flow-0.4.1.tar.gz 16732 SHA256 c1271b0ba2c6655e4ad4d79562f6a910c3b884f3d4e16985e227e67f8d95c180 SHA512 f86edb2867ed55127a34c711f5e6b11daeb6a738e92005fe27879c9ede40cb4130ff1de35e9f69560c4c845e063a8d2c1a76ad52eb5eacb7312a087f77d2698b WHIRLPOOL 9ad859237cab91209acfa87ddcc70f975af1b5816e202f8b867de903e05a755174803e286a5e8d595edb1612b7b321f7fe21b405fb388b8bef155ece82cb4ccf DIST git-flow-1.8.0.tar.gz 56304 SHA256 8239131b8dac160d7e929eab376fa14de44a55cbd5c5545e0ad4464d3a57adef SHA512 677bfb0c379eb91bfaf8ef676593d39a8306ff063251e1e638166c7101c24ce2eac59490bab85d0c76b712c1905f15d3a14a3ecc020df376848d3b1ea5ee7b0a WHIRLPOOL 6bf654329b941989a8b646ab8218c072b7bf455b0ec6a8441d43de10b9b480a5619bca931606acdd743b0f3f86e9b67f119ff07957eaa106fd17f5cddc96a328 -DIST git-flow-completion-0.4.2.2.tar.gz 5421 SHA256 1e82d039596c0e73bfc8c59d945ded34e4fce777d9b9bb45c3586ee539048ab9 SHA512 609653b6eaedabc4f31bb19d93b50bc48746876a2c351f139b79b48599104d49ba281400e8708a83411610cf57ce08a9ae941b0611216c11d80f8c01e0fa8409 WHIRLPOOL 9d2f4ec100932c2e349924620a4dbe3a98e9b6d93fcfbeb0ee065e13873da74af8e059dae5acf158088c541bfdb3aa49446ee789576aab5532e8322ab9530c15 DIST git-flow-completion-0.5.1.tar.gz 6916 SHA256 5c8547a549dc623a8d57cfc22c3fa88588f5630da9dc6de9638e5b69da9d47d0 SHA512 c1fc0000889faff8189cd985b077cb64b81ae13e17f02c9df27675f428c6edf8f00627effdf6ebdae7a7f0641ec4ac621a9ecd0a53f14be7d95ec7e124ab8c1b WHIRLPOOL fd59f799d944752eab06b35f05c1f1309ef589014a0378f292e4dde206578f0c0aeb3685e16ea8d2f810e93b77abb7a2bc42c3c335ef9057b9c3ee1dd6df9982 diff --git a/dev-vcs/git-flow/files/git-flow-0.4.1-unbundle-shflags.patch b/dev-vcs/git-flow/files/git-flow-0.4.1-unbundle-shflags.patch deleted file mode 100644 index 93ecb7248c21..000000000000 --- a/dev-vcs/git-flow/files/git-flow-0.4.1-unbundle-shflags.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff --git a/Makefile b/Makefile -index fbbfd2c..b0e2490 100644 ---- a/Makefile -+++ b/Makefile -@@ -40,14 +40,12 @@ SCRIPT_FILES+=git-flow-release - SCRIPT_FILES+=git-flow-support - SCRIPT_FILES+=git-flow-version - SCRIPT_FILES+=gitflow-common --SCRIPT_FILES+=gitflow-shFlags - - all: - @echo "usage: make install" - @echo " make uninstall" - - install: -- @test -f gitflow-shFlags || (echo "Run 'git submodule init && git submodule update' first." ; exit 1 ) - install -d -m 0755 $(prefix)/bin - install -m 0755 $(EXEC_FILES) $(prefix)/bin - install -m 0644 $(SCRIPT_FILES) $(prefix)/bin -diff --git a/git-flow b/git-flow -index 93e9f0f..7b643d3 100755 ---- a/git-flow -+++ b/git-flow -@@ -78,7 +78,7 @@ main() { - export POSIXLY_CORRECT=1 - - # use the shFlags project to parse the command line arguments -- . "$GITFLOW_DIR/gitflow-shFlags" -+ . /usr/share/misc/shflags - FLAGS_PARENT="git flow" - FLAGS "$@" || exit $? - eval set -- "${FLAGS_ARGV}" diff --git a/dev-vcs/git-flow/git-flow-0.4.1.ebuild b/dev-vcs/git-flow/git-flow-0.4.1.ebuild deleted file mode 100644 index e03b7e5b0523..000000000000 --- a/dev-vcs/git-flow/git-flow-0.4.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MY_PN="${PN/-/}" -COMP_PN="${PN}-completion" -COMP_PV="0.4.2.2" -COMP_P="${COMP_PN}-${COMP_PV}" -inherit eutils bash-completion-r1 - -DESCRIPTION="Git extensions to provide high-level repository operations for Vincent Driessen's branching model" -HOMEPAGE="https://github.com/nvie/gitflow" -SRC_URI="https://github.com/nvie/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz -https://github.com/bobthecow/${COMP_PN}/archive/${COMP_PV}.tar.gz -> ${COMP_P}.tar.gz" - -LICENSE="BSD MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND} - dev-util/shflags - dev-vcs/git -" - -DOCS=( AUTHORS Changes.mdown README.mdown ) - -PATCHES=( "${FILESDIR}/${P}-unbundle-shflags.patch" ) - -S="${WORKDIR}/${MY_PN}-${PV}" - -src_prepare() { - [[ ${PATCHES[@]} ]] && epatch "${PATCHES[@]}" - debug-print "$FUNCNAME: applying user patches" - epatch_user -} - -src_compile() { - true -} - -src_install() { - emake prefix="${D}/usr" install - - [[ ${DOCS[@]} ]] && dodoc "${DOCS[@]}" - - newbashcomp "${WORKDIR}/${COMP_P}/${COMP_PN}.bash" ${PN} -} -- cgit v1.2.3-65-gdbad