Port details |
- clojure-mode.el Emacs lisp module for the Clojure language
- 5.11.0_15,1 lang =2 5.11.0_15,1Version of this port present on the latest quarterly branch.
- There is no maintainer for this port.
- Any concerns regarding this port should be directed to the FreeBSD Ports mailing list via ports@FreeBSD.org
- Port Added: 2008-12-26 05:35:25
- Last Update: 2024-07-04 21:31:24
- Commit Hash: b946d41
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- Also Listed In: elisp
- License: GPLv3+
- WWW:
- https://github.com/clojure-emacs/clojure-mode
- Description:
- Clojure Mode is an Emacs editing mode. It provides Emacs font-lock,
indentation, navigation and refactoring for the Clojure(Script) programming
language (https://clojure.org/).
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - There is no configure plist information for this port.
- Dependency lines:
-
- clojure-mode.el>0:lang/clojure-mode.el
- To install the port:
- cd /usr/ports/lang/clojure-mode.el/ && make install clean
- To add the package, run one of these commands:
- pkg install lang/clojure-mode.el
- pkg install clojure-mode.el
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: clojure-mode.el
- Package flavors (<flavor>: <package>)
- full: clojure-mode.el
- canna: clojure-mode.el-emacs_canna
- nox: clojure-mode.el-emacs_nox
- wayland: clojure-mode.el-emacs_wayland
- devel_full: clojure-mode.el-emacs_devel
- devel_nox: clojure-mode.el-emacs_devel_nox
- distinfo:
- TIMESTAMP = 1573819927
SHA256 (clojure-emacs-clojure-mode-5.11.0_GH0.tar.gz) = f732885f077820331d5fe093c039b70dd1a7da4491db08c37bf030bcb6fa9bd3
SIZE (clojure-emacs-clojure-mode-5.11.0_GH0.tar.gz) = 22646518
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- emacs-29.4 : editors/emacs@full
- Runtime dependencies:
-
- emacs-29.4 : editors/emacs@full
- This port is required by:
- for Run
-
- devel/clojure-cider
Configuration Options:
- No options to configure
- Options name:
- lang_clojure-mode.el
- USES:
- emacs
- pkg-message:
- For install:
- To use clojure-mode in Emacs, add the following lines to your ~/.emacs:
(autoload 'clojure-mode "clojure-mode" "A mode for clojure lisp" t)
(add-to-list 'auto-mode-alist '("\\.clj$" . clojure-mode))
In addition, if you are also using paredit, you may wish to make it
more Clojure aware:
(autoload 'paredit-mode "paredit" "Parenthesis editing minor mode" t)
(eval-after-load "clojure-mode"
'(progn
(defun clojure-paredit-hook () (paredit-mode +1))
(add-hook 'clojure-mode-hook 'clojure-paredit-hook)
(define-key clojure-mode-map "{" 'paredit-open-brace)
(define-key clojure-mode-map "}" 'paredit-close-brace)))
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
5.11.0_15,1 04 Jul 2024 21:31:24 |
Joseph Mingrone (jrm) |
Chase major version update of editors/emacs-devel
Bump PORTREVISION of most USES=emacs ports after editors/emacs-devel
major version increased from 30 to 31.
Sponsored by: The FreeBSD Foundation |
5.11.0_14,1 23 Jun 2024 22:10:50 |
Joseph Mingrone (jrm) |
Chase editors/emacs update to 29.4
- Bump Emacs version in Mk/Uses/emacs.mk to update version-specific
paths
- Bump PORTREVISION of ports with USES=emacs. This is required for two
reasons. Emacs lisp files need to be byte compiled for the new Emacs
version, and files installed under, e.g., EMACS_VERSION_SITE_LISPDIR
need to be relocated.
Reviewed by: ashish, yasu
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D45705 |
5.11.0_13,1 26 Mar 2024 22:51:47 |
Joseph Mingrone (jrm) |
Chase editors/emacs update
- Bump Emacs version in Mk/Uses/emacs.mk to update version-specific
paths
- Bump PORTREVISION of ports with USES=emacs. This is required for two
reasons. Emacs lisp files need to be byte compiled for the new Emacs
version, and files installed under, e.g., EMACS_VERSION_SITE_LISPDIR
need to be relocated.
Reviewed by: ashish
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D44492 |
5.11.0_12,1 27 Jan 2024 22:33:05 |
Joseph Mingrone (jrm) |
*/*: Chase editors/emacs update
- Bump Emacs version in Mk/Uses/emacs.mk to update version-specific
paths
- Bump PORTREVISION of ports with USES=emacs. This is required for two
reasons. Emacs lisp files need to be byte compiled for the new Emacs
version, and files installed under, e.g., EMACS_VERSION_SITE_LISPDIR
need to be relocated.
Reviewed by: ashish
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D43615 |
5.11.0_11,1 20 Aug 2023 00:53:11 |
Yasuhiro Kimura (yasu) |
editors/emacs: Update to 29.1
* Update Canna patch to the one for Emacs 29.
* Add new options PGTK, SQLITE3, TREESITTER and WEBP. SQLITE3 and
TREESITTER are ON by default. PGTK and WEBP options are excluded
from nox flavor.
* CARGO option doesn't imply XFT but prevents it. It is caused as a
result of adding pure GTK support (PGTK option).
* OTK options doesn't imply XTF any more. It is also caused as a
result of adding pure GTK support.
* Update NATIVECOMP option so it specifies ahead-of-time compilation
via the configure argument.
* Remove "experimental" from NATIVECOMP_DESC.
* Add print/freetype2 and x11-fonts/fontconfig to CAIRO_LIB_DEPENDS
and GTK3_LIB_DEPENDS. Necessary to link emacs binary with shared (Only the first 15 lines of the commit message are shown above ) |
5.11.0_10,1 23 Apr 2023 09:09:58 |
Gerald Pfeifer (gerald) |
*: Bump PORTREVISIONs for math/mpc update to 1.3.1 |
5.11.0_8,1 30 Nov 2022 07:06:37 |
Yasuhiro Kimura (yasu) |
editors/emacs-devel: Update to 2022-11-28 snapshot
Bump PORTREVISION of consumers as EMACS_VER is changed to 30.0.50.
Changes: https://github.com/emacs-mirror/emacs/compare/51589f81...7939184f |
5.11.0_7,1 21 Sep 2022 07:48:19 |
Yasuhiro Kimura (yasu) |
editors/emacs: Update to 28.2
* Remove FCITXPATCH option as extra-patch-src_xfns.c can't be applied
since 28.1.
* Tidy up Makefile with portfmt.
* Bump PORTREVISION of consumers.
ChangeLog: https://www.gnu.org/software/emacs/news/NEWS.28.2
PR: 266454
Exp-run by: antoine
Reviewed by: ashish, jrm
Differential Revision: https://reviews.freebsd.org/D36613 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
5.11.0_6,1 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
5.11.0_6,1 20 Jul 2022 14:22:15 |
Tobias C. Berner (tcberner) |
lang: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Aaron Dalton <aaron@FreeBSD.org>
* Adam Weinberger <adamw@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alex Dupre <ale@FreeBSD.org>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Alonso Cardenas Marquez <acm@FreeBSD.org>
* Andreas Klemm <andreas@klemm.gtn.com>
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Andrey Zakhvatov
* Anton Berezin <tobez@FreeBSD.org>
* Anton Berezin <tobez@tobez.org> (Only the first 15 lines of the commit message are shown above ) |
5.11.0_6,1 07 Apr 2022 22:12:44 |
Joseph Mingrone (jrm) |
Emacs ports: Bump PORTREVISION after Emacs 28.1
Reviewed by: ashish
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D34781 |
5.11.0_5,1 15 Nov 2021 15:19:58 |
Joseph Mingrone (jrm) |
USES=emacs: Chase package name changes
PR: 259259
Differential Revision: https://reviews.freebsd.org/D32613 |
5.11.0_4,1 01 Oct 2021 22:55:27 |
Joseph Mingrone (jrm) |
*: Chase new major version (29) of editors/emacs-devel
Differential Revision: https://reviews.freebsd.org/D32258 |
5.11.0_3,1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
5.11.0_3,1 26 Mar 2021 00:40:45 |
jrm |
editors/emacs: Update to 27.2
This is a bug-fix release with no new features.
https://www.gnu.org/software/emacs/news/NEWS.27.2
Reviewed by: ashish
Differential Revision: https://reviews.freebsd.org/D27700 |
5.11.0_2,1 12 Aug 2020 18:30:07 |
jrm |
editors/emacs: Update to version 27.1
Please refer to the 20200811 UPDATING entry when upgrading
dependent (*-emacs26-*) ports.
Port changes:
- depend on math/gmp
- match upstream by turning CAIRO, HARFBUZZ, and JSON options and on and
turning MAGICK off by default
- remove OPENMP check for graphics/ImageMagick as the openmp is now
included in base
- update EMACS_VER in Mk/Uses/emacs.mk
- bump USES=emacs ports or remove BROKEN for net-im/jabber.el and
deskutils/howm, which now build
Submitted by: HIROSE Yuuji <yuuji@gentei.org> (canna patch)
Reviewed by: ashish
Differential Revision: https://reviews.freebsd.org/D23966 |
5.11.0_1,1 07 Jan 2020 04:55:40 |
jrm |
editors/emacs-devel: Update to latest master branch commit, 4f2b415
This update includes an Emacs major version change from 27.0.50 to 28.0.50.
Ports that may depend on editors/emacs-devel must chase this update
with a PORTREVISION bump.
Submitted by: ashish (maintainer)
Differential Revision: https://reviews.freebsd.org/D23012 |
5.11.0,1 15 Nov 2019 15:40:04 |
vanilla |
Update to 5.11.0. |
5.7.0_1,1 02 Sep 2019 19:21:44 |
rene |
Reset maintainership upon request from former maintainer. |
5.7.0_1,1 13 Aug 2019 22:29:43 |
mat |
onvert to UCL & cleanup pkg-message (categories l-m) |
5.7.0_1,1 31 May 2018 01:18:05 |
jrm |
USES=emacs ports: Bump PORTREVISION for editors/emacs 26.1 upgrade
Or, mark ports that fail to build as BROKEN.
https://lists.freebsd.org/pipermail/freebsd-ports/2018-May/113518.html |
5.7.0,1 13 May 2018 20:55:08 |
dbaio |
lang/clojure-mode.el: Update to 5.7.0
While here, update LICENSE and improve pkg-descr, WWW wasn't
pointing to the project address.
Changes: https://github.com/clojure-emacs/clojure-mode/blob/5.7.0/CHANGELOG.md#570-2018-04-29
PR: 227884
Submitted by: harrigan-s@outlook.com (maintainer) |
5.6.1_2,1 01 Feb 2018 18:03:10 |
jrm |
Flavorize and modernize Emacs ports
- Convert USE_EMACS to USES=emacs
- Remove editors/emacs-nox11 (refer to nox flavors of editors/emacs and
editors/emacs-devel)
- Permit default Emacs flavor to be specified in make.conf
- Rename japanese/migemo-emacs23 to japanese/migemo-emacs
- Update and simplify audio/emms and fix build on FreeBSD 10 [1]
- Update databases/bbdd and fix build on FreeBSD 10 [1]
- Update editors/emacs-devel
- Ensure Makefile shell commands that change directory are executed in a
subshell
- Silence some portlint warnings
[1] By not depending on base texinfo
PR: 225404
Reviewed by: antoine
Approved by: portmgr (mat) ashish (maintainer)
Differential Revision: https://reviews.freebsd.org/D13506 |
5.6.1_1,1 12 Sep 2017 15:38:57 |
ashish |
Chase Emacs update |
5.6.1,1 03 Sep 2017 11:11:58 |
tobik |
lang/clojure-mode.el: Update to 5.6.1
PR: 221818
Submitted by: harrigan-s@outlook.com (new maintainer) |
2.1.1_2,1 19 May 2016 11:09:14 |
amdmi3 |
- Fix trailing whitespace in pkg-messages
Approved by: portmgr blanket |
2.1.1_2,1 07 May 2015 16:32:44 |
mat |
Update ports in the [i-m]* category to not use GH_COMMIT.
With minor cleanups to make things simpler.
With hat: portmgr
Sponsored by: Absolight |
2.1.1_2,1 27 Apr 2015 10:29:28 |
ashish |
- Chase GNU Emacs updates
PR: 199553 |
2.1.1_1,1 05 Nov 2014 13:19:32 |
ashish |
- Chase GNU Emacs updates
PR: 194624 |
2.1.1,1 18 May 2014 19:26:23 |
rpaulo |
Update clojure-mode.el to 2.1.1.
Reviewed by: bapt |
20090718_10 20 Sep 2013 19:53:10 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
lang) |
20090718_10 30 Mar 2013 05:13:30 |
ashish |
GNU Emacs updates
editors/emacs:
- Update to 24.3
- Update CANNA patchset[1]
- Unbreak ARM support by using the patch from emacs-devel port
- Add missing INSTALLS_ICONS[2]
- Remove a patch which is already integrated upstream
- Fix Makefile header
editors/emacs-devel:
- Update to bzr revision 112178
- Fix Makefile header
- Add missing INSTALLS_ICONS[2]
(Only the first 15 lines of the commit message are shown above ) |
20090718_9 04 Sep 2012 17:05:44 |
ashish |
Chase Emacs updates |
20090718_8 01 Aug 2012 16:50:16 |
ashish |
- Bump PORTREVISION to chase Emacs port updates
- Unbreak INDEX caused by databases/lsdb, editors/flim, and editors/semi |
20090718_7 13 Jul 2012 14:14:13 |
tabthorpe |
- Reassign to the heap
- Thank you for your years of service
With hat:: portmgr |
20090718_7 22 Feb 2012 13:31:32 |
ashish |
- Chase Emacs updates
PR: ports/165082 |
20090718_6 17 Oct 2011 06:01:31 |
ashish |
- Chase editors/emacs update |
20090718_5 07 Sep 2011 20:21:30 |
ashish |
Chase editors/emacs update |
20090718_4 27 Aug 2011 22:22:57 |
ashish |
Chase editors/emacs update.
PR: ports/160196 |
20090718_3 03 Jul 2011 13:45:36 |
ohauer |
- remove MD5 |
20090718_3 28 Mar 2010 06:47:48 |
dinoex |
- update to 1.4.1
Reviewed by: exp8 run on pointyhat
Supported by: miwi |
20090718_2 05 Feb 2010 11:46:55 |
dinoex |
- update to jpeg-8 |
20090718_1 18 Sep 2009 23:36:15 |
miwi |
- Update to 20090718
PR: 138952
Submitted by: Peter Schuller <peter.schuller@infidyne.com> (maintainer)
Feature safe: yes |
20081222_1 31 Jul 2009 13:57:52 |
dinoex |
- bump all port that indirectly depends on libjpeg and have not yet been bumped
or updated
Requested by: edwin |
20081222 26 Dec 2008 05:34:51 |
pgollucci |
clojure-mode is an emacs editing mode for the clojure
(www.clojure.org) programming language.
WWW: http://clojure.codestuffs.com/
PR: ports/129857
Submitted by: Peter Schuller <peter.schuller at infidyne.com>
Approved by: araujo (mentor, implicit) |