debian/changelog | 9 +++++++++ debian/control | 19 +++++++++++++++++++ debian/libinput-bin.install | 1 + debian/libinput10-udeb.install | 1 + debian/rules | 8 ++++++++ 5 files changed, 38 insertions(+)
New commits: commit abc2189c14dd979caff4a12b03f2a5812d6d0a71 Author: Timo Aaltonen <tjaal...@debian.org> Date: Fri May 13 13:23:01 2016 +0300 Install udev quirks and helpers in libinput-bin. diff --git a/debian/changelog b/debian/changelog index 168b080..8c5bf77 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ libinput (1.3.0-2) UNRELEASED; urgency=medium * rules: Use --fail-missing for dh_install. * rules: Use proper udev base dir. * rules: Purge .la files. + * Install udev quirks and helpers in libinput-bin. -- Timo Aaltonen <tjaal...@debian.org> Fri, 13 May 2016 12:40:14 +0300 diff --git a/debian/control b/debian/control index 3639c79..4677287 100644 --- a/debian/control +++ b/debian/control @@ -23,6 +23,7 @@ Multi-Arch: same Depends: ${shlibs:Depends}, ${misc:Depends}, + libinput-bin (= ${binary:Version}), Description: input device management and event handling library - shared library libinput is a library that handles input devices for display servers and other applications that need to directly deal with input devices. @@ -34,6 +35,24 @@ Description: input device management and event handling library - shared library . This package includes the shared library. +Package: libinput-bin +Architecture: any +Pre-Depends: ${misc:Pre-Depends} +Multi-Arch: foreign +Depends: + ${shlibs:Depends}, + ${misc:Depends}, +Description: input device management and event handling library - udev quirks + libinput is a library that handles input devices for display servers and + other applications that need to directly deal with input devices. + . + It provides device detection, device handling, input device event + processing and abstraction so minimize the amount of custom input + code the user of libinput need to provide the common set of + functionality that users expect. + . + This package includes the udev quirks database and helpers. + Package: libinput10-udeb XC-Package-Type: udeb Section: debian-installer diff --git a/debian/libinput-bin.install b/debian/libinput-bin.install new file mode 100644 index 0000000..b139093 --- /dev/null +++ b/debian/libinput-bin.install @@ -0,0 +1 @@ +lib/udev diff --git a/debian/libinput10-udeb.install b/debian/libinput10-udeb.install index 2f36e46..3456dd5 100644 --- a/debian/libinput10-udeb.install +++ b/debian/libinput10-udeb.install @@ -1 +1,2 @@ +lib/udev usr/lib/*/libinput.so.10* commit eac70a258fca26344d2d33b3cb248e976bafa26c Author: Timo Aaltonen <tjaal...@debian.org> Date: Fri May 13 12:49:09 2016 +0300 rules: Purge .la files. diff --git a/debian/changelog b/debian/changelog index 84ab685..168b080 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ libinput (1.3.0-2) UNRELEASED; urgency=medium * rules: Use --fail-missing for dh_install. * rules: Use proper udev base dir. + * rules: Purge .la files. -- Timo Aaltonen <tjaal...@debian.org> Fri, 13 May 2016 12:40:14 +0300 diff --git a/debian/rules b/debian/rules index c113b90..d0b67c4 100755 --- a/debian/rules +++ b/debian/rules @@ -5,6 +5,7 @@ override_dh_auto_configure: --with-udev-dir=/lib/udev override_dh_install: + find debian/tmp -name '*.la' -delete dh_install --fail-missing override_dh_makeshlibs: commit 6c43c5382bb04f0eacafe3e0e447c7bc30bc00df Author: Timo Aaltonen <tjaal...@debian.org> Date: Fri May 13 12:48:47 2016 +0300 rules: Use proper udev base dir. diff --git a/debian/changelog b/debian/changelog index 74b85b9..84ab685 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ libinput (1.3.0-2) UNRELEASED; urgency=medium * rules: Use --fail-missing for dh_install. + * rules: Use proper udev base dir. -- Timo Aaltonen <tjaal...@debian.org> Fri, 13 May 2016 12:40:14 +0300 diff --git a/debian/rules b/debian/rules index a2810fb..c113b90 100755 --- a/debian/rules +++ b/debian/rules @@ -1,5 +1,9 @@ #!/usr/bin/make -f +override_dh_auto_configure: + dh_auto_configure -- \ + --with-udev-dir=/lib/udev + override_dh_install: dh_install --fail-missing commit 22dd93129c89712add44dc70bc55721e6ee96f04 Author: Timo Aaltonen <tjaal...@debian.org> Date: Fri May 13 12:44:08 2016 +0300 rules: Use --fail-missing for dh_install. diff --git a/debian/changelog b/debian/changelog index 83388ca..74b85b9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libinput (1.3.0-2) UNRELEASED; urgency=medium + + * rules: Use --fail-missing for dh_install. + + -- Timo Aaltonen <tjaal...@debian.org> Fri, 13 May 2016 12:40:14 +0300 + libinput (1.3.0-1) unstable; urgency=medium * New upstream release. diff --git a/debian/rules b/debian/rules index 60d5945..a2810fb 100755 --- a/debian/rules +++ b/debian/rules @@ -1,5 +1,8 @@ #!/usr/bin/make -f +override_dh_install: + dh_install --fail-missing + override_dh_makeshlibs: dh_makeshlibs -plibinput10 -V --add-udeb="libinput10-udeb" -- -c4