git: 8a283d64b05b - main - devel/ammonite: update to 3.0.2

From: Hiroki Tagato <tagattie_at_FreeBSD.org>
Date: Tue, 17 Jun 2025 14:36:46 UTC
The branch main has been updated by tagattie:

URL: https://cgit.FreeBSD.org/ports/commit/?id=8a283d64b05b69e1216c58971c410a8f201f4a2a

commit 8a283d64b05b69e1216c58971c410a8f201f4a2a
Author:     Jens Grassel <freebsd-ports@jan0sch.de>
AuthorDate: 2025-03-27 14:44:34 +0000
Commit:     Hiroki Tagato <tagattie@FreeBSD.org>
CommitDate: 2025-06-17 14:36:30 +0000

    devel/ammonite: update to 3.0.2
    
    Changelog: https://github.com/com-lihaoyi/Ammonite/releases/tag/3.0.2
    
    - support for Scala 2.13.16, 3.5.1, 3.3.4, 3.3.5
    - added more Scala 3 keywords to the internal parser
    - various dependency updates
    
    PR:             285702
    Reported by:    Jens Grassel <freebsd-ports@jan0sch.de> (maintainer)
    Reviewed by:    Siva Mahadevan <me@svmhdvn.name>
---
 devel/ammonite/Makefile    |  2 +-
 devel/ammonite/distinfo    |  6 +++---
 devel/ammonite/pkg-message | 10 +++++-----
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/devel/ammonite/Makefile b/devel/ammonite/Makefile
index acb4f95792ae..b98a79807f58 100644
--- a/devel/ammonite/Makefile
+++ b/devel/ammonite/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	ammonite
-DISTVERSION=	3.0.0-M2
+DISTVERSION=	3.0.2
 CATEGORIES=	devel java
 MASTER_SITES=	https://github.com/lihaoyi/Ammonite/releases/download/${DISTVERSION}/
 DISTNAME=	3.3-${DISTVERSION}
diff --git a/devel/ammonite/distinfo b/devel/ammonite/distinfo
index 1ed5a2a742dc..c5f91c6b6ab9 100644
--- a/devel/ammonite/distinfo
+++ b/devel/ammonite/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1719213188
-SHA256 (ammonite/3.3-3.0.0-M2) = 57b4e3812123861e2acf339c9999f6c23fe2fc4dbfd2c87dc5c52c31bdc37d73
-SIZE (ammonite/3.3-3.0.0-M2) = 57189748
+TIMESTAMP = 1743086354
+SHA256 (ammonite/3.3-3.0.2) = 3353e0f87b164a493ad0d5333505f13a28e77c5c57e628daa3be8f85acfbca44
+SIZE (ammonite/3.3-3.0.2) = 89185450
diff --git a/devel/ammonite/pkg-message b/devel/ammonite/pkg-message
index 30c66399df78..d24c4d1bf14e 100644
--- a/devel/ammonite/pkg-message
+++ b/devel/ammonite/pkg-message
@@ -4,15 +4,15 @@
 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")
+interp.load.ivy("com.lihaoyi"   %% "os-lib"    % "0.11.4")
+interp.load.ivy("org.typelevel" %% "cats-core" % "2.13.0")
 
 // This @ is necessary for Ammonite to process the `interp.load.ivy`
 // before continuing.
 @
-import cats._
-import cats.data._
-import cats.syntax.all._
+import cats.*
+import cats.data.*
+import cats.syntax.all.*
 EOM
 }
 ]