Debian Package Tracker
Register | Log in
Subscribe

freedombox

easy to manage, privacy oriented home server

Choose email to subscribe with

general
  • source: freedombox (main)
  • version: 25.14
  • maintainer: FreedomBox packaging team (archive) (DMD)
  • uploaders: Tzafrir Cohen [DMD] – Petter Reinholdtsen [DMD] – Piotr Ożarowski [DMD] – Nick Daly [DMD] – Sunil Mohan Adapa [DMD] – Federico Ceratto [DMD] – James Valleroy [DMD]
  • arch: all
  • std-ver: 4.6.2
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • o-o-stable: 21.4.4
  • oldstable: 23.6.2+deb12u1
  • old-bpo: 25.9.3~bpo12+2
  • stable: 25.9.3
  • stable-bpo: 25.14~bpo13+1
  • testing: 25.14
  • unstable: 25.14
versioned links
  • 21.4.4: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 23.6.2+deb12u1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 25.9.3~bpo12+2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 25.9.3: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 25.14~bpo13+1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 25.14: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • freedombox (4 bugs: 0, 4, 0, 0)
  • freedombox-doc-en
  • freedombox-doc-es
action needed
Marked for autoremoval on 02 December due to nss-pam-ldapd: #1097481 high
Version 25.14 of freedombox is marked for autoremoval from testing on Tue 02 Dec 2025. It depends (transitively) on nss-pam-ldapd, affected by #1097481. You should try to prevent the removal by fixing these RC bugs.
Created: 2025-11-02 Last update: 2025-11-05 09:00
Depends on packages which need a new maintainer normal
The packages that freedombox depends on which need a new maintainer are:
  • dblatex (#942402)
    • Build-Depends: dblatex
  • docbook-xsl (#802370)
    • Build-Depends: docbook-xsl
Created: 2020-11-17 Last update: 2025-11-05 08:30
5 open merge requests in Salsa normal
There are 5 open merge requests for this package on Salsa. You should consider reviewing and/or merging these merge requests.
Created: 2025-09-17 Last update: 2025-11-03 13:31
5 new commits since last upload, is it time to release? normal
vcswatch reports that this package seems to have new commits in its VCS but has not yet updated debian/changelog. You should consider updating the Debian changelog and uploading this new version into the archive.

Here are the relevant commit logs:
commit d5062ef5eaaee4bee3863f0193ecdef870eea7ef
Author: Sunil Mohan Adapa <sunil@medhas.org>
Date:   Sat Nov 1 15:18:41 2025 -0700

    README: Use the Weblate's language chart widget
    
    - This shows status of each language rather than just a single number for all
    the languages. This hopefully highlights languages needing more work.
    
    Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
    Reviewed-by: Veiko Aasa <veiko17@disroot.org>

commit 24d2d92ab59578d6bc846cd82129c1e3e95031f4
Author: Sunil Mohan Adapa <sunil@medhas.org>
Date:   Mon Oct 27 21:34:58 2025 -0700

    Run service using systemd even for development
    
    - This means that systemd sandbox will be in effect even during development. We
    won't miss out on bugs in sandbox configuration.
    
    - We won't have disable systemd sandbox features just because we can test
    properly on development setup. Such as JoinsNamespaceOf=.
    
    - This also leads to significant reduction in hacky code for setting up for
    development and functional tests.
    
    - One disadvantage is that first setup is run before user gets a chance to
    interact with the started container/VM. However, this is okay since first setup
    can be re-run easily by removing the /var/lib/plinth/plinth.sqlite3 file and
    also the need for doing this is rare.
    
    Tests:
    
    - Start a fresh container and run functional tests with './container run-tests'
    on it. The tests run as expected (succeed or fail).
    
    - While first setup is in progress, running the command 'make
    wait-while-first-setup' waits while printing dots. After the first setup is
    done, it exists.
    
    - Running the command freedombox-logs shows FreedomBox logs for both the web and
    privileged services.
    
    - Changing a source code file in the /freedombox directory (or on the host)
    leads to a restart of the Plinth web service.
    
    Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
    Reviewed-by: Veiko Aasa <veiko17@disroot.org>

commit e5026282fe460465250da72f58f5b118a61769a2
Author: Sunil Mohan Adapa <sunil@medhas.org>
Date:   Mon Oct 27 20:50:04 2025 -0700

    main: Allow setting development mode from environment
    
    - Similar to freedombox-privileged daemon. It makes it easy to turn on
    development mode from a systemd service override (without having to override the
    entire command line).
    
    Tests:
    
    - With the changes to systemd service file in this patch series, changing source
    code file leads to plinth getting restarted.
    
    Reviewed-by: Veiko Aasa <veiko17@disroot.org>

commit 623604649e5427ce8a6e2ae2e0e82f44b428448f
Author: Sunil Mohan Adapa <sunil@medhas.org>
Date:   Mon Oct 27 20:43:56 2025 -0700

    views: Implement an API to retrieve the readiness status in JSON
    
    - This can have may uses such as:
    
      - Waiting properly on the reboot page until the system has been restarted
      while showing the status.
    
      - Or, waiting for first setup to complete before running functional tests.
    
      - Or, monitoring for the health status of FreedomBox in general.
    
    - The page is public as all the information conveyed there is also already
    public. Should we introduce any sensitive information there such as
    'operations_in_progress', we can provide that information only to
    administrators.
    
    Tests:
    
    - Visiting /plinth/status/ shows the status in JSON. Using curl to retrieve the
    information is also possible.
    
    - During the first setup 'is_first_setup_running' is 'true'. After it has
    completed, it is 'false'.
    
    Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
    Reviewed-by: Veiko Aasa <veiko17@disroot.org>

commit 8a4f03c58a09766cb95455ee61bc7a04468b5b9d
Author: Coucouf <coucouf@coucouf.fr>
Date:   Wed Oct 29 18:06:10 2025 +0100

    Translated using Weblate (French)
    
    Currently translated at 100.0% (1879 of 1879 strings)
Created: 2025-10-30 Last update: 2025-11-03 13:31
lintian reports 5 warnings normal
Lintian reports 5 warnings about this package. You should make the package lintian clean getting rid of them.
Created: 2025-10-28 Last update: 2025-10-28 18:30
RFH: The maintainer is looking for help with this package. normal
The current maintainer is looking for someone who can help with the maintenance of this package. If you are interested in this package, please consider helping out. One way you can help is offer to be a co-maintainer or triage bugs in the BTS. Please see bug number #940881 for more information.
Created: 2020-11-08 Last update: 2020-11-08 01:37
Issues found with some translations low

Automatic checks made by the Debian l10n team found some issues with the translations contained in this package. You should check the l10n status report for more information.

Issues can be things such as missing translations, problematic translated strings, outdated PO files, unknown languages, etc.

Created: 2020-11-18 Last update: 2025-09-28 04:00
Standards version of the package is outdated. wishlist
The package should be updated to follow the last version of Debian Policy (Standards-Version 4.7.2 instead of 4.6.2).
Created: 2024-04-07 Last update: 2025-10-28 04:49
news
[rss feed]
  • [2025-10-30] Accepted freedombox 25.14~bpo13+1 (source) into stable-backports (James Valleroy)
  • [2025-10-30] freedombox 25.14 MIGRATED to testing (Debian testing watch)
  • [2025-10-28] Accepted freedombox 25.14 (source) into unstable (James Valleroy)
  • [2025-10-24] Accepted freedombox 25.13.1~bpo13+1 (source) into stable-backports (James Valleroy)
  • [2025-10-23] freedombox 25.13.1 MIGRATED to testing (Debian testing watch)
  • [2025-10-21] Accepted freedombox 25.13.1 (source) into unstable (James Valleroy)
  • [2025-10-09] Accepted freedombox 25.13~bpo13+1 (source) into stable-backports (James Valleroy)
  • [2025-10-09] freedombox 25.13 MIGRATED to testing (Debian testing watch)
  • [2025-10-07] Accepted freedombox 25.13 (source) into unstable (James Valleroy)
  • [2025-09-27] Accepted freedombox 25.12~bpo13+1 (source) into stable-backports (James Valleroy)
  • [2025-09-25] freedombox 25.12 MIGRATED to testing (Debian testing watch)
  • [2025-09-23] Accepted freedombox 25.12 (source) into unstable (James Valleroy)
  • [2025-09-12] Accepted freedombox 25.11~bpo13+1 (source) into stable-backports (James Valleroy)
  • [2025-09-11] freedombox 25.11 MIGRATED to testing (Debian testing watch)
  • [2025-09-09] Accepted freedombox 25.11 (source) into unstable (James Valleroy)
  • [2025-09-04] Accepted freedombox 25.10~bpo13+1 (source all) into stable-backports (Debian FTP Masters) (signed by: James Valleroy)
  • [2025-08-21] freedombox 25.10 MIGRATED to testing (Debian testing watch)
  • [2025-08-19] Accepted freedombox 25.10 (source) into unstable (James Valleroy)
  • [2025-08-13] freedombox 25.9.4 MIGRATED to testing (Debian testing watch)
  • [2025-08-12] Accepted freedombox 25.9.3~bpo12+2 (source) into oldstable-backports (James Valleroy)
  • [2025-08-02] Accepted freedombox 25.9.4 (source) into unstable (James Valleroy)
  • [2025-07-26] Accepted freedombox 25.9.3~bpo12+1 (source) into stable-backports (James Valleroy)
  • [2025-07-26] freedombox 25.9.3 MIGRATED to testing (Debian testing watch)
  • [2025-07-22] Accepted freedombox 25.9.3 (source) into unstable (James Valleroy)
  • [2025-06-30] Accepted freedombox 25.9.2~bpo12+1 (source) into stable-backports (James Valleroy)
  • [2025-06-29] freedombox 25.9.2 MIGRATED to testing (Debian testing watch)
  • [2025-06-24] Accepted freedombox 25.9.2 (source) into unstable (James Valleroy)
  • [2025-06-17] Accepted freedombox 25.9.1~bpo12+1 (source) into stable-backports (James Valleroy)
  • [2025-06-09] freedombox 25.9.1 MIGRATED to testing (Debian testing watch)
  • [2025-06-03] Accepted freedombox 25.9.1 (source) into unstable (James Valleroy)
  • 1
  • 2
bugs [bug history graph]
  • all: 4
  • RC: 0
  • I&N: 4
  • M&W: 0
  • F&P: 0
  • patch: 0
links
  • homepage
  • lintian (0, 5)
  • buildd: logs, reproducibility
  • popcon
  • browse source code
  • edit tags
  • other distros
  • security tracker
  • screenshots
  • l10n (100, 45)
  • debci
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 25.9.3

Debian Package Tracker — Copyright 2013-2025 The Distro Tracker Developers
Report problems to the tracker.debian.org pseudo-package in the Debian BTS.
Documentation — Bugs — Git Repository — Contributing