Skip to content

Commit d54d787

Browse files
committedJan 8, 2025··
refactor: apply resyntax
Signed-off-by: Kaiyang Wu <self@origincode.me>
1 parent b7f8087 commit d54d787

File tree

3 files changed

+20
-25
lines changed

3 files changed

+20
-25
lines changed
 

‎aosc/private/arch.rkt

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@
66

77
(define/contract (arch? sym)
88
(-> symbol? boolean?)
9-
(if (member sym '(any amd64 arm64 loongarch64 ppc64el loongson3 riscv64))
10-
#t
11-
#f))
9+
(and (member sym '(any amd64 arm64 loongarch64 ppc64el loongson3 riscv64)) #t))

‎aosc/private/hashing-algorithm.rkt

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
(define/contract (algorithm? sym)
88
(-> symbol? boolean?)
9-
(if (member sym '(md2 md5 sha1 sha256 sha224 sha384 sha512 blake2b blake2s
10-
sha3_224 sha3_256 sha3_384 sha3_512))
11-
#t
12-
#f))
9+
(and
10+
(member
11+
sym
12+
'(md2 md5 sha1 sha256 sha224 sha384 sha512 blake2b blake2s sha3_224 sha3_256 sha3_384 sha3_512))
13+
#t))

‎aosc/private/spec.rkt

+14-18
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363
(cond
6464
[(boolean? method) (boolean->symbol method)]
6565
[(symbol? method)
66-
(if (not (equal? method 'recursive))
67-
(raise-argument-error 'submodule "boolean? or 'recursive" method)
68-
method)])))
66+
(unless (equal? method 'recursive)
67+
(raise-argument-error 'submodule "boolean? or 'recursive" method))
68+
method])))
6969

7070
(define/contract (copy-repo? val)
7171
(-> boolean? src-option?)
@@ -82,12 +82,9 @@
8282
(define/contract (tbl url #:options [options null])
8383
(->* (string?) (#:options (listof src-option?)) src?)
8484
(define allowed-options '(rename))
85-
(for-each (λ (opt)
86-
(when (not (member (src-option-field opt) allowed-options))
87-
(raise-user-error 'tbl
88-
"~a option is not allowed in tbl source"
89-
(src-option-field opt))))
90-
options)
85+
(for ([opt (in-list options)]
86+
#:when (not (member (src-option-field opt) allowed-options)))
87+
(raise-user-error 'tbl "~a option is not allowed in tbl source" (src-option-field opt)))
9188
(src 'tbl options url))
9289

9390
(define/contract (src->string src)
@@ -228,11 +225,11 @@
228225
(when (and (hash? srcs)
229226
(not (equal? (hash-keys srcs #t) (hash-keys chksums #t))))
230227
(raise-user-error 'spec "SRCS and CHKSUMS have mismatching ARCH args"))
231-
(when (not (if (list? srcs)
232-
(equal? (length srcs) (length chksums))
233-
(andmap (λ (s c) (equal? (length s) (length c)))
234-
(hash->list srcs #t)
235-
(hash->list chksums #t))))
228+
(unless (if (list? srcs)
229+
(equal? (length srcs) (length chksums))
230+
(andmap (λ (s c) (equal? (length s) (length c)))
231+
(hash->list srcs #t)
232+
(hash->list chksums #t)))
236233
(raise-user-error 'spec "SRCS and CHKSUMS length mismatch"))
237234

238235
;; Final struct
@@ -243,19 +240,18 @@
243240
(displayln (spec-entry->string "VER" (spec-type-ver spec)) out)
244241
(when (spec-type-rel spec)
245242
(displayln (spec-entry->string "REL" (spec-type-rel spec)) out))
246-
(when (not (spec-type-dummysrc? spec))
243+
(unless (spec-type-dummysrc? spec)
247244
(if (list? (spec-type-srcs spec))
248245
(displayln (srcs->string (spec-type-srcs spec)) out)
249246
(for ([arch-srcs (hash->list (spec-type-srcs spec))])
250247
(displayln (srcs->string (cdr arch-srcs) (car arch-srcs)) out))))
251248
(when (spec-type-subdir spec)
252249
(displayln (spec-entry->string "SUBDIR" (spec-type-subdir spec) #t) out))
253-
(when (not (spec-type-dummysrc? spec))
250+
(unless (spec-type-dummysrc? spec)
254251
(if (list? (spec-type-chksums spec))
255252
(displayln (chksums->string (spec-type-chksums spec)) out)
256253
(for ([arch-chksums (hash->list (spec-type-chksums spec))])
257-
(displayln (chksums->string (cdr arch-chksums) (car arch-chksums))
258-
out))))
254+
(displayln (chksums->string (cdr arch-chksums) (car arch-chksums)) out))))
259255
(when (spec-type-chkupdate spec)
260256
(displayln (chkupdate->string (spec-type-chkupdate spec)) out))
261257
(when (spec-type-dummysrc? spec)

0 commit comments

Comments
 (0)
Please sign in to comment.