Package: bluetooth Source: bluez Version: 5.56-1~bpo10+1 Architecture: all Maintainer: Debian Bluetooth Maintainers Installed-Size: 71 Depends: bluez Suggests: bluez-cups, bluez-obexd, bluez-meshd Homepage: http://www.bluez.org Priority: optional Section: admin Filename: pool/main/b/bluez/bluetooth_5.56-1~bpo10+1_all.deb Size: 44676 SHA256: e82bcdd40fb12ab394514a27138d623e6aae7226693db326bb001b0ee4166dd7 SHA1: fadacc3b9a4826c1c15ac8e71acf37348f22cd8e MD5sum: bec8fa03ff944df9afdcc45849237d63 Description: Bluetooth support (metapackage) This package provides all of the different plugins supported by the Bluez bluetooth stack. Package: bluez-source Source: bluez Version: 5.56-1~bpo10+1 Architecture: all Maintainer: Debian Bluetooth Maintainers Installed-Size: 34099 Homepage: http://www.bluez.org Priority: optional Section: admin Filename: pool/main/b/bluez/bluez-source_5.56-1~bpo10+1_all.deb Size: 34887172 SHA256: ae700257bdda8e6566d297221136dcf967b766c98bca3c8be254412d4e402e24 SHA1: 2edb48ff22171478f062928ba82e3acc1e18128e MD5sum: 1c3227896d626c74ccf905ef6da7ce33 Description: Source code for the BlueZ Linux Bluetooth stack This package contains the sources and patches which are needed to build bluez. . BlueZ is the official Linux Bluetooth protocol stack. It is an Open Source project distributed under GNU General Public License (GPL). Package: bluez-test-scripts Source: bluez Version: 5.56-1~bpo10+1 Architecture: all Maintainer: Debian Bluetooth Maintainers Installed-Size: 260 Homepage: http://www.bluez.org Priority: optional Section: admin Filename: pool/main/b/bluez/bluez-test-scripts_5.56-1~bpo10+1_all.deb Size: 75044 SHA256: fa89c54feea88ecf29d8a3ec9bb81431a8d13bdba59ce89dc15fe61ea69c1c60 SHA1: 20570aee01aed5699fd4731c15a8f77ec60b632a MD5sum: e722fc6baea605944ed2c7268cbb4bfb Description: test scripts of bluez This package contains test scripts for using BlueZ. . BlueZ is the official Linux Bluetooth protocol stack. It is an Open Source project distributed under GNU General Public License (GPL). Package: libpipewire-0.3-common Source: pipewire Version: 0.3.32-1~bpo10+1 Architecture: all Maintainer: Utopia Maintenance Team Installed-Size: 471 Multi-Arch: foreign Homepage: https://pipewire.org/ Priority: optional Section: libs Filename: pool/main/p/pipewire/libpipewire-0.3-common_0.3.32-1~bpo10+1_all.deb Size: 55040 SHA256: 6d4de17b81a1137a8ce8b42090e2e0edf4eede95c793701d04e0e61c2242981c SHA1: 6999277941e42e2119bfd3029a646044d600e7f8 MD5sum: c48dac1e0cd72b2867342842f598b9bd Description: libraries for the PipeWire multimedia server - common files PipeWire is a server and user space API to deal with multimedia pipelines. This includes: . - Making available sources of video (such as from a capture devices or application provided streams) and multiplexing this with clients. - Accessing sources of video for consumption. - Generating graphs for audio and video processing. . This package is needed for the runtime libraries to display messages in languages other than English. Package: mini-soong Version: 0.20201028~bpo10+1 Architecture: all Maintainer: Android Tools Maintainers Installed-Size: 62 Depends: python3-pkg-resources, python3-debian, python3-pyparsing, python3-sh, python3:any Provides: dh-soong Homepage: https://salsa.debian.org/android-tools-team/mini-soong Priority: optional Section: devel Filename: pool/main/m/mini-soong/mini-soong_0.20201028~bpo10+1_all.deb Size: 11756 SHA256: 0456c0a6e9852956af3da6efc0738c3b02e6ffd8c9ec860392c0866b0567cd89 SHA1: c06eba276cfbb35f0710f2ee8c9de2e1efd2ebaa MD5sum: 969cbbaa792f84ceb6d3926da3d90a32 Description: minimalist Soong build system reimplementation Mini-Soong is a minimalist and incomplete reimplementation of Soong, the Android build system. It is intended to simplify the packaging of parts of Android for Debian. It is not intended to be a complete replacement for Soong. Package: pipewire-doc Source: pipewire Version: 0.3.32-1~bpo10+1 Architecture: all Maintainer: Utopia Maintenance Team Installed-Size: 83274 Breaks: libpipewire-0.2-doc (<< 0.3.1) Replaces: libpipewire-0.2-doc (<< 0.3.1) Multi-Arch: foreign Homepage: https://pipewire.org/ Priority: optional Section: doc Filename: pool/main/p/pipewire/pipewire-doc_0.3.32-1~bpo10+1_all.deb Size: 58176328 SHA256: 3af5bef69aab5606e038d41e15f56b86147cca0ac7ad017aaf78201840060701 SHA1: 5ac78c1c450435434e979eaa8822cece795c873d MD5sum: 546c5a01e709c082e2867a4eced411a9 Description: libraries for the PipeWire multimedia server - documentation PipeWire is a server and user space API to deal with multimedia pipelines. This includes: . - Making available sources of video (such as from a capture devices or application provided streams) and multiplexing this with clients. - Accessing sources of video for consumption. - Generating graphs for audio and video processing. . This package contains the API reference. Package: pypy-pyparsing Source: pyparsing Version: 2.4.7-1~bpo10+1 Architecture: all Maintainer: Debian Python Modules Team Installed-Size: 342 Depends: pypy Suggests: python-pyparsing-doc Homepage: https://github.com/pyparsing/pyparsing/ Priority: optional Section: python Filename: pool/main/p/pyparsing/pypy-pyparsing_2.4.7-1~bpo10+1_all.deb Size: 109324 SHA256: c5791473adcfa2fd4eae1c7f6000f86504bc743cbe63af4faf07f56173567193 SHA1: 780d37d146fa3b19cf55f7be34496ecc30bc7b0d MD5sum: f34c2a7065b11a10714a90314b33753c Description: alternative to creating and executing simple grammars - pypy The parsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The parsing module provides a library of classes that client code uses to construct the grammar directly in Python code. . Here's an example: . from pyparsing import Word, alphas greet = Word(alphas) + "," + Word(alphas) + "!" hello = "Hello, World!" print hello, "->", greet.parseString(hello) . This package contains the PyPy version of python-pyparsing. Package: python-pyparsing-doc Source: pyparsing Version: 2.4.7-1~bpo10+1 Architecture: all Maintainer: Debian Python Modules Team Installed-Size: 1877 Depends: libjs-sphinxdoc (>= 1.0) Multi-Arch: foreign Homepage: https://github.com/pyparsing/pyparsing/ Priority: optional Section: doc Filename: pool/main/p/pyparsing/python-pyparsing-doc_2.4.7-1~bpo10+1_all.deb Size: 559112 SHA256: 84e911c2a29b9477ec8c17db1367285cf670385e7b3d97c768b1d82486e2265d SHA1: fede33683a0c2f7b94595ccc231603f682b45e18 MD5sum: c6ad9487d28cf97dda715f9be76923fc Description: alternative to creating and executing simple grammars - doc The parsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The parsing module provides a library of classes that client code uses to construct the grammar directly in Python code. . Here's an example: . from pyparsing import Word, alphas greet = Word(alphas) + "," + Word(alphas) + "!" hello = "Hello, World!" print hello, "->", greet.parseString(hello) . This package contains documentation for python-pyparsing. Package: python3-pyparsing Source: pyparsing Version: 2.4.7-1~bpo10+1 Architecture: all Maintainer: Debian Python Modules Team Installed-Size: 342 Depends: python3:any Suggests: python-pyparsing-doc Homepage: https://github.com/pyparsing/pyparsing/ Priority: optional Section: python Filename: pool/main/p/pyparsing/python3-pyparsing_2.4.7-1~bpo10+1_all.deb Size: 109332 SHA256: 3c79ae49505779320b822fdb9a213036722564a7a1b540a3468eaca13442e30c SHA1: c46ae6b6e311d4bf15c3b31bfb8dc2c971a55452 MD5sum: 08965ba06d52f267561bb17706d3826d Description: alternative to creating and executing simple grammars - Python 3.x The parsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The parsing module provides a library of classes that client code uses to construct the grammar directly in Python code. . Here's an example: . from pyparsing import Word, alphas greet = Word(alphas) + "," + Word(alphas) + "!" hello = "Hello, World!" print hello, "->", greet.parseString(hello) . This package contains the Python 3.x version of python-pyparsing. Package: upower-doc Source: upower Version: 0.99.12-1~bpo10+1 Architecture: all Maintainer: Utopia Maintenance Team Installed-Size: 363 Suggests: devhelp Multi-Arch: foreign Homepage: https://upower.freedesktop.org/ Priority: optional Section: doc Filename: pool/main/u/upower/upower-doc_0.99.12-1~bpo10+1_all.deb Size: 47220 SHA256: 65a8579b696b517efb8932fab91ac017efff0f196bc018010d3f2555b18a8fec SHA1: 539b1b31ac8fdde541fd34cdd3ec061abd5d8ac2 MD5sum: 3c4b6365140fea4ad6074e0472b2e616 Description: abstraction for power management - documentation upower provides an interface to enumerate power sources on the system and control system-wide power management. Any application can access the org.freedesktop.UPower service on the system message bus. Some operations (such as suspending the system) are restricted using PolicyKit. Package: xdg-desktop-portal-dev Source: xdg-desktop-portal Version: 1.8.1-1~bpo10+1.1 Architecture: all Maintainer: Utopia Maintenance Team Installed-Size: 692 Breaks: libflatpak-dev (<< 0.10.4-1~), xdg-desktop-portal (<< 0.5-2~) Replaces: libflatpak-dev (<< 0.10.4-1~), xdg-desktop-portal (<< 0.5-2~) Multi-Arch: foreign Homepage: https://github.com/flatpak/xdg-desktop-portal Priority: optional Section: admin Filename: pool/main/x/xdg-desktop-portal/xdg-desktop-portal-dev_1.8.1-1~bpo10+1.1_all.deb Size: 53244 SHA256: c5d6117685bc72e25fb28d0b32394960f9628561363fc94987dd2b02532e0643 SHA1: 249e8f78bf2afb659c1288836b0dd26f7bf89584 MD5sum: b4d91083f4a6a49d88a9757a50856974 Description: desktop integration portal - development files xdg-desktop-portal provides a portal frontend service for Flatpak, Snap, and possibly other desktop containment/sandboxing frameworks. This service is made available to the sandboxed application, and provides mediated D-Bus interfaces for file access, URI opening, printing and similar desktop integration features. See the xdg-desktop-portal package's description for more details. . This package contains development files for backends such as xdg-desktop-portal-gtk.