debian/0000755000000000000000000000000012250110140007150 5ustar debian/docs0000644000000000000000000000000712176446027010047 0ustar README debian/gbp.conf0000644000000000000000000000003612176446027010615 0ustar [DEFAULT] pristine-tar = True debian/python-doit.bash-completion0000644000000000000000000000003212176446027014456 0ustar bash_completion_doit doit debian/source/0000755000000000000000000000000012176446027010477 5ustar debian/source/format0000644000000000000000000000001412176446027011705 0ustar 3.0 (quilt) debian/doit.rst0000644000000000000000000000170612250064041010655 0ustar ==== doit ==== --------------- Automation tool --------------- :Manual section: 1 :Manual group: doit SYNOPSIS ======== **doit** [*options*] DESCRIPTION =========== doit is an automation tool for bring the power of build-tools to execute any kind of task. OPTIONS ======= run run tasks. clean clean action / remove targets list list tasks from dodo file forget clear successful run status from DB ignore ignore task (skip) on subsequent runs dumpdb dump dependency DB auto automatically run doit when a dependency changes strace use strace to list file_deps and targets help show help / reference help task show help on task dictionary fields help show command usage AUTHOR ====== Eduardo Naufel Schettino This manual page was initially written by Agustin Henze , for the Debian Project. COPYRIGHT ========= 2008-2013 Eduardo Naufel Schettino debian/python-doit.dirs0000644000000000000000000000005112250103540012313 0ustar usr/share/zsh/functions/Completion/Linux debian/python-doit-doc.doc-base0000644000000000000000000000054612176446027013624 0ustar Document: python-doit-reference-manual Title: Python doit Library Reference Manual Author: Eduardo Naufel Schettino Abstract: doit is an automation tool for bring the power of build-tools to execute any kind of task Section: Programming/Python Format: HTML Index: /usr/share/doc/python-doit-doc/html/index.html Files: /usr/share/doc/python-doit-doc/html/* debian/python-doit-doc.examples0000644000000000000000000000001512176446027013754 0ustar doc/tutorial debian/control0000644000000000000000000000546612250064516010605 0ustar Source: doit Section: python Priority: optional Maintainer: Agustin Henze Uploaders: Ulises Vitulli Build-Depends: debhelper (>= 9), bash-completion, dh-python, strace, python-all, python-sphinx (>= 1.0.7+dfsg) | python3-sphinx, python-pyinotify, python-setuptools, python-mock, python-six, python-gdbm, python-pytest, python3-all, python3-setuptools, python3-six, python3-mock, python3-gdbm, python3-pyinotify, Standards-Version: 3.9.5 X-Python-Version: >= 2.7 X-Python3-Version: >= 3.2 Homepage: http://pydoit.org Vcs-Git: git://anonscm.debian.org/collab-maint/doit.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/doit.git Package: python-doit Architecture: all Depends: ${python:Depends}, ${misc:Depends}, python-pyinotify, python-six Recommends: strace, python-gdbm Suggests: python-doit-doc Description: Automation tool to execute any kind of task in a build-tools fashion doit is an automation tool that brings the power of build-tools to execute any kind of task. . A task describes some computation to be done (actions), and contains some extra meta-data. The actions can be external programs or Python functions. A single task may define more than one action. doit uses the task’s meta-data to: * cache task results * correct execution order * parallel execution * powerful dependency system Package: python3-doit Architecture: all Depends: ${python3:Depends}, ${misc:Depends}, python3-pyinotify, python3-six Recommends: strace, python3-gdbm Suggests: python-doit-doc Description: Automation tool (Python3) to execute any kind of task in a build-tools fashion doit is an automation tool that brings the power of build-tools to execute any kind of task. . A task describes some computation to be done (actions), and contains some extra meta-data. The actions can be external programs or Python functions. A single task may define more than one action. doit uses the task’s meta-data to: * cache task results * correct execution order * parallel execution * powerful dependency system . This is the Python 3 version of the package. Package: python-doit-doc Architecture: all Section: doc Depends: ${misc:Depends}, ${sphinxdoc:Depends} Recommends: python-doit Description: Automation tool for executing any kind of task in a build-tools fashion - doc doit is an automation tool that brings the power of build-tools to execute any kind of task. . A task describes some computation to be done (actions), and contains some extra meta-data. The actions can be external programs or Python functions. A single task may define more than one action. doit uses the task’s meta-data to: * cache task results * correct execution order * parallel execution * powerful dependency system . This package contains API documentation and examples. debian/python3-doit.bash-completion0000644000000000000000000000004312176446027014543 0ustar debian/bash_completion_doit3 doit3 debian/rules0000755000000000000000000000355212250103366010251 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 PYVERS := python2.7 PY3VERS := $(shell py3versions -s) UPSTREAM_VERSION := $(shell dpkg-parsechangelog -SVersion | cut -d- -f1) PACKAGE_NAME := $(shell dpkg-parsechangelog -SSource) export PYBUILD_NAME=$(PACKAGE_NAME) %: dh $@ --with bash-completion,sphinxdoc,python2,python3 --buildsystem=pybuild override_dh_bash-completion: cp bash_completion_doit debian/bash_completion_doit3 sed -i 's@doit@doit3@g' debian/bash_completion_doit3 dh_bash-completion cp zsh_completion_doit debian/zsh_completion_doit3 sed -i 's@doit@doit3@g' debian/zsh_completion_doit3 cp zsh_completion_doit debian/python-doit/usr/share/zsh/functions/Completion/Linux/_doit cp debian/zsh_completion_doit3 debian/python3-doit/usr/share/zsh/functions/Completion/Linux/_doit3 override_dh_auto_clean: dh_auto_clean rm -rf doc/_build rm -f debian/doit.1 rm -f debian/doit3.1 rm -f debian/bash_completion_doit3 rm -f debian/zsh_completion_doit3 rm -f tests/data/stop rm -f tests/data/dependency* rm -f tests/data/target rm -f tests/data/w*.txt override_dh_auto_install: dh_auto_install # Renaming the binary for python3 mv debian/python3-doit/usr/bin/doit debian/python3-doit/usr/bin/doit3 # Generate manpages rst2man debian/doit.rst debian/doit.1 rst2man debian/doit3.rst debian/doit3.1 # build the html pages for the -doc package set -ex; \ cd doc; \ make html; override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) set -ex; \ for py in $(PYVERS) $(PY3VERS); do \ $$py runtests.py; \ done endif get-orig-source: @if [ ! -d "debian" ] ; then \ echo 'Run this from the top directory of the Debian source' >&2; \ exit 1; \ fi uscan --noconf --verbose --rename --destdir=$(CURDIR) \ --check-dirname-level=0 --force-download --download-version $(UPSTREAM_VERSION) debian/python-doit-doc.docs0000644000000000000000000000002012176446027013062 0ustar doc/_build/html debian/doit3.rst0000644000000000000000000000162712176446027010761 0ustar ===== doit3 ===== --------------- Automation tool --------------- :Manual section: 1 :Manual group: doit3 SYNOPSIS ======== **doit3** [*options*] DESCRIPTION =========== doit3 is an automation tool for bring the power of build-tools to execute any kind of task. It uses python3 by default. OPTIONS ======= [run] run tasks. clean clean action / remove targets list list tasks from dodo file forget clear successful run status from DB ignore ignore task (skip) on subsequent runs auto automatically run doit3 when a dependency changes help show help / reference help task show help on task dictionary fields help show command usage AUTHOR ====== Eduardo Naufel Schettino This manual page was initially written by Agustin Henze , for the Debian Project. COPYRIGHT ========= 2008-2012 Eduardo Naufel Schettino debian/changelog0000644000000000000000000000601312250110103011021 0ustar doit (0.24.0-1) unstable; urgency=medium * Change the url in debian/watch file * Imported Upstream version 0.24.0 * Bumped Standard-Version to 3.9.5 (no changes required) * Use pybuild as buildsystem * Update manpage * Run the test suite again * get-orig-source uses uscan instead of wget -- Agustin Henze Thu, 05 Dec 2013 11:39:03 -0300 doit (0.23.0-1) unstable; urgency=low * Imported Upstream version 0.23.0 * Remove the command for run test cases in debian/rules file. It fix FTBFS in pbuilder, bug fixed in the next upstream version. -- Agustin Henze Fri, 20 Sep 2013 19:40:35 -0300 doit (0.22.1-1) unstable; urgency=low * Imported Upstream version 0.22.1 * Add get-orig-source target into debian/rules file -- Agustin Henze Thu, 15 Aug 2013 14:30:41 +0200 doit (0.22.0-1) unstable; urgency=low * Imported Upstream version 0.22.0 (Closes: #711879) "bash completion script overwrites global COMP_WORDBREAKS" * Add missed build-dependency on python3-pyinotify. * Remove unnecessary build-dependency on python-support. * Add target override_dh_auto_test for run the test suite in debian/rules file. -- Agustin Henze Thu, 01 Aug 2013 17:48:41 -0300 doit (0.21.1-1) unstable; urgency=low * Imported Upstream version 0.21.1 * Add new dependency, the new version use six project for run in python2 and python3. * Add missing dependencies (strace, python-gdbm, python3-gdbm). * Little improvements in package description. * Change the url in the Vcs-Git field by the canonical url. * Remove the command for run test cases in debian/rules file. It fix FTBFS in pbuilder. * Convert debian/copyright file to machine readable. -- Agustin Henze Fri, 31 May 2013 19:38:36 -0300 doit (0.20.0-1) unstable; urgency=low * Imported Upstream version 0.20.0 * Use sphinxdoc option from debhelper to build the documentation: - debian/control: Added missing dependency on python(3)-sphinx. - debian/python-doit-doc.links: removed, now handled by sphinxdoc. - debian/rules: Clean-up symlinks * Fixed author in debian/python-doit-doc.doc-base file * Added call to run test cases - Added dependency on python-mock and strace. * Updated home page url * Replaced "DoIt" for "doit" asked by the upstream author * Improved package description -- Agustin Henze Thu, 07 Feb 2013 18:48:58 -0300 doit (0.19.0-1) unstable; urgency=low * New upstream release - Adds support for python3. - Update standard version from 3.9.3 to 3.9.4. -- Agustin Henze Fri, 21 Dec 2012 19:47:27 -0300 doit (0.17.0-2) unstable; urgency=low * Workaround a debhelper rewrite so we leave the version dependency up to the python alternatives system. -- Agustin Henze Wed, 10 Oct 2012 12:16:18 -0300 doit (0.17.0-1) unstable; urgency=low * Initial release (Closes: #689742). -- Agustin Henze Wed, 03 Oct 2012 21:23:41 -0300 debian/python3-doit.dirs0000644000000000000000000000005112250103542012400 0ustar usr/share/zsh/functions/Completion/Linux debian/copyright0000644000000000000000000000426312202166624011127 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: doit Upstream-Contact: Eduardo Schettino - schettino72 gmail com Source: http://pydoit.org/ Files: * Copyright: (c) 2008-2011 Eduardo Naufel Schettino License: MIT/X11 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. Files: debian/* Copyright: (C) 2012 Agustin Henze License: GPL-3 This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3'. debian/python3-doit.manpages0000644000000000000000000000001712176446027013253 0ustar debian/doit3.1 debian/compat0000644000000000000000000000000212176446027010375 0ustar 9 debian/python-doit.manpages0000644000000000000000000000001612176446027013167 0ustar debian/doit.1 debian/watch0000644000000000000000000000014612250061333010213 0ustar version=3 https://bitbucket.org/schettino72/doit/downloads /schettino72/doit/get/([0-9.]*)\.tar\.bz2