rev 21080 - kde-extras/skrooge/trunk/debian

Pino Toscano pino at moszumanska.debian.org
Sat Mar 10 08:02:48 UTC 2018


Author: pino
Date: 2018-03-10 08:02:48 +0000 (Sat, 10 Mar 2018)
New Revision: 21080

Modified:
   kde-extras/skrooge/trunk/debian/changelog
   kde-extras/skrooge/trunk/debian/rules
Log:
do not remove .so symlinks of plugins

sigh...


Modified: kde-extras/skrooge/trunk/debian/changelog
===================================================================
--- kde-extras/skrooge/trunk/debian/changelog	2018-03-10 07:50:29 UTC (rev 21079)
+++ kde-extras/skrooge/trunk/debian/changelog	2018-03-10 08:02:48 UTC (rev 21080)
@@ -5,6 +5,7 @@
   * Update the patches:
     - upstream_cmake-fix-KDocTools-variable-name.patch: drop,
       backported from upstream
+  * Avoid removing .so symlinks of plugins.
 
  -- Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>  Sat, 10 Mar 2018 08:48:54 +0100
 

Modified: kde-extras/skrooge/trunk/debian/rules
===================================================================
--- kde-extras/skrooge/trunk/debian/rules	2018-03-10 07:50:29 UTC (rev 21079)
+++ kde-extras/skrooge/trunk/debian/rules	2018-03-10 08:02:48 UTC (rev 21080)
@@ -13,5 +13,6 @@
 override_dh_auto_install:
 	dh_auto_install --buildsystem=kf5
 
-	# remove .so symlinks, useless without headers
-	find $(CURDIR)/debian/tmp/usr/lib -type l -name '*.so' -print -delete
+	# remove .so symlinks, useless without headers; make sure to not
+	# remove those for qt plugins
+	find debian/tmp \( -name '*.so' -type l \! -path '*/usr/lib/*/qt5/plugins/designer/*' \) -print -delete




More information about the pkg-kde-commits mailing list