diff options
author | Robert Alessi <alessi@robertalessi.net> | 2021-02-07 11:50:26 +0100 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2021-02-07 11:50:26 +0100 |
commit | 7d0a96e7b5cf4541b07570d54829e152ff9b9a5c (patch) | |
tree | 349c3fc6cb6a3a44eb28f12c281ac4616d59775f /debian | |
download | my-x200-7d0a96e7b5cf4541b07570d54829e152ff9b9a5c.tar.gz |
initial Debian/Devuan commit
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 17 | ||||
-rw-r--r-- | debian/copyright | 29 | ||||
-rwxr-xr-x | debian/rules | 9 | ||||
-rw-r--r-- | debian/source/format | 1 |
6 files changed, 62 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..ed968ce --- /dev/null +++ b/debian/changelog | |||
@@ -0,0 +1,5 @@ | |||
1 | my-x200 (0.6-1) UNRELEASED; urgency=medium | ||
2 | |||
3 | * Initial release. | ||
4 | |||
5 | -- Robert Alessi <alessi@robertalessi.net> Sat, 06 Feb 2021 11:14:01 +0100 | ||
diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat | |||
@@ -0,0 +1 @@ | |||
10 | |||
diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..b3cc4bd --- /dev/null +++ b/debian/control | |||
@@ -0,0 +1,17 @@ | |||
1 | Source: my-x200 | ||
2 | Maintainer: Robert Alessi <alessi@robertalessi.net> | ||
3 | Section: misc | ||
4 | Priority: optional | ||
5 | Standards-Version: 4.3.0 | ||
6 | Build-Depends: debhelper (>= 10) | ||
7 | Homepage: http://git.robertalessi.net/my-x200 | ||
8 | |||
9 | Package: my-x200 | ||
10 | Architecture: any | ||
11 | Depends: ${shlibs:Depends}, ${misc:Depends}, lsb-base, intel-gpu-tools, rsync, | ||
12 | macchanger, rfkill, acpi-support-base | ||
13 | Recommends: rsnapshot | ||
14 | Description: Service dedicated to Thinkpads X200 | ||
15 | my-x200 is a simple service primarily designed to make the | ||
16 | distinctive whining noise of Thinkpads X200 disappear. But it can | ||
17 | also be used on other laptops. | ||
diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..3c6cb99 --- /dev/null +++ b/debian/copyright | |||
@@ -0,0 +1,29 @@ | |||
1 | Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
2 | Upstream-Name: my-x200 | ||
3 | Source: <http://git.robertalessi.net/my-x200> | ||
4 | |||
5 | Files: * | ||
6 | Copyright: 2021 Robert Alessi <alessi@robertalessi.net> | ||
7 | License: GPL-3.0+ | ||
8 | |||
9 | Files: debian/* | ||
10 | Copyright: 2021 Robert Alessi <alessi@robertalessi.net> | ||
11 | License: GPL-3.0+ | ||
12 | |||
13 | License: GPL-3.0+ | ||
14 | This program is free software: you can redistribute it and/or modify | ||
15 | it under the terms of the GNU General Public License as published by | ||
16 | the Free Software Foundation, either version 3 of the License, or | ||
17 | (at your option) any later version. | ||
18 | . | ||
19 | This package is distributed in the hope that it will be useful, | ||
20 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
21 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
22 | GNU General Public License for more details. | ||
23 | . | ||
24 | You should have received a copy of the GNU General Public License | ||
25 | along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
26 | . | ||
27 | On Debian systems, the complete text of the GNU General | ||
28 | Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". | ||
29 | |||
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..8344154 --- /dev/null +++ b/debian/rules | |||
@@ -0,0 +1,9 @@ | |||
1 | #!/usr/bin/make -f | ||
2 | %: | ||
3 | dh $@ | ||
4 | |||
5 | override_dh_auto_install: | ||
6 | $(MAKE) DESTDIR=$$(pwd)/debian/my-x200/ install | ||
7 | |||
8 | override_dh_installinit: | ||
9 | dh_installinit --onlyscripts | ||
diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..46ebe02 --- /dev/null +++ b/debian/source/format | |||
@@ -0,0 +1 @@ | |||
3.0 (quilt) \ No newline at end of file | |||