Skip to content

Commit d129ba9

Browse files
authoredMay 9, 2024··
Merge pull request #619 from NixOS/distribution-nixpkgs-cleanup
distribution-nixpkgs: update test data + small cleanup
2 parents 7816d64 + aef5f46 commit d129ba9

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed
 

‎distribution-nixpkgs/src/Distribution/Nixpkgs/Meta.hs

+1-2
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ nixpkgsPlatformFromString s = platformGroup <|> singlePlatform
168168
-- Just (Platform PPC OSX)
169169
-- >>> cabalPlatformFromSystem "powerpc64le-linux"
170170
-- Just (Platform (OtherArch "powerpc64le") Linux)
171-
-- >>> cabalPlatformFromSystem "js-ghcjs"
171+
-- >>> cabalPlatformFromSystem "javascript-ghcjs"
172172
-- Just (Platform JavaScript Ghcjs)
173173
cabalPlatformFromSystem :: String -> Maybe Platform
174174
cabalPlatformFromSystem s =
@@ -200,7 +200,6 @@ cabalPlatformFromSystem s =
200200
parseArch as =
201201
case classifyArch Strict as of
202202
OtherArch "i686" -> I386
203-
OtherArch "js" -> JavaScript
204203
OtherArch "powerpc" -> PPC
205204
OtherArch "powerpc64" -> PPC64
206205
a -> a
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
["aarch64-darwin","aarch64-genode","aarch64-linux","aarch64-netbsd","aarch64-none","aarch64_be-none","arm-none","armv5tel-linux","armv6l-linux","armv6l-netbsd","armv6l-none","armv7a-darwin","armv7a-linux","armv7a-netbsd","armv7l-linux","armv7l-netbsd","avr-none","i686-cygwin","i686-darwin","i686-freebsd13","i686-genode","i686-linux","i686-netbsd","i686-none","i686-openbsd","i686-windows","javascript-ghcjs","m68k-linux","m68k-netbsd","m68k-none","microblaze-linux","microblaze-none","microblazeel-linux","microblazeel-none","mips-linux","mips64-linux","mips64el-linux","mipsel-linux","mipsel-netbsd","mipsisa32r6-linux","mipsisa32r6el-linux","mipsisa64r6-linux","mipsisa64r6el-linux","mmix-mmixware","msp430-none","or1k-none","powerpc-netbsd","powerpc-none","powerpc64-linux","powerpc64le-linux","powerpcle-none","riscv32-linux","riscv32-netbsd","riscv32-none","riscv64-linux","riscv64-netbsd","riscv64-none","rx-none","s390-linux","s390-none","s390x-linux","s390x-none","vc4-none","wasm32-wasi","wasm64-wasi","x86_64-cygwin","x86_64-darwin","x86_64-freebsd13","x86_64-genode","x86_64-linux","x86_64-netbsd","x86_64-none","x86_64-openbsd","x86_64-redox","x86_64-solaris","x86_64-windows"]
1+
["aarch64-darwin","aarch64-genode","aarch64-linux","aarch64-netbsd","aarch64-none","aarch64_be-none","arm-none","armv5tel-linux","armv6l-linux","armv6l-netbsd","armv6l-none","armv7a-darwin","armv7a-linux","armv7a-netbsd","armv7l-linux","armv7l-netbsd","avr-none","i686-cygwin","i686-darwin","i686-freebsd","i686-genode","i686-linux","i686-netbsd","i686-none","i686-openbsd","i686-windows","javascript-ghcjs","loongarch64-linux","m68k-linux","m68k-netbsd","m68k-none","microblaze-linux","microblaze-none","microblazeel-linux","microblazeel-none","mips-linux","mips-none","mips64-linux","mips64-none","mips64el-linux","mipsel-linux","mipsel-netbsd","mmix-mmixware","msp430-none","or1k-none","powerpc-netbsd","powerpc-none","powerpc64-linux","powerpc64le-linux","powerpcle-none","riscv32-linux","riscv32-netbsd","riscv32-none","riscv64-linux","riscv64-netbsd","riscv64-none","rx-none","s390-linux","s390-none","s390x-linux","s390x-none","vc4-none","wasm32-wasi","wasm64-wasi","x86_64-cygwin","x86_64-darwin","x86_64-freebsd","x86_64-genode","x86_64-linux","x86_64-netbsd","x86_64-none","x86_64-openbsd","x86_64-redox","x86_64-solaris","x86_64-windows"]

‎distribution-nixpkgs/test/hspec.hs

+8-8
Original file line numberDiff line numberDiff line change
@@ -68,21 +68,26 @@ nixpkgsSystemMapping =
6868
, ("avr-none", Platform (OtherArch "avr") (OtherOS "none"))
6969
, ("i686-cygwin", Platform I386 (OtherOS "cygwin"))
7070
, ("i686-darwin", Platform I386 OSX)
71-
, ("i686-freebsd13", Platform I386 (OtherOS "freebsd13"))
71+
, ("i686-freebsd", Platform I386 FreeBSD)
7272
, ("i686-genode", Platform I386 (OtherOS "genode"))
7373
, ("i686-linux", Platform I386 Linux)
7474
, ("i686-netbsd", Platform I386 NetBSD)
7575
, ("i686-none", Platform I386 (OtherOS "none"))
7676
, ("i686-openbsd", Platform I386 OpenBSD)
7777
, ("i686-windows", Platform I386 Windows)
7878
, ("javascript-ghcjs", Platform JavaScript Ghcjs)
79+
, ("loongarch64-linux", Platform (OtherArch "loongarch64") Linux)
7980
, ("m68k-linux", Platform M68k Linux)
8081
, ("m68k-netbsd", Platform M68k NetBSD)
8182
, ("m68k-none", Platform M68k (OtherOS "none"))
8283
, ("microblaze-linux", Platform (OtherArch "microblaze") Linux)
8384
, ("microblazeel-linux", Platform (OtherArch "microblazeel") Linux)
8485
, ("microblaze-none", Platform (OtherArch "microblaze") (OtherOS "none"))
8586
, ("microblazeel-none", Platform (OtherArch "microblazeel") (OtherOS "none"))
87+
, ("mips-linux", Platform Mips Linux)
88+
, ("mips-none", Platform Mips (OtherOS "none"))
89+
, ("mips64-linux", Platform (OtherArch "mips64") Linux)
90+
, ("mips64-none", Platform (OtherArch "mips64") (OtherOS "none"))
8691
, ("mips64el-linux", Platform (OtherArch "mips64el") Linux)
8792
, ("mipsel-linux", Platform (OtherArch "mipsel") Linux)
8893
, ("mipsel-netbsd", Platform (OtherArch "mipsel") NetBSD)
@@ -120,7 +125,7 @@ nixpkgsSystemMapping =
120125
#endif
121126
, ("x86_64-cygwin", Platform X86_64 (OtherOS "cygwin"))
122127
, ("x86_64-darwin", Platform X86_64 OSX)
123-
, ("x86_64-freebsd13", Platform X86_64 (OtherOS "freebsd13"))
128+
, ("x86_64-freebsd", Platform X86_64 FreeBSD)
124129
, ("x86_64-genode", Platform X86_64 (OtherOS "genode"))
125130
, ("x86_64-linux", Platform X86_64 Linux)
126131
, ("x86_64-netbsd", Platform X86_64 NetBSD)
@@ -130,12 +135,7 @@ nixpkgsSystemMapping =
130135
, ("x86_64-solaris", Platform X86_64 Solaris)
131136
, ("x86_64-windows", Platform X86_64 Windows)
132137
-- lib.systems.examples
133-
, ("mips-linux", Platform Mips Linux)
134-
, ("mips64-linux", Platform (OtherArch "mips64") Linux)
135-
, ("mipsisa32r6-linux", Platform (OtherArch "mipsisa32r6") Linux)
136-
, ("mipsisa32r6el-linux", Platform (OtherArch "mipsisa32r6el") Linux)
137-
, ("mipsisa64r6-linux", Platform (OtherArch "mipsisa64r6") Linux)
138-
, ("mipsisa64r6el-linux", Platform (OtherArch "mipsisa64r6el") Linux)
138+
-- Currently no tuples are unique to the example list.
139139
]
140140

141141
platformMapping :: [(String, NixpkgsPlatform)]

0 commit comments

Comments
 (0)