summaryrefslogtreecommitdiffstats
path: root/recipes-extended
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2026-06-02 18:55:00 +0000
committerBruce Ashfield <bruce.ashfield@gmail.com>2026-06-02 18:55:00 +0000
commit08a98b2984a497e5c0e2b7c6a26e70b1feb2e562 (patch)
tree7ae17ccb9635efe21954115c7c14d1fe826e90b9 /recipes-extended
parentd3d8f9f53ca834c943d0269b535e90ed16bde23a (diff)
downloadmeta-virtualization-08a98b2984a497e5c0e2b7c6a26e70b1feb2e562.tar.gz
nagios-nsca: update to v2.10.3
Bump 2.9.2 -> 2.10.3 (one minor + 3 patch releases on the 2.10.x line). Source location changed: upstream development moved off SourceForge to GitHub, and prdownloads.sourceforge.net returns 404 for anything past nsca-2.9.2. SRC_URI repointed at the GitHub release artifact. New tarball checksums from the upstream GitHub release: md5sum = 25048d91910a45213c0f0ea5a8da11c9 sha256sum = 0b36d5c10936f98d278b66c682af95b8e227c5942ad725c4a1949945296f6877 LIC_FILES_CHKSUM md5 of src/nsca.c lines 1-16 updated from dd7a195cc7d8a3ebcfabd65360d0cab4 to c94838c8194765df77dbf93c7e10b5a2 — the license header text changed across the version gap, but the licence itself remains GPL-2.0-only. S = "${WORKDIR}/..." updated to "${UNPACKDIR}/..." — the same poky WORKDIR -> UNPACKDIR transition that hit nagios-nrpe; this recipe predates the change and was caught the moment we tried to rebuild from scratch. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-extended')
-rw-r--r--recipes-extended/nagios/nagios-nsca_2.10.3.bb (renamed from recipes-extended/nagios/nagios-nsca_2.9.2.bb)12
1 files changed, 7 insertions, 5 deletions
diff --git a/recipes-extended/nagios/nagios-nsca_2.9.2.bb b/recipes-extended/nagios/nagios-nsca_2.10.3.bb
index a400b68f..f52999ea 100644
--- a/recipes-extended/nagios/nagios-nsca_2.9.2.bb
+++ b/recipes-extended/nagios/nagios-nsca_2.10.3.bb
@@ -6,19 +6,21 @@ SECTION = "console/network"
6PRIORITY = "optional" 6PRIORITY = "optional"
7LICENSE = "GPL-2.0-only" 7LICENSE = "GPL-2.0-only"
8 8
9LIC_FILES_CHKSUM = "file://src/nsca.c;beginline=1;endline=16;md5=dd7a195cc7d8a3ebcfabd65360d0cab4" 9LIC_FILES_CHKSUM = "file://src/nsca.c;beginline=1;endline=16;md5=c94838c8194765df77dbf93c7e10b5a2"
10 10
11SRCNAME = "nsca" 11SRCNAME = "nsca"
12 12
13SRC_URI = "http://prdownloads.sourceforge.net/sourceforge/nagios/${SRCNAME}-${PV}.tar.gz \ 13# Upstream development and release artifacts moved to GitHub; the historical
14# prdownloads.sourceforge.net path returns 404 for anything past 2.9.2.
15SRC_URI = "https://github.com/NagiosEnterprises/${SRCNAME}/releases/download/${SRCNAME}-${PV}/${SRCNAME}-${PV}.tar.gz \
14 file://init-script.in \ 16 file://init-script.in \
15 file://nagios-nsca.service \ 17 file://nagios-nsca.service \
16" 18"
17 19
18SRC_URI[md5sum] = "43f638c51367a3170476ed106fbb4858" 20SRC_URI[md5sum] = "25048d91910a45213c0f0ea5a8da11c9"
19SRC_URI[sha256sum] = "96eb04ef695873ce462e3f8db08e8a49456ff9595d11acf70a3dd8a2c4af3b5e" 21SRC_URI[sha256sum] = "0b36d5c10936f98d278b66c682af95b8e227c5942ad725c4a1949945296f6877"
20 22
21S = "${WORKDIR}/${SRCNAME}-${PV}" 23S = "${UNPACKDIR}/${SRCNAME}-${PV}"
22 24
23inherit update-rc.d autotools-brokensep systemd dos2unix 25inherit update-rc.d autotools-brokensep systemd dos2unix
24 26