debian/0000775000000000000000000000000012231240145007162 5ustar debian/README.Debian0000664000000000000000000000042712227046566011246 0ustar git-flow for Debian =================== The package comes with bash & zsh completions pre-installed, but the latter is not (yet) enabled automatically. To make use of the zsh completion, add the following line to your zshrc: source /usr/share/git-flow/git-flow-completion.zsh debian/install.mk0000664000000000000000000000073412227052551011174 0ustar # This is a dirty hack to get the list of files to install, and # install them to Debian compatible paths. # # The reason I opted for this is because if upstream adds new scripts, # this hack will automatically pick them up. # # - Gergely Nagy debian-install: install -d ${DESTDIR}/usr/lib/git-core install -m 0644 ${SCRIPT_FILES} ${DESTDIR}/usr/lib/git-core/ install -m 0755 ${EXEC_FILES} ${DESTDIR}/usr/lib/git-core/ include ./Makefile debian/compat0000664000000000000000000000000212227046566010400 0ustar 8 debian/dirs0000664000000000000000000000002712227053044010052 0ustar usr/share/doc/git-flow debian/docs0000664000000000000000000000004312227053444010043 0ustar AUTHORS Changes.mdown README.mdown debian/copyright0000664000000000000000000000676612227046566011154 0ustar Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=174&view=co&pathrev=174 Upstream-Name: gitflow Upstream-Contact: Vincent Driessen Source: Upstream sources come from three repositories: git-flow: git://github.com/nvie/gitflow.git shFlags: git://github.com/nvie/shFlags.git completion: git://github.com/bobthecow/git-flow-completion.git Files: * Copyright: Copyright 2010 Vincent Driessen. All rights reserved. License: BSD-2-clause Files: shFlags/* Copyright: Copyright 2008 Kate Ward. All Rights Reserved. License: LGPL-2.1 Files: completion/* Copyright: Copyright (c) 2010 Justin Hileman License: Expat Files: debian/* Copyright: Copyright (C) 2011 Gergely Nagy License: BSD-2-clause License: BSD-2-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . THIS SOFTWARE IS PROVIDED BY VINCENT DRIESSEN ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL VINCENT DRIESSEN OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. . The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Vincent Driessen. License: LGPL-2.1 Copyright 2008 Kate Ward. All Rights Reserved. Released under the LGPL (GNU Lesser General Public License) . See /usr/share/common-licenses/LGPL-2.1 for the full text of the license. License: Expat Copyright (c) 2010 Justin Hileman . Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/control0000664000000000000000000000153012227047735010603 0ustar Source: git-flow Section: vcs Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Gergely Nagy Build-Depends: debhelper (>= 8) Standards-Version: 3.9.4 Homepage: https://github.com/petervanderdoes/gitflow/wiki Vcs-Git: git://git.madhouse-project.org/debian/git-flow.git Vcs-Browser: http://git.madhouse-project.org/debian/git-flow/ Package: git-flow Architecture: all Depends: git | git-core, ${misc:Depends} Description: Git extension to provide a high-level branching model A set of scripts that provide high-level repository operations for managing feature/release/hotfix branches in a Git repository, particularly suited to be utilised to follow Vincent Driessen's branching model, described at . debian/changelog0000664000000000000000000000216012230504154011035 0ustar git-flow (1.6.1-0ubuntu1) trusty; urgency=low * New upstream release based off Peter van der Does repository. * debian/patches/completion-gitmodule: Removed as file is removed upstream. * debian/control: - XSBC-Original-Maintainer changes. - Updated Standards-Version to 3.9.2 → .4. * debian/watch: Updated to Peter's page and use GitHub directly. * debian/rules: Split out the completion pieces and remove shFlags section. * debian/dirs: Removed bash_completion.d as package has been split off and usr/share/doc/git-flow. * debian/docs: Install Changes.mdown this way. -- Jonathan Davies Mon, 14 Oct 2013 20:01:43 +0000 git-flow (0.4.1-2) unstable; urgency=low * Allow multiple workflows in the same tree, by setting GIT_FLOW_SELF appropriately. Thanks Holger Levsen for the request! (Closes: #642194) -- Gergely Nagy Tue, 20 Sep 2011 10:48:46 +0200 git-flow (0.4.1-1) unstable; urgency=low * Initial release (Closes: #632640) -- Gergely Nagy Sun, 17 Jul 2011 12:54:04 +0200 debian/rules0000775000000000000000000000025712227053522010254 0ustar #! /usr/bin/make -f PKGDIR = debian/git-flow override_dh_auto_build: override_dh_auto_install: ${MAKE} -f debian/install.mk debian-install DESTDIR=$(PKGDIR) %: dh $@ debian/README.source0000664000000000000000000000116112227046566011360 0ustar The debianisation of gitflow ============================ To recreate the tarballs similar to the original, use debian/rules get-orig-source. It will fetch the latest upstream version from all upstream sources: gitflow and shFlags (which gitflow depends on, and embeds via a git submodule), and the bash / zsh completion repository. The master branch is mirrored from upstream's master branch, debian changes are applied on the debian branch. When checked out from git, use git submodule update --init on the debian branch to pull in the embedded directories. These should be already present when extracted from tarballs. debian/source/0000775000000000000000000000000012227052055010470 5ustar debian/source/options0000664000000000000000000000002412227046566012114 0ustar single-debian-patch debian/source/format0000664000000000000000000000001412227046566011710 0ustar 3.0 (quilt) debian/source/patch-header0000664000000000000000000000034112227046566012750 0ustar Description: Debian-specific patches mixed together. This patch contains all the Debian-added changes mixed together. To review them separately, please inspect the Git repository, and the branches therein. Origin: Debian debian/watch0000664000000000000000000000022512227050671010222 0ustar version=3 opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/gitflow-$1.tar.gz/ \ https://github.com/petervanderdoes/gitflow/tags .*/v?(\d\S*)\.tar\.gz