[Debian-on-mobile-maintainers] [Git][DebianOnMobile-team/phosh][debian/latest] 2 commits: Restore "tests: Skip symbol check on some architectures"
Guido Günther (@agx)
gitlab at salsa.debian.org
Tue Jul 9 06:20:33 BST 2024
Guido Günther pushed to branch debian/latest at Debian On Mobile / phosh
Commits:
0d4fd808 by Guido Günther at 2024-07-09T07:09:20+02:00
Restore "tests: Skip symbol check on some architectures"
Dropped to eagerly for 0.40
- - - - -
e822a342 by Guido Günther at 2024-07-09T07:14:17+02:00
Document changes and release 0.40.0-2
- - - - -
3 changed files:
- debian/changelog
- + debian/patches/series
- + debian/patches/tests-Skip-symbol-check-on-some-architectures.patch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+phosh (0.40.0-2) unstable; urgency=medium
+
+ * Restore "tests: Skip symbol check on some architectures"
+ Dropped to eagerly for 0.40
+
+ -- Guido Günther <agx at sigxcpu.org> Tue, 09 Jul 2024 07:14:13 +0200
+
phosh (0.40.0-1) unstable; urgency=medium
* New upstream release
=====================================
debian/patches/series
=====================================
@@ -0,0 +1 @@
+tests-Skip-symbol-check-on-some-architectures.patch
=====================================
debian/patches/tests-Skip-symbol-check-on-some-architectures.patch
=====================================
@@ -0,0 +1,30 @@
+From: =?utf-8?q?Guido_G=C3=BCnther?= <agx at sigxcpu.org>
+Date: Sun, 21 Apr 2024 12:47:07 +0200
+Subject: tests: Skip symbol check on some architectures
+
+These architectures have too many exported symbols
+---
+ tools/check-exported-symbols | 10 ++++++++++
+ 1 file changed, 10 insertions(+)
+
+diff --git a/tools/check-exported-symbols b/tools/check-exported-symbols
+index f467932..f48eaf2 100755
+--- a/tools/check-exported-symbols
++++ b/tools/check-exported-symbols
+@@ -6,6 +6,16 @@ BIN=${1:-"_build/src/phosh"}
+
+ PHOSH_SYMBOL_PREFIXES='phosh_(shell|wwan|monitor_manager|quick_setting|status_icon|session_manager)_'
+
++arch=$(uname -m)
++
++case $arch in
++ mips64*|riscv64|s390*)
++ echo "Skipping symbol check on $arch"
++ exit 77
++ ;;
++esac
++
++
+ if objdump -T $BIN | grep 'g DF .text' \
+ | grep -v -E " (main$|${PHOSH_SYMBOL_PREFIXES}|gtk_(filter|sort)_list_model_)"; then
+ echo "Found symbols that shouldn't be exported"
View it on GitLab: https://salsa.debian.org/DebianOnMobile-team/phosh/-/compare/ae25a33682c91f006868287020550052fe48d457...e822a3424d51d4c341eea99b5278347af484b1d9
--
This project does not include diff previews in email notifications.
View it on GitLab: https://salsa.debian.org/DebianOnMobile-team/phosh/-/compare/ae25a33682c91f006868287020550052fe48d457...e822a3424d51d4c341eea99b5278347af484b1d9
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-on-mobile-maintainers/attachments/20240709/6c0a5f3c/attachment-0001.htm>
More information about the Debian-on-mobile-maintainers
mailing list