gnu: perl6-oo-monitors: Update to 1.1.1.

* gnu/packages/perl6.scm (perl6-oo-monitors): Update to 1.1.1.
[source]: Reindent.
[synopsis]: Replace mention of Perl with Raku.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Paul A. Patience 2022-04-29 05:19:09 +00:00 committed by Efraim Flashner
parent bf985cdbfc
commit 67a7460b8a
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 10 additions and 12 deletions

View File

@ -615,22 +615,20 @@ from base64.")
(define-public perl6-oo-monitors (define-public perl6-oo-monitors
(package (package
(name "perl6-oo-monitors") (name "perl6-oo-monitors")
(version "1.1") (version "1.1.1")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/jnthn/oo-monitors") (url "https://github.com/jnthn/oo-monitors")
;; The commit where 1.1 was "tagged" (commit (string-append "release-" version))))
(commit "494db3a3852854f30a80c9bd1489a7d5e429e7c5"))) (file-name (git-file-name name version))
(file-name (git-file-name name version)) (sha256
(sha256 (base32 "1aqb0x2vnmpi3knkf5v5aix6h29ln80gpxwa181i8kwfpxs8ir9f"))))
(base32
"1sbw2x54wwjjanghjnc7ipmplaw1srvbrphsdv4ym6cipnbmbj9x"))))
(build-system rakudo-build-system) (build-system rakudo-build-system)
(arguments '(#:with-zef? #f)) (arguments '(#:with-zef? #f))
(home-page "https://github.com/jnthn/oo-monitors") (home-page "https://github.com/jnthn/oo-monitors")
(synopsis "Monitors with condition variables for Perl 6") (synopsis "Monitors with condition variables for Raku")
(description "A monitor provides per-instance mutual exclusion for objects. (description "A monitor provides per-instance mutual exclusion for objects.
This means that for a given object instance, only one thread can ever be inside This means that for a given object instance, only one thread can ever be inside
its methods at a time. This is achieved by a lock being associated with each its methods at a time. This is achieved by a lock being associated with each