Posts Tagged ‘Debian packaging’
Creating configuration files in /etc in Debian packages
I am currently working on an updated picockpit-client version, which should add additional configuration files in /etc/picockpit-client for the individual modules (PiDoctor & PiControl). picockpit-client is a Raspbian package for picockpit.com, linking the Web platform with your individual Raspberry Pi. As Raspbian is based on Debian, the following information holds true for general packaging for…
WeiterlesenSpecifying Debian dependency between two versions & apt-get installing .deb files
These informations are probably of most interest to package maintainers: Dependency on specific package versions Here is how to specify a python3 dependency between version 3.5 (equals to or later), and 3.6 (must be earlier) in debian/control: Depends: python3 (>= 3.5), python3 (<< 3.6) So you basically specify two dependencies. Note, this will not work…
Weiterlesen