[SCM] librobert-hooke-clojure packaging branch, master, updated. debian/1.1.2-1-9-g1ebd0c7

Wolodja Wentland babilen-guest at alioth.debian.org
Sun Jul 10 17:08:25 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 "librobert-hooke-clojure packaging".

The branch, master has been updated
       via  1ebd0c754f9af0219fa9e2566f2f2c311ea5215d (commit)
       via  c7798c1284b65c3f8b55c474872a5887d78b3969 (commit)
       via  b93b27861c7a90c99fad1e1f2e3a4ec8647c5813 (commit)
       via  a1215536e59c5052e95b3683b644f15c8e64b139 (commit)
       via  ed16099c69628a5c4153c28f7651b5d455a6b677 (commit)
       via  b9d66dbcf7514e3d2e2c0111787ef99c35c18b45 (commit)
       via  11530dc38f5399ba8d827afb4a33bce94c6f75ce (commit)
      from  2e7d917b08910090b114f14b7cb896737f2b885d (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 1ebd0c754f9af0219fa9e2566f2f2c311ea5215d
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Sun Jul 10 17:50:49 2011 +0100

    Reformat debian/control
    
    Lines in debian/control were to long. This patch fixes that by using the
    multiline format.

commit c7798c1284b65c3f8b55c474872a5887d78b3969
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Sun Jul 10 17:40:20 2011 +0100

    Provide README in HTML too

commit b93b27861c7a90c99fad1e1f2e3a4ec8647c5813
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Sun Jul 10 17:35:26 2011 +0100

    Add Wolodja Wentland to Uploaders

commit a1215536e59c5052e95b3683b644f15c8e64b139
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Sun Jul 10 17:31:14 2011 +0100

    Fix dependency handling
    
    We can not rely on jh_depends to pick up the dependencies from
    librobert-hooke-clojure.classpath as the packages need to be installed on the
    buildbot for this to work. This patch makes the build-dependencies explicit.

commit ed16099c69628a5c4153c28f7651b5d455a6b677
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Sun Jul 10 17:26:49 2011 +0100

    Simplify clean

commit b9d66dbcf7514e3d2e2c0111787ef99c35c18b45
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Sun Jul 10 17:13:32 2011 +0100

    Extend package description

commit 11530dc38f5399ba8d827afb4a33bce94c6f75ce
Author: Wolodja Wentland <babilen at gmail.com>
Date:   Sun Jul 10 17:09:44 2011 +0100

    Specify copyright for debian/* and follow DEP5

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

Summary of changes:
 debian/clean     |    2 +
 debian/control   |   29 ++++++++++---
 debian/copyright |  128 ++++++++++++++++++++++++++++++++++-------------------
 debian/docs      |    2 +
 debian/rules     |   10 +----
 5 files changed, 110 insertions(+), 61 deletions(-)

diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..6310558
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,2 @@
+README.html
+robert-hooke.jar
diff --git a/debian/control b/debian/control
index 3ab2514..f5cf924 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,14 @@ Source: robert-hooke
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Phil Hagelberg <technomancy at gmail.com>, Daigo Moriwaki <daigo at debian.org>
-Build-Depends: debhelper (>> 8), javahelper (>= 0.32), default-jdk
+Uploaders: Daigo Moriwaki <daigo at debian.org>,
+           Phil Hagelberg <technomancy at gmail.com>,
+           Wolodja Wentland <babilen at gmail.com>
+Build-Depends: debhelper (>> 8),
+               javahelper (>= 0.32),
+               default-jdk,
+               clojure1.2 | clojure,
+               libtext-markdown-perl
 Standards-Version: 3.9.2
 Homepage: https://github.com/technomancy/robert-hooke
 Vcs-Git: git://git.debian.org/pkg-java/librobert-hooke-clojure.git
@@ -12,8 +18,19 @@ DM-Upload-Allowed: yes
 
 Package: librobert-hooke-clojure
 Architecture: all
-Depends: ${java:Depends}, ${misc:Depends}
+Depends: ${java:Depends},
+         ${misc:Depends}
 Recommends: ${java:Recommends}
-Description: Provide hooks to extend Clojure functions
- Robert Hooke provides a flexible, composable mechanism by which you
- can extend the behaviour of functions after they've been defined.
+Description: Function wrapper library for Clojure
+ Robert Hooke is a Clojure library that provides a flexible, composable
+ mechanism to extend functions after they have been defined.
+ .
+ Hooks can be used to change the behaviour of the functions they wrap in many
+ ways, for example:
+ .
+  * conditional execution
+  * modify arguments
+  * add side effects
+  * return different values
+ .
+ Hooke is inspired by Emacs Lisp's defadvice and clojure.test fixtures.
diff --git a/debian/copyright b/debian/copyright
index 6c76faa..b254ecb 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,28 +1,64 @@
-Name: robert-hooke
-Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=174
+Upstream-Contact: Phil Hagelberg <technomancy at gmail.com>
+Upstream-Name: robert-hooke
 Source: https://github.com/technomancy/robert-hooke.
 
-Upstream Author: Phil Hagelberg <technomancy at gmail.com>
+Files: *
+Copyright: 2010 Phil Hagelberg
+           2011 Phil Hagelberg
+License: EPL-1.0
+
+Files: debian/*
+Copyright: 2011 Phil Hagelberg
+           2011 Wolodja Wentland
+License: BSD-2-clause
+
+License: BSD-2-clause
+ All rights reserved.
+ .
+ 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 THE COPYRIGHT HOLDERS ``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 THE COPYRIGHT HOLDERS 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 the copyright holders.
 
-Copyright: 2010-2011 Phil Hagelberg <technomancy at gmail.com> and contributors.
 License: EPL-1.0
  THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
  PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF
  THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
-
+ .
  1. DEFINITIONS
-
+ .
  "Contribution" means:
-
+ .
  a) in the case of the initial Contributor, the initial code and
  documentation distributed under this Agreement, and
-
+ .
  b) in the case of each subsequent Contributor:
-
+ .
  i) changes to the Program, and
-
+ .
  ii) additions to the Program;
-
+ .
  where such changes and/or additions to the Program originate from and
  are distributed by that particular Contributor. A Contribution
  'originates' from a Contributor if it was added to the Program by such
@@ -31,28 +67,28 @@ License: EPL-1.0
  (i) are separate modules of software distributed in conjunction with
  the Program under their own license agreement, and (ii) are not
  derivative works of the Program.
-
+ .
  "Contributor" means any person or entity that distributes the Program.
-
+ .
  "Licensed Patents" mean patent claims licensable by a Contributor
  which are necessarily infringed by the use or sale of its Contribution
  alone or when combined with the Program.
-
+ .
  "Program" means the Contributions distributed in accordance with this
  Agreement.
-
+ .
  "Recipient" means anyone who receives the Program under this
  Agreement, including all Contributors.
-
+ .
  2. GRANT OF RIGHTS
-
+ .
  a) Subject to the terms of this Agreement, each Contributor hereby
  grants Recipient a non-exclusive, worldwide, royalty-free copyright
  license to reproduce, prepare derivative works of, publicly display,
  publicly perform, distribute and sublicense the Contribution of such
  Contributor, if any, and such derivative works, in source code and
  object code form.
-
+ .
  b) Subject to the terms of this Agreement, each Contributor hereby
  grants Recipient a non-exclusive, worldwide, royalty-free patent
  license under Licensed Patents to make, use, sell, offer to sell,
@@ -64,7 +100,7 @@ License: EPL-1.0
  Licensed Patents. The patent license shall not apply to any other
  combinations which include the Contribution. No hardware per se is
  licensed hereunder.
-
+ .
  c) Recipient understands that although each Contributor grants the
  licenses to its Contributions set forth herein, no assurances are
  provided by any Contributor that the Program does not infringe the
@@ -77,51 +113,51 @@ License: EPL-1.0
  example, if a third party patent license is required to allow
  Recipient to distribute the Program, it is Recipient's responsibility
  to acquire that license before distributing the Program.
-
+ .
  d) Each Contributor represents that to its knowledge it has sufficient
  copyright rights in its Contribution, if any, to grant the copyright
  license set forth in this Agreement.
-
+ .
  3. REQUIREMENTS
-
+ .
  A Contributor may choose to distribute the Program in object code form
  under its own license agreement, provided that:
-
+ .
  a) it complies with the terms and conditions of this Agreement; and
-
+ .
  b) its license agreement:
-
+ .
  i) effectively disclaims on behalf of all Contributors all warranties
  and conditions, express and implied, including warranties or
  conditions of title and non-infringement, and implied warranties or
  conditions of merchantability and fitness for a particular purpose;
-
+ .
  ii) effectively excludes on behalf of all Contributors all liability
  for damages, including direct, indirect, special, incidental and
  consequential damages, such as lost profits;
-
+ .
  iii) states that any provisions which differ from this Agreement are
  offered by that Contributor alone and not by any other party; and
-
+ .
  iv) states that source code for the Program is available from such
  Contributor, and informs licensees how to obtain it in a reasonable
  manner on or through a medium customarily used for software exchange.
-
+ .
  When the Program is made available in source code form:
-
+ .
  a) it must be made available under this Agreement; and
-
+ .
  b) a copy of this Agreement must be included with each copy of the Program.
-
+ .
  Contributors may not remove or alter any copyright notices contained
  within the Program.
-
+ .
  Each Contributor must identify itself as the originator of its
  Contribution, if any, in a manner that reasonably allows subsequent
  Recipients to identify the originator of the Contribution.
-
+ .
  4. COMMERCIAL DISTRIBUTION
-
+ .
  Commercial distributors of software may accept certain
  responsibilities with respect to end users, business partners and the
  like. While this license is intended to facilitate the commercial use
@@ -144,7 +180,7 @@ License: EPL-1.0
  the Commercial Contributor in, the defense and any related settlement
  negotiations. The Indemnified Contributor may participate in any such
  claim at its own expense.
-
+ .
  For example, a Contributor might include the Program in a commercial
  product offering, Product X. That Contributor is then a Commercial
  Contributor. If that Commercial Contributor then makes performance
@@ -155,9 +191,9 @@ License: EPL-1.0
  performance claims and warranties, and if a court requires any other
  Contributor to pay any damages as a result, the Commercial Contributor
  must pay those damages.
-
+ .
  5. NO WARRANTY
-
+ .
  EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
  PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY
@@ -169,9 +205,9 @@ License: EPL-1.0
  the risks and costs of program errors, compliance with applicable
  laws, damage to or loss of data, programs or equipment, and
  unavailability or interruption of operations.
-
+ .
  6. DISCLAIMER OF LIABILITY
-
+ .
  EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR
  ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
@@ -180,22 +216,22 @@ License: EPL-1.0
  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
  DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
  HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
+ .
  7. GENERAL
-
+ .
  If any provision of this Agreement is invalid or unenforceable under
  applicable law, it shall not affect the validity or enforceability of
  the remainder of the terms of this Agreement, and without further
  action by the parties hereto, such provision shall be reformed to the
  minimum extent necessary to make such provision valid and enforceable.
-
+ .
  If Recipient institutes patent litigation against any entity
  (including a cross-claim or counterclaim in a lawsuit) alleging that
  the Program itself (excluding combinations of the Program with other
  software or hardware) infringes such Recipient's patent(s), then such
  Recipient's rights granted under Section 2(b) shall terminate as of
  the date such litigation is filed.
-
+ .
  All Recipient's rights under this Agreement shall terminate if it
  fails to comply with any of the material terms or conditions of this
  Agreement and does not cure such failure in a reasonable period of
@@ -205,7 +241,7 @@ License: EPL-1.0
  practicable. However, Recipient's obligations under this Agreement and
  any licenses granted by Recipient relating to the Program shall
  continue and survive.
-
+ .
  Everyone is permitted to copy and distribute copies of this Agreement,
  but in order to avoid inconsistency the Agreement is copyrighted and
  may only be modified in the following manner. The Agreement Steward
@@ -225,7 +261,7 @@ License: EPL-1.0
  under this Agreement, whether expressly, by implication, estoppel or
  otherwise. All rights in the Program not expressly granted under this
  Agreement are reserved.
-
+ .
  This Agreement is governed by the laws of the State of Washington and
  the intellectual property laws of the United States of America. No
  party to this Agreement will bring a legal action under this Agreement
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..93ebb92
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+README.html
+README.md
diff --git a/debian/rules b/debian/rules
index 53fe3c5..2f7f492 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,8 +6,6 @@ DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' '
 DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-)
 DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//')
 
-export CLASSPATH=/usr/share/java/clojure.jar
-
 PRODUCED_JAR=robert-hooke.jar
 
 %:
@@ -15,13 +13,7 @@ PRODUCED_JAR=robert-hooke.jar
 
 override_jh_build:
 	jar cf $(PRODUCED_JAR) -C src .
-
-override_jh_classpath:
-	jh_classpath $(PRODUCED_JAR)
-
-override_jh_clean:
-	jh_clean
-	-rm -f $(PRODUCED_JAR)
+	markdown README.md > README.html
 
 get-orig-source:
 	uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename


hooks/post-receive
-- 
librobert-hooke-clojure packaging



More information about the pkg-java-commits mailing list