Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to new sqlite3 dep management #85

Merged
merged 2 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
strategy:
matrix:
node_version: [
16.x, # EOL: April 2024
18.x, # EOL: April 2025
20.x, # EOL: April 2026
]
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Version: 4.4.1
Section: net
Priority: optional
Architecture: all
Depends: nodejs (>= 16.0.0), bash, init-system-helpers
Depends: nodejs (>= 18.0.0), bash, init-system-helpers
Recommends: python3, build-essential
Maintainer: The Lounge maintainers team <[email protected]>
Description: A self-hosted, web-based IRC client
Expand Down
3 changes: 1 addition & 2 deletions debian/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ install -dm 750 "$garbage_folder"
# in theory the devdir should be enough but let's future proof it
export npm_config_devdir="$garbage_folder"
export HOME="$garbage_folder"
./node_modules/.bin/node-pre-gyp clean
./node_modules/.bin/node-pre-gyp install --fallback-to-build
yarn run install # download or build the c dep
ret=$?
rm -rf "$garbage_folder"
popd || exit 1
Expand Down
Loading