Compare commits

..

No commits in common. "3587170bdea5a6e19b310c81a78f48282ff18023" and "32fd5048c17c4a65b4b14030ee239a4dc48427fd" have entirely different histories.

6 changed files with 10 additions and 7 deletions

View File

@ -1,9 +1,9 @@
# License to Copy FreedomBox Service (Plinth) # License to Copy FreedomBox Service (Plinth)
FreedomBox Service (Plinth) is Copyright 2011, 2012, 2013, 2014, 2015, 2016, FreedomBox Service (Plinth) is Copyright 2011, 2012, 2013, 2014, 2015, 2016,
2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025 FreedomBox Authors. See Git 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 FreedomBox Authors. See Git log
log in the source repository for a full list of authors. It is distributed under in the source repository for a full list of authors. It is distributed under the
the GNU Affero General Public License, Version 3 or later. A copy of AGPLv3 is GNU Affero General Public License, Version 3 or later. A copy of AGPLv3 is
available [from the Free Software available [from the Free Software
Foundation](http://www.gnu.org/licenses/agpl.html). Foundation](http://www.gnu.org/licenses/agpl.html).

2
debian/control vendored
View File

@ -52,6 +52,8 @@ Build-Depends:
python3-setuptools, python3-setuptools,
python3-setuptools-git, python3-setuptools-git,
python3-systemd, python3-systemd,
# python3-tomli is needed by python3-coverage when pyproject.toml is used
python3-tomli,
python3-typeshed, python3-typeshed,
python3-yaml, python3-yaml,
sshpass, sshpass,

4
debian/copyright vendored
View File

@ -2,7 +2,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Source: https://salsa.debian.org/freedombox-team/freedombox Source: https://salsa.debian.org/freedombox-team/freedombox
Files: * Files: *
Copyright: 2011-2025 FreedomBox Authors Copyright: 2011-2024 FreedomBox Authors
License: AGPL-3+ License: AGPL-3+
Files: plinth/modules/jsxc/static/icons/jsxc.png Files: plinth/modules/jsxc/static/icons/jsxc.png
@ -15,7 +15,7 @@ Files: doc/*.xml
doc/*.png doc/*.png
doc/*.jpg doc/*.jpg
doc/*.wiki doc/*.wiki
Copyright: 2011-2025 FreedomBox Authors Copyright: 2011-2023 FreedomBox Authors
License: CC-BY-SA-4.0 License: CC-BY-SA-4.0
Files: doc/visual_design/apple-touch-icon* Files: doc/visual_design/apple-touch-icon*

View File

@ -14,5 +14,5 @@ Restrictions: needs-root, breaks-testbed
# Run unit and integration tests on installed files. # Run unit and integration tests on installed files.
# #
Test-Command: PYTHONPATH='/usr/lib/python3/dist-packages/' py.test-3 -p no:cacheprovider --cov=plinth --cov-report=html:debci/htmlcov --cov-report=term Test-Command: PYTHONPATH='/usr/lib/python3/dist-packages/' py.test-3 -p no:cacheprovider --cov=plinth --cov-report=html:debci/htmlcov --cov-report=term
Depends: e2fsprogs, git, python3-pytest, python3-pytest-cov, python3-pytest-django, @ Depends: e2fsprogs, git, python3-pytest, python3-pytest-cov, python3-pytest-django, python3-tomli, @
Restrictions: breaks-testbed Restrictions: breaks-testbed

View File

@ -26,7 +26,7 @@ django.setup()
# pylint: disable=invalid-name # pylint: disable=invalid-name
project = 'FreedomBox' project = 'FreedomBox'
copyright = '2021-2025, FreedomBox Authors' copyright = '2021-2024, FreedomBox Authors'
author = 'FreedomBox Authors' author = 'FreedomBox Authors'
# The short X.Y version # The short X.Y version

View File

@ -86,6 +86,7 @@ test = [
"pytest-django", "pytest-django",
"flake8", "flake8",
"requests", "requests",
"tomli",
] ]
[project.urls] [project.urls]