1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

JDEE: Update.

svn path=/nixpkgs/trunk/; revision=16797
This commit is contained in:
Ludovic Courtès 2009-08-21 08:43:07 +00:00
parent 0c86d710fe
commit a56fecb102
8 changed files with 35 additions and 142 deletions

View file

@ -0,0 +1,12 @@
Make sure `build.properties' is honored.
--- jde/build.xml
+++ jde/build.xml
@@ -14,6 +14,7 @@
<property name="project.version" value="2.4.0"/>
<property name="config.dir" location="./config"/>
+ <property file="build.properties"/>
<!-- everything depends on this initialization target -->
<target name="init">

View file

@ -1,7 +1,7 @@
{ fetchsvn, stdenv, emacs, cedet, ant }:
let
revision = "90";
revision = "137";
in
stdenv.mkDerivation rec {
name = "jdee-svn${revision}";
@ -12,14 +12,13 @@ in
# Looks like they're not sure whether to put one or two `e'...
url = "https://jdee.svn.sourceforge.net/svnroot/jdee/trunk/jde";
rev = revision;
sha256 = "06q1956yrs4r83a6sf3fk915jhsmg1q84wrrgjbdccfv5akid435";
sha256 = "0pjkbr1srx2m428xkky1csf97fr5219prs4dif7njlydyrwp0gnn";
};
patches = [
./installation-layout.patch ./cedet-paths.patch ./elib-avltree.patch
./java-directory.patch ./jde-directory-files-recurs.patch
./jde-help-find-javadoc.patch ./jde-wiz-update-implements-clause.patch
./jde-help-docsets.patch
./build-properties.patch
./cedet-paths.patch ./elib-avltree.patch
./java-directory.patch
];
configurePhase = ''
@ -32,11 +31,12 @@ in
dist.doc.dir dist/doc/${name}
prefix.dir = $out
cedet.dir = ${cedet}/share/emacs/site-lisp
elib.dir = /nowhere
build.bin.emacs = ${emacs}/bin/emacs
EOF
# Substitute variables, à la Autoconf.
for i in lisp/*.el
for i in "lisp/"*.el
do
sed -i "$i" -e "s|@out@|$out|g ;
s|@javadir@|$out/lib/java|g ;

View file

@ -2,6 +2,22 @@ JDEE refers to the `avltree' module from GNU Elib, but GNU Elib
no longer exists (see http://www.gnu.org/software/elib/). This
patch updates the module names to what's current in Emacs.
--- jde/config/build.el
+++ jde/config/build.el
@@ -33,11 +33,10 @@ compile.
CEDET-DIR is the cedet lisp code base directory (see PATHS).
PATHS are sub directories under CEDET-DIR we use to compile."
- (dolist (path (list dir lisp-src-dir elib-dir cedet-dir))
+ (dolist (path (list dir lisp-src-dir cedet-dir))
(if (not (file-directory-p path))
(error "Doesn't exist or not a directory: %s" path)))
(let ((autoload-buf (jde-make-autoloads dir autoload-libname)))
- (add-to-list 'load-path elib-dir t)
(dolist (path paths)
(add-to-list 'load-path (expand-file-name path cedet-dir) t))
(add-to-list 'load-path lisp-src-dir t)
--- jde/lisp/jde-parse.el (revision 90)
+++ jde/lisp/jde-parse.el (working copy)
@@ -24,7 +24,7 @@

View file

@ -1,19 +0,0 @@
The `build.xml' makes it impossible to override some settings. This
patch deletes their definition from here so we can use our value from
`build.properties'.
--- jde/build.xml (revision 90)
+++ jde/build.xml (working copy)
@@ -30,12 +30,7 @@
<!-- staging -->
<property name="dist.dir" location="./dist"/>
- <property name="dist.lisp.dir" location="${dist.dir}/lisp"/>
<property name="dist.java.dir" location="${dist.dir}/java"/>
- <property name="dist.java.lib.dir" location="${dist.java.dir}/lib"/>
- <property name="dist.java.src.dir" location="${dist.java.dir}/src"/>
- <property name="dist.java.doc.dir" location="${dist.dir}/java/doc"/>
- <property name="dist.jar.jde.file" location="${dist.java.lib.dir}/jde.jar"/>
<property name="dist.doc.dir" location="${dist.dir}/doc"/>
<property name="dist.doc.java.api.dir" location="${dist.doc.dir}/java/api"/>

View file

@ -1,25 +0,0 @@
This patch fixes a possible infinite recursion in `jde-directory-files-recurs'.
It could occur, e.g., when DIR contains multiple slashes: we end up recursing
on "DIR/." forever.
--- jde/lisp/jde.el (revision 90)
+++ jde/lisp/jde.el (working copy)
@@ -1500,14 +1500,14 @@ SYMBOL is unnecessary."
"Get all the files in DIR, and any subdirectories of DIR, whose
names match INCLUDE-REGEXP."
(let (files)
- (loop for file in (directory-files dir t) do
- (if (not (or (string= (concat dir "/.") file)
- (string= (concat dir "/..") file)))
+ (loop for file in (directory-files dir) do
+ (if (not (member file '("." "..")))
+ (let ((file (concat dir "/" file)))
(if (file-directory-p file)
(setq files (append files (jde-directory-files-recurs file include-regexp)))
(if (or (not include-regexp)
(string-match include-regexp file))
- (setq files (append files (list file)))))))
+ (setq files (append files (list file))))))))
files))
(defun jde-expand-directory (dir include-regexp exclude-regexps symbol)

View file

@ -1,31 +0,0 @@
Provide a sensible default for `jde-help-docsets'.
--- jde/lisp/jde-help.el (revision 90)
+++ jde/lisp/jde-help.el (working copy)
@@ -28,7 +28,25 @@
(require 'jde-util)
;; (makunbound 'jde-help-docsets)
-(defcustom jde-help-docsets (list (list "JDK API" "" nil))
+(defcustom jde-help-docsets
+ (list (list "JDK API"
+ "http://java.sun.com/javase/6/docs/api"
+ nil)
+ ("User (javadoc)"
+ "http://static.springsource.org/spring/docs/3.0.x/javadoc-api/"
+ nil)
+ ("User (javadoc)"
+ "http://commons.apache.org/sandbox/functor/apidocs/"
+ nil)
+ ("User (javadoc)"
+ "https://www.hibernate.org/hib_docs/v3/api"
+ nil)
+ ("User (javadoc)"
+ "http://acegisecurity.org/acegi-security/apidocs"
+ nil)
+ ("User (javadoc)"
+ "http://wicket.apache.org/docs/1.4"
+ nil))
"*Lists collections of HTML files documenting Java classes.
This list is used by the `jde-help-class' command to find help for
a class. You can specify the following information for each docset:

View file

@ -1,46 +0,0 @@
Fix `jde-help-find-javadoc' so that it correctly infers whether
an HTML page exists.
Previously it would consider that Wget succeeded if its output
contained the string "200". This doesn't work as Wget's output
starts with something like:
--2009-07-10 16:15:37-- http://java.sun.com/javase/6/docs/api/foobar
This patch makes it check the exit code of Wget instead, which is
more reliable.
--- jde/lisp/jde-help.el (revision 90)
+++ jde/lisp/jde-help.el (working copy)
@@ -138,7 +138,7 @@ one of the the sites in `jde-help-docset
(const :tag "Disable timeout checking" :value 0)
(integer :tag "Timeout (seconds)" :value 900)))
-(defcustom jde-help-wget-command-line-options nil
+(defcustom jde-help-wget-command-line-options "--quiet"
"Specifies additional options (beyond --spider, --tries and
--timeout) to pass to wget, if wget is used for
`jde-help-remote-file-exists-function'."
@@ -208,18 +208,15 @@ to verify the existence of pages located
(error "Cannot find url-file-exists function"))
(if (executable-find
(if (eq system-type 'windows-nt) "wget.exe" "wget"))
- (if (not
- (string-match
- "200"
- (shell-command-to-string
- (concat "wget --spider "
+ (let ((cmd (concat "wget --spider "
(if jde-help-wget-tries
(concat "--tries=" jde-help-wget-tries))
(if jde-help-wget-timeout
(concat "--timeout=" jde-help-wget-timeout))
jde-help-wget-command-line-options
- " " url))))
- (setq url nil))
+ " " url)))
+ (unless (= 0 (shell-command cmd))
+ (setq url nil)))
(error
(concat "Cannot find wget. This utility is needed "
"to access javadoc on remote systems.")))))

View file

@ -1,14 +0,0 @@
This patch allows `C-c C-v e' (`jde-wiz-extend-abstract-class') to do the
right thing, even when invoked, say, on an empty file.
--- jde/lisp/jde-wiz.el (revision 90)
+++ jde/lisp/jde-wiz.el (working copy)
@@ -99,7 +99,7 @@ extends clause is updated"
(save-excursion
(let* ((class-re "class[ \t]+\\([a-zA-z]+[a-zA-Z0-9._]*\\).*[ \n]*")
(open-brace-pos
- (scan-lists (point) -1 1))
+ (ignore-errors (scan-lists (point) -1 1)))
(class-name-end-pos
(when open-brace-pos
(goto-char open-brace-pos)