You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to upgrade to modern cmake (>=3.14) control file is generated in alphabetical order:
Architecture: xxxx
Depends: xxxxx
Description: xxxxx
Homepage: xxxx
Maintainer: xxxxx
Package: xxxxx
Priority: xxxxx
Section: xxxxxx
Version: xxxxxxxxxxxx
However apt-get.do-download() function require that Depends is 1-2 lines after package:
local dependencies=($(cat cache.txt | grep -A 2 -m 1 ^"Package: ${1}"$
| grep ^"Depends: " \
The text was updated successfully, but these errors were encountered:
Due to upgrade to modern cmake (>=3.14) control file is generated in alphabetical order:
Architecture: xxxx
Depends: xxxxx
Description: xxxxx
Homepage: xxxx
Maintainer: xxxxx
Package: xxxxx
Priority: xxxxx
Section: xxxxxx
Version: xxxxxxxxxxxx
However apt-get.do-download() function require that Depends is 1-2 lines after package:$(cat cache.txt | grep -A 2 -m 1 ^"Package: $ {1}"$
local dependencies=(
| grep ^"Depends: " \
The text was updated successfully, but these errors were encountered: