Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some issues reported by lintian #19

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
ukwm (1.2.1-2) UNRELEASED; urgency=medium

* Bump debhelper from old 12 to 13.
* Update standards version to 4.6.1, no changes needed.
* Avoid explicitly specifying -Wl,--as-needed linker flag.

-- Debian Janitor <[email protected]> Wed, 02 Nov 2022 01:17:47 -0000

ukwm (1.2.1-1) experimental; urgency=medium

[ Debian Janitor ]
Expand Down
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Section: x11
Priority: optional
Maintainer: Kylin Team <[email protected]>
Uploaders: handsome_feng <[email protected]>
Build-Depends: debhelper-compat (= 12),
Build-Depends: debhelper-compat (= 13),
dh-sequence-gir,
gnome-pkg-tools (>= 0.10),
gtk-doc-tools (>= 1.15),
Expand Down Expand Up @@ -52,7 +52,7 @@ Build-Depends: debhelper-compat (= 12),
xkb-data,
xvfb <!nocheck>,
xauth <!nocheck>
Standards-Version: 4.5.0
Standards-Version: 4.6.1
Rules-Requires-Root: no
Homepage: https://www.ukui.org
Vcs-Git: https://github.com/ukui/ukwm.git
Expand Down
2 changes: 1 addition & 1 deletion debian/rules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/make -f

export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,--as-needed
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

ifneq (,$(findstring $(DEB_HOST_ARCH),"s390x"))
Expand Down