Skip to content

Commit 9567913

Browse files
committed
update license
1 parent af34ba0 commit 9567913

File tree

6 files changed

+684
-26
lines changed

6 files changed

+684
-26
lines changed

LICENSE

+674-23
Large diffs are not rendered by default.

PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pkgrel=1
55
pkgdesc='Handheld Daemon. A tool for managing the quirks of handheld devices.'
66
arch=('x86_64')
77
url='https://github.com/hhd-dev/hhd'
8-
license=('MIT')
8+
license=('GPL-3.0-or-later' 'MIT')
99
depends=('python' 'python-setuptools' 'python-evdev' 'python-rich' 'python-yaml' 'python-xlib' 'libusb')
1010
optdepends=('hhd-user: allows running hhd as a user service.')
1111
makedepends=('python-'{'build','installer','setuptools','wheel'})

hhd.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Version: REPLACE_VERSION
33
Release: 1%{?dist}
44
Summary: Handheld Daemon, a tool for configuring handheld devices.
55

6-
License: MIT
6+
License: GPL-3.0-or-later AND MIT
77
URL: https://github.com/hhd-dev/hhd
88
Source: https://pypi.python.org/packages/source/h/%{name}/%{name}-%{version}.tar.gz
99

readme.md

+6
Original file line numberDiff line numberDiff line change
@@ -527,3 +527,9 @@ hhd
527527
# Use the following to run with sudo
528528
sudo hhd --user $(whoami)
529529
```
530+
531+
# License
532+
Handheld Daemon is licensed under THE GNU GPLv3+. See LICENSE for details.
533+
A small number of files are dual licensed with MIT, and contain
534+
SPDX headers denoting so.
535+
Versions prior to and excluding 2.0.0 are licensed using MIT.

src/hhd/controller/lib/hid.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: MIT and GPL-3.0-only
12
# Forked from https://github.com/apmorton/pyhidapi/blob/master/hid/__init__.py
23
import os
34
import ctypes

src/hhd/controller/lib/uhid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: MIT
1+
# SPDX-License-Identifier: MIT and GPL-3.0-only
22
# Sourced from library python-uhid
33

44
from __future__ import annotations

0 commit comments

Comments
 (0)