GNU bug report logs -
#32914
[PATCH 1/2] gnu: Add emacs-jdee.
Previous Next
Reported by: Kei Kebreau <kkebreau <at> posteo.net>
Date: Tue, 2 Oct 2018 18:10:02 UTC
Severity: normal
Tags: patch
Done: Kei Kebreau <kkebreau <at> posteo.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Fri, 15 Feb 2019 07:31:00 -0500
with message-id <87ef89terf.fsf <at> posteo.net>
and subject line Re: [bug#32914] [PATCH 1/2] gnu: Add emacs-jdee.
has caused the debbugs.gnu.org bug report #32914,
regarding [PATCH 1/2] gnu: Add emacs-jdee.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
32914: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32914
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/emacs.scm (emacs-jdee): New variable.
---
gnu/packages/emacs.scm | 50 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 8da5add88..1ee979983 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -77,6 +77,7 @@
#:use-module (gnu packages guile)
#:use-module (gnu packages gtk)
#:use-module (gnu packages gnome)
+ #:use-module (gnu packages java)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages python)
#:use-module (gnu packages tex)
@@ -1505,6 +1506,55 @@ files using the dot syntax, and use Graphviz to convert these files to
diagrams.")
(license license:gpl2+))))
+(define-public emacs-jdee
+ (let ((commit "8451b811b11d8cb428bafab31752e93180a3c724")
+ (revision "1"))
+ (package
+ (name "emacs-jdee")
+ (version (git-version "2.4.2" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jdee-emacs/jdee.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "08rjr1lr1hq47bpc6iy1ib24vky9zlpj9q5gdvb6cd4zzvlm2qw7"))))
+ (build-system emacs-build-system)
+ (arguments
+ `(#:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-duplicate-optional
+ (lambda _
+ (substitute* "jdee-stat.el"
+ (("&optional total-files") "total-files"))
+ (substitute* "jdee-wiz.el"
+ (("\\(defun jdee-wiz-get-get-method.*")
+ (string-append "(defun jdee-wiz-get-get-method (type name "
+ "&optional staticp class-name)")))
+ #t)))
+ #:tests? #t
+ #:test-command '("ert-runner" "-L" "." "--debug")))
+ (native-inputs
+ `(("emacs-ert-runner" ,emacs-ert-runner)
+ ("jdk" ,icedtea "jdk")))
+ (propagated-inputs
+ `(("emacs-dash" ,emacs-dash)
+ ("emacs-el-mock" ,emacs-el-mock)
+ ("emacs-flycheck" ,emacs-flycheck)
+ ("emacs-memoize" ,emacs-memoize)
+ ("emacs-s" ,emacs-s)))
+ (home-page "https://github.com/jdee-emacs/jdee")
+ (synopsis "Java Development Environment for Emacs")
+ (description
+ "The Java Development Environment for Emacs assists in the development of
+software in the Java Programming Language. JDEE provides many Emacs commands
+that help with the editing, compiling, running, debugging, and browsing large
+Java programs.")
+ (license license:gpl2+))))
+
(define-public emacs-mmm-mode
(package
(name "emacs-mmm-mode")
--
2.19.0
[Message part 3 (message/rfc822, inline)]
Building the backend for emacs-jdee requires more work with Java than I
am capable of doing right now.
This bug report was last modified 6 years and 180 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.