Manual merge of version 1.12.1+dfsg-4+rpi1 and 1.13.0+dfsg-3 to produce 1.13.0+dfsg... bookworm-staging archive/raspbian/1.13.0+dfsg-3+rpi1 raspbian/1.13.0+dfsg-3+rpi1
authorPeter Michael Green <plugwash@raspbian.org>
Thu, 1 Jun 2023 22:42:56 +0000 (22:42 +0000)
committerPeter Michael Green <plugwash@raspbian.org>
Thu, 1 Jun 2023 22:42:56 +0000 (22:42 +0000)
1  2 
debian/changelog
debian/control
debian/rules

index 7b682a110a1f6464d51d2916ef3b525520102e57,96a6f4d6970eb33a72991e20dc03d56e0f557e27..d0ac43abc08e0ef9b8b971c79949d8cfd43d5d9d
@@@ -1,9 -1,47 +1,54 @@@
- pcl (1.12.1+dfsg-4+rpi1) bookworm-staging; urgency=medium
++pcl (1.13.0+dfsg-3+rpi1) bookworm-staging; urgency=medium
 +
 +  [changes brought forward from 1.12.1+dfsg-3+rpi1 by Peter Michael Green <plugwash@raspbian.org> at Thu, 03 Feb 2022 18:00:06 +0000]
 +  * Build with clang 11 to avoid armv7 contamination.
 +
-  -- Raspbian forward porter <root@raspbian.org>  Sat, 06 Aug 2022 16:56:47 +0000
++ -- Peter Michael Green <plugwash@raspbian.org>  Thu, 01 Jun 2023 22:41:43 +0000
++
+ pcl (1.13.0+dfsg-3) unstable; urgency=medium
+   * upload to unstable
+  -- Jochen Sprickerhof <jspricke@debian.org>  Mon, 09 Jan 2023 21:21:07 +0100
+ pcl (1.13.0+dfsg-2) experimental; urgency=medium
+   * Add patch for failing tests on i386
+   * Fix dwz with clang
+  -- Jochen Sprickerhof <jspricke@debian.org>  Sat, 07 Jan 2023 09:26:50 +0100
+ pcl (1.13.0+dfsg-1) experimental; urgency=medium
+   [ Debian Janitor ]
+   * Use secure URI in Homepage field.
+   * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository-Browse.
+   [ Jochen Sprickerhof ]
+   * Better fix for dwz failing with clang
+   * New upstream version 1.13.0+dfsg
+   * Rebase patches
+   * Drop patches to disable tests
+   * Switch to new libglut-dev package name
+   * Move package description to source package
+   * Rename library packages due to Soname bump
+   * Update d/copyright
+   * Bump policy version (no changes)
+  -- Jochen Sprickerhof <jspricke@debian.org>  Sun, 01 Jan 2023 13:00:10 +0100
+ pcl (1.12.1+dfsg-6) unstable; urgency=medium
+   * Disable dh_dwz for clang builds
+   * Revert "Temporary add depends for #1013316"
+  -- Jochen Sprickerhof <jspricke@debian.org>  Sun, 25 Sep 2022 12:41:19 +0200
+ pcl (1.12.1+dfsg-5) unstable; urgency=medium
+   * Add upstream patch to fix build on armhf
+  -- Jochen Sprickerhof <jspricke@debian.org>  Fri, 19 Aug 2022 13:41:49 +0200
  
  pcl (1.12.1+dfsg-4) unstable; urgency=medium
  
diff --cc debian/control
index da3dadae39e204efb0d977a1638769592a97e1d9,7bc445090d930cfacf0f01cd4a6d825311764ae9..13c2385ac26b720daae4fdc3e91b05655dc69bc0
@@@ -6,8 -6,7 +6,7 @@@ Section: lib
  Priority: optional
  Build-Depends: debhelper-compat (= 13),
                 cmake,
-              libstdc++-12-dev [mipsel armel armhf],
 -             clang [mipsel armel armhf],
 +             clang-11 [mipsel armel armhf],
               python3-sphinx,
               libboost-system-dev,
               libboost-filesystem-dev,
diff --cc debian/rules
index 6cfe8a9ec2f9dfc5cee4afb665d605f121d61719,e8b34e056bf5cad7791d0b3ee1ca2ae99bb583d8..a4bfeb5e89ea168c83b7f074f789a5f96f5d5823
@@@ -6,10 -6,15 +6,15 @@@ export DEB_CXXFLAGS_MAINT_APPEND = -g
  
  BUILD_DOC = $(if $(shell dh_listpackages | grep libpcl-doc),-DWITH_DOCS=ON)
  
+ # use clang on some archs as gcc is running into "virtual memory exhausted"
  ifneq (,$(filter $(DEB_BUILD_ARCH),mipsel armhf armel))
    PARALLEL=--max-parallel=2
 -  export CC=/usr/bin/clang
 -  export CXX=/usr/bin/clang++
 +  export CC=/usr/bin/clang-11
 +  export CXX=/usr/bin/clang++-11
+   # fails with "Unknown debugging section .debug_addr"
+   # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016936
+   # can be removed once dwz is fixed
+ override_dh_dwz:
  else
    PARALLEL=
  endif