diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-12 20:53:19 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-07-12 21:20:51 +0200 |
commit | 7f7030d928199ef3a10e4a2e34761d982e123052 (patch) | |
tree | 13bc3fe7d8698b0e06a7f5c1fc8dd75658731f0d /packages/ddclient/Jenkinsfile | |
parent | 8ec205dd21f91d71da6f0feb8c8c9b1c2318654e (diff) | |
download | vyos-build-7f7030d928199ef3a10e4a2e34761d982e123052.tar.gz vyos-build-7f7030d928199ef3a10e4a2e34761d982e123052.zip |
ddclient: T5797: switch to Debian SALSA repository
Commit 368b89ef05 ("ddclient: T5797: Upgrade to ddclient 3.11.2") bumped the
ddclient version by using the build system from Debian SALSA repo and the
upstream ddclient source code.
Debian now provides the same version from the SALSA repos.
Diffstat (limited to 'packages/ddclient/Jenkinsfile')
-rw-r--r-- | packages/ddclient/Jenkinsfile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/packages/ddclient/Jenkinsfile b/packages/ddclient/Jenkinsfile index 317362e9..dccaf38c 100644 --- a/packages/ddclient/Jenkinsfile +++ b/packages/ddclient/Jenkinsfile @@ -1,4 +1,4 @@ -// Copyright (C) 2023 VyOS maintainers and contributors +// Copyright (C) 2023-2024 VyOS maintainers and contributors // // This program is free software; you can redistribute it and/or modify // in order to easy exprort images built to "external" world @@ -20,14 +20,10 @@ @Library('vyos-build@current')_ def pkgList = [ - ['name': 'ddclient-debian', - 'scmCommit': 'debian/3.10.0-3', + ['name': 'ddclient', + 'scmCommit': '93bd643', 'scmUrl': 'https://salsa.debian.org/debian/ddclient', - 'buildCmd': '/bin/true'], - ['name': 'ddclient-github', - 'scmCommit': 'v3.11.2', - 'scmUrl': 'https://github.com/ddclient/ddclient', - 'buildCmd': 'cd ..; ./build.sh'], + 'buildCmd': 'sudo mk-build-deps --install --tool "apt-get --yes --no-install-recommends"; dpkg-buildpackage -uc -us -tc -b'], ] // Start package build using library function from https://github.com/vyos/vyos-build |