Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
d/control: add multi-arch fields.
· dd00f0d5
Yves-Alexis Perez
authored
Sep 24, 2018
closes: #856598
dd00f0d5
d/rules: drop rpath removal, useless now
· 7c899199
Yves-Alexis Perez
authored
Oct 06, 2018
7c899199
d/rules: don't force remove files so we know the rule is useful
· 07e3d9f7
Yves-Alexis Perez
authored
Oct 06, 2018
07e3d9f7
finalize changelog
· 3eb4bc63
Yves-Alexis Perez
authored
Oct 07, 2018
3eb4bc63
upload thunar 1.8.2-1 to unstable
· 506ab77e
Yves-Alexis Perez
authored
Oct 07, 2018
506ab77e
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
506ab77e
thunar (1.8.2-1)
UNRELEASED
; urgency=medium
thunar (1.8.2-1)
unstable
; urgency=medium
[ Unit 193 ]
* New upstream version 1.8.2
- Fixed segfault while clicking or typing when using wayland.
closes: #910353
...
...
@@ -8,7 +9,10 @@ thunar (1.8.2-1) UNRELEASED; urgency=medium
- d/control: Drop Lionel from uploaders, thanks!
* Update Standards-Version to 4.2.1.
-- Unit 193 <unit193@ubuntu.com> Wed, 03 Oct 2018 02:19:13 -0400
[ Yves-Alexis Perez ]
* d/control: add multi-arch fields. (closes: #856598)
-- Yves-Alexis Perez <corsac@debian.org> Sun, 07 Oct 2018 10:49:30 +0200
thunar (1.8.1-1) unstable; urgency=medium
...
...
debian/control
View file @
506ab77e
...
...
@@ -31,6 +31,7 @@ Vcs-Browser: https://salsa.debian.org/xfce-team/desktop/thunar
Package: libthunarx-3-dev
Section: libdevel
Architecture: any
Multi-arch: same
Depends: libglib2.0-dev,
libgtk-3-dev,
libthunarx-3-0 (= ${binary:Version}),
...
...
@@ -43,6 +44,7 @@ Description: Development files for libthunarx
Package: libthunarx-3-0
Section: libs
Architecture: any
Multi-arch: same
Pre-depends: ${misc:Pre-Depends}
Depends: thunar-data, ${misc:Depends}, ${shlibs:Depends}
Description: extension library for thunar
...
...
debian/rules
View file @
506ab77e
...
...
@@ -17,14 +17,8 @@ override_dh_auto_configure:
--enable-uca-plugin
override_dh_install:
rm -f $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/*.la
rm -f $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/*/*.la
# rpath
chrpath -d -k $(CURDIR)/debian/tmp/usr/bin/Thunar \
$(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/Thunar/thunar-* \
$(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libthunar*.so.*0 \
$(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/thunarx-3/thunar-apr.so \
$(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/xfce4/panel/plugins/libthunar-tpa.so
rm $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/*.la
rm $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/*/*.la
rm $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/xfce4/panel/plugins/libthunar-tpa.la
dh_install
...
...