summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorRuben Undheim <ruben.undheim@gmail.com>2018-11-03 13:54:43 +0100
committerRuben Undheim <ruben.undheim@gmail.com>2018-11-03 14:02:16 +0100
commitdd3ad36bc40d8e29c6df935a4b5eed72099e4ad9 (patch)
treeba2b55edb09ce83fcca79690d084620e1cf7260a /debian
parentce934a80f0024fb15f006ebdb5c26d0dcf4073d2 (diff)
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog15
-rw-r--r--debian/control4
-rw-r--r--debian/gbp.conf2
-rw-r--r--debian/mrtdreader.123
-rwxr-xr-xdebian/rules10
5 files changed, 40 insertions, 14 deletions
diff --git a/debian/changelog b/debian/changelog
index 9579866..0c9ceb3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,18 @@
+mrtdreader (0.1.6-3) unstable; urgency=medium
+
+ * debian/control:
+ - Correct Vcs URLs
+ - New standards version 4.2.1 - no changes
+ - Change email address of maintainer
+ * debian/gbp.conf: Using master branch for debian now
+ * debian/mrtdreader.1: More info in man page
+ * debian/rules:
+ - Remove get-orig-source target
+ - Remove use of dpkg-parsechangelog
+ - Remove trailing whitespace
+
+ -- Ruben Undheim <rubund@debian.org> Sat, 03 Nov 2018 13:54:55 +0100
+
mrtdreader (0.1.6-2) unstable; urgency=medium
* debian/compat: 11
diff --git a/debian/control b/debian/control
index 5fdce13..5844510 100644
--- a/debian/control
+++ b/debian/control
@@ -1,5 +1,5 @@
Source: mrtdreader
-Maintainer: Ruben Undheim <ruben.undheim@gmail.com>
+Maintainer: Ruben Undheim <rubund@debian.org>
Section: utils
Priority: optional
Build-Depends: debhelper (>= 11),
@@ -7,7 +7,7 @@ Build-Depends: debhelper (>= 11),
pkg-config,
libnfc-dev,
libgcrypt20-dev
-Standards-Version: 4.2.0
+Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/rubund/mrtdreader
Vcs-Git: https://salsa.debian.org/rubund/mrtdreader.git
Homepage: https://github.com/rubund/mrtdreader
diff --git a/debian/gbp.conf b/debian/gbp.conf
index 4fc7c67..cec628c 100644
--- a/debian/gbp.conf
+++ b/debian/gbp.conf
@@ -1,4 +1,2 @@
[DEFAULT]
pristine-tar = True
-debian-branch=debian
-upstream-tag=%(version)s
diff --git a/debian/mrtdreader.1 b/debian/mrtdreader.1
index f433d7f..857634e 100644
--- a/debian/mrtdreader.1
+++ b/debian/mrtdreader.1
@@ -32,6 +32,29 @@ MRTDs such as passports nowadays usually contain an RFID chip for storing variou
.\" TeX users may be more comfortable with the \fB<whatever>\fP and
.\" \fI<whatever>\fP escape sequences to invode bold face and italics,
.\" respectively.
+
+.B Content of MRTDs:
+.PP
+ EF.DG1 - 0101 - MRZ
+ EF.DG2 - 0102 - Facial image
+ EF.DG3 - 0103 - Fingerprint
+ EF.DG4 - 0104 - Iris
+ EF.DG5 - 0105 - Portrait
+ EF.DG6 - 0106 - RFU
+ EF.DG7 - 0107 - Displayed signature
+ EF.DG8 - 0108 - Data features
+ EF.DG9 - 0109 - Structure features
+ EF.DG10 - 010A - Substance features
+ EF.DG11 - 010B - Additional personal details
+ EF.DG12 - 010C - Additional document features
+ EF.DG13 - 010D - Optional details
+ EF.DG14 - 010E - EAC
+ EF.DG15 - 010F - AA Public key
+ EF.DG16 - 0110 - Persons to notify
+ EF.CA - 011C -
+ EF.SOD - 011D - Security object data - hash values
+ EF.COM - 011E - EF.COM
+
.SH OPTIONS
If the MRZ is specified on the command line, the following options are ignored. If the MRZ is not specified, all the three following options must be specified and the MRZ will be calculated from them.
.TP
diff --git a/debian/rules b/debian/rules
index a3681ec..b3f2e78 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,15 +6,5 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
-PKD = $(abspath $(dir $(MAKEFILE_LIST)))
-PKG = $(word 2,$(shell dpkg-parsechangelog -l$(PKD)/changelog | grep ^Source))
-VER ?= $(shell dpkg-parsechangelog -l$(PKD)/changelog | perl -ne 'print $$1 if m{^Version:\s+(?:\d+:)?(\d.*)(?:\-\d+.*)};')
-
-
%:
dh $@
-
-get-orig-source: $(info I: $(PKG)_$(VER))
- @echo "# Downloading..."
- uscan --noconf --verbose --rename --destdir=$(CURDIR) --force-download --download-version $(VER) $(PKD)
-