2022-12-02 15:51:07 +01:00
|
|
|
#+TITLE: nsd(8) / unbound(8) update
|
|
|
|
#+DATE: 2020-12-07
|
|
|
|
|
|
|
|
How to update =nsd(8)= and =unbound(8)= in OpenBSD base from NLnetLabs
|
|
|
|
upstream.
|
|
|
|
|
|
|
|
* nsd(8)
|
|
|
|
git clone from the upstream repository on [[https://github.com/NLnetLabs/nsd][github]].
|
|
|
|
#+begin_src shell
|
|
|
|
git pull
|
2023-06-07 13:10:57 +02:00
|
|
|
git diff NSD_4_6_1_REL..NSD_4_7_0_REL . ':!.cirrus.yml' ':!tpkg/*' \
|
2023-11-30 08:39:48 +01:00
|
|
|
':!contrib/*' ':!compat/' ':!.gitignore' ':!doc/README.svn' \
|
2023-11-30 09:08:31 +01:00
|
|
|
':!doc/CREDITS' \
|
2023-06-07 13:10:57 +02:00
|
|
|
':!.buildkite/*' ':!makedist.sh' > ~/nsd_4.7.0_upstream.diff
|
2022-12-02 15:51:07 +01:00
|
|
|
cd /usr/src/usr.sbin/nsd
|
2023-06-07 13:10:57 +02:00
|
|
|
patch -Ep0 < ~/nsd_4.7.0_upstream.diff
|
2024-04-14 18:59:44 +02:00
|
|
|
autoconf-2.71
|
2022-12-02 15:51:07 +01:00
|
|
|
make -f Makefile.bsd-wrapper obj
|
|
|
|
make -f Makefile.bsd-wrapper clean
|
|
|
|
make -f Makefile.bsd-wrapper -j4
|
|
|
|
#+end_src
|
|
|
|
We also need to update the version numbers in the man pages. For that
|
|
|
|
we download the release tar ball and generate a diff:
|
|
|
|
#+begin_src shell
|
2024-04-14 18:59:44 +02:00
|
|
|
diff -bru . /home/florian/nsd-4.7.0/ | fgrep -v Only > sync.diff
|
2022-12-02 15:51:07 +01:00
|
|
|
#+end_src
|
|
|
|
The diff then needs to be partially applied, some changes are
|
|
|
|
intentional.
|
|
|
|
|
|
|
|
* unbound(8)
|
|
|
|
I haven't done an unbound update in some time, this is probably
|
|
|
|
outdated.
|
|
|
|
git clone from the upstream repository on [[https://github.com/NLnetLabs/unbound][github]].
|
|
|
|
#+begin_src shell
|
|
|
|
git pull
|
|
|
|
git diff release-1.15.0..release-1.16.0 . \
|
|
|
|
':!contrib/*' ':!compat/' ':!README.md' ':!.gitignore' \
|
|
|
|
':!pythonmod/' ':!testdata/' ':!util/configlexer.c' \
|
|
|
|
':!util/configparser.c' ':!util/configparser.h' \
|
|
|
|
':!.buildkite/*' ':!makedist.sh' > ~/unbound_1.16.0_upstream.diff
|
|
|
|
cd /usr/src/usr.sbin/unbound
|
|
|
|
patch -Ep0 < ~/unbound_1.16.0_upstream.diff
|
|
|
|
autoheader-2.69
|
|
|
|
autoconf-2.69
|
|
|
|
make -f Makefile.bsd-wrapper obj
|
|
|
|
make -f Makefile.bsd-wrapper clean
|
|
|
|
make -f Makefile.bsd-wrapper -j4
|
|
|
|
#+end_src
|