diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 1823ee3..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/gitflow-0.4.2.20120723git53e9c76.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/git-flow-completion.bash b/git-flow-completion.bash deleted file mode 100644 index a7da89b..0000000 --- a/git-flow-completion.bash +++ /dev/null @@ -1,225 +0,0 @@ -#!bash -# -# git-flow-completion -# =================== -# -# Bash completion support for [git-flow](http://github.com/nvie/gitflow) -# -# The contained completion routines provide support for completing: -# -# * git-flow init and version -# * feature, hotfix and release branches -# * remote feature, hotfix and release branch names -# -# -# Installation -# ------------ -# -# To achieve git-flow completion nirvana: -# -# 0. Install git-completion. -# -# 1. Install this file. Either: -# -# a. Place it in a `bash-completion.d` folder: -# -# * /etc/bash-completion.d -# * /usr/local/etc/bash-completion.d -# * ~/bash-completion.d -# -# b. Or, copy it somewhere (e.g. ~/.git-flow-completion.sh) and put the following line in -# your .bashrc: -# -# source ~/.git-flow-completion.sh -# -# 2. If you are using Git < 1.7.1: Edit git-completion.sh and add the following line to the giant -# $command case in _git: -# -# flow) _git_flow ;; -# -# -# The Fine Print -# -------------- -# -# Copyright (c) 2011 [Justin Hileman](http://justinhileman.com) -# -# Distributed under the [MIT License](http://creativecommons.org/licenses/MIT/) - -_git_flow () -{ - local subcommands="init feature release hotfix support help version" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - return - fi - - case "$subcommand" in - init) - __git_flow_init - return - ;; - feature) - __git_flow_feature - return - ;; - release) - __git_flow_release - return - ;; - hotfix) - __git_flow_hotfix - return - ;; - support) - __git_flow_support - return - ;; - *) - COMPREPLY=() - ;; - esac -} - -__git_flow_init () -{ - local subcommands="help" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - return - fi -} - -__git_flow_feature () -{ - local subcommands="list start finish publish track diff rebase checkout pull help" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - return - fi - - case "$subcommand" in - pull) - __gitcomp "$(__git_remotes)" - return - ;; - checkout|finish|diff|rebase) - __gitcomp "$(__git_flow_list_branches 'feature')" - return - ;; - publish) - __gitcomp "$(comm -23 <(__git_flow_list_branches 'feature') <(__git_flow_list_remote_branches 'feature'))" - return - ;; - track) - __gitcomp "$(comm -23 <(__git_flow_list_remote_branches 'feature') <(__git_flow_list_branches 'feature'))" - return - ;; - *) - COMPREPLY=() - ;; - esac -} - -__git_flow_release () -{ - local subcommands="list start finish track publish help" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - return - fi - - case "$subcommand" in - finish) - __gitcomp "$(__git_flow_list_branches 'release')" - return - ;; - publish) - __gitcomp "$(comm -23 <(__git_flow_list_branches 'release') <(__git_flow_list_remote_branches 'release'))" - return - ;; - track) - __gitcomp "$(comm -23 <(__git_flow_list_remote_branches 'release') <(__git_flow_list_branches 'release'))" - return - ;; - *) - COMPREPLY=() - ;; - esac - -} - -__git_flow_hotfix () -{ - local subcommands="list start finish track publish help" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - return - fi - - case "$subcommand" in - finish) - __gitcomp "$(__git_flow_list_branches 'hotfix')" - return - ;; - publish) - __gitcomp "$(comm -23 <(__git_flow_list_branches 'hotfix') <(__git_flow_list_remote_branches 'hotfix'))" - return - ;; - track) - __gitcomp "$(comm -23 <(__git_flow_list_remote_branches 'hotfix') <(__git_flow_list_branches 'hotfix'))" - return - ;; - *) - COMPREPLY=() - ;; - esac -} - -__git_flow_support () -{ - local subcommands="list start help" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - return - fi - - case "$subcommand" in - *) - COMPREPLY=() - ;; - esac -} - -__git_flow_prefix () -{ - case "$1" in - feature|release|hotfix) - git config "gitflow.prefix.$1" 2> /dev/null || echo "$1/" - return - ;; - esac -} - -__git_flow_list_branches () -{ - local prefix="$(__git_flow_prefix $1)" - git branch --no-color 2> /dev/null | tr -d ' |*' | grep "^$prefix" | sed s,^$prefix,, | sort -} - -__git_flow_list_remote_branches () -{ - local prefix="$(__git_flow_prefix $1)" - local origin="$(git config gitflow.origin 2> /dev/null || echo "origin")" - git branch --no-color -r 2> /dev/null | sed "s/^ *//g" | grep "^$origin/$prefix" | sed s,^$origin/$prefix,, | sort -} - -# alias __git_find_on_cmdline for backwards compatibility -if [ -z "`type -t __git_find_on_cmdline`" ]; then - alias __git_find_on_cmdline=__git_find_subcommand -fi diff --git a/gitflow-Appropriate-GITFLOW_DIR.patch b/gitflow-Appropriate-GITFLOW_DIR.patch deleted file mode 100644 index d196d52..0000000 --- a/gitflow-Appropriate-GITFLOW_DIR.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 5e8a9afc0e83326be48295e5fd20cffe73aa9b1e Mon Sep 17 00:00:00 2001 -From: Ralph Bean -Date: Tue, 26 Jun 2012 13:55:24 -0400 -Subject: [PATCH] Appropriate GITFLOW_DIR. - ---- - git-flow | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -diff --git a/git-flow b/git-flow -index 93e9f0f..7a7d67f 100755 ---- a/git-flow -+++ b/git-flow -@@ -45,9 +45,7 @@ if [ "$DEBUG" = "yes" ]; then - set -x - fi - --# The sed expression here replaces all backslashes by forward slashes. --# This helps our Windows users, while not bothering our Unix users. --export GITFLOW_DIR=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") -+export GITFLOW_DIR="/usr/share/gitflow" - - usage() { - echo "usage: git flow " --- -1.7.10.4 - diff --git a/gitflow.spec b/gitflow.spec deleted file mode 100644 index 9c263b4..0000000 --- a/gitflow.spec +++ /dev/null @@ -1,124 +0,0 @@ -%global githash 53e9c76 -%global gitdate 20120723 -%global checkout %{gitdate}git%{githash} - -Name: gitflow -Version: 0.4.2.%{checkout} -Release: 13%{?dist} -Summary: Extensions providing operations for V. Driessen's branching model - -License: BSD and MIT -URL: https://github.com/nvie/gitflow -# You can get this tarball by cloning the repository from github and checking -# out revision %%{githash} -Source0: gitflow-0.4.2.%{checkout}.tar.gz - -# The bash completion stuff is MIT licensed, while the rest is BSD -Source1: https://raw2.github.com/bobthecow/git-flow-completion/master/git-flow-completion.bash - -# There is no upstream ticket for this patch, but instead just hardcodes the -# directory we're installing to for Fedora. -Patch0: gitflow-Appropriate-GITFLOW_DIR.patch - -BuildArch: noarch - -Requires: shflags -Requires: git - -%description -A collection of Git extensions to provide high-level repository operations -for Vincent Driessen's [branching model](http://nvie.com/git-model "original -blog post"). - -For the best introduction to get started with `git flow`, please read Jeff -Kreeftmeijer's blog post: - - http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/ - -Or have a look at one of these screen casts: - -* [A short introduction to git-flow] - (http://vimeo.com/16018419) (by Mark Derricutt) -* [On the path with git-flow] - (http://codesherpas.com/screencasts/on_the_path_gitflow.mov) (by Dave Bock) - -%prep -%setup -q -n %{name} -%patch0 -p1 -b .gitflowdir - -%build -# This section is empty because this package ccontains shell scripts -# to be sourced: there's nothing to build - -%install -mkdir -p %{buildroot}/%{_bindir} -install -v -m 0755 git-flow %{buildroot}/%{_bindir} - -mkdir -p %{buildroot}/%{_datadir}/%{name} -install -v -m 0644 git-flow-init %{buildroot}/%{_datadir}/%{name} -install -v -m 0644 git-flow-feature %{buildroot}/%{_datadir}/%{name} -install -v -m 0644 git-flow-hotfix %{buildroot}/%{_datadir}/%{name} -install -v -m 0644 git-flow-release %{buildroot}/%{_datadir}/%{name} -install -v -m 0644 git-flow-support %{buildroot}/%{_datadir}/%{name} -install -v -m 0644 git-flow-version %{buildroot}/%{_datadir}/%{name} -install -v -m 0644 gitflow-common %{buildroot}/%{_datadir}/%{name} - -ln -s %{_datadir}/shflags/shflags %{buildroot}/%{_datadir}/%{name}/gitflow-shFlags - -mkdir -p %{buildroot}/%{_sysconfdir}/bash_completion.d/ -install -v -m 0644 %{SOURCE1} %{buildroot}/%{_sysconfdir}/bash_completion.d - -%files -%doc README.mdown LICENSE AUTHORS Changes.mdown -%{_bindir}/git-flow* -%{_datadir}/%{name} -%{_sysconfdir}/bash_completion.d/git-flow-completion.bash - -%changelog -* Thu Jul 25 2019 Fedora Release Engineering - 0.4.2.20120723git53e9c76-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Thu Jan 31 2019 Fedora Release Engineering - 0.4.2.20120723git53e9c76-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Jul 13 2018 Fedora Release Engineering - 0.4.2.20120723git53e9c76-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Fedora Release Engineering - 0.4.2.20120723git53e9c76-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 0.4.2.20120723git53e9c76-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 0.4.2.20120723git53e9c76-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Wed Feb 03 2016 Fedora Release Engineering - 0.4.2.20120723git53e9c76-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Wed Jun 17 2015 Fedora Release Engineering - 0.4.2.20120723git53e9c76-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 0.4.2.20120723git53e9c76-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Thu Feb 13 2014 Ralph Bean - 0.4.2.20120723git53e9c76-4 -- Include bash completion. - -* Sat Aug 03 2013 Fedora Release Engineering - 0.4.2.20120723git53e9c76-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Wed Feb 13 2013 Fedora Release Engineering - 0.4.2.20120723git53e9c76-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Mon Jul 23 2012 Ralph Bean - 0.4.2.20120723git53e9c76-1 -- New checkout from upstream git for review process. - -* Mon Jul 23 2012 Ralph Bean - 0.4.2.20120626gitab7fda2-2 -- Changed License field to BSD -- Dropped requirement on util-linux. -- Added comments for Source0 and Patch0 -- Using macro for %%{gitdate} as well as %%{githash} - -* Tue Jun 26 2012 Ralph Bean - 0.4.2.20120626gitab7fda2-1 -- Initial packaging for Fedora. diff --git a/sources b/sources deleted file mode 100644 index ddbe0e6..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -18327d1d778b7b448601195a441b8675 gitflow-0.4.2.20120723git53e9c76.tar.gz