Projects
osmocom:latest
pyosmocom
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 2
View file
pyosmocom_0.0.5.dsc -> pyosmocom_0.0.6.dsc
Changed
@@ -2,7 +2,7 @@ Source: pyosmocom Binary: python3-pyosmocom-doc, python3-pyosmocom Architecture: all -Version: 0.0.5 +Version: 0.0.6 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://osmocom.org/projects/pyosmocom/wiki Standards-Version: 3.9.8 @@ -13,8 +13,8 @@ python3-pyosmocom deb python optional arch=all python3-pyosmocom-doc deb doc optional arch=all Checksums-Sha1: - 03c83b9f417bb3f3c34e9a612f3bdb8ebf843b46 32724 pyosmocom_0.0.5.tar.xz + e63497bda094dd5fb37732b85e94ec1b1a4c2f0f 32780 pyosmocom_0.0.6.tar.xz Checksums-Sha256: - 662569ce0c919da4105007ca57b82281f24df868bcfe0f1ac2aa2e89829572c4 32724 pyosmocom_0.0.5.tar.xz + 02e8024366c6e64c342aee7dfdb0b0ba5315a4deadd8f7a034ae3d5860a76dee 32780 pyosmocom_0.0.6.tar.xz Files: - 321f2777cbb610d0d76ede1e242bb2a7 32724 pyosmocom_0.0.5.tar.xz + 31fecb54515408b0e9337628a89454e0 32780 pyosmocom_0.0.6.tar.xz
View file
pyosmocom_0.0.5.tar.xz/.tarball-version -> pyosmocom_0.0.6.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -0.0.5 +0.0.6
View file
pyosmocom_0.0.5.tar.xz/debian/changelog -> pyosmocom_0.0.6.tar.xz/debian/changelog
Changed
@@ -1,3 +1,9 @@ +pyosmocom (0.0.6) unstable; urgency=medium + + * tlv/cosmetic: improve import of osmocom functions + + -- Philipp Maier <pmaier@sysmocom.de> Tue, 08 Oct 2024 17:09:43 +0200 + pyosmocom (0.0.5) unstable; urgency=medium Oliver Smith
View file
pyosmocom_0.0.5.tar.xz/pyproject.toml -> pyosmocom_0.0.6.tar.xz/pyproject.toml
Changed
@@ -4,7 +4,7 @@ project name = "pyosmocom" -version = "0.0.5" +version = "0.0.6" dependencies = "gsm0338", "construct >= 2.9.51"
View file
pyosmocom_0.0.5.tar.xz/src/osmocom/tlv.py -> pyosmocom_0.0.6.tar.xz/src/osmocom/tlv.py
Changed
@@ -21,7 +21,7 @@ import re from typing import List, Tuple, Optional -from osmocom.construct import build_construct, parse_construct +import osmocom ######################################################################### # poor man's COMPREHENSION-TLV decoder. @@ -383,9 +383,9 @@ if self.decoded is None: do = b'' elif self._construct: - do = build_construct(self._construct, self.decoded, context) + do = osmocom.construct.build_construct(self._construct, self.decoded, context) elif self.__class__._construct: - do = build_construct(self.__class__._construct, self.decoded, context) + do = osmocom.construct.build_construct(self.__class__._construct, self.decoded, context) else: do = self._to_bytes() self.encoded = do @@ -402,9 +402,9 @@ if self.encoded == b'': self.decoded = None elif self._construct: - self.decoded = parse_construct(self._construct, do, context=context) + self.decoded = osmocom.construct.parse_construct(self._construct, do, context=context) elif self.__class__._construct: - self.decoded = parse_construct(self.__class__._construct, do, context=context) + self.decoded = osmocom.construct.parse_construct(self.__class__._construct, do, context=context) else: self.decoded = self._from_bytes(do) return self.decoded
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.