Skip to content

Commit

Permalink
Updates for new MELPA format (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiw authored Nov 28, 2024
1 parent a782ad9 commit 8fb8640
Show file tree
Hide file tree
Showing 10 changed files with 77 additions and 42 deletions.
2 changes: 1 addition & 1 deletion edts-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
(f-join edts-root-directory "test_data")
"Directory where edts test data are located.")

(require 'edts)
(require 'edts-misc)
(require 'edts-api)
(require 'edts-code)
(require 'edts-complete)
Expand Down
33 changes: 0 additions & 33 deletions edts-pkg.el

This file was deleted.

68 changes: 68 additions & 0 deletions edts.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
;;; edts.el --- Erlang Development Tool Suite

;; Copyright (C) 2012-2024 Thomas Järvstrand <[email protected]>
;; Copyright (C) 2012-2024 Håkan Nilsson
;; Copyright (C) 2020-2024 Sebastian Weddmark Olsson <[email protected]>

;; Author: Thomas Järvstrand <[email protected]>
;; Sebastian Weddmark Olsson <[email protected]>

;; URL: https://github.com/sebastiw/edts
;; Keywords: erlang, tools, programming, development

;; Package-Version: 0.0.0.0
;; Package-Requires: (
;; (auto-complete "20201213.1255")
;; (auto-highlight-symbol "20211106.638")
;; (dash "20210609.1330")
;; (emacs "24.3")
;; (erlang "20210315.1640")
;; (f "20191110.1357")
;; (popup "20210317.138")
;; (s "20210603.736"))

;; SPDX-License-Identifier: LGPL-3.0-or-later

;; This file is part of EDTS.
;;
;; EDTS is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Lesser General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; EDTS is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Lesser General Public License for more details.
;;
;; You should have received a copy of the GNU Lesser General Public License
;; along with EDTS. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; The Erlang Development Tool Suite (EDTS) is a package of useful development
;; tools for working with the Erlang programming language in Emacs. It bundles a
;; number of useful external packages, together with specialized Erlang plugins for
;; them, and its own features to create a complete and efficient development
;; environment that is easy to set up.

;; Currently EDTS provides:
;; - A snazzy erlang shell wrapper with syntax highlighting and auto-completion.
;; - In-buffer flymake-like compilation
;; - In-buffer xref checks
;; - Dialyzer integration
;; - Rudimentary project support
;; - Code navigation.
;; - Auto-completion, using auto-complete-mode
;; - Auto-highlighting, using auto-highlight-mode
;; - Convenient access to Erlang documentation
;; - In-buffer running of unit tests
;; - A usable interface to the erlang debugger

;; For more information, hit `M-x describe-minor-mode RET edts-mode RET`.

;;; Code:

(provide 'edts)

;;; edts.el ends here
2 changes: 1 addition & 1 deletion elisp/edts/edts-complete-built-in-function-source.el
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
(require 'cl-macs)
(require 'ferl)

(require 'edts)
(require 'edts-misc)
(require 'edts-log)
(require 'edts-man)

Expand Down
4 changes: 2 additions & 2 deletions elisp/edts/edts.el → elisp/edts/edts-misc.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; edts.el --- Misc edts-related functionality.
;;; edts-misc.el --- Misc edts-related functionality.

;; Copyright 2012-2013 Thomas Järvstrand <[email protected]>

Expand Down Expand Up @@ -366,4 +366,4 @@ spaces and breaking lines at column MAX-COL."
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Tests

(provide 'edts)
(provide 'edts-misc)
2 changes: 1 addition & 1 deletion elisp/edts/edts-plugin.el
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
(require 'f)
(require 's)

(require 'edts)
(require 'edts-misc)

(defconst edts-plugin-directory-name
"lib"
Expand Down
2 changes: 1 addition & 1 deletion elisp/edts/edts-refactor.el
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
;; projects and communicate with the correct nodes.
;;

(require 'edts)
(require 'edts-misc)

;; Originally from distel
(defun edts-refactor-extract-function (name start end)
Expand Down
2 changes: 1 addition & 1 deletion elisp/edts/edts-shell.el
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

(require 'cl-macs)

(require 'edts)
(require 'edts-misc)
(require 'edts-api)
(require 'edts-complete)

Expand Down
2 changes: 1 addition & 1 deletion lib/edts_debug/edts-debug-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
(require 'cl-macs)
(require 'f)

(require 'edts)
(require 'edts-misc)
(require 'edts-api)
(require 'edts-debug)
(require 'edts-debug-list-breakpoint-mode)
Expand Down
2 changes: 1 addition & 1 deletion lib/edts_xref/edts-xref.el
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

(require 'dash)

(require 'edts)
(require 'edts-misc)
(require 'edts-api)
(require 'edts-code)
(require 'edts-face)
Expand Down

0 comments on commit 8fb8640

Please sign in to comment.