diff options
author | Vincent Lefevre <vincent@vinc17.net> | 2021-09-07 14:30:24 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2021-09-15 00:29:52 +0200 |
commit | e178f1914a35d6bd92c0818ced2d82b085eca000 (patch) | |
tree | 85bcc9370c0edd9402c93afecf85fdd5c916734b | |
parent | cd6dff21eb1c054576f410d262563c6a9823b04f (diff) | |
download | zsh-e178f1914a35d6bd92c0818ced2d82b085eca000.tar.gz zsh-e178f1914a35d6bd92c0818ced2d82b085eca000.zip |
Replace all occurrences of transitional package libncursesw5-dev with libncurses-dev
Remove resulting duplicates. (Related to commit 71ee4aef.) Fixes FTBFS
iff libncursesw5-dev was not installed. (Closes: #993861)
Gbp-Dch: Full
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 | ||||
-rw-r--r-- | debian/tests/control | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/debian/control b/debian/control index 8e8c6f135..b92dfc648 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ Build-Depends: bsdextrautils | bsdmainutils (<< 12~), libcap-dev [linux-any], libelf-dev, libgdbm-dev, - libncursesw5-dev, + libncurses-dev, libpcre3-dev Build-Depends-Indep: cm-super-minimal, ghostscript, diff --git a/debian/rules b/debian/rules index 24509c834..71c278146 100755 --- a/debian/rules +++ b/debian/rules @@ -51,7 +51,7 @@ endif # resulting syntax might be invalid. Needed for packages which are # also provided by other packages like libncurses-dev and # libncursesw5-dev which both fulfil the according build-dependency. -BUILT_USING=$(shell for pkg in libcap-dev libncurses-dev libncursesw5-dev libpcre3-dev libc-dev-bin; do dpkg-query -f '$${status}' -W $$pkg 2>&1 | grep -Fq installed && dpkg-query -f '$${source:Package} (= $${source:Version}), ' -W $$pkg; done) +BUILT_USING=$(shell for pkg in libcap-dev libncurses-dev libpcre3-dev libc-dev-bin; do dpkg-query -f '$${status}' -W $$pkg 2>&1 | grep -Fq installed && dpkg-query -f '$${source:Package} (= $${source:Version}), ' -W $$pkg; done) %: dh $@ diff --git a/debian/tests/control b/debian/tests/control index ce9ff4307..2bd45fc98 100644 --- a/debian/tests/control +++ b/debian/tests/control @@ -2,7 +2,7 @@ Tests: run-testsuite Depends: libcap-dev [linux-any], libelf-dev, libgdbm-dev, - libncursesw5-dev, + libncurses-dev, libpcre3-dev, zsh, zsh-dev |