Port details |
- ammonite Provides a system shell in the high-level Scala language
- 3.0.0.m2 devel
=2 3.0.0.m2Version of this port present on the latest quarterly branch. - Maintainer: freebsd-ports@jan0sch.de
 - Port Added: 2022-01-18 16:18:05
- Last Update: 2024-12-31 08:57:55
- Commit Hash: 0835676
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py311-PyOpenGL, p5-Sane
- Also Listed In: java
- License: MIT
- WWW:
- https://ammonite.io/
- Description:
- A modern replacement for the Bash system shell. Provides a systems shell in
the high-level Scala language, letting you seamlessly mix system operations
with real code without the hassle or the frustration of trying to write
complex code in Bash.
Ammonite lets you use the Scala language for scripting purposes: in a
Read-Evaluate-Print-Loop (REPL), as scripts, as a library to use
in existing projects, or as a standalone systems shell.
¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- ammonite>0:devel/ammonite
- To install the port:
- cd /usr/ports/devel/ammonite/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/ammonite
- pkg install ammonite
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: ammonite
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1719213188
SHA256 (ammonite/3.3-3.0.0-M2) = 57b4e3812123861e2acf339c9999f6c23fe2fc4dbfd2c87dc5c52c31bdc37d73
SIZE (ammonite/3.3-3.0.0-M2) = 57189748
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Runtime dependencies:
-
- java : java/openjdk8
- There are no ports dependent upon this port
Configuration Options:
- No options to configure
- Options name:
- devel_ammonite
- USES:
- java
- pkg-message:
- For install:
- To use ammonite fully you should setup a configuration file
~/.ammonite/predef.sc. Below is an example:
interp.load.ivy("com.lihaoyi" %% "os-lib" % "0.9.1")
interp.load.ivy("org.typelevel" %% "cats-core" % "2.9.0")
// This @ is necessary for Ammonite to process the `interp.load.ivy`
// before continuing.
@
import cats._
import cats.data._
import cats.syntax.all._
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
3.0.0.m2 31 Dec 2024 08:57:55
    |
Muhammad Moinur Rahman (bofh)  |
Mk/**java.mk: Convert bsd.java.mk to USES
The following features have been added or changed:
- Instead of USE_JAVA use USES=java. This defaults to
USES=java:build,run if NO_BUILD is undefined. Else it defaults to
USES=java:run
- Instead of USE_ANT=yes use USES=java:ant which also implies
USES=java:build
- Instead of JAVA_BUILD=yes use USES=java:build. Does not imply run or
extract
- Instead of JAVA_EXTRACT=yes use USES=java:extract does not imply
build or run
- Instead of JAVA_RUN=yes use USES=java:run does not imply extract or
build
- Instead of USE_JAVA=<version> use USES=java and JAVA_VERSION=<version>
Approved by: mat (portmgr), glewis
Differential Revision: https://reviews.freebsd.org/D48201 |
3.0.0.m2 25 Jun 2024 16:13:02
    |
Fernando Apesteguía (fernape)  Author: Jens Grassel |
devel/ammonite: Update to 3.0.0-M2
Changelog
---------
* Support for Scala 2.13.14
* Added more Scala 3 keywords to the internal parser
* API facing dependency updates: geny 1.1.0, os-lib 0.10.0, pprint 0.9.0,
requests 0.8.2, sourcecode 0.4.1
* Various other dependency updates
PR: 279940
Reported by: freebsd-ports@jan0sch.de (maintainer) |
3.0.0.m1 13 May 2024 21:19:58
    |
Robert Clausecker (fuz)  Author: Jens Grassel |
devel/ammonite: Update to 3.0.0-M1
Changelog:
- This release is not binary compatible with Ammonite 2.5!
- Support for Scala 2.12.18, 2.12.19, 2.13.11, 2.13.12, 2.13.13, 3.3.1, 3.3.2,
3.3.3
- The Scala 3 version now no longer depends on dependencies built with Scala
2.13
- Various dependency updates
- Internal fixes and improvements
PR: 278360 |
2.5.11 19 Oct 2023 07:07:30
    |
Robert Clausecker (fuz)  Author: Jens Grassel |
devel/ammonite: Update to version 2.5.11
Changelog: https://ammonite.io/#Changelog
PR: 274553 |
2.5.6 04 Apr 2023 18:10:53
    |
Muhammad Moinur Rahman (bofh)  |
*/*: Refactor java/openjdk7 removal
- java/openjdk7* has been removed from the tree since 2022-09-03 however
the relevant codebases in bsd.java.mk has not been removed and the
consumers has also not been updated to use the next jdk version. This
commit updates all relevant consumers to use JAVA_VERSION=8 instead of
JAVA_VERSION=1.7
- Since the introduction of jdk version 18 it looks like similar with
jdk version 8(java version string 1.8). This is prone to error as it
looks similar and is only seperated by a '.'. Remove using
JAVA_VERSION with dotted fomat of java version string and update all
consumers to utilize version 8 instead of 1.8.
Approved by: portmgr (blanket) |
2.5.6 14 Jan 2023 17:18:17
    |
Fernando Apesteguía (fernape)  Author: Jens Grassel |
devel/ammonite: Update to 2.5.6
* Update coursier to 2.1.0-RC1 which also closes some potential security
vulnerabilities
* Improved Scala 3 support including @main annotation support
* Added support for Scala 3.2.1
PR: 268900
Reported by: freebsd-ports@jan0sch.de
MFH: 2023Q1 (security fix) |
2.5.5 29 Dec 2022 14:55:03
    |
Li-Wen Hsu (lwhsu)  Author: Jens Grassel |
devel/ammonite: Update to 2.5.5
PR: 268637 |
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) |
2.5.3 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 ) |
2.5.3 20 Apr 2022 13:48:30
    |
Mikael Urankar (mikael)  Author: Jens Grassel |
devel/ammonite: Update to 2.5.3
- Print error positions in Scala 3
- Add support for Scala 3.1.2
- Bump uPickle to 1.6.0
PR: 263313 |
2.5.1 18 Jan 2022 16:15:08
    |
Fernando Apesteguía (fernape)  Author: Jens Grassel |
shells/ammonite: Update to 2.5.1 and MOVE
The authors removed the shell functionality but it is still a good dev-tool.
Changelog
---------
* Added support for Scala 2.13.8
* Re-added old Main entry point for better compatibility with Ammonite 2.4 and
older
* Dropped built-in support for shell operations
* move from shells/ammonite to devel/ammonite
PR: 261191
Reported by: freebsd-ports@jan0sch.de (maintainer) |