commit a5d7fa669376c732c005c7b4890aa2dfbfd63099 Author: Ward Date: Thu Feb 23 22:06:37 2023 +0200 first commit diff --git a/orig.source.txt b/orig.source.txt new file mode 100644 index 0000000..1bd3013 --- /dev/null +++ b/orig.source.txt @@ -0,0 +1,2 @@ +xpadneo-dkms_0.9.5.orig.tar.gz +#https://github.com/atar-axis/xpadneo diff --git a/xpadneo-0.9.5/debian/changelog b/xpadneo-0.9.5/debian/changelog new file mode 100644 index 0000000..6621fb6 --- /dev/null +++ b/xpadneo-0.9.5/debian/changelog @@ -0,0 +1,17 @@ +xpadneo-dkms (0.9.5-5) kinetic; urgency=medium + + * Change Section. + + -- Ward Nakchbandi Thu, 04 Oct 2022 17:50:00 +0300 + +xpadneo-dkms (0.9.5-1) kinetic; urgency=medium + + * A few fixes. + + -- Ward Nakchbandi Thu, 04 Oct 2022 17:50:00 +0300 + + xpadneo-dkms (0.9.5-1) kinetic; urgency=medium + + * Initial release. + + -- Ward Nakchbandi Thu, 04 Oct 2022 17:50:00 +0300 diff --git a/xpadneo-0.9.5/debian/control b/xpadneo-0.9.5/debian/control new file mode 100644 index 0000000..96fda87 --- /dev/null +++ b/xpadneo-0.9.5/debian/control @@ -0,0 +1,18 @@ +Source: xpadneo-dkms +Section: games +Priority: optional +Maintainer: Ward Nakchbandi +Build-Depends: debhelper-compat (= 13), + dh-autoreconf, + quilt, + dh-dkms, + dkms +Standards-Version: 4.6.1 +Homepage: https://github.com/atar-axis/xpadneo +Rules-Requires-Root: no + +Package: xpadneo-dkms +Architecture: any +Multi-Arch: same +Depends: ${misc:Depends}, ${shlibs:Depends}, dkms, bluez +Description: A DKMS package to provide XPADNEO an advanced Bluetooth Linux Driver for Xbox One Wireless Gamepad diff --git a/xpadneo-0.9.5/debian/copyright b/xpadneo-0.9.5/debian/copyright new file mode 100644 index 0000000..4c4d28c --- /dev/null +++ b/xpadneo-0.9.5/debian/copyright @@ -0,0 +1,13 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: xpadneo +Upstream-Contact: Florian Dollinger +Source: https://github.com/atar-axis/xpadneo + +Files: * +Copyright: 2022 Florian Dollinger +License: GPL-3 + +Files: debian/* +Copyright: 2022 Ward Nakchbandi +License: GPL-3 + diff --git a/xpadneo-0.9.5/debian/files b/xpadneo-0.9.5/debian/files new file mode 100644 index 0000000..1aa7862 --- /dev/null +++ b/xpadneo-0.9.5/debian/files @@ -0,0 +1 @@ +xpadneo-dkms_0.9.5-5_source.buildinfo games optional diff --git a/xpadneo-0.9.5/debian/patches/series b/xpadneo-0.9.5/debian/patches/series new file mode 100644 index 0000000..15f853d --- /dev/null +++ b/xpadneo-0.9.5/debian/patches/series @@ -0,0 +1 @@ +xpadneo-package-adapt.patch diff --git a/xpadneo-0.9.5/debian/patches/xpadneo-package-adapt.patch b/xpadneo-0.9.5/debian/patches/xpadneo-package-adapt.patch new file mode 100644 index 0000000..a1acee4 --- /dev/null +++ b/xpadneo-0.9.5/debian/patches/xpadneo-package-adapt.patch @@ -0,0 +1,21 @@ +diff -uraN a/Makefile b/Makefile +--- a/Makefile 1970-01-01 02:00:00.000000000 +0200 ++++ b/Makefile 2022-10-04 19:12:45.651268524 +0300 +@@ -0,0 +1,12 @@ ++VERSION=0.9.5 ++ ++all: ++ true ++ ++install: ++ sed 's/"@DO_NOT_CHANGE@"/"'"${VERSION}"'"/g' hid-xpadneo/dkms.conf ++ install -d $(DESTDIR)/usr/src/ ++ cp -r hid-xpadneo $(DESTDIR)/usr/src/ ++ install -d $(DESTDIR)/etc/modules-load.d ++ ln -s /usr/src/hid-xpadneo $(DESTDIR)/usr/src/hid-xpadneo-"${VERSION}" ++ cp -r modules-load-d-xpadneo.conf $(DESTDIR)/etc/modules-load.d/xpadneo.conf +diff -uraN a/modules-load-d-xpadneo.conf b/modules-load-d-xpadneo.conf +--- a/modules-load-d-xpadneo.conf 1970-01-01 02:00:00.000000000 +0200 ++++ b/modules-load-d-xpadneo.conf 2022-09-25 20:44:46.000000000 +0300 +@@ -0,0 +1 @@ ++hid_xpadneo diff --git a/xpadneo-0.9.5/debian/postinst b/xpadneo-0.9.5/debian/postinst new file mode 100755 index 0000000..557c6dc --- /dev/null +++ b/xpadneo-0.9.5/debian/postinst @@ -0,0 +1,6 @@ +#!/bin/sh + +set -e + +dkms install -m hid-xpadneo/0.9.5 + diff --git a/xpadneo-0.9.5/debian/prerm b/xpadneo-0.9.5/debian/prerm new file mode 100755 index 0000000..efa435e --- /dev/null +++ b/xpadneo-0.9.5/debian/prerm @@ -0,0 +1,6 @@ +#!/bin/sh + +set -e + +dkms remove -m hid-xpadneo/0.9.5 + diff --git a/xpadneo-0.9.5/debian/rules b/xpadneo-0.9.5/debian/rules new file mode 100755 index 0000000..f6b359a --- /dev/null +++ b/xpadneo-0.9.5/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --with quilt diff --git a/xpadneo-0.9.5/debian/source/format b/xpadneo-0.9.5/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/xpadneo-0.9.5/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/xpadneo-dkms_0.9.5.orig.tar.gz b/xpadneo-dkms_0.9.5.orig.tar.gz new file mode 100644 index 0000000..153fc03 Binary files /dev/null and b/xpadneo-dkms_0.9.5.orig.tar.gz differ