Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions bind.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: bind
version: 9.18.11
version: 9.18.13
epoch: 0
description: The ISC DNS server
copyright:
Expand Down Expand Up @@ -82,8 +82,9 @@ environment:
pipeline:
- uses: fetch
with:
expected-sha256: 8ff3352812230cbcbda42df87cad961f94163d3da457c5e4bef8057fd5df2158
expected-sha256: 3b06b6390c1012dd3956b1479c73b2097c0b22207817e2e8aae352fd20e578c7
uri: https://downloads.isc.org/isc/bind9/${{package.version}}/bind-${{package.version}}.tar.xz

- uses: autoconf/configure
with:
opts: |
Expand All @@ -97,8 +98,11 @@ pipeline:
--enable-linux-caps \
--enable-shared \
--disable-static

- uses: autoconf/make

- uses: autoconf/make-install

- runs: |
# removed -g named -o root
install -d -m0770 ${{targets.destdir}}/var/bind \
Expand Down Expand Up @@ -127,6 +131,7 @@ pipeline:
cd ${{targets.destdir}}/var/bind
ln -s ../../usr/share/dns-root-hints/named.root named.ca
ln -s named.ca root.cache

- uses: strip

subpackages:
Expand All @@ -135,6 +140,7 @@ subpackages:
- uses: split/manpages
- uses: split/infodir
description: bind manpages

- name: bind-dev
pipeline:
- uses: split/dev
Expand All @@ -145,6 +151,7 @@ subpackages:
- bind-tools
- dns-root-hints
description: bind dev

- name: bind-libs
dependencies:
runtime:
Expand All @@ -164,6 +171,7 @@ subpackages:
done
done
description: bind (libraries)

- name: bind-dnssec-root
pipeline:
- runs: |
Expand All @@ -179,6 +187,7 @@ subpackages:

ln -s "../../$_dir/$_file" "$_link"
description: ISC BIND DNSSEC Root Keys

- name: bind-dnssec-tools
dependencies:
runtime:
Expand All @@ -194,6 +203,7 @@ subpackages:
${{targets.destdir}}/usr/bin/dnssec* \
${{targets.subpkgdir}}/usr/bin/
description: Utilities for DNSSEC keys and DNS zone files management

- name: bind-plugins
dependencies:
runtime:
Expand All @@ -205,6 +215,7 @@ subpackages:
mkdir -p ${{targets.subpkgdir}}/usr/lib
mv ${{targets.destdir}}/usr/lib/bind ${{targets.subpkgdir}}/usr/lib/
description: The ISC DNS server plugins

- name: bind-tools
dependencies:
runtime:
Expand Down