Hello community,

here is the log from the commit of package libosmocore for openSUSE:Factory 
checked in at 2020-08-02 12:20:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libosmocore (Old)
 and      /work/SRC/openSUSE:Factory/.libosmocore.new.3592 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libosmocore"

Sun Aug  2 12:20:16 2020 rev:25 rq:823900 version:1.3.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/libosmocore/libosmocore.changes  2020-06-07 
21:38:43.445527274 +0200
+++ /work/SRC/openSUSE:Factory/.libosmocore.new.3592/libosmocore.changes        
2020-08-02 12:20:57.255399142 +0200
@@ -1,0 +2,7 @@
+Sat Aug  1 14:03:00 UTC 2020 - Martin Hauke <[email protected]>
+
+- Update to version 1.3.2
+  * gsm_29_118.h: Fix compilation with gcc-10
+  * gsm0503_parity: Fix compilation with gcc-10
+
+-------------------------------------------------------------------

Old:
----
  libosmocore-1.3.1.tar.xz

New:
----
  libosmocore-1.3.2.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libosmocore.spec ++++++
--- /var/tmp/diff_new_pack.zNOHPx/_old  2020-08-02 12:20:58.703400691 +0200
+++ /var/tmp/diff_new_pack.zNOHPx/_new  2020-08-02 12:20:58.703400691 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           libosmocore
-Version:        1.3.1
+Version:        1.3.2
 Release:        0
 Summary:        The Open Source Mobile Communications Core Library
 License:        GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND 
AGPL-3.0-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.zNOHPx/_old  2020-08-02 12:20:58.735400725 +0200
+++ /var/tmp/diff_new_pack.zNOHPx/_new  2020-08-02 12:20:58.735400725 +0200
@@ -2,8 +2,8 @@
        <service name="tar_scm" mode="disabled">
                <param name="scm">git</param>
                <param name="url">git://git.osmocom.org/libosmocore</param>
-               <param name="revision">1.3.1</param>
-               <param name="versionformat">1.3.1</param>
+               <param name="revision">1.3.2</param>
+               <param name="versionformat">1.3.2</param>
        </service>
        <service name="recompress" mode="disabled">
                <param name="file">*.tar</param>

++++++ libosmocore-1.3.1.tar.xz -> libosmocore-1.3.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libosmocore-1.3.1/debian/changelog 
new/libosmocore-1.3.2/debian/changelog
--- old/libosmocore-1.3.1/debian/changelog      2020-03-16 11:41:51.000000000 
+0100
+++ new/libosmocore-1.3.2/debian/changelog      2020-07-26 10:49:52.000000000 
+0200
@@ -1,3 +1,10 @@
+libosmocore (1.3.2) unstable; urgency=medium
+
+  * gsm0503_parity: Fix compilation with gcc-10
+  * gsm_29_118.h: Fix compilation with gcc-10
+
+ -- Harald Welte <[email protected]>  Sun, 26 Jul 2020 10:49:51 +0200
+
 libosmocore (1.3.1) unstable; urgency=medium
 
   * libosmosim: Build irrespective of PC/SC support
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libosmocore-1.3.1/include/osmocom/coding/gsm0503_parity.h 
new/libosmocore-1.3.2/include/osmocom/coding/gsm0503_parity.h
--- old/libosmocore-1.3.1/include/osmocom/coding/gsm0503_parity.h       
2020-03-16 11:41:51.000000000 +0100
+++ new/libosmocore-1.3.2/include/osmocom/coding/gsm0503_parity.h       
2020-07-26 10:49:52.000000000 +0200
@@ -10,14 +10,14 @@
  *  @{
  * \file gsm0503_parity.h */
 
-const struct osmo_crc64gen_code gsm0503_fire_crc40;
-const struct osmo_crc16gen_code gsm0503_cs234_crc16;
-const struct osmo_crc8gen_code gsm0503_mcs_crc8_hdr;
-const struct osmo_crc16gen_code gsm0503_mcs_crc12;
-const struct osmo_crc8gen_code gsm0503_rach_crc6;
-const struct osmo_crc16gen_code gsm0503_sch_crc10;
-const struct osmo_crc8gen_code gsm0503_tch_fr_crc3;
-const struct osmo_crc8gen_code gsm0503_tch_efr_crc8;
-const struct osmo_crc8gen_code gsm0503_amr_crc6;
+extern const struct osmo_crc64gen_code gsm0503_fire_crc40;
+extern const struct osmo_crc16gen_code gsm0503_cs234_crc16;
+extern const struct osmo_crc8gen_code gsm0503_mcs_crc8_hdr;
+extern const struct osmo_crc16gen_code gsm0503_mcs_crc12;
+extern const struct osmo_crc8gen_code gsm0503_rach_crc6;
+extern const struct osmo_crc16gen_code gsm0503_sch_crc10;
+extern const struct osmo_crc8gen_code gsm0503_tch_fr_crc3;
+extern const struct osmo_crc8gen_code gsm0503_tch_efr_crc8;
+extern const struct osmo_crc8gen_code gsm0503_amr_crc6;
 
 /*! @} */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libosmocore-1.3.1/include/osmocom/gsm/protocol/gsm_29_118.h 
new/libosmocore-1.3.2/include/osmocom/gsm/protocol/gsm_29_118.h
--- old/libosmocore-1.3.1/include/osmocom/gsm/protocol/gsm_29_118.h     
2020-03-16 11:41:51.000000000 +0100
+++ new/libosmocore-1.3.2/include/osmocom/gsm/protocol/gsm_29_118.h     
2020-07-26 10:49:52.000000000 +0200
@@ -181,4 +181,4 @@
  * See also: RFC1123 Section 2.1 Host Names and Numbers */
 #define SGS_VLR_NAME_MAXLEN 255
 
-const struct tlv_definition sgsap_ie_tlvdef;
+extern const struct tlv_definition sgsap_ie_tlvdef;


Reply via email to