This is the online depot for Lumiera Debian packages,
usable for automated install and upgrade via apt-get
-
browse the package pool
-
view our package list
-
Binary-i386 Buster
as of 9/2022, packages have been unmaintained for a long time and most distributions are obsolete; however, 💡 we plan to upgrade to Debian/Bookworm as reference system this winter and will refurbish the packages and the DEB depot |
Ichthyo’s GPG key for package signing has been upgraded A1DE94B2 (obsolete) → 62382557 |
supported distributions
While currently the reference for building Lumiera is Debian/Buster, it is possible to build Debian / Mint / Ubuntu packages for several distributions, based on the same Debian source package. Our plan is to integrate Docker into our build infrastructure, dropping off binary packages automatically. But at the moment (9/2022) packaging is a manual process and just done on occasion, and thus the list of binary distributions is rather limited.
-
Debian/Buster (oldstable) : i386 and x86_64
-
Debian/Bookworm (testing) : i386 and x86_64 (planned)
-
Debian/Bullseye (stable) : x86_64 (planned)
-
Ubuntu/Focal (20.04 LTS) : x86_64
-
Ubuntu/Jammy (22.04 LTS) : x86_64 (planned)
since Lumiera 0.pre.03 we require at least GCC-6.0 Thus on older distributions, you may need to install a more recent compiler and standard library version from the ppa:ubuntu-toolchain-r/test
(→ see instructions here…) |
release-level components
The Debian archives provide the components main
, contrib
, non-free
while Ubuntu has universe
and multiverse
— in a similar vein, we maintain several release-level components
-
experimental: very rough edged, preliminary bundles
-
planned as of 9/22 — development: development snapshots
-
planned as of 9/22 — release: stable releases for end users
Apt configuration
In order to use the Lumiera Debian-Depot for automated installation via apt-get, you need to configure your Apt sources.lst to tell the package manager to consult Lumiera.org for new packages. Either edit your /etc/apt/sources.lst (or files in /etc/apt/sources.lst.d) directly with a text editor, or use your favourite graphical package management front-end, e.g. synaptic. (In synaptic, you add this configuration as a new »package source«). For any of these package manager and installation tasks, you need root (sysadmin) permissions.
If you’re installing binary packages, be sure the apt configuration line actually matches your system and architecture (i386, x86_64). Binary packages are quite fragile with respect to the prerequisites. If you ignore this warning, chances are that either Apt will refuse to install due to some clash with libraries / other software installed on your system, or that the installed Lumiera Application will fail with strange errors. |
Distribution | Arch. | APT configuration line |
---|---|---|
Buster |
i386 x86_64 |
|
|
||
Focal |
x86_64 |
|
|
||
Bullseye |
(x86_64) |
|
|
||
Bookworm |
(i386 x86_64) |
|
|
GPG signing key
Modern debian based systems rely on secure Apt — which refuses to install a package
unless the GPG signature can be verified. The Lumiera packages are signed by Ichthyo’s
GPG key (Key-ID 62382557
Fingerprint 11FD F5D2 DBD7 BBD7 F4D9 D9C4 2CF2 5392 6238 2557
),
which can be retrieved from the usual keyservers (e.g.
here or
here).
Finally, after fetching this public key, you need to add it to your Apt keyring, which
is done with the
apt-key add
FILENAME command. Alternatively you can also pipe the key directly
from GPG, after fetching it from the keyserver
gpg --keyserver keyserver.ubuntu.com --recv 62382557
gpg --export -a 62382557 | sudo apt-key add -
building the source package instead
In case there is no suitable binary package, you’re better off compiling from source, as this yields an executable tailored to your specific system. On Debian/Mint/Ubuntu systems, compiling from Debian source packages is easy and convenient: After adding one of the deb-src lines listed in the table above (pick the one closest to your system), just run:
sudo apt-get build-dep nobug
apt-get source --compile nobug
sudo dpkg -i nobug-dev*deb libnobug*deb
sudo apt-get build-dep libgdlmm-3-dev
apt-get source --compile libgdlmm-3-dev
sudo dpkg -i libgdlmm-3*deb
sudo apt-get build-dep lumiera
apt-get source --compile lumiera
sudo dpkg -i lumiera*deb
→ more on building via Debian source package
Installing
-
For installing precompiled binary packages:
-
add the package source (see above)
-
sudo apt-get update
-
check the configuration:
apt-cache policy lumiera
(version might be different in your case)
lumiera: Candidate: 0.pre.01-3 Version table: *** 0.pre.01-3 0 500 http://lumiera.org buster/experimental Packages
-
install it:
sudo apt-get install lumiera
-
-
If installing a debian package built locally from a debian source package…
after successfully building, you’ll find a
*.deb
package (version and architecture might be different, depending on your situation). If you haven’t already done so, please install these packages onto your system:sudo dpkg -i lumiera_0.pre.01-3_amd64.deb libnobug2_201008.1-2_amd64.deb
After installing successfully, you might want to clean up the build directory.
Maintainer documentation
This Debian-Depot is part of the Lumiera build infrastructure.
It is managed automatically, based on the reprepro tool by Bernhard Link
→ more informations for developers and maintainers