-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ubuntu 22 build target, updated dependencies
- Loading branch information
Showing
19 changed files
with
167 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,4 +40,3 @@ conftools | |
etc/wgwrangler.yaml | ||
etc/wgwrangler.yaml.secret | ||
node_modules | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
WGwrangler | ||
a cool web app with Mojolicious backend | ||
|
||
Copyright (c) 2021 Tobias Bossert and the other people listed in the | ||
Copyright (c) 2022 Tobias Bossert and the other people listed in the | ||
AUTHORS file. | ||
|
||
All rights reserved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.2.0 | ||
0.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#!/bin/bash | ||
|
||
apt -y update && \ | ||
apt-get -y install apt-utils curl && \ | ||
curl https://deb.nodesource.com/setup_16.x | bash && \ | ||
apt-get -u update && \ | ||
apt-get -y install perl \ | ||
make \ | ||
gcc \ | ||
devscripts \ | ||
openssl \ | ||
pkg-config \ | ||
libssl-dev \ | ||
debhelper \ | ||
automake \ | ||
nodejs \ | ||
libkrb5-dev \ | ||
libqrencode-dev \ | ||
g++ \ | ||
zlib1g-dev | ||
|
||
# copy entire source tree | ||
mkdir /src | ||
cp -r . /src | ||
|
||
cd /src | ||
|
||
# workaround for debhelper bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=897569 | ||
mkdir -p deb_build_home | ||
ls | grep -v deb_build_home | xargs mv -t deb_build_home # move everything except deb_build_home | ||
cd deb_build_home | ||
|
||
dh_clean | ||
dpkg-buildpackage -us -uc -nc | ||
|
||
# set filename | ||
release_code_name=$(lsb_release --codename | sed 's/Codename:\s*//') | ||
package_name=$(basename ../*.deb | sed 's/.deb$//')_$release_code_name.deb | ||
mv ../*.deb ../$package_name | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
requires 'CallBackery', '>= 0.38.0'; | ||
requires 'CallBackery', '>= 0.42.4'; | ||
requires 'Mojo::SQLite'; | ||
requires 'Wireguard::WGmeta', '>= 0.3.0'; | ||
requires 'Wireguard::WGmeta', '>= 0.3.2'; | ||
requires 'Net::IP', '>=1.26'; | ||
requires 'Email::MIME'; | ||
requires 'Email::Sender'; | ||
requires 'Text::QRCode'; | ||
requires 'YAML::XS'; | ||
requires 'SVG::Barcode'; | ||
requires 'SVG::Barcode::QRCode'; | ||
requires 'YAML::PP'; | ||
requires 'YAML::PP'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"devDependencies": { | ||
"@qooxdoo/compiler": "^1.0.0-beta" | ||
"@qooxdoo/framework": "^7.2.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"libraries": [ | ||
{ | ||
"library_name": "deprecated.qx.io.remote", | ||
"library_version": "1.0.2", | ||
"path": "qx_packages/qooxdoo_deprecated_qx_io_remote_v1_0_2", | ||
"uri": "qooxdoo/deprecated.qx.io.remote", | ||
"repo_name": "qooxdoo/deprecated.qx.io.remote", | ||
"repo_tag": "v1.0.2" | ||
} | ||
], | ||
"version": "2.1.0" | ||
} |