Skip to content

Commit 5be4a3d

Browse files
authored
gulp-debian v 0.3.2 to support xz compression for Debain builds (#623)
* update to support xz compression for Debian builds * needs testing of the automated build Co-authored-by: haslinghuis <[email protected]>
1 parent a05ce40 commit 5be4a3d

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

gulpfile.js

+1
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,7 @@ function release_deb(arch, appDirectory, done) {
465465
prerm: [`rm /usr/share/mime/packages/${pkg.name}.xml`, 'update-mime-database /usr/share/mime',
466466
'rm /usr/share/icons/hicolor/128x128/mimetypes/application-x-blackboxlog.png', 'gtk-update-icon-cache /usr/share/icons/hicolor -f',
467467
`xdg-desktop-menu uninstall ${pkg.name}.desktop`],
468+
conffiles: './test/configs/opt/etc/dummy.cfg',
468469
depends: 'libgconf-2-4',
469470
changelog: [],
470471
_target: `${LINUX_INSTALL_DIR}/${pkg.name}`,

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"command-exists": "^1.2.8",
3838
"del": "^5.0.0",
3939
"gulp": "^4.0.1",
40-
"gulp-debian": "~0.1.8",
40+
"gulp-debian": "^0.3.2",
4141
"gulp-rename": "^2.0.0",
4242
"gulp-util": "3.0.8",
4343
"gulp-yarn": "^3.0.0",

test/configs/opt/etc/dummy.cfg

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
# Only for test purpose!
3+
# You configuration starts here:
4+
option1 = true;
5+
option2 = false;

yarn.lock

+17-4
Original file line numberDiff line numberDiff line change
@@ -1373,6 +1373,13 @@ find-up@^1.0.0:
13731373
path-exists "^2.0.0"
13741374
pinkie-promise "^2.0.0"
13751375

1376+
find@^0.2.8:
1377+
version "0.2.9"
1378+
resolved "https://registry.yarnpkg.com/find/-/find-0.2.9.tgz#4b73f1ff9e56ad91b76e716407fe5ffe6554bb8c"
1379+
integrity sha512-7a4/LCiInB9xYMnAUEjLilL9FKclwbwK7VlXw+h5jMvT2TDFeYFCHM24O1XdnC/on/hx8mxVO3FTQkyHZnOghQ==
1380+
dependencies:
1381+
traverse-chain "~0.1.0"
1382+
13761383
findup-sync@^2.0.0:
13771384
version "2.0.0"
13781385
resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc"
@@ -1784,11 +1791,12 @@ gulp-cli@^2.2.0:
17841791
v8flags "^3.2.0"
17851792
yargs "^7.1.0"
17861793

1787-
gulp-debian@~0.1.8:
1788-
version "0.1.9"
1789-
resolved "https://registry.yarnpkg.com/gulp-debian/-/gulp-debian-0.1.9.tgz#80e4a8cfc0f0904312f07e66a06ca3c024edc153"
1790-
integrity sha512-hY16Lj5IdxY213L9Sl6SlEgpCvf8/ny3SQ4S9dyG8MHqRx0fPpui5CRodhQK5lA2oScxP8qi4wfK4fIDr5xF3g==
1794+
gulp-debian@^0.3.2:
1795+
version "0.3.2"
1796+
resolved "https://registry.yarnpkg.com/gulp-debian/-/gulp-debian-0.3.2.tgz#0b5a32366ae0a159529b9b7285e31bb73998da9d"
1797+
integrity sha512-P9zqKFQ9xRG1wvcJUYiBxUEypoPcDsFJxmxyJ6PSyfF2iOcsIk1mPTp47Qs0Q36bdWvrauvGTvJxscFIhK1U3A==
17911798
dependencies:
1799+
find "^0.2.8"
17921800
fs-extra "^5.0.0"
17931801
gulp-util "^3.0.8"
17941802
through2 "^2.0.1"
@@ -4099,6 +4107,11 @@ tough-cookie@~2.5.0:
40994107
psl "^1.1.28"
41004108
punycode "^2.1.1"
41014109

4110+
traverse-chain@~0.1.0:
4111+
version "0.1.0"
4112+
resolved "https://registry.yarnpkg.com/traverse-chain/-/traverse-chain-0.1.0.tgz#61dbc2d53b69ff6091a12a168fd7d433107e40f1"
4113+
integrity sha512-up6Yvai4PYKhpNp5PkYtx50m3KbwQrqDwbuZP/ItyL64YEWHAvH6Md83LFLV/GRSk/BoUVwwgUzX6SOQSbsfAg==
4114+
41024115
tunnel-agent@^0.6.0:
41034116
version "0.6.0"
41044117
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"

0 commit comments

Comments
 (0)