Skip to content

Commit eea8cdb

Browse files
committed
Prepare version 0.1.1
1 parent 16dfe38 commit eea8cdb

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

pkg/arch/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: Maximilian Luz <[email protected]>
22

33
pkgname=surface-dtx-daemon
4-
pkgver=0.1.0
4+
pkgver=0.1.1
55
pkgrel=1
66
pkgdesc="Surface Detachment System (DTX) Daemon"
77
url="https://github.com/qzed/linux-surface-dtx-daemon"

pkg/deb/debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
surface-dtx-daemon (0.1.1) unstable; urgency=medium
2+
3+
* Add request function to dbus interface.
4+
* Fix libc/libgcc dependencies.
5+
6+
-- <build@build-deb8> Wed, 08 May 2019 19:34:02 +0000
7+
18
surface-dtx-daemon (0.1.0) unstable; urgency=medium
29

310
* Initial release.

pkg/deb/debian/compat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11
1+
10

pkg/deb/debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Source: surface-dtx-daemon
22
Section: misc
33
Priority: optional
44
Maintainer: Maximilian Luz <[email protected]>
5-
Build-Depends: build-essential, debhelper (>= 11), cargo, rustc (>= 1.34.0), libdbus-glib-1-dev
5+
Build-Depends: build-essential, debhelper (>= 10), cargo, rustc (>= 1.34.0), libdbus-glib-1-dev
66

77
Package: surface-dtx-daemon
88
Architecture: amd64

pkg/deb/debian/rules

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/make -f
2+
export DH_VERBOSE = 1
23

34
pkgdir = debian/surface-dtx-daemon
45

@@ -10,10 +11,7 @@ build:
1011
dh build
1112
env CARGO_TARGET_DIR="${PWD}/target" CARGO_INCREMENTAL=0 cargo build --release --locked
1213

13-
binary:
14-
dh binary --without dh_shlibdeps
15-
16-
install:
14+
override_dh_install:
1715
# binary files
1816
install -D -m755 "target/release/surface-dtx-daemon" "${pkgdir}/usr/bin/surface-dtx-daemon"
1917
install -D -m755 "target/release/surface-dtx-userd" "${pkgdir}/usr/bin/surface-dtx-userd"
@@ -41,7 +39,5 @@ install:
4139
install -D -m644 "target/surface-dtx-daemon.fish" "${pkgdir}/usr/share/fish/completions/surface-dtx-daemon.fish"
4240
install -D -m644 "target/surface-dtx-userd.fish" "${pkgdir}/usr/share/fish/completions/surface-dtx-userd.fish"
4341

44-
# reauired for cross-packaging from Arch
45-
# may be moved to lxc-container once debian has rustc >= 1.34
46-
override_dh_shlibdeps:
47-
dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info
42+
%:
43+
dh $@

pkg/deb/makedeb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33

4-
branch="develop"
4+
branch="master"
55
basepath="pkg/deb"
66

77

0 commit comments

Comments
 (0)