Package Details: alloy 6.2.0-1

Git Clone URL: https://aur.archlinux.org/alloy.git (read-only, click to copy)
Package Base: alloy
Description: A lightweight modelling language for software design.
Upstream URL: https://alloytools.org/
Keywords: formal_methods model_checking
Licenses: MIT
Submitter: rodprice
Maintainer: dkasak
Last Packager: dkasak
Votes: 23
Popularity: 0.000000
First Submitted: 2009-07-27 20:29 (UTC)
Last Updated: 2025-01-12 16:07 (UTC)

Dependencies (1)

Required by (0)

Sources (4)

Pinned Comments

ADSWT518 commented on 2022-05-13 03:37 (UTC) (edited on 2022-05-13 03:38 (UTC) by ADSWT518)

Alloy 6 uses new symbols (exactly two: the single quote ' and the semicolon ;) and several new keywords (as well as ones reserved for possible future extensions) listed below in alphabetical order:

after always before enabled event eventually historically invariant modifies once releases since steps triggered until var

Alloy 6 is compatible with old models as long as they don’t use these symbols or keywords. On the other hand, if an old model of yours uses single quotes or some of these keywords (as identifiers), then you will have to replace them to ensure that Alloy 6 interprets your model as before (for instance changing var into var_ or variable or foo). Notice the single quote can for instance be replaced with the double quote symbol " (which is legal Alloy).

ref: http://alloytools.org/alloy6.html

Latest Comments

1 2 Next › Last »

ADSWT518 commented on 2025-01-11 06:31 (UTC)

@dkasak Thank you for your comment. But I don't have time to maintain this package right now. Maybe you can help update the package yourself, thank you.

dkasak commented on 2025-01-10 15:35 (UTC)

Alloy 6.2.0 is out. Attaching a PKGBUILD diff.

diff --git a/PKGBUILD b/PKGBUILD
index aa53984..559efb7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
 # Contributor: Rodney Price <rod@thirdoption.info>

 pkgname="alloy"
-pkgver=6.1.0
+pkgver=6.2.0
 pkgrel=1
 pkgdesc="A lightweight modelling language for software design."
 url="https://alloytools.org/"
@@ -18,20 +18,21 @@ conflicts=()
 replaces=()
 backup=()
 install=
-source=("https://github.com/AlloyTools/org.alloytools.alloy/releases/download/v6.0.0/org.alloytools.alloy.dist.jar"
+source=("https://github.com/AlloyTools/org.alloytools.alloy/releases/download/v6.2.0/org.alloytools.alloy.dist.jar"
         "alloy" "alloy.png" "alloy.desktop")
-md5sums=('44cddd0fe1b7faf21d0f405159efb586'
-         '022d3b7cfbdf281b6c5d8fcefaf747b0'
-         'e117c6a2bb28826e9307cbf094e980ab'
-         '3ad162df79191af3509afe9e232b1269')
+sha256sums=('6b8c1cb5bc93bedfc7c61435c4e1ab6e688a242dc702a394628d9a9801edb78d'
+            'a9fcbd5177739a2baf827cce72f604dbba8a71dad34eee0fbd0b1886922f2f81'
+            '1864d1c67619a3699443c5e81b446d0e9d8cf04544e38b63f8811ac9553c371b'
+            '71abb29793c74fcb2673d4164420cbe1095b2b42213e6d5a2171e6cd027288ab')
+

 package() {
   mkdir -p ${pkgdir}/usr/share/alloy
   mkdir -p ${pkgdir}/usr/bin
   mkdir -p ${pkgdir}/usr/share/{applications,pixmaps}
-  
+
   cd ${srcdir}
-  install -m 644 -D org.alloytools.alloy.dist.jar ${pkgdir}/usr/share/alloy/alloy6.1.0.jar
+  install -m 644 -D org.alloytools.alloy.dist.jar ${pkgdir}/usr/share/alloy/alloy6.2.0.jar
   install -m 755 -D alloy ${pkgdir}/usr/bin/
   # icon
   install -Dm644 alloy.png $pkgdir/usr/share/pixmaps/alloy.png
diff --git a/alloy b/alloy
index 3072e62..f64194b 100755
--- a/alloy
+++ b/alloy
@@ -2,4 +2,4 @@
 #
 # A simple wrapper launcher script

-java -jar /usr/share/alloy/alloy6.1.0.jar "$@"
+java -jar /usr/share/alloy/alloy6.2.0.jar "$@"

ADSWT518 commented on 2022-05-13 03:37 (UTC) (edited on 2022-05-13 03:38 (UTC) by ADSWT518)

Alloy 6 uses new symbols (exactly two: the single quote ' and the semicolon ;) and several new keywords (as well as ones reserved for possible future extensions) listed below in alphabetical order:

after always before enabled event eventually historically invariant modifies once releases since steps triggered until var

Alloy 6 is compatible with old models as long as they don’t use these symbols or keywords. On the other hand, if an old model of yours uses single quotes or some of these keywords (as identifiers), then you will have to replace them to ensure that Alloy 6 interprets your model as before (for instance changing var into var_ or variable or foo). Notice the single quote can for instance be replaced with the double quote symbol " (which is legal Alloy).

ref: http://alloytools.org/alloy6.html

Aecturus commented on 2018-03-07 12:45 (UTC)

I noticed that the download URL in the PKGBUILD is not valid anymore. The correct link is "http://alloytools.org/download/alloy4.2_2015-02-22.jar".

aspirogrammer commented on 2015-04-03 05:27 (UTC)

Indeed (not sure how why did the old PKGBUILD manage to install). Fixed, should be okay now.

toothpaste commented on 2015-04-01 13:08 (UTC)

The PKGBUILD sources `../alloy`, which fails. When I manually modified this to simply read `alloy`, it worked.

aspirogrammer commented on 2015-03-09 02:26 (UTC)

The package switched to "Experimental" version (from "Stable"), which is updated more frequently.

aspirogrammer commented on 2014-08-13 15:52 (UTC)

Out of date?

rodprice commented on 2012-01-16 21:44 (UTC)

The install file attempted to source alloy.sh directly, but apparently it doesn't work so well. I've replaced it with a message to the user asking them to source the file by hand. vnoel: Those lines were a hack used on my local machine. I've removed them. Thanks for pointing it out.

vnoel commented on 2012-01-15 13:44 (UTC)

Hedd: you just needed to source the profile file.