File: control

package info (click to toggle)
pako 0.3.1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 280 kB
  • sloc: python: 347; makefile: 8
file content (37 lines) | stat: -rw-r--r-- 1,497 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Source: pako
Section: python
Priority: optional
Maintainer: Scarlett Moore <sgmoore@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-python,
               python3-setuptools,
               python3-all,
               python3-platformdirs,
Standards-Version: 4.6.1
Homepage: https://github.com/MycroftAI/pako
Vcs-Browser: https://salsa.debian.org/mycroftai-team/pako
Vcs-Git: https://salsa.debian.org/mycroftai-team/pako.git
Rules-Requires-Root: no

Package: python3-pako
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
Suggests: python-pako-doc
Description: Universal package manager library (Python 3)
 Often, scripts need to install system dependencies using the native
 package manager of the user's OS. Typically, this is solved by having
 some bash script that runs apt-get, assuming the user is on Ubuntu.
 Smarter scripts use hand crafted code to detect the user's platform
 and aggregate a set of dependencies on a few of the more popular platforms.
 This approach is different:
  - pako install libgdbm-devel sdl2-dev
 On Ubuntu, this command will run:
  - sudo apt-get install -y libgdbm-dev libsdl2-dev
 However, on Solus, this will run:
  - sudo eopkg install -y gdbm-devel sdl2-devel
 Works as follows:
  - Parse package format (devel/debug/normal library or executable)
  - Look up package managers that exist in PATH
  - Format parsed package with common package convention of package manager
 .
 This package installs the binary for Python 3.