Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2020-05-18 20:21:25 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2020-05-19 16:26:54 +0300
commit848b5b6b430417d80d9b3b5c48de73bce3a66eb6 (patch)
treeb7b1855e48783a32335177b761b491237773d440 /calm/hint.py
parent7bee1947e21d774a88ad7c9849b26d868d7daf72 (diff)
Disallow build-depends: in install package hints
This means we can drop the less restrictive check that an install package with a build-depends: hint has a sibling source.
Diffstat (limited to 'calm/hint.py')
-rwxr-xr-xcalm/hint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/calm/hint.py b/calm/hint.py
index e96d3e8..bbebfda 100755
--- a/calm/hint.py
+++ b/calm/hint.py
@@ -50,7 +50,6 @@ hintkeys[pvr] = {
'skip': 'noval',
'requires': 'optval',
'depends': 'optval',
- 'build-depends': 'optval',
'obsoletes': 'optval',
'test': 'noval', # mark the package as a test version
'version': 'val', # version override
@@ -63,6 +62,7 @@ hintkeys[pvr] = {
hintkeys[spvr] = hintkeys[pvr].copy()
hintkeys[spvr].update({
'homepage': 'val',
+ 'build-depends': 'optval',
})
hintkeys[override] = {