[pkg-java] r15335 - in trunk: . local-file/debian

Mathieu Malaterre malat-guest at alioth.debian.org
Fri Nov 4 14:59:40 UTC 2011


Author: malat-guest
Date: 2011-11-04 14:59:39 +0000 (Fri, 04 Nov 2011)
New Revision: 15335

Added:
   trunk/local-file/
   trunk/local-file/debian/local-file.jlibs
Removed:
   trunk/local-file/debian/clooj.jlibs
Modified:
   trunk/local-file/debian/changelog
   trunk/local-file/debian/control
   trunk/local-file/debian/get-orig-source
   trunk/local-file/debian/rules
   trunk/local-file/debian/watch
Log:
start working on local-file

Modified: trunk/local-file/debian/changelog
===================================================================
--- trunk/clooj/debian/changelog	2011-11-03 21:33:15 UTC (rev 15334)
+++ trunk/local-file/debian/changelog	2011-11-04 14:59:39 UTC (rev 15335)
@@ -1,5 +1,5 @@
-clooj (0.2.4-1) unstable; urgency=low
+local-file (0.1.0-1) unstable; urgency=low
 
-  * Initial Debian Upload (Closes: #646811)
+  * Initial Debian Upload (Closes: #)
 
  -- Mathieu Malaterre <mathieu.malaterre at gmail.com>  Wed, 07 Sep 2011 18:48:30 +0200

Deleted: trunk/local-file/debian/clooj.jlibs
===================================================================
--- trunk/clooj/debian/clooj.jlibs	2011-11-03 21:33:15 UTC (rev 15334)
+++ trunk/local-file/debian/clooj.jlibs	2011-11-04 14:59:39 UTC (rev 15335)
@@ -1 +0,0 @@
-clooj-0.2.4.jar

Modified: trunk/local-file/debian/control
===================================================================
--- trunk/clooj/debian/control	2011-11-03 21:33:15 UTC (rev 15334)
+++ trunk/local-file/debian/control	2011-11-04 14:59:39 UTC (rev 15335)
@@ -1,23 +1,28 @@
-Source: clooj
+Source: local-file
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
 DM-Upload-Allowed: yes
 Uploaders: Mathieu Malaterre <mathieu.malaterre at gmail.com>
 Build-Depends: debhelper (>= 8), javahelper (>= 0.25)
-Build-Depends-Indep: default-jdk, leiningen, clojure1.3
+Build-Depends-Indep: default-jdk
 Standards-Version: 3.9.2
-Homepage: https://github.com/arthuredelstein/clooj/
-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/clooj
-Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/clooj/
+Homepage: https://github.com/arthuredelstein/local-file/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/local-file
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/local-file/
 
-Package: clooj
+Package: local-file
 Architecture: all
 Depends: ${java:Depends}, ${misc:Depends}
 Recommends: ${java:Recommends}
-Description: lightweight IDE for clojure
- clooj is a small, simple IDE (integrated development environment) for the
- clojure programming language, available for free download. clooj is written
- entirely in clojure and uses a swing-based GUI. It is cross-platform, and runs
- as a standalone application or as a clojure editor embedded in another java or
- clojure application.
+Description: small clojure library
+ To use this very small clojure library, add [local-file "0.1.0"] to the
+ dependencies list in your project.clj file. Then call (use 'local-file) or
+ "use" local-file in your (ns...) macro call in a clojure source file.
+ .
+ To get the current clojure project's directory (the parent dir of the source
+ dir) call project-dir with no arguments. The file* function takes a relative
+ path and returns an absolute path relative to the project directory.
+ .
+ To read and write files in a clojure project's directory, use spit* and slurp*
+ with the same signatures as the standard spit and slurp calls.

Modified: trunk/local-file/debian/get-orig-source
===================================================================
--- trunk/clooj/debian/get-orig-source	2011-11-03 21:33:15 UTC (rev 15334)
+++ trunk/local-file/debian/get-orig-source	2011-11-04 14:59:39 UTC (rev 15335)
@@ -1,7 +1,7 @@
 #!/bin/sh
 set -ex
 
-PACKAGE=clooj
+PACKAGE=local-file
 
 
 VERSION=${VERSION:-$2}
@@ -12,7 +12,7 @@
 fi
 
 REVISION=`echo $VERSION | sed -e 's/^.*git//g'`
-REVISION=4dfb603527
+REVISION=add95e7658
 
 if [ -z ${TARFILE}]; then
 TARFILE=${PACKAGE}_${VERSION}.orig.tar.gz
@@ -20,7 +20,7 @@
 
 FOLDER=${PACKAGE}-${VERSION}
 
-git clone git://github.com/arthuredelstein/clooj.git ${FOLDER}
+git clone git://github.com/arthuredelstein/local-file.git ${FOLDER}
 cd ${FOLDER}
 git checkout ${REVISION}
 rm -rf .git

Copied: trunk/local-file/debian/local-file.jlibs (from rev 15334, trunk/clooj/debian/clooj.jlibs)
===================================================================
--- trunk/local-file/debian/local-file.jlibs	                        (rev 0)
+++ trunk/local-file/debian/local-file.jlibs	2011-11-04 14:59:39 UTC (rev 15335)
@@ -0,0 +1 @@
+clooj-0.2.4.jar

Modified: trunk/local-file/debian/rules
===================================================================
--- trunk/clooj/debian/rules	2011-11-03 21:33:15 UTC (rev 15334)
+++ trunk/local-file/debian/rules	2011-11-04 14:59:39 UTC (rev 15335)
@@ -2,13 +2,13 @@
 #export DH_VERBOSE=1
 
 export JAVA_HOME=/usr/lib/jvm/default-java
-export CLASSPATH=/usr/share/java/clojure-1.3.0.jar
+#export CLASSPATH=/usr/share/java/clojure-1.3.0.jar
 
 %:
 	dh $@ --with javahelper
 
-override_dh_auto_build:
-	lein jar
+#override_dh_auto_build:
+#	lein jar
 
 get-orig-source:
 	./debian/get-orig-source

Modified: trunk/local-file/debian/watch
===================================================================
--- trunk/clooj/debian/watch	2011-11-03 21:33:15 UTC (rev 15334)
+++ trunk/local-file/debian/watch	2011-11-04 14:59:39 UTC (rev 15335)
@@ -1,2 +1,2 @@
 version=3
-http://githubredir.debian.net/github/arthuredelstein/clooj/ v(.*).tar.gz
+http://githubredir.debian.net/github/arthuredelstein/local-file/ v(.*).tar.gz




More information about the pkg-java-commits mailing list