matrix-appservice-irc 0.26.1 -> 0.30.0

matrix-appservice-irc: apply requests from review
This commit is contained in:
DavHau 2021-09-07 23:47:32 +02:00 committed by piegames
parent 0398f79c29
commit f34e8105cb
8 changed files with 491 additions and 505 deletions

View file

@ -131,6 +131,8 @@ import ./make-test-python.nix ({ pkgs, ... }:
};
testScript = ''
import pathlib
start_all()
ircd.wait_for_unit("ngircd.service")

View file

@ -0,0 +1 @@
0.30.0

View file

@ -1,16 +1,22 @@
{ pkgs, nodePackages, makeWrapper, nixosTests, nodejs, stdenv, lib, ... }:
{ pkgs, nodePackages, makeWrapper, nixosTests, nodejs, stdenv, lib, fetchFromGitHub }:
let
packageName = with lib; concatStrings (map (entry: (concatStrings (mapAttrsToList (key: value: "${key}-${value}") entry))) (importJSON ./package.json));
ourNodePackages = import ./node-composition.nix {
inherit pkgs nodejs;
inherit (stdenv.hostPlatform) system;
};
version = builtins.replaceStrings [ "\n" ] [ "" ] (builtins.readFile ./REVISION);
in
ourNodePackages."${packageName}".override {
ourNodePackages.package.override {
pname = "matrix-appservice-irc";
inherit version;
src = fetchFromGitHub {
owner = "matrix-org";
repo = "matrix-appservice-irc";
rev = version;
sha256 = "sha256-EncodJKptrLC54B5XipkiHXFgJ5cD+crcT3SOPOc+7M=";
};
nativeBuildInputs = [ makeWrapper nodePackages.node-gyp-build ];

View file

@ -3,9 +3,9 @@
ROOT="$(realpath "$(dirname -- "$(readlink -f -- "${BASH_SOURCE[0]}")")"/../../../..)"
$(nix-build $ROOT -A nodePackages.node2nix --no-out-link)/bin/node2nix \
--nodejs-12 \
--nodejs-14 \
--node-env ../../../development/node-packages/node-env.nix \
--development \
--input package.json \
--lock ./package-lock-temp.json \
--output node-packages.nix \
--composition node-composition.nix

View file

@ -2,7 +2,7 @@
{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}:
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-14_x"}:
let
nodeEnv = import ../../../development/node-packages/node-env.nix {

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,69 @@
[
{"matrix-appservice-irc": "git+https://github.com/matrix-org/matrix-appservice-irc.git#0.26.1" }
]
{
"name": "matrix-appservice-irc",
"version": "0.30.0",
"description": "An IRC Bridge for Matrix",
"main": "app.js",
"bin": "./bin/matrix-appservice-irc",
"engines": {
"node": ">=12"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc --project ./tsconfig.json",
"test": "BLUEBIRD_DEBUG=1 jasmine --stop-on-failure=true",
"lint": "eslint -c .eslintrc --max-warnings 0 'spec/**/*.js' 'src/**/*.ts'",
"check": "npm test && npm run lint",
"ci-test": "nyc --report text jasmine",
"ci": "npm run lint && npm run ci-test"
},
"repository": {
"type": "git",
"url": "https://github.com/matrix-org/matrix-appservice-irc.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/matrix-org/matrix-appservice-irc/issues"
},
"dependencies": {
"@sentry/node": "^5.27.1",
"bluebird": "^3.7.2",
"escape-string-regexp": "^4.0.0",
"extend": "^3.0.2",
"he": "^1.2.0",
"logform": "^2.2.0",
"matrix-appservice": "^0.8.0",
"matrix-appservice-bridge": "^2.6.1",
"matrix-lastactive": "^0.1.5",
"matrix-org-irc": "^1.2.0",
"nedb": "^1.1.2",
"nodemon": "^2.0.7",
"nopt": "^3.0.1",
"p-queue": "^6.6.2",
"pg": "^8.6.0",
"quick-lru": "^4.0.1",
"request": "^2.54.0",
"request-promise-native": "^1.0.9",
"sanitize-html": "^2.4.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/express": "^4.17.7",
"@types/extend": "^3.0.1",
"@types/he": "^1.1.1",
"@types/nedb": "^1.8.11",
"@types/nopt": "^3.0.29",
"@types/pg": "^8.6.0",
"@types/sanitize-html": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"jasmine": "^3.6.2",
"nyc": "^14.1.1",
"prom-client": "^13.0.0",
"proxyquire": "^1.4.0",
"typescript": "^4.2.2"
}
}

View file

@ -1,5 +1,5 @@
#!/usr/bin/env nix-shell
#! nix-shell -i bash -p nodePackages.node2nix nodejs-12_x curl jq
#! nix-shell -i bash -p nodePackages.node2nix nodejs-12_x curl jq nix
set -euo pipefail
# cd to the folder containing this script
@ -15,10 +15,15 @@ fi
echo "matrix-appservice-irc: $CURRENT_VERSION -> $TARGET_VERSION"
sed -i "s/#$CURRENT_VERSION/#$TARGET_VERSION/" package.json
rm -f package.json package-lock.json
wget https://github.com/matrix-org/matrix-appservice-irc/raw/$TARGET_VERSION/package.json
wget -O package-lock-temp.json https://github.com/matrix-org/matrix-appservice-irc/raw/$TARGET_VERSION/package-lock.json
echo "$TARGET_VERSION" > ./REVISION
./generate-dependencies.sh
rm ./package-lock-temp.json
# Apparently this is done by r-ryantm, so only uncomment for manual usage
#git add ./package.json ./node-packages.nix
#git commit -m "matrix-appservice-irc: ${CURRENT_VERSION} -> ${TARGET_VERSION}"