notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

Port details
ammonite Provides a system shell in the high-level Scala language
2.5.11 devel on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 2.5.11Version of this port present on the latest quarterly branch.
Maintainer: freebsd-ports@jan0sch.de search for ports maintained by this maintainer
Port Added: 2022-01-18 16:18:05
Last Update: 2023-10-19 07:07:30
Commit Hash: 4f04530
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.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (4 items)
Collapse this list.
  1. bin/ammonite
  2. /usr/local/share/licenses/ammonite-2.5.11/catalog.mk
  3. /usr/local/share/licenses/ammonite-2.5.11/LICENSE
  4. /usr/local/share/licenses/ammonite-2.5.11/MIT
Collapse this list.
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 = 1697614177 SHA256 (ammonite/3.2-2.5.11) = 384cf08e2591be4d199c75cf1913d44c043466b8cddeaa21dd5669d10f94a18f SIZE (ammonite/3.2-2.5.11) = 64675864

Packages (timestamps in pop-ups are UTC):
ammonite
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest2.5.112.5.11-2.5.112.5.11---
FreeBSD:13:quarterly2.5.112.5.112.5.62.5.112.5.11-2.5.112.5.11
FreeBSD:14:latest2.5.112.5.112.5.5-2.5.11--2.5.6
FreeBSD:14:quarterly2.5.112.5.11--2.5.11-2.5.112.5.11
FreeBSD:15:latest2.5.112.5.11n/a-n/a-2.5.112.5.11
FreeBSD:15:quarterly--n/a-n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Runtime dependencies:
  1. java : java/openjdk8
There are no ports dependent upon this port

Configuration Options:
No options to configure
Options name:
devel_ammonite
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:
Expand this list (1 items)
Collapse this list.
  1. https://github.com/lihaoyi/Ammonite/releases/download/2.5.11/
Collapse this list.
Port Moves
  • port moved here from shells/ammonite on 2022-01-18
    REASON: Ammonite dropped built-in shell support

Number of commits found: 8

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
2.5.11
19 Oct 2023 07:07:30
commit hash: 4f045302f6e9d25939adf4a659192ca2df34e19dcommit hash: 4f045302f6e9d25939adf4a659192ca2df34e19dcommit hash: 4f045302f6e9d25939adf4a659192ca2df34e19dcommit hash: 4f045302f6e9d25939adf4a659192ca2df34e19d files touched by this commit
Robert Clausecker (fuz) search for other commits by this committer
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
commit hash: 4cda17ab14588e6e4fdac7f697e246554ce82af3commit hash: 4cda17ab14588e6e4fdac7f697e246554ce82af3commit hash: 4cda17ab14588e6e4fdac7f697e246554ce82af3commit hash: 4cda17ab14588e6e4fdac7f697e246554ce82af3 files touched by this commit
Muhammad Moinur Rahman (bofh) search for other commits by this committer
*/*: 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
commit hash: 0e2dea2d2cd1116cf374b530bac403d72604d3f2commit hash: 0e2dea2d2cd1116cf374b530bac403d72604d3f2commit hash: 0e2dea2d2cd1116cf374b530bac403d72604d3f2commit hash: 0e2dea2d2cd1116cf374b530bac403d72604d3f2 files touched by this commit
Fernando Apesteguía (fernape) search for other commits by this committer
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
commit hash: e5640325d406ed2e0436d58f79f5dbd2c2bc01aacommit hash: e5640325d406ed2e0436d58f79f5dbd2c2bc01aacommit hash: e5640325d406ed2e0436d58f79f5dbd2c2bc01aacommit hash: e5640325d406ed2e0436d58f79f5dbd2c2bc01aa files touched by this commit
Li-Wen Hsu (lwhsu) search for other commits by this committer
Author: Jens Grassel
devel/ammonite: Update to 2.5.5

PR:		268637
07 Sep 2022 21:58:51
commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
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
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
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 View all of this commit message)
2.5.3
20 Apr 2022 13:48:30
commit hash: 81647a67063cfdddbaec13c7294ea657a27bb043commit hash: 81647a67063cfdddbaec13c7294ea657a27bb043commit hash: 81647a67063cfdddbaec13c7294ea657a27bb043commit hash: 81647a67063cfdddbaec13c7294ea657a27bb043 files touched by this commit
Mikael Urankar (mikael) search for other commits by this committer
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
commit hash: 2d46959df26a2dd3e99521dc5fb5b1f0dc67c2fbcommit hash: 2d46959df26a2dd3e99521dc5fb5b1f0dc67c2fbcommit hash: 2d46959df26a2dd3e99521dc5fb5b1f0dc67c2fbcommit hash: 2d46959df26a2dd3e99521dc5fb5b1f0dc67c2fb files touched by this commit
Fernando Apesteguía (fernape) search for other commits by this committer
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)

Number of commits found: 8