summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2018-08-05 14:10:13 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2018-08-05 14:10:13 +0200
commit80e6d50ae13dbfe1e4333888431eb21d3d9e926f (patch)
treeb13da2036031c7811f41dd7874b80d871b93f570 /debian
parent621f4acf1406e51eaf5d9429c46625e6f5fde98e (diff)
parentb5d1a44c8a6b401ec6d23ed849ed733f192292e4 (diff)
Merge branch 'release/debian/2.0.1-1'debian/2.0.1-1
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog12
-rw-r--r--debian/patches/0100-spelling.patch18
-rw-r--r--debian/patches/0600-man_page_spelling.patch18
-rw-r--r--debian/patches/series4
-rwxr-xr-xdebian/rules2
5 files changed, 16 insertions, 38 deletions
diff --git a/debian/changelog b/debian/changelog
index 240effb..aced019 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+bitz-server (2.0.1-1) unstable; urgency=medium
+
+ * New upstream release:
+ - Remove upstream applied patches 0600-man_page_spelling.patch and
+ 0100-spelling.patch
+ * debian/rules:
+ - Add "export DEB_CXXFLAGS_MAINT_APPEND = -fPIE" and
+ "export DEB_LDFLAGS_MAINT_APPEND = -fPIE -pie" to fix missing CXXFLAGS
+ and LDFLAGS.
+
+ -- Jörg Frings-Fürst <debian@jff.email> Sun, 05 Aug 2018 00:14:26 +0200
+
bitz-server (2.0.0-1) unstable; urgency=medium
* New upstream release:
diff --git a/debian/patches/0100-spelling.patch b/debian/patches/0100-spelling.patch
deleted file mode 100644
index 2e3e112..0000000
--- a/debian/patches/0100-spelling.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Description: Correct spelling
-Author: Jörg Frings-Fürst <debian@jff.email>
-Forwarded: no
-Last-Update: 2018-07-09
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
-Index: trunk/lib/spdlog/common.h
-===================================================================
---- trunk.orig/lib/spdlog/common.h
-+++ trunk/lib/spdlog/common.h
-@@ -183,6 +183,6 @@ using filename_t = std::string;
- } \
- catch (...) \
- { \
-- _err_handler("Unknown exeption in logger"); \
-+ _err_handler("Unknown exception in logger"); \
- }
- } // namespace spdlog
diff --git a/debian/patches/0600-man_page_spelling.patch b/debian/patches/0600-man_page_spelling.patch
deleted file mode 100644
index 187628b..0000000
--- a/debian/patches/0600-man_page_spelling.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Description: correct spelling
-Author: Jörg Frings-Fürst <debian@jff-webhosting.net>
-Last-Update: 2016-01-30
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
-Index: trunk/doc/bitz-server.conf.man
-===================================================================
---- trunk.orig/doc/bitz-server.conf.man
-+++ trunk/doc/bitz-server.conf.man
-@@ -7,7 +7,7 @@ bitz-server.conf \- bitz-server configur
- .BR bitz-server (1)
- obtains configuration data from a config file, the location of which is specified
- at compile-time and can be overridden by command-line options during run-time.
--.SS Grammer
-+.SS Grammar
- Below is the BNF grammar for configuration files. Comments and include directives
- are not part of the grammar, so they are not included here. See libconfig manual
- at http://www.hyperrealm.com/libconfig/libconfig_manual.html#Configuration-File-Grammar
diff --git a/debian/patches/series b/debian/patches/series
index 0405e13..9331ec5 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,3 @@
0001-disable_search_doc.patch
-0600-man_page_spelling.patch
-0100-spelling.patch
+#0600-man_page_spelling.patch
+#0100-spelling.patch
diff --git a/debian/rules b/debian/rules
index 8e8a98a..14b3671 100755
--- a/debian/rules
+++ b/debian/rules
@@ -5,6 +5,8 @@
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+export DEB_CXXFLAGS_MAINT_APPEND = -fPIE
+export DEB_LDFLAGS_MAINT_APPEND = -fPIE -pie
VERSION = $(shell head -n1 debian/changelog | sed -e 's/.*(//;s/-.*).*//;s/\+/\-/')