aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDafydd Harries <daf@rhydd.org>2013-03-20 18:11:19 -0400
committerDafydd Harries <daf@rhydd.org>2013-03-20 18:11:19 -0400
commit31939dedc3286dd9bcfdd21a75d760b0ed5cedeb (patch)
treecddccd0a9b1cbdb667ffae59bc9583dfac554d3c
parent926d7674cc69ffee3e680752d5129d34980b029e (diff)
separate copyright field + verified fields
-rw-r--r--export.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/export.py b/export.py
index bdccf7a..9adfd62 100644
--- a/export.py
+++ b/export.py
@@ -168,7 +168,10 @@ def srcpkg_extract_licenses(header, filess, licenses):
yield Template('Project license', [
('License', canon),
- ('License note', (cp + '\n' + txt))])
+ ('License copyright', cp),
+ ('License verified by', 'Debian'),
+ ('License verified date', today()),
+ ('License note', txt)])
def parse_person(s):
match = re.match('([^<]+)\s+<([^>]+)>', s)