Skip to content

Commit

Permalink
fix(polyfills): remove bricked packages
Browse files Browse the repository at this point in the history
  • Loading branch information
JPBM135 committed Jan 18, 2024
1 parent 29bd602 commit 482f8cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
14 changes: 7 additions & 7 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ export const POLYFILLS: Record<PolyfillKey, PolyfillLib> = {
'libgbm-dev': { default: true, needs: [], aptPackage: 'libgbm-dev' },
'libgconf-2-4': { default: true, needs: [], aptPackage: 'libgconf-2-4' },
'libgsl-dev': { default: true, needs: [], aptPackage: 'libgsl-dev' },
'libmagic-dev': { default: true, needs: [], aptPackage: 'libmagic-dev' },
'libmagickcore-dev': { default: true, needs: [], aptPackage: 'libmagickcore-dev' },
'libmagickwand-dev': { default: true, needs: [], aptPackage: 'libmagickwand-dev' },
'libsecret-1-dev': { default: true, needs: [], aptPackage: 'libsecret-1-dev' },
'libsqlite3-dev': { default: true, needs: [], aptPackage: 'libsqlite3-dev' },
'libmagic-dev': { default: false, needs: [], aptPackage: 'libmagic-dev' },
'libmagickcore-dev': { default: false, needs: [], aptPackage: 'libmagickcore-dev' },
'libmagickwand-dev': { default: false, needs: [], aptPackage: 'libmagickwand-dev' },
'libpq-dev': { default: false, needs: [], aptPackage: 'libpq-dev' },
'libsecret-1-dev': { default: false, needs: [], aptPackage: 'libsecret-1-dev' },
'libsqlite3-dev': { default: false, needs: [], aptPackage: 'libsqlite3-dev' },
'libssl-dev': { default: true, needs: [], aptPackage: 'libssl-dev' },
'libxkbfile-dev': { default: true, needs: [], aptPackage: 'libxkbfile-dev' },
'libyaml-dev': { default: true, needs: [], aptPackage: 'libyaml-dev' },
'net-tools': { default: false, needs: [], aptPackage: 'net-tools' },
'openjdk-17-jre-headless"': { default: false, needs: [], aptPackage: 'openjdk-17-jre-headless"' },
'openssh-client': { default: false, needs: [], aptPackage: 'openssh-client' },
'p7zip-full': { default: false, needs: [], aptPackage: 'p7zip-full' },
'p7zip-rar': { default: false, needs: [], aptPackage: 'p7zip-rar' },
Expand Down Expand Up @@ -57,11 +57,11 @@ export const POLYFILLS: Record<PolyfillKey, PolyfillLib> = {
iproute2: { default: false, needs: [], aptPackage: 'iproute2' },
jq: { default: true, needs: [], aptPackage: 'jq' },
kmod: { default: false, needs: [], aptPackage: 'kmod' },
lib32z1: { default: true, needs: [], aptPackage: 'lib32z1' },
libcurl4: { default: true, needs: [], aptPackage: 'libcurl4' },
libtool: { default: true, needs: [], aptPackage: 'libtool' },
libunwind8: { default: true, needs: [], aptPackage: 'libunwind8' },
libxss1: { default: true, needs: [], aptPackage: 'libxss1' },

locales: { default: false, needs: [], aptPackage: 'locales' },
lz4: { default: false, needs: [], aptPackage: 'lz4' },
m4: { default: false, needs: [], aptPackage: 'm4' },
Expand Down
3 changes: 1 addition & 2 deletions src/types/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export type PolyfillKey =
| 'iputils-ping'
| 'jq'
| 'kmod'
| 'lib32z1'
| 'libcurl4'
| 'libffi-dev'
| 'libgbm-dev'
Expand All @@ -49,6 +48,7 @@ export type PolyfillKey =
| 'libmagic-dev'
| 'libmagickcore-dev'
| 'libmagickwand-dev'
| 'libpq-dev'
| 'libsecret-1-dev'
| 'libsqlite3-dev'
| 'libssl-dev'
Expand All @@ -66,7 +66,6 @@ export type PolyfillKey =
| 'net-tools'
| 'netcat'
| 'nodejs'
| 'openjdk-17-jre-headless"'
| 'openssh-client'
| 'p7zip-full'
| 'p7zip-rar'
Expand Down

0 comments on commit 482f8cd

Please sign in to comment.