Skip to content

Commit 1be9996

Browse files
committed
chore: update registry data (2 files)
Automated pantry update via GitHub Actions workflow
1 parent fcfb4fe commit 1be9996

File tree

3 files changed

+42
-6
lines changed

3 files changed

+42
-6
lines changed

src/consts.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Constants used throughout the ts-pkgx package
33
* This file is auto-generated from pantry. Do not edit manually.
4-
* Generated on 2025-08-27T02:34:36.499Z
4+
* Generated on 2025-08-29T02:34:14.078Z
55
*/
66

77
/**
@@ -44,7 +44,7 @@ export const PACKAGE_ALIASES: Record<string, string> = {
4444
} as const
4545

4646
/**
47-
* List of all known packages (1594 total)
47+
* List of all known packages (1595 total)
4848
*/
4949
export const ALL_KNOWN_PACKAGES: readonly string[] = [
5050
'abseil.io',
@@ -375,6 +375,7 @@ export const ALL_KNOWN_PACKAGES: readonly string[] = [
375375
'elementsproject.org',
376376
'elfutils.org',
377377
'elixir-lang.org',
378+
'elixir-lang.org/otp-27',
378379
'elizaOS.github.io',
379380
'elv.sh',
380381
'encore.dev',
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
distributable:
2+
url: https://github.com/elixir-lang/elixir/archive/refs/tags/v{{version}}.tar.gz
3+
strip-components: 1
4+
5+
versions:
6+
github: elixir-lang/elixir
7+
strip: /v/
8+
9+
dependencies:
10+
erlang.org: ^27
11+
12+
build: make install PREFIX="{{prefix}}"
13+
14+
test:
15+
script: |
16+
elixir --version | grep "compiled with Erlang/OTP 27"
17+
18+
mkdir test
19+
cp $FIXTURE test/test.exs
20+
cd test
21+
elixir test.exs
22+
23+
fixture: |
24+
whichfizz = fn
25+
(0, 0, _) -> "FizzBuzz"
26+
(0, _, _) -> "Fizz"
27+
(_, 0, _) -> "Buzz"
28+
(_, _, n) -> n
29+
end
30+
31+
fizzbuzz = fn (n) ->
32+
whichfizz.(rem(n, 3), rem(n, 5), n)
33+
end
34+
35+
[1, 2, "Fizz", 4, "Buzz", "Fizz", 7, 8, "Fizz", "Buzz"] = Enum.map(1..10, fizzbuzz)

src/pantry/vaultproject.io/package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ versions:
77

88
build:
99
dependencies:
10-
go.dev: =1.24.4 # as of 1.20.0
10+
go.dev: =1.24.6 # as of 1.20.3
1111
nodejs.org: ^18
1212
# python 3.11 removes 'rU' mode which breaks node-gyp
1313
python.org: ~3.10
@@ -18,9 +18,9 @@ build:
1818
script:
1919
- go mod tidy
2020
# required tooling; no releases to package
21-
- run: |
22-
go install github.com/loggerhead/enumer@latest
23-
export PATH=$HOME/go/bin:$PATH
21+
- run:
22+
- go install github.com/loggerhead/enumer@latest
23+
- export PATH=$HOME/go/bin:$PATH
2424
if: '>=1.16.2'
2525
- make bootstrap static-dist dev-ui
2626
- install -D bin/vault {{prefix}}/bin/vault

0 commit comments

Comments
 (0)