From 1470705542f28351ceaf183a49cd5d869a4576db Mon Sep 17 00:00:00 2001 From: Jack Hill Date: Sun, 17 Mar 2019 22:01:17 -0400 Subject: [PATCH] gnu: Add emacs-semantic-refactor * gnu/packages/emacs-xyz.scm (emacs-semantic-refactor): New variable. --- gnu/packages/emacs-xyz.scm | 43 +++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 8d5ee6c5fb..a8a59a2dee 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -36,7 +36,7 @@ ;;; Copyright © 2018 Mathieu Lirzin ;;; Copyright © 2018, 2019 Pierre Neidhardt ;;; Copyright © 2018, 2019 Tim Gesthuizen -;;; Copyright © 2018 Jack Hill +;;; Copyright © 2018, 2019 Jack Hill ;;; Copyright © 2018 Pierre-Antoine Rouby ;;; Copyright © 2018 Alex Branham ;;; Copyright © 2018 Thorsten Wilms @@ -13691,6 +13691,47 @@ command\", but because it always involves at least two commands (a prefix and a suffix) we prefer to call it just a \"transient\".") (license license:gpl3+)))) +(define-public emacs-semantic-refactor + ;; The last release, 0.5, was made on 2015-07-26 and there have been 47 + ;; commits since then. + (let ((commit "6f2c97d17fb70f4ca2112f5a2b99a8ec162004f5")) + (package + (name "emacs-semantic-refactor") + (version (git-version "0.5" "1" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tuhdo/semantic-refactor") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1lyz3zjkx2csh0xdy1zpx8s32qp1p3sig57mwi9xhgpqjyf0axmb")))) + (build-system emacs-build-system) + (home-page "https://github.com/tuhdo/semantic-refactor") + (synopsis "Refactoring tool for C/C++ and Lisp dialects") + (description "A refactoring tool based on the Emacs Semantic parser +framework. For C and C++ it supports operations such as: + address@hidden address@hidden Generating class implementations address@hidden Generating function prototypes address@hidden Converting functions to function pointers address@hidden Moving semantic units address@hidden etc... address@hidden enumerate + +For Lisp dialects like Clojure, ELisp, and Scheme, it supports operations such +as: + address@hidden address@hidden Formatting the whole buffer address@hidden Converting sexpressions to one or multiple lines address@hidden etc... address@hidden enumerate\n") + (license license:gpl3+)))) + (define-public emacs-nhexl-mode (package (name "emacs-nhexl-mode") -- 2.21.0