Bug#1082101: ipmitool sdr type stopped accepting raw hex values

2024-09-18 Thread Thomas Goirand
Package: ipmitool
Severity: important
Tags: patch

Hi,

Upstream has a patch that fixes using hex values when sending raw data. I've
attached it to this bug report, though it's available here:
https://codeberg.org/IPMITool/ipmitool/commit/202f7427e0a4d1f319fc4b914676cc2f08da6c6c

Please apply it in the Debian package.

It'd be nice to have this patch also applied in Debian Stable. If you do not
have enough available time to handle it, I can take care of this once the
patch lands in Debian Testing.

Cheers,

Thomas Goirand (zigo)
>From 202f7427e0a4d1f319fc4b914676cc2f08da6c6c Mon Sep 17 00:00:00 2001
From: Alexander Amelkin 
Date: Tue, 17 Sep 2024 15:15:45 +0300
Subject: [PATCH] sdr: Refix 6e037d6bfbbb93b349c8ca331ebde03a (#41)

A bug was introduced by commit 6e037d6bfbbb93b349c8ca331ebde03a837f76bf
due to which the command `ipmitool sdr type` stopped accepting raw
hex values for the type and would only accept strings.

Fix that by partially reverting the troublesome commit.

Additionally, apply the logic of that commit to calls of
`strcasecmp()` in ipmi_sdr.c.

Resolves https://codeberg.org/IPMITool/ipmitool/issues/41

Signed-off-by: Alexander Amelkin 
---
 lib/ipmi_sdr.c | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/lib/ipmi_sdr.c b/lib/ipmi_sdr.c
index abd4ee1..4732762 100644
--- a/lib/ipmi_sdr.c
+++ b/lib/ipmi_sdr.c
@@ -4570,8 +4570,9 @@ ipmi_sdr_print_type(struct ipmi_intf *intf, char *type)
uint8_t sensor_type = 0;
 
if (!type ||
-   strcasecmp(type, "help") == 0 ||
-   strcasecmp(type, "list") == 0) {
+   !strcasecmp(type, "help") ||
+   !strcasecmp(type, "list"))
+   {
printf("Sensor Types:\n");
for (x = 1; x < SENSOR_TYPE_MAX; x += 2) {
printf("\t%-25s (0x%02x)   %-25s (0x%02x)\n",
@@ -4581,7 +4582,7 @@ ipmi_sdr_print_type(struct ipmi_intf *intf, char *type)
return 0;
}
 
-   if (!strcmp(type, "0x")) {
+   if (!strncmp(type, "0x", 2)) {
/* begins with 0x so let it be entered as raw hex value */
if (str2uchar(type, &sensor_type) != 0) {
lprintf(LOG_ERR,
@@ -4591,7 +4592,7 @@ ipmi_sdr_print_type(struct ipmi_intf *intf, char *type)
}
} else {
for (x = 1; x < SENSOR_TYPE_MAX; x++) {
-   if (strcasecmp(sensor_type_desc[x], type) == 0) {
+   if (!strcasecmp(sensor_type_desc[x], type)) {
sensor_type = x;
break;
}
@@ -4638,8 +4639,8 @@ ipmi_sdr_print_entity(struct ipmi_intf *intf, char 
*entitystr)
int rc = 0;
 
if (!entitystr ||
-   strcasecmp(entitystr, "help") == 0 ||
-   strcasecmp(entitystr, "list") == 0) {
+   !strcasecmp(entitystr, "help") ||
+   !strcasecmp(entitystr, "list")) {
print_valstr_2col(entity_id_vals, "Entity IDs", -1);
return 0;
}
@@ -4654,7 +4655,7 @@ ipmi_sdr_print_entity(struct ipmi_intf *intf, char 
*entitystr)
 
/* now try string input */
for (i = 0; entity_id_vals[i].str; i++) {
-   if (strcasecmp(entitystr, 
entity_id_vals[i].str) == 0) {
+   if (!strcasecmp(entitystr, 
entity_id_vals[i].str)) {
entity.id = entity_id_vals[i].val;
entity.instance = 0x7f;
j=1;


Bug#1082100: Please maintain ipmitool on Salsa

2024-09-18 Thread Thomas Goirand
Package: ipmitool
Version: 1.8.19-4+deb12u1
Severity: wishlist

Hi,

Could you please move ipmitool's Git to Salsa? The current repo isn't hosted
by Debian, and doesn't even seem to support MR...

BTW, that's the case for many of your (important) packages:
- dmidecode
- ipmiutil
- xsane
- ...

Could you move all of these to Salsa, and have them team-maintained? I'd love
to join a team doing all of the server-side things like ipmitool or dmidecode.
Single maintainer packages isn't nice...

Cheers,

Thomas Goirand (zigo)



Bug#1058392: python-oauth2client: FTBFS: failed tests

2024-09-18 Thread Thomas Goirand

On 9/17/24 22:31, Alexandre Detiste wrote:

Hi,

I think that at this point it's better to fix the last four
remaining remaining reverse dependencies than to fix
unmaintained python-oauth2client & python-unittest2 forever.


I very much agree. I spent already too much time on such unmaintained 
(upstream) package, and couldn't find a solution to properly fix this 
package (it still FTBFS even with Mickael's patch).



I already filled 2 bugs:


Thanks a lot for this!

Cheers,

Thomas Goirand (zigo)



Bug#1081993: ITP: python-infoblox-client -- client for interacting with Infoblox NIOS over WAPI

2024-09-17 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-infoblox-client
  Version : 0.6.0
  Upstream Author : John Belamaric 
* URL : https://github.com/infobloxopen/infoblox-client
* License : Apache-2.0
  Programming Lang: Python
  Description : client for interacting with Infoblox NIOS over WAPI

 This package provides a client for interacting with Infoblox NIOS over WAPI.
 .
 Network Identity Operating System (NIOS) is the operating system that powers
 Infoblox core network services, ensuring non-stop operation of network
 infrastructure. The basis for Next Level Networking, NIOS automates the
 error-prone and time-consuming manual tasks associated with deploying and
 managing DNS, DHCP, and IP address management (IPAM) required for continuous
 network availability and business uptime.

This is a new dependency of OpenStack Designate, aka OpenStack DNSaaS.



Bug#1081468: ITP: python-crc -- library and CLI to calculate and verify all kinds of CRC checksums

2024-09-11 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-crc
  Version : 7.0.0
  Upstream Author : Nicola Coretti 
* URL : https://github.com/Nicoretti/crc
* License : BSD-2-clause
  Programming Lang: Python
  Description : library and CLI to calculate and verify all kinds of CRC 
checksums

 This package provides a library and CLI to calculate and verify all kinds of
 CRC checksums. The library includes a variety of common CRC configurations for
 convenience.

I intend to maintain this package within the Home Assistant team.



Bug#1081466: ITP: python-airtouch5py -- client for the airtouch 5

2024-09-11 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-airtouch5py
  Version : 0.2.10
  Upstream Author : Dave Leaver 
* URL : https://github.com/danzel/airtouch5py
* License : Apache-2.0
  Programming Lang: Python
  Description : client for the airtouch 5

 This package provides a client for the airtouch 5.
 .
 This package is a dependency of Home Assistant.



Bug#1081465: ITP: python-airtouch4pyapi -- api allowing control temperature of an Airtouch 4 controller

2024-09-11 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-airtouch4pyapi
  Version : 1.0.8
  Upstream Author : Sam Sinnamon 
* URL : https://github.com/LonePurpleWolf/airtouch4pyapi
* License : Expat
  Programming Lang: Python
  Description : api allowing control temperature of an Airtouch 4 controller

 This package provides a client for the api allowing control of AC state
 (temperature, on/off, mode) of an Airtouch 4 controller locally over TCP.
 .
 This package is a dependency of Home Assistant.



Bug#1081378: RM: python-atomicwrites-homeassistant -- ROM; duplicate

2024-09-11 Thread Thomas Goirand
Package: ftp.debian.org
Severity: normal
User: ftp.debian@packages.debian.org
Usertags: remove

Hi,

python-atomicwrites-homeassistant is a fork of atomicwrites. I did a diff of
both packages, and they are they same exact one unique __init__.py. What
happened is that atomicwrites got abandonned upstream, and then forked by
atomicwrites-homeassistant. I wasn't aware it was unmodified.

What should happen, is the atomicwrites should addopt the new upstream URL
and use that from now on, and maybe add a:
 Provides: python3-atomicwrites-homeassistant

Cheers,

Thomas Goirand (zigo)



Bug#1080250: python3-atomicwrites-homeassistant has an undeclared file conflict on /usr/lib/python3/dist-packages/atomicwrites/__init__.py

2024-09-11 Thread Thomas Goirand

Hi,

The issue really is in atomicwrites-homeassistant that should never have 
been uploaded. I'll ask for a RM of that package. In the mean while, I 
think it's ok to ignore this bug.


Cheers,

Thomas Goirand (zigo)



Bug#1081355: ITP: python-aioslimproto -- talk to Logitech Squeezebox players directly (without Logitech server)

2024-09-10 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioslimproto
  Version : 3.0.1
  Upstream Author :  >
* URL : https://github.com/home-assistant-libs/aioslimproto
* License : Apache-2.0
  Programming Lang: Python
  Description : talk to Logitech Squeezebox players directly (without 
Logitech server)

 This package provides a Python module to talk to Logitech Squeezebox players
 directly (without Logitech server).
 .
 This package is a dependency of Home Assistant.



Bug#1081292: ITP: python-sanix -- wrapper for getting measurements data from Sanix devices

2024-09-10 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-sanix
  Version : 1.0.6
  Upstream Author : Tomasz Słuszniak 
* URL : https://github.com/tomaszsluszniak/sanix_py
* License : Expat
  Programming Lang: Python
  Description : wrapper for getting measurements data from Sanix devices
 
 This package provides a wrapper for getting measurement data from Sanix 
devices.
 .
 This package is a dependency of Home Assistant.


Bug#1081262: ITP: python-samsungtvws -- Samsung Smart TV WS API wrapper

2024-09-09 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-samsungtvws
  Version : 2.6.0
  Upstream Contact: (c) 2017 Victor Rachieru
* URL : https://github.com/xchwarze/samsung-tv-ws-api
* License : Expat
  Programming Lang: Python
  Description : Samsung Smart TV WS API wrapper

 This package provides a Samsung Smart TV WS API wrapper.
 .
 This is a dependency of Home Assistant.



Bug#1081240: ITP: python-rxv -- automation Library for Yamaha receivers

2024-09-09 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-rxv
  Version : 0.7.0
  Upstream Author : Wojciech Bederski 
* URL : https://github.com/wuub/rxv
* License : BSD-2-clause
  Programming Lang: Python
  Description : automation Library for Yamaha receivers

 This package provides an automation Library for for Yamaha RX-V473, RX-V573,
 RX-V673, RX-V773 receivers.
 .
 This package is a dependency of Home Assistant.



Bug#1081237: ITP: python-samsungctl -- Remote control Samsung televisions via TCP/IP connection

2024-09-09 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-samsungctl
  Version : 0.7.1
  Upstream Author : Lauri Niskanen 
* URL : https://github.com/Ape/samsungctl
* License : Expat
  Programming Lang: Python
  Description : Remote control Samsung televisions via TCP/IP connection

 This package provides a library and a command line tool for remote controlling
 Samsung televisions via a TCP/IP connection. It currently supports both
 pre-2016 TVs as well most of the modern Tizen-OS TVs with Ethernet or Wi-Fi
 connectivity.
 .
 This package is a dependency of Home Assistant.



Bug#1081203: ITP: python-threadloop -- Tornado IOLoop Backed Concurrent Futures

2024-09-09 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-threadloop
  Version : 1.0.2
  Upstream Contact: Grayson Koonce 
* URL : https://github.com/TomerFi/aioswitcher
* License : Expat
  Programming Lang: Python
  Description : Tornado IOLoop Backed Concurrent Futures

 This package provides a way to run Tornado Coroutines from Synchronous Python.
 .
 Tornado is a Python web framework and asynchronous networking library,
 originally developed at FriendFeed. By using non-blocking network I/O,
 Tornado can scale to tens of thousands of open connections, making it ideal
 for long polling, WebSockets, and other applications that require a
 long-lived connection to each user.



Bug#1081172: ITP: python-idasen -- ikea IDÅSEN desk API and CLI

2024-09-08 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-idasen
  Version : 0.12.0
  Upstream Author : Alex Martens 
* URL : https://github.com/newAM/idasen
* License : Expat
  Programming Lang: Python
  Description : ikea IDÅSEN desk API and CLI.

 The IDÅSEN is an electric sitting standing desk with a Linak controller sold
 by ikea. The position of the desk can controlled by a physical switch on the
 desk or via bluetooth using an phone app.
 .
 This is a command line interface written in python to control the Idasen via
 bluetooth from a desktop computer.


Bug#1081170: ITP: python-idasen-ha -- Home Assistant helper lib for the IKEA Idasen Desk integration

2024-09-08 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-idasen-ha
  Version : 2.6.2
  Upstream Author : null >
* URL : https://github.com/abmantis/idasen-ha/
* License : Expat
  Programming Lang: Python
  Description : Home Assistant helper lib for the IKEA Idasen Desk 
integration

 This package provides a Home Assistant helper library for accessing to the
 IKEA Idasen Desk integration.
 .
 This package is a dependency of Home Assistant.


Bug#1081168: ITP: python-ibeacon-ble -- parser for iBeacon devices

2024-09-08 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-ibeacon-ble
  Version : 1.2.0
  Upstream Author : J. Nick Koston 
* URL : https://github.com/bluetooth-devices/ibeacon-ble
* License : Expat
  Programming Lang: Python
  Description : parser for iBeacon devices

 This package provides a parser for iBeacon devices.
 .
 This package is a dependency of Home Assistant.



Bug#1081167: ITP: python-iaqualink -- Asynchronous library for Jandy iAqualink

2024-09-08 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-iaqualink
  Version : 0.5.0
  Upstream Author : null >
* URL : https://github.com/flz/iaqualink-py
* License : BSD-3-clause
  Programming Lang: Python
  Description : Asynchronous library for Jandy iAqualink

 This package provides access and control of the Jandy iAqualink pool devices.
 .
 This package is a dependency of Home Assistant.



Bug#1081164: ITP: python-hyperion-py -- Hyperion Ambient Lighting support

2024-09-08 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-hyperion-py
  Version : 0.7.5
  Upstream Author : Dermot Duffy 
* URL : https://github.com/dermotduffy/hyperion-py
* License : Expat
  Programming Lang: Python
  Description : Hyperion Ambient Lighting Python Package

 This package provides a library for Hyperion-NG
 (https://github.com/hyperion-project/hyperion.ng). See JSON API
 (https://docs.hyperion-project.org/en/json/) for more details about the inputs
 and outputs of this library.
 .
 This package is a dependency of Home Assistant.



Bug#1081141: ITP: python-crownstone-cloud -- get data from the cloud, and switch Crownstones

2024-09-08 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-crownstone-cloud
  Version : 1.4.11
  Upstream Author : Crownstone B.V. 
* URL : 
https://github.com/Crownstone-Community/crownstone-lib-python-cloud
* License : Apache-2.0
  Programming Lang: Python
  Description : get data from the cloud, and switch Crownstones

 This package provides provides an asynchronous Python library to get data from
 the cloud, and switch Crownstones. Functionality:
  * Async: using asyncio and aiohttp, optimized for speed.
  * Easy to use: sync all your Crownstone Cloud data with just one command!
  * Structurally sound: find your data with ease!
  * Complete: set the switch state and brightness of your Crownstones remotely!
  * Flexible: Login and get the data for multiple accounts at once!
 .
 This package is a dependency of Home Assistant.



Bug#1081128: ITP: python-bluecurrent-api -- wrapper for the Blue Current websocket API

2024-09-08 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-bluecurrent-api
  Version : 1.2.3
  Upstream Contact: Floris272 
* URL : https://github.com/bluecurrent/HomeAssistantAPI
* License : Expat
  Programming Lang: Python
  Description : wrapper for the Blue Current websocket API

 This package provides an asyncio-driven library that interfaces with the
 Websocket API provided by Blue Current. This was made for the Blue Current
 Home Assistant integration.



Bug#1081067: ITP: python-bimmer-connected -- Library to read data from the BMW Connected Drive portal

2024-09-07 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-bimmer-connected
  Version : 0.16.3
  Upstream Author : gerard33, rikroe 
* URL : https://github.com/bimmerconnected/bimmer_connected
* License : Apache-2.0
  Programming Lang: Python
  Description : Library to read data from the BMW Connected Drive portal

 This package provides a simple library to query and control the status of cars
 from brands BMW, Mini, or Toyota Supra vehicle from the MyBMW portal.
 .
 This package is a dependency of Home Assistant.



Bug#1081062: ITP: python-bellows -- Library implementing EZSP

2024-09-07 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-bellows
  Version : 0.40.5
  Upstream Author : null >
* URL : https://github.com/zigpy/bellows
* License : GPL-2+
  Programming Lang: Python
  Description : Library implementing EZSP

 Bellows is a Python 3 library implementation for the zigpy
 (https://github.com/zigpy/zigpy) project to add Zigbee radio support for
 Silicon Labs EM35x ("Ember") and EFR32 ("Mighty Gecko") based Zigbee
 coordinator devices using the EZSP (EmberZNet Serial Protocol) interface.
 .
 The project can be used as a stand-alone library, however, the main goal of
 this project is to add native support for EmberZNet Zigbee radio based USB
 stick devices (a.k.a. "Ember" and "Mighty Gecko" based
 adapters/dongles/modules) to Home Assistant's built-in ZHA (Zigbee Home
 Automation) integration component, all owing Home Assistant with such
 hardware to nativly support direct control of compatible Zigbee devices, such
 as; Philips HUE, GE, Ledvance, Osram Lightify, Xiaomi/Aqara, IKEA Tradfri,
 Samsung SmartThings, and many more.
 .
 See https://www.home-assistant.io/integrations/zha/
 .
 Bellows interacts with the Zigbee Network Coprocessor (NCP) with EmberZNet PRO
 Zigbee coordinator firmware using the EZSP protocol serial interface APIs via
 via UART for Silicon Labs EM35x and EFR32 Zigbee radio module/chips hardware.
 The library currently supports the Silicon Labs EZSP (EmberZNet Serial
 Protocol) API versions v4/v5/v6/v7/v8 for Silabs older EM35x "Ember" and their
 newer EFR32 "Mighty Gecko" SoCs using ASH protocols over a serial interface.

I intend to maintain this package within the Home Assistant team.



Bug#1081063: ITP: python-pure-pcapy3 -- Pure Python reimplementation of pcapy

2024-09-07 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-pure-pcapy3
  Version : 1.0.1
  Upstream Contact: Stanislaw Pitucha 
* URL : https://github.com/rcloran/pure-pcapy-3
* License : Simplified-BSD
  Programming Lang: Python
  Description : Pure Python reimplementation of pcapy

 This package provides an API-compatible replacement for the popular pcapy
 package. Since it is a pure-Python package, it cannot access some elements
 like live traffic capture directly. Only file operations are allowed right
 now. Any operation which is available in pcapy and could not be implemented
 here will throw NotImplementedError. Behaviour should be compatible up to the
 text of some exceptions (tests are included).

I intend to maintain this package within the Home Assistant team.



Bug#1081046: ITP: python-asyncsleepiq -- ASync SleepIQ API

2024-09-07 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-asyncsleepiq
  Version : 1.5.3
  Upstream Author : Keilin Bickar 
* URL : http://github.com/kbickar/asyncsleepiq
* License : Expat
  Programming Lang: Python
  Description : ASync SleepIQ API

 AsyncSleepIQ is an library for accessing the SleepIQ API from Python. SleepIQ
 (http://www.sleepnumber.com/sn/en/sleepiq-sleep-tracker) is an addon for Sleep
 Number beds (http://www.sleepnumber.com/).
 .
 This package is a dependency of Home Assistant.



Bug#1080977: ITP: oscs -- OpenStack cloud selector parses credentials from clouds.yaml

2024-09-06 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: oscs
  Version : 0.0.1
  Upstream Contact: Bertrand Lanson 
* URL : https://salsa.debian.org/openstack-team/clients/oscs
* License : Expat
  Programming Lang: Python
  Description : OpenStack cloud selector parses credentials from clouds.yaml

 This package provides a parser for the ~/.config/openstack/clouds.yaml and
 makes it possible to select one of the, by exporting the OS_CLOUD environment
 variable. When using "oscs set" without any argument, oscs displays a nice fzf
 ncurse dialogue where uses can select what cloud to use with the arrow keys.
 .
 The way to use it, is to source /usr/share/oscs/oscs from your .bashrc.



Bug#1080971: ITP: python-asyncarve -- Simple Arve library

2024-09-05 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-asyncarve
  Version : 0.1.1
  Upstream Contact: ikalnyi 
* URL : https://github.com/arvetech/asyncarve
* License : Expat
  Programming Lang: Python
  Description : Simple Arve library

 This package allows to acquire the latest measurement data and information
 about the device programmatically. It is mainly created to allow third-party
 programs to get and display the measurements of the device.



Bug#1080488: ITP: python-foobot-async -- Foobot device (Air Quality Monitoring) client

2024-09-04 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-foobot-async
  Version : 1.0.1
  Upstream Contact: Fabien Piuzzi 
* URL : https://github.com/reefab/foobot_async
* License : Expat
  Programming Lang: Python
  Description : Foobot device (Air Quality Monitoring) client

 This package provides an API Client for the Foobot Air Quality Monitoring
 devices (https://foobot.io).
 .
 This package is a dependency of Home Assistant.



Bug#1080389: ITP: cyborg -- OpenStack Acceleration as a Service

2024-09-03 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: cyborg
  Version : 12.0.0
  Upstream Contact: OpenStack Foundtaion 
* URL : https://opendev.org/openstack/cyborg
* License : Apache-2.0
  Programming Lang: Python
  Description : OpenStack Acceleration as a Service

 Cyborg provides a general management framework for accelerators such as FPGA,
 GPU, SoCs, NVMe SSDs, CCIX caches, DPDK/SPDK, pmem and so forth. It provides a
 REST API for basic accelerator life cycle management, and has a generic driver
 for common accelerator support.



Bug#1080033: ITP: python-aranet4 -- Aranet Python client

2024-08-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aranet4
  Version : 2.4.0
  Upstream Author : Anrijs Jargans 
* URL : https://github.com/Anrijs/Aranet4-Python
* License : Expat
  Programming Lang: Python
  Description : Aranet Python client

 This package provides a Python library and command line interface for Aranet4,
 Aranet2, Aranet Radiation and Aranet Radon Plus sensors.
 .
 This package is a dependency of Home Assistant.



Bug#1080032: ITP: python-apsystems-ez1 -- interface for interacting with the local API of APsystems EZ1 Microinverters

2024-08-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-apsystems-ez1
  Version : 2.3.0
  Upstream Author : Sonnenladen GmbH 
* URL : https://github.com/SonnenladenGmbH/APsystems-EZ1-API
* License : Expat
  Programming Lang: Python
  Description : interface for interacting with the local API of APsystems 
EZ1 Microinverters.

 This package provides a Python library that can be used to interact with
 APsystems EZ1 Microinverters. It provides a convenient way to communicate with
 the microinverter over your local network, allowing to read and set various
 device parameters like power status, alarm information, device information,
 and power limits.
 .
 Features:
  - Get detailed device information
  - Retrieve alarm status information
  - Fetch output data (power output, energy readings)
  - Set and get maximum power limits (30 W up to 800 W)
  - Manage device power status (sleep_mode/on/off)
  - Calculate combined power output and total energy generated
 .
 This package is a dependency of Home Assistant.

This is a dependency of Home Assistant.



Bug#1080031: ITP: python-aprslib -- accessing APRS-IS and parsing APRS packets

2024-08-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aprslib
  Version : 0.7.2
  Upstream Author : Rossen Georgiev 
* URL : https://github.com/rossengeorgiev/aprs-python
* License : GPL-2+
  Programming Lang: Python
  Description : Module for accessing APRS-IS and parsing APRS packets

I will maintain this package in the Home Assistant team.



Bug#1080030: ITP: python-anthemav -- Python API for controlling Anthem Receivers

2024-08-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-anthemav
  Version : 1.4.2
  Upstream Author : David McNett 
* URL : https://github.com/nugget/python-anthemav
* License : Expat
  Programming Lang: Python
  Description : Python API for controlling Anthem Receivers

 This is a Python package to interface with Anthem (http://www.anthemav.com>)
 AVM and MRX receivers and processors. It uses the asyncio library to maintain
 an object-based connection to the network port of the receiver with supporting
 methods and properties to poll and adjust the receiver settings.
 .
 This package was created primarily to support an anthemav media_player
 platform for Home Assistant, but it is structured to be general-purpose and
 should be usable for other applications as well.
 .
 This package will maintain a persistant connection to the network control port
 which will prevent any other application from communicating with the receiver.
 This includes the Anthem iOS and Android remote control app as well as the
 ARC-2 room calibration software. One will need to disable any application that
 is using the library in order to run those other applications.

I will maintain this package within the Home Assistant team.



Bug#1080029: ITP: python-anova-wifi -- get read only data from Anova precision cookers with wifi

2024-08-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-anova-wifi
  Version : 0.17.1
  Upstream Author : Luke 
* URL : https://github.com/Lash-L/anova_wifi
* License : Expat
  Programming Lang: Python
  Description : get read only data from Anova precision cookers with wifi

 This package provides access to read only data from Anova precision cookers
 with wifi.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



Bug#1079994: ITP: python-aiowithings -- Asynchronous Python client for Withings.

2024-08-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiowithings
  Version : 3.0.3
  Upstream Author : Joost Lekkerkerker 
* URL : https://github.com/joostlek/python-withings
* License : Expat
  Programming Lang: Python
  Description : Asynchronous Python client for Withings.

 This package provides an asynchronous Python client for Withings. Withings
 provides devices such as watches, scales, etc.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079951: ITP: python-aiowebostv -- Library to control webOS based LG TV devices

2024-08-28 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiowebostv
  Version : 0.4.2
  Upstream Author : Home Assistant Team 
* URL : https://github.com/home-assistant-libs/aiowebostv
* License : Apache-2.0
  Programming Lang: Python
  Description : Library to control webOS based LG TV devices

 This package provides a Python library to control LG webOS based TV devices.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079949: ITP: python-aiowaqi -- Asynchronous Python client for WAQI API

2024-08-28 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiowaqi
  Version : 3.1.0
  Upstream Author : Joost Lekkerkerker 
* URL : https://github.com/joostlek/python-waqi
* License : Expat
  Programming Lang: Python
  Description : Asynchronous Python client for WAQI API.

 This package provides an asynchronous Python 3 client for the WAQI API, which
 allows to request data about air quality around the world.

I intend to maintain this package within the Home Assistant team.



Bug#1079932: ITP: python-aiotractive -- Asynchronous Python client for the Tractive REST API

2024-08-28 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiotractive
  Version : 0.6.0
  Upstream Author : Gleb Sinyavskiy 
* URL : https://github.com/zhulik/aiotractive
* License : Expat
  Programming Lang: Python
  Description : Asynchronous Python client for the Tractive REST API

 Unofficial, asynchronous, Python client for the Tractive
 (https://tractive.com) REST API.
 .
 This project and it's author are not affilated with Tractive GmbH. This
 project is a result of reverse engineering of the Tractive web app.

I intend to maintain this package within the Home Assistant team.



Bug#1079909: ITP: python-jaeger-client -- OpenTracing tracer implementation

2024-08-28 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-jaeger-client
  Version : 4.8.0
  Upstream Contact: Yuri Shkuro 
* URL : https://github.com/jaegertracing/jaeger-client-python
* License : Apache-2.0
  Programming Lang: Python
  Description : OpenTracing tracer implementation

 This is a client-side library that can be used to instrument Python apps for
 distributed trace collection, and to send those traces to Jaeger. See the
 OpenTracing Python API for additional detail.

I intend to maintain this package within the OpenStack team.



Bug#1079860: ITP: python-threadloop -- Tornado IOLoop Backed Concurrent Futures

2024-08-28 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-threadloop
  Version : 1.0.2
  Upstream Author : Grayson Koonce 
* URL : https://github.com/TomerFi/aioswitcher
* License : Expat
  Programming Lang: Python
  Description : Tornado IOLoop Backed Concurrent Futures

 This package provides a way to run Tornado Coroutines from Synchronous Python.

This is a new indirect dependency for OpenStack.



Bug#1079822: ITP: python-aioswitcher -- Switcher Python Integration

2024-08-27 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioswitcher
  Version : 4.0.2
  Upstream Author : Tomer Figenblat 
* URL : https://github.com/TomerFi/aioswitcher
* License : Apache-2.0
  Programming Lang: Python
  Description : Switcher Python Integration.

 This package provides integration with the Switcher API. I can handle many
 devices, such as: Switcher V2, Switcher Mini, Switcher Touch (V3),
 Switcher V4, Switcher Power Plug, Switcher Breeze, Switcher Runner, Switcher
 Runner Mini, Switcher Runner S11.

I intend to maintain this package within the Home Assistant team.



Bug#1079821: ITP: python-aiosomecomfort -- client for Honeywell's US-based cloud devices

2024-08-27 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-aiosomecomfort
  Version : 0.0.25
  Upstream Author : Mike Kasper 
* URL : https://github.com/mkmer/AIOSomecomfort
* License : GPL-3
  Programming Lang: Python
  Description : A client for Honeywell's US-based cloud devices

 This package provides a client for Honeywell's US-based cloud devices. This is
 for the US model and website. Be aware that EU models are different!
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079820: ITP: python-aiosolaredge -- Asyncio SolarEdge

2024-08-27 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiosolaredge
  Version : 0.2.0
  Upstream Author : J. Nick Koston 
* URL : https://github.com/bdraco/aiosolaredge
* License : Expat
  Programming Lang: Python
  Description : Asyncio SolarEdge

 This package provides access to the devices of SolarEdge, and access
 production and consumption readings.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079790: ITP: python-aiosenz -- async Typed Python package for the nVent RAYCHEM SENZ RestAPI

2024-08-27 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiosenz
  Version : 1.0.0
  Upstream Author : Milan Meulemans 
* URL : https://github.com/milanmeu/aiosenz
* License : LGPL-2.1
  Programming Lang: Python
  Description : Async Typed Python package for the nVent RAYCHEM SENZ 
RestAPI

 This package provides an async Python wrapper for the nVent Raychem SENZ
 RestAPI. It offers an `AbstractSENZAuth`, where one can handle the OAuth2
 tokens and provide a valid access token in get_access_token(). SENZAuth can be
 used if one does not will to handle the OAuth2 tokens.

I intend to maintain this package within the Home Assistant team.



Bug#1079700: Please run tests in parrallel

2024-08-26 Thread Thomas Goirand
Source: sqlalchemy
Version: 1.4.46+ds1-1
Severity: wishlist

Hi,

It takes forever currently to build SQLAlchemy, because it's not running tests
in parrallel. To do this, build-depends on python3-pytest-xdist, and add:

-n `nproc`

to the test command line. I tried, and it worked for me. Same should be applied
to the autopkgtest.

Cheers,

Thomas Goirand (zigo)



Bug#1079692: ITP: python-sushy-oem-idrac -- Dell EMC iDRAC OEM extension package for the sushy library

2024-08-26 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-sushy-oem-idrac
  Version : 5.0.0
  Upstream Contact: OpenStack 
* URL : https://github.com/openstack/sushy-oem-idrac
* License : Apache-2.0
  Programming Lang: Python
  Description : Dell EMC iDRAC OEM extension package for the sushy library

 The sushy-oem-idrac package is a sushy extension package that aims at adding
 high-level hardware management abstractions, that are specific to Dell EMC BMC
 (which is known under the name of iDRAC), to the tree of sushy Redfish 
resources.

I intend to maintain this package within the OpenStack team, as this is a
recommends: for Ironic (aka: OpenStack baremetal as a service).



Bug#1079628: ITP: python-aiovlc -- control VLC over telnet connection using asyncio

2024-08-25 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiovlc
  Version : 0.4.2
  Upstream Contact: Martin Hjelmare 
* URL : https://github.com/MartinHjelmare/aiovlc
* License : Apache-2.0
  Programming Lang: Python
  Description : control VLC over telnet connection using asyncio

 This package provides an asyncio library to Control VLC over telnet
 connection.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079625: ITP: python-atomicwrites-homeassistant -- atomic file writes

2024-08-25 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-atomicwrites-homeassistant
  Version : 1.4.1
  Upstream Contact: Markus Unterwaditzer 
* URL : https://github.com/untitaker/python-atomicwrites
* License : Expat
  Programming Lang: Python
  Description : atomic file writes

 This package provides a library to perform atomic file writes.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079624: ITP: python-psutil-home-assistant -- wrapper for psutil to allow it to be used several times in the same process

2024-08-25 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-psutil-home-assistant
  Version : 0.0.1
  Upstream Contact: Erik Montnemery 
* URL : https://github.com/home-assistant-libs/psutil-home-assistant
* License : Apache-2.0
  Programming Lang: Python
  Description : wrapper for psutil to allow it to be used several times in 
the same process

 The psutil library relies on global variable to maintain state between calls.
 This wrapper allows making local copies of the psutil library, wrapped in an
 object to allow psutil to be used more than once in a process.

I intend to maintain this package within the Home Assistant team.



Bug#1079587: ITP: python-bleak-esphome -- Bleak backend of ESPHome

2024-08-24 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-bleak-esphome
  Version : 1.0.0
  Upstream Contact: J. Nick Koston 
* URL : https://github.com/bluetooth-devices/bleak-esphome
* License : Expat
  Programming Lang: Python
  Description : Bleak backend of ESPHome

 This package provides access to the Bleak backend of ESPHome. It will scan
 bluetooth devices and connect to them using ESPHome.
 .
 This package is a Home Assistant dependency.

I intend to maintain this package within the Home Assistant team.



Bug#1079586: ITP: python-aioesphomeapi -- Python API for interacting with ESPHome devices

2024-08-24 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-aioesphomeapi
  Version : 25.1.0
  Upstream Contact: Otto Winter 
* URL : https://github.com/esphome/aioesphomeapi/
* License : Expat
  Programming Lang: Python
  Description : Python API for interacting with ESPHome devices

 The aioesphomeapi Python package allows one to interact with devices flashed
 with ESPHome.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079585: ITP: python-noiseprotocol -- implementation of Noise Protocol Framework

2024-08-24 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-noiseprotocol
  Version : 0.3.1
  Upstream Contact: Piotr Lizonczyk 
* URL : https://github.com/plizonczyk/noiseprotocol
* License : Expat
  Programming Lang: Python
  Description : implementation of Noise Protocol Framework

 This package provides a Python 3 implementation of the Noise Protocol
 Framework (see http://www.noiseprotocol.org/). It is compatible with
 revisions 32 and 33.
 .
 This package is an indirect dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079584: RM: murano-agent -- ROM; EOL upstream, rc buggy, unmaintained

2024-08-24 Thread Thomas Goirand
Package: ftp.debian.org
Severity: normal
User: ftp.debian@packages.debian.org
Usertags: remove
X-Debbugs-Cc: murano-ag...@packages.debian.org
Control: affects -1 + src:murano-agent



Hi,

We already removed murano for the same reason as $subject, so let's also remove
murano-agent.

Thanks,

Thomas Goirand (zigo)



Bug#1079385: ITP: python-androidtvremote2 -- interacting with Android TV using the Android TV Remote protocol v2

2024-08-22 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-androidtvremote2
  Version : 0.1.1
  Upstream Contact: tronikos 
* URL : https://github.com/tronikos/androidtvremote2
* License : Apache-2.0
  Programming Lang: Python
  Description : interacting with Android TV using the Android TV Remote 
protocol v2

 This package provides a Python library for interacting with Android TV using
 the Android TV Remote protocol v2. This is the same protocol the Google TV
 mobile app is using. It doesn't require ADB or enabling developer tools on the
 Android TV device. It only requires the Android TV Remote Service that comes
 pre-installed on most Android TV devices.

I intend to maintain this package within the Home Assistant team.



Bug#1079384: ITP: python-amberelectric -- Amber Electric Public API

2024-08-22 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-amberelectric
  Version : 2.0.0
  Upstream Contact: Amber Electric Development Team 
* URL : https://github.com/madpilot/amberelectric.py
* License : Apache-2.0
  Programming Lang: Python
  Description : Amber Electric Public API

 Amber is an Australian-based electricity retailer that pass through the
 real-time wholesale price of energy. Because of Amber's wholesale power
 prices, one can save hundreds of dollars a year by automating high power
 devices like air-conditioners, heat pumps and pool pumps. This Python
 library provides an interface to the API, making it possible to react to
 current and forecast prices, as well as download your historic usage.

I intend to maintain this package within the Home Assistant team.



Bug#1079383: ITP: python-aenum -- Advanced Enumerations, NamedTuples, and NamedConstants

2024-08-22 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aenum
  Version : 3.1.15
  Upstream Contact: Ethan Furman 
* URL : https://github.com/ethanfurman/aenum
* License : BSD-3-clause
  Programming Lang: Python
  Description : advanced Enumerations, NamedTuples, and NamedConstants

 This package provides a library for Advanced Enumerations (compatible with
 Python's stdlib Enum), NamedTuples, and NamedConstants. Aenum includes a
 Python stdlib Enum-compatible data type, as well as a metaclass-based
 NamedTuple implementation and a NamedConstant class.
 .
 An Enum is a set of symbolic names (members) bound to unique, constant values.
 Within an enumeration, the members can be compared by identity, and the
 enumeration itself can be iterated over. If using Python 3 there is built-in
 support for unique values, multiple values, auto-numbering, and suspension of
 aliasing (members with the same value are not identical), plus the ability to
 have values automatically bound to attributes.
 .
 A NamedTuple is a class-based, fixed-length tuple with a name for each
 possible position accessible using attribute-access notation as well as the
 standard index notation.
 .
 A NamedConstant is a class whose members cannot be rebound; it lacks all other
 Enum capabilities, however; consequently, it can have duplicate values.

I intend to maintain this package within the Home Assistant team.



Bug#1079382: ITP: python-androidtv -- communicate with an Android TV or Fire TV device via ADB over a network

2024-08-22 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-androidtv
  Version : 0.0.73
  Upstream Contact: Jeff Irion 
* URL : https://github.com/JeffLIrion/python-androidtv/
* License : Expat
  Programming Lang: Python
  Description : communicate with an Android TV or Fire TV device via ADB 
over a network

 This package provides state information and control of Android TV and Fire TV
 devices via ADB. This package is used by the Android TV integration in Home
 Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079381: ITP: python-pure-python-adb -- pure Python implementation of the adb client

2024-08-22 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-pure-python-adb
  Version : 0.3.0
  Upstream Contact: Swind Ou 
* URL : https://github.com/Swind/pure-python-adb
* License : Expat
  Programming Lang: Python
  Description : pure Python implementation of the adb client

 This package provides a pure Python implementation of the ADB client. It can
 be used to communicate with adb server (not the adb daemon on the
 device/emulator).

This package is used by androidtv that I'm going to maintain with the
Home Assistant team, as well as this package.



Bug#1079278: ITP: python-aiosyncthing -- asynchronous Python client for the Syncthing REST API

2024-08-22 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiosyncthing
  Version : 0.6.3
  Upstream Contact: Gleb Sinyavskiy 
* URL : https://github.com/zhulik/aiosyncthing
* License : Expat
  Programming Lang: Python
  Description : asynchronous Python client for the Syncthing REST API

 This package provides an asynchronous Python client for the Syncthing
 (https://syncthing.net/) REST API. It is inspired by python-syncthing,
 some snippets were copied from python-fumis.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079160: ITP: python-aioruckus -- interact with Ruckus Unleashed and ZoneDirector devices

2024-08-20 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioruckus
  Version : 0.40
  Upstream Contact: ms264556 
* URL : https://github.com/ms264556/aioruckus
* License : BSD-Zero-Clause
  Programming Lang: Python
  Description : interact with Ruckus Unleashed and ZoneDirector devices

 This package provides a Python API which interacts with Ruckus Unleashed and
 ZoneDirector devices via their AJAX Web Service interface. Configuration
 information can also be queried from Ruckus Unleashed and ZoneDirector backup
 files.
 .
 Compatible with all Ruckus Unleashed versions, and Ruckus ZoneDirector
 versions 9.10 onwards.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079072: ITP: python-aioskybell -- Skybell HD doorbell/shime asyncio API client

2024-08-19 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioskybell
  Version : 23.12.0
  Upstream Contact: Robert Hillis 
* URL : https://github.com/tkdrob/aioskybell
* License : Expat
  Programming Lang: Python
  Description : Skybell HD doorbell/shime asyncio API client

 This package provides support for Skybell doorbells client API.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Asssistant team.



Bug#1079034: ITP: python-aioridwell -- asyncio-based API for interacting with Ridwell waste recycling

2024-08-19 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioridwell
  Version : 2024.1.0
  Upstream Contact: Aaron Bach 
* URL : https://github.com/bachya/aioridwell
* License : Expat
  Programming Lang: Python
  Description : asyncio-based API for interacting with Ridwell waste 
recycling

 This package provdies an asyncio-friendly library for interacting with Ridwell
 to view information on upcoming recycling pickups.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1079033: ITP: python-titlecase -- changes a given text to Title Caps

2024-08-19 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-titlecase
  Version : 2.4.1
  Upstream Contact: Stuart Colville 
* URL : https://github.com/ppannuto/python-titlecase
* License : Expat
  Programming Lang: Python
  Description : changes a given text to Title Caps

 This package filter changes a given text to Title Caps, and attempts to be
 clever about SMALL words like a/an/the in the input. The list of "SMALL words"
 which are not capped comes from the New York Times Manual of Style, plus some
 others like 'vs' and 'v'. The filter employs some heuristics to guess
 abbreviations that don't need conversion.
 .
 This is a port of John Gruber's titlecase.pl.

I intend to maintain this package within the Home Assistant team.



Bug#1078874: ITP: python-pytest-freezegun -- Wrap tests with fixtures in freeze_time

2024-08-17 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-pytest-freezegun
  Version : 0.4.2
  Upstream Contact: Tomasz Kontusz 
* URL : https://github.com/ktosiek/pytest-freezegun
* License : Expat
  Programming Lang: Python
  Description : Wrap tests with fixtures in freeze_time

 This package makes it possible to wrap tests with fixtures in freeze_time.
 It is possible to  Freeze time in both the test and fixtures, and access the
 freezer when needed.

I intend to maintain this package within the Home Assistant team.



Bug#1078872: ITP: python-aioqsw -- library to control QNAP QSW devices

2024-08-17 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioqsw
  Version : 0.4.1
  Upstream Contact: Álvaro Fernández Rojas 
* URL : https://github.com/Noltari/aioqsw
* License : Apache-2.0
  Programming Lang: Python
  Description : library to control QNAP QSW devices

 This package provides a Python library to control QNAP QSW devices.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.


Bug#1078722: ITP: python-aiopvapi -- blinds API wrapper

2024-08-14 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiopvapi
  Version : 3.1.1
  Upstream Contact: Sander Teunissen 
* URL : https://github.com/sander76/aio-powerview-api
* License : BSD-3-clause
  Programming Lang: Python
  Description : blinds API wrapper

 This package provides a python library for using API of PowerView blinds with
 asyncio. It was written for Home-Assistant.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1078720: ITP: python-aioemonitor -- asyncio library for SiteSage Emonitor

2024-08-14 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioemonitor
  Version : 1.0.5
  Upstream Contact: J. Nick Koston 
* URL : https://github.com/bdraco/aioemonitor
* License : Apache-2.0
  Programming Lang: Python
  Description : asyncio library for SiteSage Emonitor

 This package provides an asyncio Python library for SiteSage Emonitor.
 .
 This package is a Home Assistant dependency.

I intend to maintain this package within the Home Assistant team.



Bug#1078719: ITP: python-aiorecollect -- asyncio-based library for the ReCollect Waste API

2024-08-14 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiorecollect
  Version : 2023.12.0
  Upstream Contact: Aaron Bach 
* URL : https://github.com/bachya/aiorecollect
* License : Expat
  Programming Lang: Python
  Description : asyncio-based library for the ReCollect Waste API

 Aiorecollect is a Python 3, asyncio-based library for the ReCollect Waste API.
 It allows users to programmatically retrieve schedules for waste removal in
 their area, including trash, recycling, compost, and more.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1078717: ITP: python-aiopyarr -- asynchronous Lidarr, Radarr, Readarr, Sonarr APIs

2024-08-14 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiopyarr
  Version : 23.4.0
  Upstream Contact: Robert Hillis 
* URL : https://github.com/tkdrob/aiopyarr
* License : Expat
  Programming Lang: Python
  Description : asynchronous Lidarr, Radarr, Readarr, Sonarr APIs

 This package provides an asynchronous Lidarr, Radarr, Readarr, Sonarr APIs for
 Python.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



Bug#1078716: ITP: python-aioopenexchangerates -- fetch rates from openexchangerates with aiohttp

2024-08-14 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioopenexchangerates
  Version : 0.4.14
  Upstream Contact: Martin Hjelmare 
* URL : https://github.com/MartinHjelmare/aioopenexchangerates
* License : Apache-2.0
  Programming Lang: Python
  Description : fetch rates from openexchangerates with aiohttp

 This package makes it possible to fetch rates from openexchangerates with
 aiohttp.
 .
 This package is a Home Assistant dependency.

I intend to maintain this package within the Home Assistant team.



Bug#1078715: ITP: python-aionut -- asyncio Network UPS Tools

2024-08-14 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aionut
  Version : 4.3.3
  Upstream Contact: J. Nick Koston 
* URL : https://github.com/bdraco/aionut
* License : Apache-2.0
  Programming Lang: Python
  Description : asyncio Network UPS Tools

 This package provides an asyncio network UPS tools.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



Bug#1078702: Please re-add the AHCI driver in the cloud kernel

2024-08-14 Thread Thomas Goirand
Source: linux
Severity: important
Tags: patch

Hi,

In the generic-cloud, the AHCI driver has been removed. This isn't good at all
for OpenStack, as this is the driver used for OpenStack for its config drive.
Indeed, the OpenStack config drive (where the instance is fetching its
metadata) is a SATA AHCI CDROM if the VMs are booting using the Qemu q35
chipset (which is what everyone does, otherwise the emulated chipset is from
the 90s).

Cheers,

Thomas Goirand (zigo)



Bug#1078679: ITP: python-aioshelly -- asynchronous library to control Shelly devices

2024-08-14 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioshelly
  Version : 11.2.0
  Upstream Contact: Paulus Schoutsen 
* URL : https://github.com/home-assistant-libs/aioshelly
* License : Apache-2.0
  Programming Lang: Python
  Description : asynchronous library to control Shelly devices

 This package provides an asynchronous library to control Shelly devices.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1078475: ITP: python-tzdata -- provider of IANA time zone data

2024-08-13 Thread Thomas Goirand

Hi Ananthu,

I really believe that what you want is python-tz, and that you do not 
need python-tzdata. Have you tried to run the unit tests of pendulum 
with the python3-tz package installed instead?


Note that packages must *not* have their own timezone db, so if you 
upload python-tzdata as-is, not using the Debian tzdata package, then 
you'd be introducing a bug. The reason is very simple: there's multiple 
updates of the DB per Debian release, and we do *not* want to update 
multiple package (only tzdata itself) when this is needed.


Cheers,

Thomas Goirand (zigo)



Bug#1078594: ITP: python-aiopvpc -- retrieval of Spanish Electricity hourly prices (PVPC)

2024-08-13 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiopvpc
  Version : 4.3.1
  Upstream Contact: Eugenio Panadero 
* URL : https://github.com/azogue/aiopvpc
* License : Expat
  Programming Lang: Python
  Description : retrieval of Spanish Electricity hourly prices (PVPC)

 This package provides a library to download Spanish electricity hourly prices.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package under the Home Assistant team.



Bug#1078346: ITP: python-aioharmony -- asyncio library for connecting to and controlling the Logitech Harmony

2024-08-09 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioharmony
  Version : 0.2.10
  Upstream Contact: Erik Hendrix 
* URL : https://github.com/ehendrix23/aioharmony
* License : Apache-2.0
  Programming Lang: Python
  Description : asyncio library for connecting to and controlling the 
Logitech Harmony

 This package provides a library for programmatically using a Logitech Harmony
 Link or Ultimate Hub. This library originated from iandday's pyharmony
 (see: https://github.com/iandday/pyharmony), which was a fork of bkanuka's
 pyharmony (see: https://github.com/bkanuka/pyharmony) with the intent to:
  - Make the harmony library asyncio
  - Ability to provide one's own custom callbacks to be called
  - Automatic reconnect, even if re-connection cannot be established for a time
  - More easily get the HUB configuration through API call
  - Additional callbacks: connect, disconnect, HUB configuration updated
  - Using unique msgid's ensuring that responses from the HUB are correctly 
managed.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



Bug#1078345: ITP: python-aiobotocore -- async client for aws services using botocore and aiohttp

2024-08-09 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiobotocore
  Version : 2.13.1
  Upstream Contact: Nikolay Novik 
* URL : https://github.com/aio-libs/aiobotocore
* License : Apache-2.0
  Programming Lang: Python
  Description : async client for aws services using botocore and aiohttp

 Async client for amazon services using botocore and aiohttp/asyncio.
 This library is a mostly full featured asynchronous version of botocore.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1078265: ITP: python-aiopulse -- Rollease Acmeda Automate integration

2024-08-09 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiopulse
  Version : 0.4.5
  Upstream Contact: Alan Murray 
* URL : https://github.com/atmurray/aiopulse
* License : Apache-2.0
  Programming Lang: Python
  Description : Rollease Acmeda Automate integration

 The Rollease Acmeda Pulse Hub is a WiFi hub that communicates with Rollease
 Acmeda Automate roller blinds via a proprietary RF protocol. This module
 communicates over a local area network using a propriatery binary protocol to
 issues commands to the Pulse Hub.

I intend to maintain this package within the Home Assistant team.



Bug#1078204: ITP: python-aiooncue -- async library to access the Kohler Oncue API

2024-08-08 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiooncue
  Version : 0.3.7
  Upstream Contact: J. Nick Koston 
* URL : https://github.com/bdraco/aiooncue
* License : Apache-2.0
  Programming Lang: Python
  Description : async library to access the Kohler Oncue API

 This package provides a Python library to access the Kohler Oncue API.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1078110: ITP: python-aionanoleaf -- async Python package for the Nanoleaf API

2024-08-07 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aionanoleaf
  Version : 0.2.1
  Upstream Contact: Milan Meulemans 
* URL : https://github.com/milanmeu/aionanoleaf
* License : LGPL3+
  Programming Lang: Python
  Description : async Python package for the Nanoleaf API

 async Python package for the Nanoleaf API.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package under the Home Assistant team.



Bug#1078059: ITP: python-aiomusiccast -- companion library for musiccast devices

2024-08-06 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiomusiccast
  Version : 0.14.8
  Upstream Contact: Tom Schneider 
* URL : https://github.com/vigonotion/aiomusiccast
* License : Expat
  Programming Lang: Python
  Description : companion library for musiccast devices

 This package provides a companion library for musiccast devices intended for
 the Home Assistant integration.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



Bug#1078032: ITP: python-aiomodernforms -- asynchronous Python client for Modern Forms fans

2024-08-06 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiomodernforms
  Version : 0.1.8
  Upstream Contact: Brian Towles 
* URL : https://github.com/wonderslug/aiomodernforms
* License : Expat
  Programming Lang: Python
  Description : asynchronous Python client for Modern Forms fans

 This package makes it possible to control and monitor Modern Forms fans
 programmatically. It is mainly created to allow third-party programs to
 automate the behavior of the Modern Forms fans
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1077975: ITP: python-aioguardian -- library for Elexa Guardian water valves and sensors

2024-08-05 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioguardian
  Version : 2023.12.0
  Upstream Contact: Aaron Bach 
* URL : https://github.com/bachya/aioguardian
* License : Expat
  Programming Lang: Python
  Description : library for Elexa Guardian water valves and sensors

 This package provides an asyncio-focused library for interacting with the
 Guardian line of water valves and sensors from Elexa.
 .
 This package is a dependency of Home Assistant.



Bug#1077889: ITP: python-aioflo -- async-friendly library for Flo by Moen Smart Water Detectors

2024-08-03 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aioflo
  Version : 2021.11.0
  Upstream Contact: Aaron Bach 
* URL : https://github.com/bachya/aioflo
* License : Expat
  Programming Lang: Python
  Description : async-friendly library for Flo by Moen Smart Water Detectors

 This package provides an asyncio-friendly library for interacting with Flo by
 Moen Smart Water Detectors (https://www.moen.com/flo).
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



Bug#1077862: RM: murano-tempest-plugin -- ROM; EOL, buggy

2024-08-03 Thread Thomas Goirand
Package: ftp.debian.org
Severity: normal
User: ftp.debian@packages.debian.org
Usertags: remove
X-Debbugs-Cc: murano-tempest-plu...@packages.debian.org
Control: affects -1 + src:murano-tempest-plugin

Hi,

Murano isn't maintained anymore, and therefore, src:murano-tempest-plugin
should be removed from Debian as well. Please RM it.

Cheers,

Thomas Goirand (zigo)



Bug#1071267: Fixed

2024-08-01 Thread Thomas Goirand

Hi,

Sorry Jonathan, that it took me so long to reply.
The package in Unstable isn't affected by this bug, it was probably 
fixed by the maintainer.


I've uploaded the fix.

Cheers,

Thomas Goirand (zigo)



Bug#1077761: ITP: python-aiolivisi -- Python module to communicate with LIVISI Smart Home Controllers

2024-08-01 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiolivisi
  Version : 0.0.19
  Upstream Contact: Stefan Iacob 
* URL : https://github.com/StefanIacobLivisi/aiolivisi
* License : Apache-2.0
  Programming Lang: Python
  Description : Python module to communicate with LIVISI Smart Home 
Controllers

 This Python Asynchronous library communicates with LIVISI Smart Home
 Controller.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



Bug#1077758: ITP: python-aiolifx-themes -- async library that applies color themes to LIFX lights

2024-08-01 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiolifx-themes
  Version : 0.5.1
  Upstream Contact: Avi Miller 
* URL : https://github.com/Djelibeybi/aiolifx-themes
* License : Expat
  Programming Lang: Python
  Description : async library that applies color themes to LIFX lights

 This Python library applies color themes to LIFX lights.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



Bug#1077756: ITP: python-aiolifx-effects -- aiolifx light effects

2024-08-01 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiolifx-effects
  Version : 0.3.2
  Upstream Contact: Anders Melchiorsen 
* URL : https://github.com/amelchio/aiolifx_effects
* License : Expat
  Programming Lang: Python
  Description : aiolifx light effects

 This library implements some light effects for LIFX lights running on aiolifx.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



Bug#1077721: ITP: python-aiolifx -- API for local communication with LIFX devices over a LAN with asyncio

2024-08-01 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-aiolifx
  Version : 1.0.6
  Upstream Contact: François Wautier 
* URL : http://github.com/aiolifx/aiolifx
* License : Expat
  Programming Lang: Python
  Description : API for local communication with LIFX devices over a LAN 
with asyncio

 This package provides a Python 3, asyncio library to control Lifx LED
 lightbulbs over your LAN. Most of it was taken from Meghan Clarkk lifxlan
 package (https://github.com/mclarkk) and adapted to Python 3 and asyncio.

I intend to maintain this package within the Home Assistant team.


Bug#1077719: ITP: python-inquirerpy -- collection of common interactive command-line user interfaces

2024-08-01 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-inquirerpy
  Version : 0.3.4
  Upstream Contact: Kevin Zhuang 
* URL : https://github.com/kazhala/InquirerPy
* License : Expat
  Programming Lang: Python
  Description : collection of common interactive command-line user 
interfaces

 InquirerPy is a Python port of the famous Inquirer.js: a collection of common
 interactive command line user interfaces. This project is a re-implementation
 of the PyInquirer project, with bug fixes of known issues, new prompts,
 backward compatible APIs, as well as more customisation options.

I intend to maintain this package within the Home Assistant team.



Bug#1077613: ITP: python-open-meteo -- asynchronous client for the Open-Meteo API

2024-07-30 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-open-meteo
  Version : 0.3.1
  Upstream Contact: Franck Nijhof 
* URL : https://github.com/frenck/python-open-meteo
* License : Expat
  Programming Lang: Python
  Description : asynchronous client for the Open-Meteo API

 Open-Meteo offers free weather forecast APIs for open-source developers and
 non-commercial use. No API key is required. You can start using it immediately!
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



Bug#1077586: ITP: python-aiounifi -- communicating with UniFi Network Controller API

2024-07-30 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiounifi
  Version : 79
  Upstream Contact: Robert Svensson 
* URL : https://github.com/Kane610/aiounifi.git
* License : Expat
  Programming Lang: Python
  Description : communicating with UniFi Network Controller API

 This Python library makes it possible to communicate with UniFi Network
 Controllers.
 .
 UniFi is a brand producing many network equipment, like switches, WiFi
 access points, cameras, access control and internet gateways.

I intend to maintain this package within the Home Assistant team.



Bug#1077576: ITP: python-aiohue -- module to talk to Philips Hue

2024-07-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiohue
  Version : 4.7.2
  Upstream Contact: Paulus Schoutsen 
* URL : https://github.com/home-assistant-libs/aiohue
* License : Apache-2.0
  Programming Lang: Python
  Description : module to talk to Philips Hue

 This Python library provides support for the Philips Hue API. It supports both
 the new style V2 API (only available on V2 bridges) and the old style V1 API.
 The biggest advantage of the V2 API is that it supports event based updates so
 polling is not required.

I intend to maintain this package under the Home Assistant team.



Bug#1077571: ITP: python-asyncio-throttle -- simple, easy-to-use throttler for asyncio

2024-07-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-asyncio-throttle
  Version : 1.0.2
  Upstream Contact: Hanjun Kim 
* URL : https://github.com/hallazzang/asyncio-throttle
* License : Expat
  Programming Lang: Python
  Description : simple, easy-to-use throttler for asyncio

 This Python library provides a simple, easy-to-use throttler for asyncio.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1077570: ITP: python-asyncio-throttle -- simple, easy-to-use throttler for asyncio

2024-07-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-asyncio-throttle
  Version : 1.0.2
  Upstream Contact: Hanjun Kim 
* URL : https://github.com/hallazzang/asyncio-throttle
* License : Expat
  Programming Lang: Python
  Description : simple, easy-to-use throttler for asyncio

 This Python library provides a simple, easy-to-use throttler for asyncio.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package within the Home Assistant team.



Bug#1077564: ITP: python-aiohomekit -- asyncio HomeKit client

2024-07-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-aiohomekit
  Version : 3.2.1
  Upstream Contact: John Carr 
* URL : https://github.com/Jc2k/aiohomekit
* License : Apache-2.0
  Programming Lang: Python
  Description : asyncio HomeKit client

 This library implements the HomeKit protocol for controlling Homekit
 accessories using asyncio. It's primary use is for with Home Assistant.
 .
 At the moment there is no API guarantees. API stability and documentation
 will happen after making sure things are working within Home Assistant.
 .
 This package is a Home Assistant dependency.

I intend to maintain this package within the Home Assistant team.



Bug#1077563: ITP: python-chacha20poly1305-reuseable -- ChaCha20Poly1305 that is reuseable for asyncio

2024-07-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-chacha20poly1305-reuseable
  Version : 0.13.2
  Upstream Contact: J. Nick Koston 
* URL : https://github.com/bdraco/chacha20poly1305-reuseable
* License : BSD-3-clause
  Programming Lang: Python
  Description : ChaCha20Poly1305 that is reuseable for asyncio

 This library is a ChaCha20Poly1305 wrapper that is reuseable for asyncio.
 .
 ChaCha20Poly1305 is a Simple pure-python chacha20-poly1305 implementation
 based on tlslite-ng code. Designed to be compatible with Cryptography API.

I intend to maintain this package within the Home Assistant team.



Bug#1077562: ITP: python-chacha20poly1305 -- chacha20-poly1305 implementation based on tlslite-ng

2024-07-29 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-chacha20poly1305
  Version : 0.0.3
  Upstream Contact: Dusan Klinec 
* URL : https://github.com/ph4r05/py-chacha20poly1305
* License : LGPL-2.1
  Programming Lang: Python
  Description : chacha20-poly1305 implementation based on tlslite-ng

 Simple pure-python chacha20-poly1305 implementation based on tlslite-ng code.
 Designed to be compatible with Cryptography API.
 .
 This package is a dependency of Home Assistant.

I intend to maintain this package in the Home Assistant team.



  1   2   3   4   5   6   7   8   9   10   >