[SCM] leiningen packaging branch, master, updated. 660ecfc125aeb56cdf6a01668887b51bb65d19ed

Wolodja Wentland babilen-guest at alioth.debian.org
Sat Jul 30 15:08:59 UTC 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "leiningen packaging".

The branch, master has been updated
       via  660ecfc125aeb56cdf6a01668887b51bb65d19ed (commit)
       via  8028e7529d6be5963bbb83e79f3c7ca6ba752792 (commit)
       via  be1d2ddd7ee898434b6e25a80d9b47935108d13a (commit)
       via  691804925b14beb54c460c65b7a302839fdd440b (commit)
       via  f67df3c08b0cef490dbdcb7d7ea1865d90552784 (commit)
       via  775abf1c3576b6a41348753d849dd0d56610089b (commit)
      from  c95a2fea6f80723520f7211c824065a84ac6ec3d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 660ecfc125aeb56cdf6a01668887b51bb65d19ed
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Sat Jul 23 14:25:47 2011 +0100

    Use gitpkg and distinct branches for patches

commit 8028e7529d6be5963bbb83e79f3c7ca6ba752792
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Sat Jul 23 13:33:26 2011 +0100

    Adapt packaging to not repacked tarball 1.6.1

commit be1d2ddd7ee898434b6e25a80d9b47935108d13a
Merge: f67df3c 6918049
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Sat Jul 23 11:10:08 2011 +0100

    Merge branch 'upstream'

commit f67df3c08b0cef490dbdcb7d7ea1865d90552784
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Fri Jul 22 11:22:14 2011 +0100

    Remove clucy from leiningen jar
    
    Due to a bug in the clojure compiler [0] the jar compiled by leiningen
    includes AOT compiled classes from the seperately packaged clucy library.
    Clucy will be removed from now on.
    
    [0] http://dev.clojure.org/jira/browse/CLJ-322

commit 775abf1c3576b6a41348753d849dd0d56610089b
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Thu Jul 21 13:53:23 2011 +0100

    Include upstream changelog

-----------------------------------------------------------------------

Summary of changes:
 .gitattributes                                     |    2 +
 .gitignore                                         |   12 +
 bin/lein.bat                                       |  196 ++++++++++++
 debian/README.source                               |  161 ++++++++++
 debian/changelog                                   |    4 +-
 debian/control                                     |    3 +-
 debian/copyright                                   |  330 ++++++++++++++++++++
 debian/get-orig.exclude                            |    3 -
 debian/leiningen.docs                              |    2 +-
 debian/patches/0001-update-lancet.patch            |  328 -------------------
 debian/patches/0002-non-standalone-lein.patch      |  263 ----------------
 .../patches/0003-disable-dependency-download.patch |   26 --
 debian/patches/0004-lein-upgrade-message.patch     |   22 --
 debian/patches/0005-fix-manpage.patch              |   19 --
 debian/patches/series                              |    5 -
 debian/rules                                       |   17 +-
 debian/source/git-patches                          |    1 +
 resources/leiningen.png                            |  Bin 0 -> 73583 bytes
 resources/script-template.bat                      |   13 +
 test_projects/dev-deps-only/.gitignore             |    4 +
 test_projects/native/.gitignore                    |    7 +
 test_projects/sample/checkouts/sample2/.gitignore  |    4 +
 test_projects/tricky-name/.gitignore               |    4 +
 23 files changed, 744 insertions(+), 682 deletions(-)

diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..27cc220
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,2 @@
+#disable autocrlf for all .bat files since they already have CRLF in raw format
+*.bat -crlf
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..910e372
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,12 @@
+test_projects/*/lib
+test_projects/*/classes/
+test_projects/*/nomnomnom*.jar
+test_projects/sample/pom.xml
+classes/
+lib/
+leiningen*.jar
+lein-swank/lein-swank*.jar
+autodoc/
+bin/nom
+.lein-failures
+/lein.man
diff --git a/bin/lein.bat b/bin/lein.bat
new file mode 100644
index 0000000..d63b23c
--- /dev/null
+++ b/bin/lein.bat
@@ -0,0 +1,196 @@
+ at echo off
+
+set LEIN_VERSION=1.6.0
+
+setLocal EnableExtensions EnableDelayedExpansion
+
+if "%LEIN_VERSION:~-9%" == "-SNAPSHOT" (
+    set SNAPSHOT=YES
+) else (
+    set SNAPSHOT=NO
+)
+
+rem LEIN_JAR and LEIN_HOME variables can be set manually.
+
+if "x%LEIN_HOME%" == "x" set LEIN_HOME=%USERPROFILE%\.lein
+if "x%LEIN_JAR%" == "x" set LEIN_JAR="!LEIN_HOME!\self-installs\leiningen-!LEIN_VERSION!-standalone.jar"
+
+if "x%1" == "xself-install" goto SELF_INSTALL
+if "x%1" == "xupgrade"      goto NO_UPGRADE
+
+set ORIGINAL_PWD=%CD%
+rem If ORIGINAL_PWD ends with a backslash (such as C:\),
+rem we need to escape it with a second backslash.
+if "%ORIGINAL_PWD:~-1%x" == "\x" set "ORIGINAL_PWD=%ORIGINAL_PWD%\"
+
+call :FIND_DIR_CONTAINING_UPWARDS project.clj
+if "%DIR_CONTAINING%" neq "" cd "%DIR_CONTAINING%"
+
+set LEIN_PLUGINS="
+for %%j in (".\lib\dev\*.jar") do (
+    set LEIN_PLUGINS=!LEIN_PLUGINS!;%%~fj
+)
+set LEIN_PLUGINS=!LEIN_PLUGINS!"
+
+set LEIN_USER_PLUGINS="
+for %%j in ("%LEIN_HOME%\plugins\*.jar") do (
+    set LEIN_USER_PLUGINS=!LEIN_USER_PLUGINS!;%%~fj
+)
+set LEIN_USER_PLUGINS=!LEIN_USER_PLUGINS!"
+
+set CLASSPATH="%CLASSPATH%";%LEIN_USER_PLUGINS%;%LEIN_PLUGINS%;test;src
+
+rem Apply context specific CLASSPATH entries
+set CONTEXT_CP=""
+if exist ".classpath" set /P CONTEXT_CP=<.classpath
+if NOT "%CONTEXT_CP%"=="" set CLASSPATH="%CONTEXT_CP%";%CLASSPATH%
+
+if exist "%~f0\..\..\src\leiningen\core.clj" (
+    rem Running from source checkout.
+    call :SET_LEIN_ROOT "%~f0\..\.."
+
+    set LEIN_LIBS="
+    for %%j in ("!LEIN_ROOT!\lib\*") do set LEIN_LIBS=!LEIN_LIBS!;%%~fj
+    set LEIN_LIBS=!LEIN_LIBS!"
+
+    if "x!LEIN_LIBS!" == "x" if not exist %LEIN_JAR% goto NO_DEPENDENCIES
+
+    set CLASSPATH=%CLASSPATH%;!LEIN_LIBS!;"!LEIN_ROOT!\src";"!LEIN_ROOT!\resources";%LEIN_JAR%
+) else (
+    rem Not running from a checkout.
+    if not exist %LEIN_JAR% goto NO_LEIN_JAR
+    set CLASSPATH=%CLASSPATH%;%LEIN_JAR%
+)
+
+if not "x%DEBUG%" == "x" echo CLASSPATH=%CLASSPATH%
+rem ##################################################
+
+if not "x%INSIDE_EMACS%" == "x" goto SKIP_JLINE
+if "x%1" == "xrepl"             goto SET_JLINE
+if "x%1" == "xinteractive"      goto SET_JLINE
+if "x%1" == "xint"              goto SET_JLINE
+goto :SKIP_JLINE
+
+:SET_JLINE
+set JLINE=jline.ConsoleRunner
+:SKIP_JLINE
+
+if "x%JAVA_CMD%" == "x" set JAVA_CMD="java"
+if "x%JVM_OPTS%" == "x" set JVM_OPTS=%JAVA_OPTS%
+set CLOJURE_JAR=%USERPROFILE%\.m2\repository\org\clojure\clojure\1.2.1\clojure-1.2.1.jar
+goto RUN
+
+
+:NO_LEIN_JAR
+echo.
+echo %LEIN_JAR% can not be found.
+echo You can try running "lein self-install"
+echo or change LEIN_JAR environment variable
+echo or edit lein.bat to set appropriate LEIN_JAR path.
+echo.
+goto EOF
+
+:NO_DEPENDENCIES
+echo.
+echo Leiningen is missing its dependencies.
+echo Please see "Building" in the README.
+echo.
+goto EOF
+
+:SELF_INSTALL
+if exist %LEIN_JAR% (
+    echo %LEIN_JAR% already exists. Delete and retry.
+    goto EOF
+)
+for %%f in (%LEIN_JAR%) do set LEIN_INSTALL_DIR="%%~dpf"
+if not exist %LEIN_INSTALL_DIR% mkdir %LEIN_INSTALL_DIR%
+
+echo Downloading Leiningen now...
+
+set HTTP_CLIENT=wget --no-check-certificate -O
+wget>nul 2>&1
+if ERRORLEVEL 9009 (
+    curl>nul 2>&1
+    if ERRORLEVEL 9009 goto NO_HTTP_CLIENT
+    set HTTP_CLIENT=curl --insecure -f -L -o
+)
+set LEIN_JAR_URL=https://github.com/downloads/technomancy/leiningen/leiningen-%LEIN_VERSION%-standalone.jar
+%HTTP_CLIENT% %LEIN_JAR% %LEIN_JAR_URL%
+if ERRORLEVEL 1 (
+    del %LEIN_JAR%>nul 2>&1
+    goto DOWNLOAD_FAILED
+)
+goto EOF
+
+:DOWNLOAD_FAILED
+echo.
+echo Failed to download %LEIN_JAR_URL%
+if %SNAPSHOT% == YES echo See README.md for SNAPSHOT build instructions.
+echo.
+goto EOF
+
+:NO_HTTP_CLIENT
+echo.
+echo ERROR: Wget/Curl not found. Make sure at least either of Wget and Curl is
+echo        installed and is in PATH. You can get them from URLs below:
+echo.
+echo Wget: "http://users.ugent.be/~bpuype/wget/"
+echo Curl: "http://curl.haxx.se/dlwiz/?type=bin&os=Win32&flav=-&ver=2000/XP"
+echo.
+goto EOF
+
+:NO_UPGRADE
+echo.
+echo Upgrade feature is not available on Windows. Please edit the value of
+echo variable LEIN_VERSION in file %~f0
+echo then run "lein self-install".
+echo.
+goto EOF
+
+
+:SET_LEIN_ROOT
+set LEIN_ROOT=%~f1
+goto EOF
+
+rem Find directory containing filename supplied in first argument
+rem looking in current directory, and looking up the parent
+rem chain until we find it, or run out
+rem returns result in %DIR_CONTAINING%
+rem empty string if we don't find it
+:FIND_DIR_CONTAINING_UPWARDS
+set DIR_CONTAINING=%CD%
+set LAST_DIR=
+
+:LOOK_AGAIN
+if "%DIR_CONTAINING%" == "%LAST_DIR%" (
+    rem didn't find it
+    set DIR_CONTAINING=
+    goto :EOF
+)
+
+if EXIST "%DIR_CONTAINING%\%1" (
+    rem found it - use result in DIR_CONTAINING
+    goto :EOF
+)
+
+set LAST_DIR=%DIR_CONTAINING%
+call :GET_PARENT_PATH "%DIR_CONTAINING%\.."
+set DIR_CONTAINING=%PARENT_PATH%
+goto :LOOK_AGAIN
+
+:GET_PARENT_PATH
+set PARENT_PATH=%~f1
+goto :EOF
+
+
+:RUN
+rem Need to disable delayed expansion because the %* variable
+rem may contain bangs (as in test!).
+setLocal DisableDelayedExpansion
+
+%JAVA_CMD% -client %JVM_OPTS% -Xbootclasspath/a:"%CLOJURE_JAR%" ^
+ -Dleiningen.original.pwd="%ORIGINAL_PWD%" ^
+ -cp %CLASSPATH% %JLINE% clojure.main -e "(use 'leiningen.core)(-main)" NUL %*
+goto EOF
+
+:EOF
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..39e8de4
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,161 @@
+the debianisation of leiningen
+==============================
+
+The Debian packaging for leiningen is stored in git. You can use debcheckout
+or clone it directly from the repository:
+
+    $ debcheckout leiningen
+    $ git clone git://git.debian.org/pkg-java/leiningen.git
+
+If you are a member of the pkg-java team, you probably want to be able to push
+too:
+
+    $ git clone ssh://git.debian.org/git/pkg-java/leiningen.git
+
+branch layout
+-------------
+
+There are three main branches:
+
+ - master
+
+   Contains merged debian packaging and upstream commits. Uploaded versions
+   are tagged with debian/$debian_ver where #debian_ver is a Debian version
+   such as 1.6.1-1.
+
+ - upstream
+
+   Contains releases merged from the upstream repository [0] and releases are
+   tagged with upstream/$upstream_version where $upstream_version is a version
+   of an upstream release such as 1.6.1.
+
+ - pristine-tar
+
+   Contains information to generate an exact copy of the upstream tarball that
+   was committed to the repository.
+
+In addition to these we use a branch from which patches are generated:
+
+ - patch-queue
+
+   This branch merges from upstream and contains patches where one commit
+   corresponds to one patch. The end of a patch-queue is tagged with
+   patches/$debian_ver and the branch may be rebased.
+
+build
+-----
+
+We use gitpkg [1] to build the package. In order to generate the orig tarball
+and patches you need to enable the corresponding export hooks of gitpkg:
+
+    $ git config gitpkg.pre-export-hook /usr/share/gitpkg/hooks/pristine-tar-pre-export-hook
+    $ git config gitpkg.deb-export-hook /usr/share/gitpkg/hooks/quilt-patches-deb-export-hook
+
+and you can build with:
+
+    $ gitpkg master
+
+If you want to build a specific version you can pass the corresponding tag:
+
+    $ gitpkg debian/$debian_ver
+
+new upstream version
+--------------------
+
+We grab new upstream versions of leiningen directly from the repository on
+github and generate tarballs from upstream tags. If you have no remote branch
+of it yet, just fetch it:
+
+    $ git fetch https://github.com/technomancy/leiningen.git
+
+which is even simpler if you use hub [2]:
+
+    $ git fetch technomancy/leiningen
+
+This should create a couple of remote branches and tags and we create a
+tarball directly from the newest tag ($upstream_tag) such as 1.6.1:
+
+    $ git archive --format=tar --prefix=leiningen-$upstream_tag/ \
+        $upstream_tag | gzip -9 > ../leiningen_$upstream_tag.tar.gz
+
+To package this new version you have to checkout the upstream branch:
+
+    $ git checkout upstream
+
+remove untracked files and directories
+
+    $ git clean -dfx
+
+and all tracked ones
+
+    $ git ls-files -z | xargs -0 rm -f
+
+import the newly created $tarball:
+
+    $ tar --strip-components=1 -zxf $tarball
+    $ git add -A
+    $ git commit -m "Imported $tarball"
+
+and tag the new release
+
+    $ git tag upstream/$upstream_ver
+
+David Bremner came up with a useful git alias for this [3]
+
+We can now commit the imported tarball to the pristine-tar branch:
+
+    $ pristine-tar commit $tarball
+
+work on patches
+
+    $ git checkout patch-queue
+    $ git merge upstream/$upstream_ver
+    $ work_on_patches
+
+tag the end of the patch-queue ($patch_commit_ref)
+
+    $ git tag patches/$debian_ver
+
+and work on the packaging
+
+    $ git checkout master
+    $ git merge upstream/$upstream_ver
+    $ work_on_packaging
+
+and tag the last commit ref ($deb_commit_ref) once you are done and the
+package has been uploaded
+
+    $ git tag debian/$debian_ver $deb_commit_ref
+
+Do not forget to push changes and tags to pkg-java's repository
+
+    $ git push --all
+    $ git push --tags
+
+patches
+-------
+
+Patches are exported based on debian/source/git-patches, where each line is
+an argument to git-format-patch. The variables $DEB_VERSION and
+$UPSTREAM_VERSION are the Debian and upstream version being exported.
+You can either use git-format-patch manually, or install gitpkg
+version 0.17 or later. gitpkg needs to be configured to export the patches
+automatically at source package creation time:
+
+     $ git config gitpkg.deb-export-hook /usr/share/gitpkg/hooks/quilt-patches-deb-export-hook
+
+which allows you to run
+
+     $ gitpkg master
+
+to make a source package including patches.
+
+[0] https://github.com/technomancy/leiningen
+[1] http://packages.debian.org/sid/gitpkg
+[2] https://github.com/defunkt/hub
+[3] Git alias for tarball import
+    [alias]
+     import-tgz = "!f() { if [ -f $1 ]; then git clean -fxd; git ls-files -z
+      | xargs -0 rm -f; tar --strip-components=1 -zxvf $1 ; git add -A;
+      git commit -m'Importing '`basename $1`; else echo "missing tarball $1";
+            fi; }; f"
diff --git a/debian/changelog b/debian/changelog
index 7547f03..5a33bdf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-leiningen (1.6.1+ds-1) unstable; urgency=low
+leiningen (1.6.1-1) unstable; urgency=low
 
   * Initial release. (Closes: #566963)
 
- -- Wolodja Wentland <babilen at gmail.com>  Wed, 20 Jul 2011 12:33:32 +0000
+ -- Wolodja Wentland <babilen at gmail.com>  Sat, 23 Jul 2011 12:34:03 +0000
diff --git a/debian/control b/debian/control
index 6ec8775..523f562 100644
--- a/debian/control
+++ b/debian/control
@@ -26,7 +26,8 @@ Build-Depends-Indep:
  librobert-hooke-clojure,
  libtext-markdown-perl | markdown,
  libwagon-java,
- openjdk-6-jdk
+ openjdk-6-jdk,
+ zip
 Standards-Version: 3.9.2
 Homepage: https://github.com/technomancy/leiningen
 Vcs-Git: git://git.debian.org/pkg-java/leiningen.git
diff --git a/debian/copyright b/debian/copyright
index 443773c..8b226c8 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -2,6 +2,8 @@ Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=174
 Upstream-Name: leiningen
 Upstream-Contact: Phil Hagelberg
 Source: https://github.com/technomancy/leiningen
+Comment: Phil Hagelberg clarified the license of resources/leiningen.png in:
+https://github.com/technomancy/leiningen/commit/6de97841b1fff77f8e99
 
 Files: *
 Copyright: 2009 - 2011 Phil Hagelberg
@@ -23,6 +25,10 @@ Copyright: 2011 Phil Hagelberg
            2011 Wolodja Wentland
 License: EPL-1.0
 
+Files: resources/leiningen.png
+Copyright: 2011 Phil Hagelberg
+License: CC-BY-SA-3.0
+
 License: BSD-2-clause
  All rights reserved.
  .
@@ -266,3 +272,327 @@ License: EPL-1.0
  Agreement will bring a legal action under this Agreement more than one year
  after the cause of action arose. Each party waives its rights to a jury trial
  in any resulting litigation.
+
+License: CC-BY-SA-3.0
+ THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
+ COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
+ COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
+ AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
+ .
+ BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO
+ BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE
+ CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED
+ HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
+ .
+ 1. Definitions
+ .
+ "Adaptation" means a work based upon the Work, or upon the Work and other
+ pre-existing works, such as a translation, adaptation, derivative work,
+ arrangement of music or other alterations of a literary or artistic work, or
+ phonogram or performance and includes cinematographic adaptations or any
+ other form in which the Work may be recast, transformed, or adapted including
+ in any form recognizably derived from the original, except that a work that
+ constitutes a Collection will not be considered an Adaptation for the purpose
+ of this License. For the avoidance of doubt, where the Work is a musical
+ work, performance or phonogram, the synchronization of the Work in
+ timed-relation with a moving image ("synching") will be considered an
+ Adaptation for the purpose of this License.
+ .
+ "Collection" means a collection of literary or artistic works, such as
+ encyclopedias and anthologies, or performances, phonograms or broadcasts, or
+ other works or subject matter other than works listed in Section 1(f) below,
+ which, by reason of the selection and arrangement of their contents,
+ constitute intellectual creations, in which the Work is included in its
+ entirety in unmodified form along with one or more other contributions, each
+ constituting separate and independent works in themselves, which together are
+ assembled into a collective whole. A work that constitutes a Collection will
+ not be considered an Adaptation (as defined below) for the purposes of this
+ License.
+ .
+ "Creative Commons Compatible License" means a license that is listed at
+ http://creativecommons.org/compatiblelicenses that has been approved by
+ Creative Commons as being essentially equivalent to this License, including,
+ at a minimum, because that license: (i) contains terms that have the same
+ purpose, meaning and effect as the License Elements of this License; and,
+ (ii) explicitly permits the relicensing of adaptations of works made
+ available under that license under this License or a Creative Commons
+ jurisdiction license with the same License Elements as this License.
+ .
+ "Distribute" means to make available to the public the original and copies of
+ the Work or Adaptation, as appropriate, through sale or other transfer of
+ ownership.
+ .
+ "License Elements" means the following high-level license attributes as
+ selected by Licensor and indicated in the title of this License: Attribution,
+ ShareAlike.
+ .
+ "Licensor" means the individual, individuals, entity or entities that
+ offer(s) the Work under the terms of this License.
+ .
+ "Original Author" means, in the case of a literary or artistic work, the
+ individual, individuals, entity or entities who created the Work or if no
+ individual or entity can be identified, the publisher; and in addition (i) in
+ the case of a performance the actors, singers, musicians, dancers, and other
+ persons who act, sing, deliver, declaim, play in, interpret or otherwise
+ perform literary or artistic works or expressions of folklore; (ii) in the
+ case of a phonogram the producer being the person or legal entity who first
+ fixes the sounds of a performance or other sounds; and, (iii) in the case of
+ broadcasts, the organization that transmits the broadcast.
+ .
+ "Work" means the literary and/or artistic work offered under the terms of
+ this License including without limitation any production in the literary,
+ scientific and artistic domain, whatever may be the mode or form of its
+ expression including digital form, such as a book, pamphlet and other
+ writing; a lecture, address, sermon or other work of the same nature; a
+ dramatic or dramatico-musical work; a choreographic work or entertainment in
+ dumb show; a musical composition with or without words; a cinematographic
+ work to which are assimilated works expressed by a process analogous to
+ cinematography; a work of drawing, painting, architecture, sculpture,
+ engraving or lithography; a photographic work to which are assimilated works
+ expressed by a process analogous to photography; a work of applied art; an
+ illustration, map, plan, sketch or three-dimensional work relative to
+ geography, topography, architecture or science; a performance; a broadcast; a
+ phonogram; a compilation of data to the extent it is protected as a
+ copyrightable work; or a work performed by a variety or circus performer to
+ the extent it is not otherwise considered a literary or artistic work.
+ .
+ "You" means an individual or entity exercising rights under this License who
+ has not previously violated the terms of this License with respect to the
+ Work, or who has received express permission from the Licensor to exercise
+ rights under this License despite a previous violation.
+ .
+ "Publicly Perform" means to perform public recitations of the Work and to
+ communicate to the public those public recitations, by any means or process,
+ including by wire or wireless means or public digital performances; to make
+ available to the public Works in such a way that members of the public may
+ access these Works from a place and at a place individually chosen by them;
+ to perform the Work to the public by any means or process and the
+ communication to the public of the performances of the Work, including by
+ public digital performance; to broadcast and rebroadcast the Work by any
+ means including signs, sounds or images.
+ .
+ "Reproduce" means to make copies of the Work by any means including without
+ limitation by sound or visual recordings and the right of fixation and
+ reproducing fixations of the Work, including storage of a protected
+ performance or phonogram in digital form or other electronic medium.
+
+ 2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit,
+ or restrict any uses free from copyright or rights arising from limitations
+ or exceptions that are provided for in connection with the copyright
+ protection under copyright law or other applicable laws.
+ .
+ 3. License Grant. Subject to the terms and conditions of this License,
+ Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
+ perpetual (for the duration of the applicable copyright) license to exercise
+ the rights in the Work as stated below:
+ .
+ to Reproduce the Work, to incorporate the Work into one or more Collections,
+ and to Reproduce the Work as incorporated in the Collections; to create and
+ Reproduce Adaptations provided that any such Adaptation, including any
+ translation in any medium, takes reasonable steps to clearly label, demarcate
+ or otherwise identify that changes were made to the original Work. For
+ example, a translation could be marked "The original work was translated from
+ English to Spanish," or a modification could indicate "The original work has
+ been modified."; to Distribute and Publicly Perform the Work including as
+ incorporated in Collections; and, to Distribute and Publicly Perform
+ Adaptations.
+ .
+ For the avoidance of doubt:
+ .
+ Non-waivable Compulsory License Schemes. In those jurisdictions in which the
+ right to collect royalties through any statutory or compulsory licensing
+ scheme cannot be waived, the Licensor reserves the exclusive right to collect
+ such royalties for any exercise by You of the rights granted under this
+ License; Waivable Compulsory License Schemes. In those jurisdictions in which
+ the right to collect royalties through any statutory or compulsory licensing
+ scheme can be waived, the Licensor waives the exclusive right to collect such
+ royalties for any exercise by You of the rights granted under this License;
+ and, Voluntary License Schemes. The Licensor waives the right to collect
+ royalties, whether individually or, in the event that the Licensor is a
+ member of a collecting society that administers voluntary licensing schemes,
+ via that society, from any exercise by You of the rights granted under this
+ License.  The above rights may be exercised in all media and formats whether
+ now known or hereafter devised. The above rights include the right to make
+ such modifications as are technically necessary to exercise the rights in
+ other media and formats. Subject to Section 8(f), all rights not expressly
+ granted by Licensor are hereby reserved.
+ .
+ 4. Restrictions. The license granted in Section 3 above is expressly made
+ subject to and limited by the following restrictions:
+ .
+ You may Distribute or Publicly Perform the Work only under the terms of this
+ License. You must include a copy of, or the Uniform Resource Identifier (URI)
+ for, this License with every copy of the Work You Distribute or Publicly
+ Perform. You may not offer or impose any terms on the Work that restrict the
+ terms of this License or the ability of the recipient of the Work to exercise
+ the rights granted to that recipient under the terms of the License. You may
+ not sublicense the Work. You must keep intact all notices that refer to this
+ License and to the disclaimer of warranties with every copy of the Work You
+ Distribute or Publicly Perform. When You Distribute or Publicly Perform the
+ Work, You may not impose any effective technological measures on the Work
+ that restrict the ability of a recipient of the Work from You to exercise the
+ rights granted to that recipient under the terms of the License. This Section
+ 4(a) applies to the Work as incorporated in a Collection, but this does not
+ require the Collection apart from the Work itself to be made subject to the
+ terms of this License. If You create a Collection, upon notice from any
+ Licensor You must, to the extent practicable, remove from the Collection any
+ credit as required by Section 4(c), as requested. If You create an
+ Adaptation, upon notice from any Licensor You must, to the extent
+ practicable, remove from the Adaptation any credit as required by Section
+ 4(c), as requested.  You may Distribute or Publicly Perform an Adaptation
+ only under the terms of: (i) this License; (ii) a later version of this
+ License with the same License Elements as this License; (iii) a Creative
+ Commons jurisdiction license (either this or a later license version) that
+ contains the same License Elements as this License (e.g.,
+ Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible License.
+ If you license the Adaptation under one of the licenses mentioned in (iv),
+ you must comply with the terms of that license. If you license the Adaptation
+ under the terms of any of the licenses mentioned in (i), (ii) or (iii) (the
+ "Applicable License"), you must comply with the terms of the Applicable
+ License generally and the following provisions: (I) You must include a copy
+ of, or the URI for, the Applicable License with every copy of each Adaptation
+ You Distribute or Publicly Perform; (II) You may not offer or impose any
+ terms on the Adaptation that restrict the terms of the Applicable License or
+ the ability of the recipient of the Adaptation to exercise the rights granted
+ to that recipient under the terms of the Applicable License; (III) You must
+ keep intact all notices that refer to the Applicable License and to the
+ disclaimer of warranties with every copy of the Work as included in the
+ Adaptation You Distribute or Publicly Perform; (IV) when You Distribute or
+ Publicly Perform the Adaptation, You may not impose any effective
+ technological measures on the Adaptation that restrict the ability of a
+ recipient of the Adaptation from You to exercise the rights granted to that
+ recipient under the terms of the Applicable License. This Section 4(b)
+ applies to the Adaptation as incorporated in a Collection, but this does not
+ require the Collection apart from the Adaptation itself to be made subject to
+ the terms of the Applicable License.  If You Distribute, or Publicly Perform
+ the Work or any Adaptations or Collections, You must, unless a request has
+ been made pursuant to Section 4(a), keep intact all copyright notices for the
+ Work and provide, reasonable to the medium or means You are utilizing: (i)
+ the name of the Original Author (or pseudonym, if applicable) if supplied,
+ and/or if the Original Author and/or Licensor designate another party or
+ parties (e.g., a sponsor institute, publishing entity, journal) for
+ attribution ("Attribution Parties") in Licensor's copyright notice, terms of
+ service or by other reasonable means, the name of such party or parties; (ii)
+ the title of the Work if supplied; (iii) to the extent reasonably
+ practicable, the URI, if any, that Licensor specifies to be associated with
+ the Work, unless such URI does not refer to the copyright notice or licensing
+ information for the Work; and (iv) , consistent with Ssection 3(b), in the
+ case of an Adaptation, a credit identifying the use of the Work in the
+ Adaptation (e.g., "French translation of the Work by Original Author," or
+ "Screenplay based on original Work by Original Author"). The credit required
+ by this Section 4(c) may be implemented in any reasonable manner; provided,
+ however, that in the case of a Adaptation or Collection, at a minimum such
+ credit will appear, if a credit for all contributing authors of the
+ Adaptation or Collection appears, then as part of these credits and in a
+ manner at least as prominent as the credits for the other contributing
+ authors. For the avoidance of doubt, You may only use the credit required by
+ this Section for the purpose of attribution in the manner set out above and,
+ by exercising Your rights under this License, You may not implicitly or
+ explicitly assert or imply any connection with, sponsorship or endorsement by
+ the Original Author, Licensor and/or Attribution Parties, as appropriate, of
+ You or Your use of the Work, without the separate, express prior written
+ permission of the Original Author, Licensor and/or Attribution Parties.
+ Except as otherwise agreed in writing by the Licensor or as may be otherwise
+ permitted by applicable law, if You Reproduce, Distribute or Publicly Perform
+ the Work either by itself or as part of any Adaptations or Collections, You
+ must not distort, mutilate, modify or take other derogatory action in
+ relation to the Work which would be prejudicial to the Original Author's
+ honor or reputation. Licensor agrees that in those jurisdictions (e.g.
+ Japan), in which any exercise of the right granted in Section 3(b) of this
+ License (the right to make Adaptations) would be deemed to be a distortion,
+ mutilation, modification or other derogatory action prejudicial to the
+ Original Author's honor and reputation, the Licensor will waive or not
+ assert, as appropriate, this Section, to the fullest extent permitted by the
+ applicable national law, to enable You to reasonably exercise Your right
+ under Section 3(b) of this License (right to make Adaptations) but not
+ otherwise.
+ .
+ 5. Representations, Warranties and Disclaimer
+ .
+ UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR
+ OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND
+ CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING,
+ WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A
+ PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER
+ DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT
+ DISCOVERABLE.  SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED
+ WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
+ .
+ 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,
+ IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY
+ SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT
+ OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF
+ THE POSSIBILITY OF SUCH DAMAGES.
+ .
+ 7. Termination
+ .
+ This License and the rights granted hereunder will terminate automatically
+ upon any breach by You of the terms of this License. Individuals or entities
+ who have received Adaptations or Collections from You under this License,
+ however, will not have their licenses terminated provided such individuals or
+ entities remain in full compliance with those licenses. Sections 1, 2, 5, 6,
+ 7, and 8 will survive any termination of this License.  Subject to the above
+ terms and conditions, the license granted here is perpetual (for the duration
+ of the applicable copyright in the Work). Notwithstanding the above, Licensor
+ reserves the right to release the Work under different license terms or to
+ stop distributing the Work at any time; provided, however that any such
+ election will not serve to withdraw this License (or any other license that
+ has been, or is required to be, granted under the terms of this License), and
+ this License will continue in full force and effect unless terminated as
+ stated above.
+
+ 8. Miscellaneous
+ .
+ Each time You Distribute or Publicly Perform the Work or a Collection, the
+ Licensor offers to the recipient a license to the Work on the same terms and
+ conditions as the license granted to You under this License.  Each time You
+ Distribute or Publicly Perform an Adaptation, Licensor offers to the
+ recipient a license to the original Work on the same terms and conditions as
+ the license granted to You under this License. If any provision of this
+ License is invalid or unenforceable under applicable law, it shall not affect
+ the validity or enforceability of the remainder of the terms of this License,
+ and without further action by the parties to this agreement, such provision
+ shall be reformed to the minimum extent necessary to make such provision
+ valid and enforceable. No term or provision of this License shall be deemed
+ waived and no breach consented to unless such waiver or consent shall be in
+ writing and signed by the party to be charged with such waiver or consent.
+ This License constitutes the entire agreement between the parties with
+ respect to the Work licensed here. There are no understandings, agreements or
+ representations with respect to the Work not specified here. Licensor shall
+ not be bound by any additional provisions that may appear in any
+ communication from You. This License may not be modified without the mutual
+ written agreement of the Licensor and You. The rights granted under, and the
+ subject matter referenced, in this License were drafted utilizing the
+ terminology of the Berne Convention for the Protection of Literary and
+ Artistic Works (as amended on September 28, 1979), the Rome Convention of
+ 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms
+ Treaty of 1996 and the Universal Copyright Convention (as revised on July 24,
+ 1971). These rights and subject matter take effect in the relevant
+ jurisdiction in which the License terms are sought to be enforced according
+ to the corresponding provisions of the implementation of those treaty
+ provisions in the applicable national law. If the standard suite of rights
+ granted under applicable copyright law includes additional rights not granted
+ under this License, such additional rights are deemed to be included in the
+ License; this License is not intended to restrict the license of any rights
+ under applicable law.
+ .
+ Creative Commons Notice
+ .
+ Creative Commons is not a party to this License, and makes no warranty
+ whatsoever in connection with the Work. Creative Commons will not be liable
+ to You or any party on any legal theory for any damages whatsoever, including
+ without limitation any general, special, incidental or consequential damages
+ arising in connection to this license. Notwithstanding the foregoing two (2)
+ sentences, if Creative Commons has expressly identified itself as the
+ Licensor hereunder, it shall have all rights and obligations of Licensor.
+ .
+ Except for the limited purpose of indicating to the public that the Work is
+ licensed under the CCPL, Creative Commons does not authorize the use by
+ either party of the trademark "Creative Commons" or any related trademark or
+ logo of Creative Commons without the prior written consent of Creative
+ Commons. Any permitted use will be in compliance with Creative Commons'
+ then-current trademark usage guidelines, as may be published on its website
+ or otherwise made available upon request from time to time. For the avoidance
+ of doubt, this trademark restriction does not form part of the License.
+ .
+ Creative Commons may be contacted at http://creativecommons.org/.
diff --git a/debian/get-orig.exclude b/debian/get-orig.exclude
deleted file mode 100644
index effa275..0000000
--- a/debian/get-orig.exclude
+++ /dev/null
@@ -1,3 +0,0 @@
-.gitattributes
-*.bat
-resources/leiningen.png
diff --git a/debian/leiningen.docs b/debian/leiningen.docs
index a70b108..071ad6e 100644
--- a/debian/leiningen.docs
+++ b/debian/leiningen.docs
@@ -1,3 +1,3 @@
-doc/*.md
 doc/html
+doc/*.md
 todo.org
diff --git a/debian/patches/0001-update-lancet.patch b/debian/patches/0001-update-lancet.patch
deleted file mode 100644
index e6091ce..0000000
--- a/debian/patches/0001-update-lancet.patch
+++ /dev/null
@@ -1,328 +0,0 @@
-From: Wolodja Wentland <babilen at gmail.com>
-Date: Thu, 14 Jul 2011 16:45:49 +0100
-Subject: update lancet
-
----
- src/lancet.clj      |  140 -------------------------------------------
- src/lancet/core.clj |  164 +++++++++++++++++++++++++++++++++++++++++++++++++++
- 2 files changed, 164 insertions(+), 140 deletions(-)
- delete mode 100755 src/lancet.clj
- create mode 100755 src/lancet/core.clj
-
-diff --git a/src/lancet.clj b/src/lancet.clj
-deleted file mode 100755
-index 7af9f49..0000000
---- a/src/lancet.clj
-+++ /dev/null
-@@ -1,140 +0,0 @@
--(ns lancet
--  (:gen-class)
--  (:import (java.beans Introspector)
--           (java.util.concurrent CountDownLatch)
--           (org.apache.tools.ant.types Path)))
--
--(println "WARNING: lancet namespace is deprecated; use lancet.core.")
--
--(def #^{:doc "Dummy ant project to keep Ant tasks happy"}
--  ant-project
--  (let [proj (org.apache.tools.ant.Project.)
--        logger (org.apache.tools.ant.NoBannerLogger.)]
--    (doto logger
--      (.setMessageOutputLevel org.apache.tools.ant.Project/MSG_INFO)
--      (.setEmacsMode true)
--      (.setOutputPrintStream System/out)
--      (.setErrorPrintStream System/err))
--    (doto proj
--      (.init)
--      (.addBuildListener logger))))
--
--(defmulti coerce (fn [dest-class src-inst] [dest-class (class src-inst)]))
--
--(defmethod coerce [java.io.File String] [_ str]
--  (java.io.File. str))
--(defmethod coerce [Boolean/TYPE String] [_ str]
--  (contains? #{"on" "yes" "true"} (.toLowerCase str)))
--(defmethod coerce :default [dest-cls obj] (cast dest-cls obj))
--(defmethod coerce [Path String] [_ str]
--  (Path. lancet/ant-project str))
--
--(defn env [val]
--  (System/getenv (name val)))
--
--(defn- build-sh-args [args]
--  (concat (.split (first args) " +") (rest args)))
--
--(defn property-descriptor [inst prop-name]
--  (first
--   (filter #(= prop-name (.getName %))
--           (.getPropertyDescriptors
--            (Introspector/getBeanInfo (class inst))))))
--
--(defn get-property-class [write-method]
--  (first (.getParameterTypes write-method)))
--
--(defn set-property! [inst prop value]
--  (let [pd (property-descriptor inst prop)]
--    (when-not pd
--      (throw (Exception. (format "No such property %s." prop))))
--    (let [write-method (.getWriteMethod pd)
--          dest-class (get-property-class write-method)]
--      (.invoke write-method inst (into-array [(coerce dest-class value)])))))
--
--(defn set-properties! [inst prop-map]
--  (doseq [[k v] prop-map] (set-property! inst (name k) v)))
--
--(defn instantiate-task [project name props & filesets]
--  (let [task (.createTask project name)]
--    (when-not task
--      (throw (Exception. (format "No task named %s." name))))
--    (doto task
--      (.init)
--      (.setProject project)
--      (set-properties! props))
--    (doseq [fs filesets]
--      (.addFileset task fs))
--    task))
--
--(defn runonce
--  "Create a function that will only run once. All other invocations
--  return the first calculated value. The function *can* have side effects
--  and calls to runonce *can* be composed. Deadlock is possible
--  if you have circular dependencies.
--  Returns a [has-run-predicate, reset-fn, once-fn]"
--  [function]
--  (let [sentinel (Object.)
--        result (atom sentinel)
--        reset-fn (fn [] (reset! result sentinel))
--        has-run-fn (fn [] (not= @result sentinel))]
--    [has-run-fn
--     reset-fn
--     (fn [& args]
--       (locking sentinel
--         (if (= @result sentinel)
--           (reset! result (function))
--           @result)))]))
--
--(defmacro has-run? [f]
--  `((:has-run (meta (var ~f)))))
--
--(defmacro reset [f]
--  `((:reset-fn (meta (var ~f)))))
--
--(def targets (atom #{}))
--
--(defmacro deftarget [sym doc & forms]
--  (swap! targets #(conj % sym))
--  (let [has-run (gensym "hr-") reset-fn (gensym "rf-")]
--    `(let [[~has-run ~reset-fn once-fn#] (runonce (fn [] ~@forms))]
--       (def ~(with-meta sym {:doc doc :has-run has-run :reset-fn reset-fn})
--            once-fn#))))
--
--(defmacro define-ant-task [clj-name ant-name]
--  `(defn ~clj-name [& props#]
--     (let [task# (apply instantiate-task ant-project ~(name ant-name) props#)]
--       (.execute task#)
--       task#)))
--
--(defmacro define-ant-type [clj-name ant-name]
--  `(defn ~clj-name [props#]
--     (let [bean# (new ~ant-name)]
--       (set-properties! bean# props#)
--       (when (property-descriptor bean# "project")
--         (set-property! bean# "project" ant-project))
--       bean#)))
--
--(defn task-names [] (map symbol (seq (.. ant-project getTaskDefinitions keySet))))
--
--(defn safe-ant-name [n]
--  (if (ns-resolve 'clojure.core n) (symbol (str "ant-" n)) n))
--
--(defmacro define-all-ant-tasks []
--  `(do ~@(map (fn [n] `(define-ant-task ~n ~n)) (task-names))))
--
--(defmacro define-all-ant-tasks []
--  `(do ~@(map (fn [n] `(define-ant-task ~(safe-ant-name n) ~n)) (task-names))))
--
--(define-all-ant-tasks)
--
--;; The version of ant that maven-ant-tasks requires doesn't have this class:
--;; (define-ant-type files org.apache.tools.ant.types.resources.Files)
--(define-ant-type fileset org.apache.tools.ant.types.FileSet)
--
--(defn -main [& targs]
--  (load-file "build.clj")
--  (if targs
--    (doseq [targ (map symbol targs)]
--      (eval (list targ)))
--    (println "Available targets: " @targets)))
-diff --git a/src/lancet/core.clj b/src/lancet/core.clj
-new file mode 100755
-index 0000000..e9167e8
---- /dev/null
-+++ b/src/lancet/core.clj
-@@ -0,0 +1,164 @@
-+(ns lancet.core
-+  (:gen-class)
-+  (:import (java.beans Introspector)
-+           (java.util.concurrent CountDownLatch)
-+           (org.apache.tools.ant.types Path)
-+           (org.apache.tools.ant.taskdefs Manifest$Attribute)
-+           (java.util Map)))
-+
-+(def #^{:doc "Dummy ant project to keep Ant tasks happy"}
-+  ant-project
-+  (let [proj (org.apache.tools.ant.Project.)
-+        logger (org.apache.tools.ant.NoBannerLogger.)]
-+    (doto logger
-+      (.setMessageOutputLevel org.apache.tools.ant.Project/MSG_INFO)
-+      (.setEmacsMode true)
-+      (.setOutputPrintStream System/out)
-+      (.setErrorPrintStream System/err))
-+    (doto proj
-+      (.init)
-+      (.addBuildListener logger))))
-+
-+(defmulti coerce (fn [dest-class src-inst] [dest-class (class src-inst)]))
-+
-+(defmethod coerce [java.io.File String] [_ str]
-+  (java.io.File. str))
-+(defmethod coerce [Boolean/TYPE String] [_ str]
-+  (contains? #{"on" "yes" "true"} (.toLowerCase str)))
-+(defmethod coerce :default [dest-cls obj] (cast dest-cls obj))
-+(defmethod coerce [Path String] [_ str]
-+  (Path. ant-project str))
-+
-+(defn env [val]
-+  (System/getenv (name val)))
-+
-+(defn- build-sh-args [args]
-+  (concat (.split (first args) " +") (rest args)))
-+
-+(defn property-descriptor [inst prop-name]
-+  (first
-+   (filter #(= prop-name (.getName %))
-+           (.getPropertyDescriptors
-+            (Introspector/getBeanInfo (class inst))))))
-+
-+(defn get-property-class [write-method]
-+  (first (.getParameterTypes write-method)))
-+
-+(defn set-property! [inst prop value]
-+  (let [pd (property-descriptor inst prop)]
-+    (when-not pd
-+      (throw (Exception. (format "No such property %s." prop))))
-+    (let [write-method (.getWriteMethod pd)
-+          dest-class (get-property-class write-method)]
-+      (.invoke write-method inst (into-array [(coerce dest-class value)])))))
-+
-+(defn set-properties! [inst prop-map]
-+  (doseq [[k v] prop-map] (set-property! inst (name k) v)))
-+
-+(def ant-task-hierarchy
-+  (atom (-> (make-hierarchy)
-+            (derive ::exec ::has-args))))
-+
-+(defmulti add-nested
-+  "Adds a nested element to ant task.
-+Elements are added in a different way for each type.
-+Task name keywords are connected into a hierarchy which can
-+be used to extensively add other types to this method.
-+The default behaviour is to add an element as a fileset."
-+  (fn [name task nested] [(keyword "lancet.core" name) (class nested)])
-+  :hierarchy ant-task-hierarchy)
-+
-+(defmethod add-nested [::manifest Map]
-+  [_ task props]
-+  (doseq [[n v] props] (.addConfiguredAttribute task
-+                                                (Manifest$Attribute. n v))))
-+(defmethod add-nested [::has-args String]
-+  [_ task arg]
-+  (doto  (.createArg task) (.setValue arg)))
-+
-+(defmethod add-nested :default [_ task nested] (.addFileset task nested))
-+
-+(defn instantiate-task [project name props & nested]
-+  (let [task (.createTask project name)]
-+    (when-not task
-+      (throw (Exception. (format "No task named %s." name))))
-+    (doto task
-+      (.init)
-+      (.setProject project)
-+      (set-properties! props))
-+    (doseq [n nested]
-+      (add-nested name task n)
-+      )
-+    task))
-+
-+(defn runonce
-+  "Create a function that will only run once. All other invocations
-+  return the first calculated value. The function *can* have side effects
-+  and calls to runonce *can* be composed. Deadlock is possible
-+  if you have circular dependencies.
-+  Returns a [has-run-predicate, reset-fn, once-fn]"
-+  [function]
-+  (let [sentinel (Object.)
-+        result (atom sentinel)
-+        reset-fn (fn [] (reset! result sentinel))
-+        has-run-fn (fn [] (not= @result sentinel))]
-+    [has-run-fn
-+     reset-fn
-+     (fn [& args]
-+       (locking sentinel
-+         (if (= @result sentinel)
-+           (reset! result (function))
-+           @result)))]))
-+
-+(defmacro has-run? [f]
-+  `((:has-run (meta (var ~f)))))
-+
-+(defmacro reset [f]
-+  `((:reset-fn (meta (var ~f)))))
-+
-+(def targets (atom #{}))
-+
-+(defmacro deftarget [sym doc & forms]
-+  (swap! targets #(conj % sym))
-+  (let [has-run (gensym "hr-") reset-fn (gensym "rf-")]
-+    `(let [[~has-run ~reset-fn once-fn#] (runonce (fn [] ~@forms))]
-+       (def ~(with-meta sym {:doc doc :has-run has-run :reset-fn reset-fn})
-+            once-fn#))))
-+
-+(defmacro define-ant-task [clj-name ant-name]
-+  `(defn ~clj-name [& props#]
-+     (let [task# (apply instantiate-task ant-project ~(name ant-name) props#)]
-+       (.execute task#)
-+       task#)))
-+
-+(defmacro define-ant-type [clj-name ant-name]
-+  `(defn ~clj-name [props#]
-+     (let [bean# (new ~ant-name)]
-+       (set-properties! bean# props#)
-+       (when (property-descriptor bean# "project")
-+         (set-property! bean# "project" ant-project))
-+       bean#)))
-+
-+(defn task-names [] (map symbol (seq (.. ant-project getTaskDefinitions keySet))))
-+
-+(defn safe-ant-name [n]
-+  (if (ns-resolve 'clojure.core n) (symbol (str "ant-" n)) n))
-+
-+(defmacro define-all-ant-tasks []
-+  `(do ~@(map (fn [n] `(define-ant-task ~n ~n)) (task-names))))
-+
-+(defmacro define-all-ant-tasks []
-+  `(do ~@(map (fn [n] `(define-ant-task ~(safe-ant-name n) ~n)) (task-names))))
-+
-+(define-all-ant-tasks)
-+
-+;; Newer versions of ant don't have this class:
-+;; (define-ant-type files org.apache.tools.ant.types.resources.Files)
-+(define-ant-type fileset org.apache.tools.ant.types.FileSet)
-+
-+(defn -main [& targs]
-+  (load-file "build.clj")
-+  (if targs
-+    (doseq [targ (map symbol targs)]
-+      (eval (list targ)))
-+    (println "Available targets: " @targets)))
--- 
diff --git a/debian/patches/0002-non-standalone-lein.patch b/debian/patches/0002-non-standalone-lein.patch
deleted file mode 100644
index 78630f4..0000000
--- a/debian/patches/0002-non-standalone-lein.patch
+++ /dev/null
@@ -1,263 +0,0 @@
-From: Wolodja Wentland <babilen at gmail.com>
-Date: Thu, 14 Jul 2011 17:23:37 +0100
-Subject: non-standalone lein
-
-The upstream version of bin/lein is a standalone one. We are, however, using
-packaged dependencies that are installed system-wide in the patched version.
----
- bin/lein |  193 +++++++++++--------------------------------------------------
- 1 files changed, 35 insertions(+), 158 deletions(-)
-
-diff --git a/bin/lein b/bin/lein
-index 0555569..041819e 100755
---- a/bin/lein
-+++ b/bin/lein
-@@ -1,19 +1,12 @@
--#!/bin/sh
-+#!/bin/bash
-+
-+# This variant of the lein script is meant for downstream packagers.
-+# It has all the cross-platform stuff stripped out as well as the
-+# logic for running from checkouts and self-upgrading.
- 
- LEIN_VERSION="1.6.1"
- export LEIN_VERSION
- 
--case $LEIN_VERSION in
--    *SNAPSHOT) SNAPSHOT="YES" ;;
--    *) SNAPSHOT="NO" ;;
--esac
--
--# Make sure classpath is in unix format for manipulating, then put
--# it back to windows format when we use it
--if [ "$OSTYPE" = "cygwin" ] && [ "$CLASSPATH" != "" ]; then
--    CLASSPATH=`cygpath -up $CLASSPATH`
--fi
--
- if [ `whoami` = "root" ] && [ "$LEIN_ROOT" = "" ]; then
-     echo "WARNING: You're currently running as root; probably by accident."
-     echo "Press control-C to abort or Enter to continue as root."
-@@ -21,10 +14,10 @@ if [ `whoami` = "root" ] && [ "$LEIN_ROOT" = "" ]; then
-     read _
- fi
- 
-+# cd to the project root, if applicable
- NOT_FOUND=1
- ORIGINAL_PWD="$PWD"
--while [ ! -r "$PWD/project.clj" ] && [ "$PWD" != "/" ] && [ $NOT_FOUND -ne 0 ]
--do
-+while [ ! -r "$PWD/project.clj" ] && [ "$PWD" != "/" ] && [ $NOT_FOUND -ne 0 ]; do
-     cd ..
-     if [ "$(dirname "$PWD")" = "/" ]; then
-         NOT_FOUND=0
-@@ -32,9 +25,10 @@ do
-     fi
- done
- 
--if [ "$LEIN_HOME" = "" ]; then
--    LEIN_HOME="$HOME/.lein"
--fi
-+# Support $JAVA_OPTS for backwards-compatibility.
-+JVM_OPTS=${JVM_OPTS:-"$JAVA_OPTS"}
-+JAVA_CMD=${JAVA_CMD:-"java"}
-+LEIN_HOME=${LEIN_HOME:-"$HOME/.lein"}
- 
- DEV_PLUGINS="$(ls -1 lib/dev/*jar 2> /dev/null)"
- USER_PLUGINS="$(ls -1 "$LEIN_HOME"/plugins/*jar 2> /dev/null)"
-@@ -69,7 +63,7 @@ LEIN_PLUGIN_PATH="$(echo "$DEV_PLUGINS" | tr \\n :)"
- LEIN_USER_PLUGIN_PATH="$(echo "$(unique_user_plugins)" | tr \\n :)"
- CLASSPATH="$CLASSPATH:$LEIN_PLUGIN_PATH:$LEIN_USER_PLUGIN_PATH:test/:src/"
- LEIN_JAR="$HOME/.lein/self-installs/leiningen-$LEIN_VERSION-standalone.jar"
--CLOJURE_JAR="$HOME/.m2/repository/org/clojure/clojure/1.2.1/clojure-1.2.1.jar"
-+CLOJURE_JAR="/usr/share/java/clojure-1.2.jar:/usr/share/java/asm3.jar"
- NULL_DEVICE=/dev/null
- 
- # apply context specific CLASSPATH entries
-@@ -84,163 +78,46 @@ else
-     SCRIPT="$0"
- fi
- 
--# resolve symlinks to the script itself portably
--while [ -h "$SCRIPT" ] ; do
--    ls=`ls -ld "$SCRIPT"`
--    link=`expr "$ls" : '.*-> \(.*\)$'`
--    if expr "$link" : '/.*' > /dev/null; then
--        SCRIPT="$link"
--    else
--        SCRIPT="$(dirname "$SCRIPT"$)/$link"
--    fi
-+SHARE_JARS="ant ant-launcher classworlds clojure-1.2 \
-+lucene-memory maven-ant-tasks maven-artifact maven-artifact-manager \
-+maven-error-diagnostics maven-model maven-settings maven-project maven-profile \
-+maven-repository-metadata plexus-container-default-alpha plexus-interpolation \
-+plexus-utils wagon-file wagon-http-lightweight wagon-http-shared wagon-provider-api \
-+xml-apis lucene-core lucene-highlighter clucy robert-hooke lancet leiningen
-+backport-util-concurrent" # NFI why that last one is necessary
-+for JAR in $SHARE_JARS; do
-+    CLASSPATH="$CLASSPATH":"/usr/share/java/$JAR.jar"
- done
- 
--BIN_DIR="$(dirname "$SCRIPT")"
--
--if [ -r "$BIN_DIR/../src/leiningen/core.clj" ]; then
--    # Running from source checkout
--    LEIN_DIR="$(dirname "$BIN_DIR")"
--    LEIN_LIBS="$(find -H "$LEIN_DIR/lib" -mindepth 1 -maxdepth 1 -print0 2> /dev/null | tr \\0 \:)"
--    CLASSPATH="$CLASSPATH:$LEIN_LIBS:$LEIN_DIR/src:$LEIN_DIR/classes:$LEIN_DIR/resources:$LEIN_JAR"
--
--    if [ "$LEIN_LIBS" = "" -a "$1" != "self-install" -a ! -r "$LEIN_JAR" ]; then
--        echo "Leiningen is missing its dependencies. Please see \"Building\" in the README."
--        exit 1
--    fi
--else
--    # Not running from a checkout
--    CLASSPATH="$CLASSPATH:$LEIN_JAR"
--
--    if [ ! -r "$LEIN_JAR" -a "$1" != "self-install" ]; then
--        "$0" self-install
--    fi
-+if [ $DEBUG ]; then
-+    echo $CLASSPATH
-+    echo $CLOJURE_JAR
- fi
- 
--HTTP_CLIENT="wget --no-check-certificate -O"
--if type -p curl >/dev/null 2>&1; then
--    if [ "$https_proxy" != "" ]; then
--        CURL_PROXY="-x $https_proxy"
-+# Use rlwrap if appropriate
-+if ([ "$1" = "repl" ] || [ "$1" = "interactive" ] || [ "$1" = "int" ]) &&
-+    [ -z $INSIDE_EMACS ] && [ "$TERM" != "dumb" ]; then
-+    which rlwrap > /dev/null
-+    if [ $? -eq 0 ]; then
-+        RLWRAP="rlwrap -m -q '\"'" # custom quote chars
-     fi
--    HTTP_CLIENT="curl $CURL_PROXY --insecure -f -L -o"
- fi
- 
--export JAVA_CMD=${JAVA_CMD:-"java"}
--
--# Support $JAVA_OPTS for backwards-compatibility.
--export JVM_OPTS=${JVM_OPTS:-"$JAVA_OPTS"}
--
--# TODO: investigate http://skife.org/java/unix/2011/06/20/really_executable_jars.html
--# If you're packaging this for a package manager (.deb, homebrew, etc)
--# you need to remove the self-install and upgrade functionality.
--if [ "$1" = "self-install" ]; then
--    echo "Downloading Leiningen now..."
--    LEIN_DIR=`dirname "$LEIN_JAR"`
--    mkdir -p "$LEIN_DIR"
--    LEIN_URL="https://github.com/downloads/technomancy/leiningen/leiningen-$LEIN_VERSION-standalone.jar"
--    $HTTP_CLIENT "$LEIN_JAR" "$LEIN_URL"
--    if [ $? != 0 ]; then
--        echo "Failed to download $LEIN_URL"
--        if [ $SNAPSHOT = "YES" ]; then
--            echo "If you have Maven installed, you can do"
--            echo "mvn dependency:copy-dependencies; mv target/dependency lib"
--            echo "See README.md for further SNAPSHOT build instructions."
--        fi
--        rm $LEIN_JAR 2> /dev/null
--        exit 1
--    fi
--elif [ "$1" = "upgrade" ]; then
--    if [ "$LEIN_DIR" != "" ]; then
--        echo "The upgrade task is not meant to be run from a checkout."
--        exit 1
--    fi
--    if [ $SNAPSHOT = "YES" ]; then
--        echo "The upgrade task is only meant for stable releases."
--        echo "See the \"Hacking\" section of the README."
--        exit 1
--    fi
--    if [ ! -w "$SCRIPT" ]; then
--        echo "You do not have permission to upgrade the installation in $SCRIPT"
--        exit 1
--    else
--        echo "The script at $SCRIPT will be upgraded to the latest stable version."
--        echo -n "Do you want to continue [Y/n]? "
--        read RESP
--        case "$RESP" in
--            y|Y|"")
--                echo
--                echo "Upgrading..."
--                TARGET="/tmp/lein-$$-upgrade"
--                LEIN_SCRIPT_URL="https://github.com/technomancy/leiningen/raw/stable/bin/lein"
--                $HTTP_CLIENT "$TARGET" "$LEIN_SCRIPT_URL" \
--                    && mv "$TARGET" "$SCRIPT" \
--                    && chmod +x "$SCRIPT" \
--                    && echo && $SCRIPT self-install && echo && echo "Now running" `$SCRIPT version`
--                exit $?;;
--            *)
--                echo "Aborted."
--                exit 1;;
--        esac
--    fi
--else
--    if [ "$OSTYPE" = "cygwin" ]; then
--        # When running on Cygwin, use Windows-style paths for java
--        CLOJURE_JAR=`cygpath -w "$CLOJURE_JAR"`
--        ORIGINAL_PWD=`cygpath -w "$ORIGINAL_PWD"`
--        CLASSPATH=`cygpath -wp "$CLASSPATH"`
--        NULL_DEVICE=NUL
--    fi
--
--    if [ $DEBUG ]; then
--        echo $CLASSPATH
--        echo $CLOJURE_JAR
--    fi
--
--    JLINE=""
--    if ([ "$1" = "repl" ] || [ "$1" = "interactive" ] || [ "$1" = "int" ]) &&
--        [ -z $INSIDE_EMACS ] && [ "$TERM" != "dumb" ]; then
--        # Use rlwrap if it's available, otherwise fall back to JLine
--        RLWRAP=`which rlwrap`
--        if [ ! -x "$RLWRAP" ] || [ "$RLWRAP" = "" ]; then
--            if [ ! -r "$LEIN_HOME/.jline-warn" ]; then
--                echo "Using JLine for console I/O; install rlwrap for optimum experience."
--                touch "$LEIN_HOME/.jline-warn"
--            fi
--            RLWRAP=""
--            JLINE=jline.ConsoleRunner
--            if [ "$OSTYPE" = "cygwin" ]; then
--                JLINE="-Djline.terminal=jline.UnixTerminal jline.ConsoleRunner"
--                CYGWIN_JLINE=y
--            fi
--        else
--            # Test to see if rlwrap supports custom quote chars
--            rlwrap -m -q '"' echo "hi" > /dev/null 2>&1
--            if [ $? -eq 0 ]; then
--                RLWRAP="$RLWRAP -m -q '\"'"
--            fi
--        fi
--    fi
--
--    # The -Xbootclasspath argument is optional here: if the jar
--    # doesn't exist everything will still work, it will just have a
--    # slower JVM boot.
--    test $CYGWIN_JLINE && stty -icanon min 1 -echo
--    if [ "$1" = "trampoline" ]; then
-+if [ "$1" = "trampoline" ]; then
-         TRAMPOLINE_FILE="/tmp/lein-trampoline-$$"
-         $JAVA_CMD -Xbootclasspath/a:"$CLOJURE_JAR" -client $JVM_OPTS \
-             -Dleiningen.original.pwd="$ORIGINAL_PWD" \
-             -Dleiningen.trampoline-file=$TRAMPOLINE_FILE -cp "$CLASSPATH" \
--            $JLINE clojure.main -e "(use 'leiningen.core)(-main)" \
-+            clojure.main -e "(use 'leiningen.core)(-main)" \
-             $NULL_DEVICE "$@"
-         if [ -r $TRAMPOLINE_FILE ]; then
-             TRAMPOLINE="$(cat $TRAMPOLINE_FILE)"
-             rm $TRAMPOLINE_FILE
--            exec sh -c "$TRAMPOLINE"
-+            exec sh -c "exec $TRAMPOLINE"
-         fi
--    else
-+else
-         exec $RLWRAP $JAVA_CMD -Xbootclasspath/a:"$CLOJURE_JAR" -client $JVM_OPTS \
-             -Dleiningen.original.pwd="$ORIGINAL_PWD" \
--            -cp "$CLASSPATH" $JLINE clojure.main -e "(use 'leiningen.core)(-main)" \
-+            -cp "$CLASSPATH" clojure.main -e "(use 'leiningen.core)(-main)" \
-             $NULL_DEVICE "$@"
--        test $CYGWIN_JLINE && stty icanon echo
--    fi
- fi
--- 
diff --git a/debian/patches/0003-disable-dependency-download.patch b/debian/patches/0003-disable-dependency-download.patch
deleted file mode 100644
index 1434fda..0000000
--- a/debian/patches/0003-disable-dependency-download.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From: Wolodja Wentland <babilen at gmail.com>
-Date: Thu, 14 Jul 2011 18:26:31 +0100
-Subject: disable dependency download
-
----
- project.clj |    7 -------
- 1 files changed, 0 insertions(+), 7 deletions(-)
-
-diff --git a/project.clj b/project.clj
-index 87fd492..19afec5 100644
---- a/project.clj
-+++ b/project.clj
-@@ -6,12 +6,5 @@
-   :description "Automate Clojure projects without setting your hair on fire."
-   :url "https://github.com/technomancy/leiningen"
-   :license {:name "Eclipse Public License"}
--  :dependencies [[org.clojure/clojure "1.2.1"]
--                 [org.clojure/clojure-contrib "1.2.0"]
--                 [clucy "0.2.2"]
--                 [lancet "1.0.1"]
--                 [jline "0.9.94" :exclusions [junit]]
--                 [robert/hooke "1.1.2"]
--                 [org.apache.maven/maven-ant-tasks "2.0.10" :exclusions [ant]]]
-   :disable-implicit-clean true
-   :eval-in-leiningen true)
--- 
diff --git a/debian/patches/0004-lein-upgrade-message.patch b/debian/patches/0004-lein-upgrade-message.patch
deleted file mode 100644
index 7300c0a..0000000
--- a/debian/patches/0004-lein-upgrade-message.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: Wolodja Wentland <babilen at gmail.com>
-Date: Thu, 14 Jul 2011 18:28:02 +0100
-Subject: lein upgrade message
-
----
- src/leiningen/upgrade.clj |    3 +++
- 1 files changed, 3 insertions(+), 0 deletions(-)
-
-diff --git a/src/leiningen/upgrade.clj b/src/leiningen/upgrade.clj
-index c2dd189..05d41df 100644
---- a/src/leiningen/upgrade.clj
-+++ b/src/leiningen/upgrade.clj
-@@ -1,5 +1,8 @@
- (ns leiningen.upgrade
-   "Upgrade Leiningen to the latest stable release.")
- 
-+(defn upgrade []
-+  (println "Upgrades should be done using apt rather than Leiningen itself."))
-+
- ;; This file is only a placeholder. The real upgrade
- ;; implementation can be found in the 'lein' script.
--- 
diff --git a/debian/patches/0005-fix-manpage.patch b/debian/patches/0005-fix-manpage.patch
deleted file mode 100644
index 68e60c5..0000000
--- a/debian/patches/0005-fix-manpage.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-From: Wolodja Wentland <babilen at gmail.com>
-Date: Fri, 15 Jul 2011 11:27:52 +0100
-Subject: fix manpage
-
----
- doc/lein.1 |    2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/doc/lein.1 b/doc/lein.1
-index 5be6ad4..9b9f075 100644
---- a/doc/lein.1
-+++ b/doc/lein.1
-@@ -1,4 +1,4 @@
--./"to render: groff -Tascii -man doc/lein.1 > lein.man"
-+.\"to render: groff -Tascii -man doc/lein.1 > lein.man"
- .TH LEININGEN 1 "2011 June 30"
- .SH NAME
- lein \- Automate Clojure projects
--- 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 09bab4a..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,5 +0,0 @@
-0001-update-lancet.patch
-0002-non-standalone-lein.patch
-0003-disable-dependency-download.patch
-0004-lein-upgrade-message.patch
-0005-fix-manpage.patch
diff --git a/debian/rules b/debian/rules
index 66af327..6d55263 100755
--- a/debian/rules
+++ b/debian/rules
@@ -9,9 +9,7 @@ DEB_VERSION := $(shell dpkg-parsechangelog \
 	| sed 's/^Version:[[:blank:]]*//')
 DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) \
 	| sed 's/-[[:digit:]]*$$//')
-DEB_NODS_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) \
-	| sed 's/+ds//')
-DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NODS_VERSION) \
+DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) \
 	| sed 's/-[^-]*$$//')
 MDWN_DOCS = $(patsubst %.md,%.html,$(wildcard doc/*.md))
 
@@ -21,6 +19,7 @@ MDWN_DOCS = $(patsubst %.md,%.html,$(wildcard doc/*.md))
 override_jh_build: $(MDWN_DOCS)
 	jar cvf lancet.jar -C src/lancet .
 	LEIN_ROOT=y CLASSPATH=$(CURDIR)/lancet.jar bin/lein compile :all, jar
+	zip --delete $(CURDIR)/leiningen-$(DEB_UPSTREAM_VERSION).jar 'clucy/*'
 	mkdir $(CURDIR)/doc/html && mv $(CURDIR)/doc/*.html $(CURDIR)/doc/html
 
 override_jh_clean:
@@ -34,17 +33,11 @@ override_jh_installlibs:
 	jh_installlibs -i --version-strip=".ds[0-9]*$$" \
 		leiningen-$(DEB_UPSTREAM_VERSION).jar
 
+override_dh_installchangelogs:
+	dh_installchangelogs NEWS
+
 %.html:%.md
 	cat $(CURDIR)/debian/header.html > $@
 	sed -i'' -e 's/@TITLE@/$(shell head -n 1 $< | sed 's/^#*\s*//')/g' $@
 	markdown $< >> $@
 	cat $(CURDIR)/debian/footer.html >> $@
-
-get-orig-source:
-	uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename
-	tar xzf ../leiningen_$(DEB_UPSTREAM_VERSION).orig.tar.gz -C ../
-	rm ../leiningen_$(DEB_UPSTREAM_VERSION).orig.tar.gz
-	tar czf ../leiningen_$(DEB_NOEPOCH_VERSION).orig.tar.gz \
-		--exclude-vcs --exclude-from debian/get-orig.exclude \
-		 ../technomancy-leiningen-[a-z0-9]*/
-	rm -rf ../technomancy-leiningen-[a-z0-9]*/
diff --git a/debian/source/git-patches b/debian/source/git-patches
new file mode 100644
index 0000000..d7e3a6d
--- /dev/null
+++ b/debian/source/git-patches
@@ -0,0 +1 @@
+upstream/${UPSTREAM_REF}..patches/${DEB_REF}
diff --git a/resources/leiningen.png b/resources/leiningen.png
new file mode 100644
index 0000000..995b0c3
Binary files /dev/null and b/resources/leiningen.png differ
diff --git a/resources/script-template.bat b/resources/script-template.bat
new file mode 100644
index 0000000..5189912
--- /dev/null
+++ b/resources/script-template.bat
@@ -0,0 +1,13 @@
+ at echo off
+
+rem This script was automatically generated by Leiningen.
+
+setLocal
+
+if "x%%JVM_OPTS%%" == "x" set JVM_OPTS=%%JAVA_OPTS%%
+set CLASSPATH="%s"
+set MAIN="%s"
+set VERSION="%s"
+
+java -cp "%%CLASSPATH%%" %%JVM_OPTS%% -Dproject.version=%%VERSION%%^
+ clojure.main -e "(use '%%MAIN%%)(apply -main *command-line-args*)" NUL %%*
diff --git a/test_projects/dev-deps-only/.gitignore b/test_projects/dev-deps-only/.gitignore
new file mode 100644
index 0000000..6eae6a5
--- /dev/null
+++ b/test_projects/dev-deps-only/.gitignore
@@ -0,0 +1,4 @@
+pom.xml
+*jar
+lib
+classes
diff --git a/test_projects/native/.gitignore b/test_projects/native/.gitignore
new file mode 100644
index 0000000..69746c8
--- /dev/null
+++ b/test_projects/native/.gitignore
@@ -0,0 +1,7 @@
+pom.xml
+*jar
+/lib
+/native
+/classes
+.lein-failures
+.lein-deps-sum
diff --git a/test_projects/sample/checkouts/sample2/.gitignore b/test_projects/sample/checkouts/sample2/.gitignore
new file mode 100644
index 0000000..d9148e9
--- /dev/null
+++ b/test_projects/sample/checkouts/sample2/.gitignore
@@ -0,0 +1,4 @@
+pom.xml
+*jar
+lib
+classes
\ No newline at end of file
diff --git a/test_projects/tricky-name/.gitignore b/test_projects/tricky-name/.gitignore
new file mode 100644
index 0000000..6eae6a5
--- /dev/null
+++ b/test_projects/tricky-name/.gitignore
@@ -0,0 +1,4 @@
+pom.xml
+*jar
+lib
+classes


hooks/post-receive
-- 
leiningen packaging



More information about the pkg-java-commits mailing list