[pdal] 02/03: Add patch to fix bash-completion installation.

Bas Couwenberg sebastic at debian.org
Sun Aug 28 14:54:50 UTC 2016


This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch 1.2.0
in repository pdal.

commit 19b96744dacf4e9da733dafda24cd08ce1790c95
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date:   Sun Aug 28 16:21:25 2016 +0200

    Add patch to fix bash-completion installation.
---
 debian/changelog                     |  1 +
 debian/control                       |  1 +
 debian/patches/bash-completion.patch | 17 +++++++++++++++++
 debian/patches/series                |  1 +
 debian/rules                         |  6 ------
 5 files changed, 20 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index ab66eda..ff161f7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 pdal (1.2.0-6) UNRELEASED; urgency=medium
 
   * Add patch to fix HDF5 include directory with CMake >= 3.6.0.
+  * Add patch to fix bash-completion installation.
 
  -- Bas Couwenberg <sebastic at debian.org>  Sun, 28 Aug 2016 15:02:48 +0200
 
diff --git a/debian/control b/debian/control
index 4bb304d..69e2177 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Bas Couwenberg <sebastic at debian.org>
 Build-Depends: debhelper (>= 9),
                dh-python,
                autotools-dev,
+               bash-completion,
                chrpath,
                cmake (>= 3.0),
                libboost-filesystem-dev,
diff --git a/debian/patches/bash-completion.patch b/debian/patches/bash-completion.patch
new file mode 100644
index 0000000..e0cb7fc
--- /dev/null
+++ b/debian/patches/bash-completion.patch
@@ -0,0 +1,17 @@
+Description: Fix bash-completion installation.
+ /etc/bash_completion.d is deprecated.
+Author: Bas Couwenberg <sebastic at debian.org>
+
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -349,7 +349,9 @@ export(PACKAGE PDAL)
+ 
+ # TODO: move under scripts/bash-completion ?
+ if (WITH_COMPLETION)
+-    if (IS_DIRECTORY /etc/bash_completion.d)
++    if (IS_DIRECTORY ${CMAKE_INSTALL_PREFIX}/share/bash-completion/completions)
++        install(FILES "${PROJECT_SOURCE_DIR}/scripts/bash-completion/pdal" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/bash-completion/completions")
++    elseif (IS_DIRECTORY /etc/bash_completion.d)
+         install(FILES "${PROJECT_SOURCE_DIR}/scripts/bash-completion/pdal" DESTINATION "${CMAKE_INSTALL_PREFIX}/etc/bash_completion.d")
+     endif()
+ endif()
diff --git a/debian/patches/series b/debian/patches/series
index 8d0997f..36b0e38 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -4,3 +4,4 @@ hurd.patch
 source_date_epoch.patch
 sphinx-ext-pngmath-deprecated.patch
 cmake-3.6-hdf5.patch
+bash-completion.patch
diff --git a/debian/rules b/debian/rules
index 4a85120..e401c62 100755
--- a/debian/rules
+++ b/debian/rules
@@ -63,12 +63,6 @@ override_dh_auto_test:
 override_dh_auto_install:
 	dh_auto_install
 
-	# Fix bash-completion installation
-	mkdir -p debian/tmp/usr/share/bash-completion/completions
-	mv debian/tmp/usr/etc/bash_completion.d/pdal debian/tmp/usr/share/bash-completion/completions
-	rm -rf debian/tmp/usr/etc/bash_completion.d
-	rmdir debian/tmp/usr/etc/
-
 	# Strip RPATH
 	chrpath --delete debian/tmp/usr/lib/libpdal_plugin_*.so
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/pdal.git



More information about the Pkg-grass-devel mailing list