Projects
osmocom:master
libosmo-netif
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 137
View file
libosmo-netif.spec
Changed
@@ -14,13 +14,13 @@ Name: libosmo-netif Requires: osmocom-master -Version: 1.6.0.8.2f60 +Version: 1.6.0.10.7566 Release: 0 Summary: Osmocom library for muxed audio License: GPL-2.0-or-later Group: Productivity/Telephony/Utilities URL: https://osmocom.org/projects/libosmo-netif -Source: libosmo-netif_1.6.0.8.2f60.tar.xz +Source: libosmo-netif_1.6.0.10.7566.tar.xz Source1: rpmlintrc BuildRequires: automake BuildRequires: libtool >= 2
View file
commit_2f6059b982ccb05e5b2b0e922bf66a1f942ff645.txt
Deleted
View file
commit_7566a5f7bde932f55c76885f39720a5b3d9c9a54.txt
Added
View file
libosmo-netif_1.6.0.8.2f60.dsc -> libosmo-netif_1.6.0.10.7566.dsc
Changed
@@ -2,7 +2,7 @@ Source: libosmo-netif Binary: libosmonetif11, libosmo-netif-dev, libosmo-netif-doc, libosmo-netif-dbg Architecture: any all -Version: 1.6.0.8.2f60 +Version: 1.6.0.10.7566 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/libosmo-netif Standards-Version: 3.9.6 @@ -15,8 +15,8 @@ libosmo-netif-doc deb doc optional arch=all libosmonetif11 deb libs optional arch=any Checksums-Sha1: - 08a47bf03f09eb54a3446cb6054102890d66d843 200236 libosmo-netif_1.6.0.8.2f60.tar.xz + d4ac1ebb7f7fd97bb69495a989e66c99fe06c9b8 200796 libosmo-netif_1.6.0.10.7566.tar.xz Checksums-Sha256: - 0f0730918152c1a1ac000cbcf324dcc0cc97b3707feaf3fd7e35cb0f8f03c554 200236 libosmo-netif_1.6.0.8.2f60.tar.xz + 1f5c889edcb4f62c4799b4f7ae53e1fa675783fc1441f7074b59097c37fae8a6 200796 libosmo-netif_1.6.0.10.7566.tar.xz Files: - 1ffa37b804b8303d9674ebf2f86da854 200236 libosmo-netif_1.6.0.8.2f60.tar.xz + b849d147a7dea08287f10e60fef160db 200796 libosmo-netif_1.6.0.10.7566.tar.xz
View file
libosmo-netif_1.6.0.8.2f60.tar.xz/.tarball-version -> libosmo-netif_1.6.0.10.7566.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.6.0.8-2f60 +1.6.0.10-7566
View file
libosmo-netif_1.6.0.8.2f60.tar.xz/debian/changelog -> libosmo-netif_1.6.0.10.7566.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -libosmo-netif (1.6.0.8.2f60) unstable; urgency=medium +libosmo-netif (1.6.0.10.7566) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Wed, 18 Jun 2025 14:17:32 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Tue, 24 Jun 2025 07:21:21 +0000 libosmo-netif (1.6.0) unstable; urgency=medium
View file
libosmo-netif_1.6.0.8.2f60.tar.xz/include/osmocom/netif/Makefile.am -> libosmo-netif_1.6.0.10.7566.tar.xz/include/osmocom/netif/Makefile.am
Changed
@@ -2,17 +2,32 @@ stream_private.h \ $(NULL) -osmonetif_HEADERS = amr.h \ - datagram.h \ - ipa.h \ - ipa_unit.h \ - jibuf.h \ - osmux.h \ - prim.h \ - rs232.h \ - rtp.h \ - stream.h \ - $(NULL) +version.h: version.h.tpl + $(AM_V_GEN)$(MKDIR_P) $(dir $@) + $(AM_V_GEN)sed \ + -e "s/{{VERSION}}/$$(echo '@VERSION@' | cut -d. -f1-3)/g" \ + -e "s/{{VERSION_MAJOR}}/$$(echo '@VERSION@' | cut -d. -f1)/g" \ + -e "s/{{VERSION_MINOR}}/$$(echo '@VERSION@' | cut -d. -f2)/g" \ + -e "s/{{VERSION_PATCH}}/$$(echo '@VERSION@' | cut -d. -f3)/g" \ + $< > $@ + +EXTRA_DIST = \ + version.h.tpl \ + $(NULL) + +osmonetif_HEADERS = \ + amr.h \ + datagram.h \ + ipa.h \ + ipa_unit.h \ + jibuf.h \ + osmux.h \ + prim.h \ + rs232.h \ + rtp.h \ + stream.h \ + version.h \ + $(NULL) if ENABLE_LIBSCTP osmonetif_HEADERS += sctp.h
View file
libosmo-netif_1.6.0.10.7566.tar.xz/include/osmocom/netif/version.h.tpl
Added
@@ -0,0 +1,16 @@ +#pragma once + +#define LIBOSMO_NETIF_VERSION {{VERSION}} +#define LIBOSMO_NETIF_VERSION_STR "{{VERSION}}" + +#define LIBOSMO_NETIF_VERSION_MAJOR {{VERSION_MAJOR}} +#define LIBOSMO_NETIF_VERSION_MINOR {{VERSION_MINOR}} +#define LIBOSMO_NETIF_VERSION_PATCH {{VERSION_PATCH}} + +#define LIBOSMO_NETIF_VERSION_GREATER_EQUAL(major, minor, patch) \ + (LIBOSMO_NETIF_VERSION_MAJOR > (major) || \ + (LIBOSMO_NETIF_VERSION_MAJOR == (major) && \ + LIBOSMO_NETIF_VERSION_MINOR > (minor)) || \ + (LIBOSMO_NETIF_VERSION_MAJOR == (major) && \ + LIBOSMO_NETIF_VERSION_MINOR == (minor) && \ + LIBOSMO_NETIF_VERSION_PATCH >= (patch)))
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
.