Change in pysim[master]: ts_31_102: Avoid pylint false positive

2022-03-27 Thread laforge
laforge has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/pysim/+/27576 )


Change subject: ts_31_102: Avoid pylint false positive
..

ts_31_102: Avoid pylint false positive

This should avoid the following pylint error:

* Module pySim.ts_31_102
pySim/ts_31_102.py:621:100: E0601: Using variable 'sw' before assignment 
(used-before-assignment)

Change-Id: I0bb9607cdab0e6e3cd17b4d27129a51a607bc0f2
---
M pySim/ts_31_102.py
1 file changed, 1 insertion(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/76/27576/1

diff --git a/pySim/ts_31_102.py b/pySim/ts_31_102.py
index fec81bf..fa3af75 100644
--- a/pySim/ts_31_102.py
+++ b/pySim/ts_31_102.py
@@ -609,6 +609,7 @@
 should_exist = f.should_exist_for_services(active_services)
 try:
 cmd.rs.select_file(f)
+sw = None
 exists = True
 except SwMatchError as e:
 sw = str(e)

--
To view, visit https://gerrit.osmocom.org/c/pysim/+/27576
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I0bb9607cdab0e6e3cd17b4d27129a51a607bc0f2
Gerrit-Change-Number: 27576
Gerrit-PatchSet: 1
Gerrit-Owner: laforge 
Gerrit-MessageType: newchange


Change in pysim[master]: ts_31_103: Correct file-id of EF.DOMAIN in ADF.ISIM

2022-03-27 Thread laforge
Attention is currently required from: astrid smith.
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/pysim/+/27575 )

Change subject: ts_31_103: Correct file-id of EF.DOMAIN in ADF.ISIM
..


Patch Set 1:

(1 comment)

Patchset:

PS1:
> I suspect that the sysmoISIM-SJA2 in the testbed has an EF. […]
The actual error from the log file is

* Module pySim.ts_31_102
pySim/ts_31_102.py:621:100: E0601: Using variable 'sw' before assignment 
(used-before-assignment)

So it appears that the most recent pylint is detecting a false positive here.  
I'm tryng to fix this in https://gerrit.osmocom.org/c/pysim/+/27576 and we can 
rebase your patch afterwards.



--
To view, visit https://gerrit.osmocom.org/c/pysim/+/27575
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Idd572ab064ea38e74dffd583c27ea505b23214a2
Gerrit-Change-Number: 27575
Gerrit-PatchSet: 1
Gerrit-Owner: astrid smith 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: laforge 
Gerrit-Attention: astrid smith 
Gerrit-Comment-Date: Sun, 27 Mar 2022 10:35:30 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: astrid smith 
Gerrit-MessageType: comment


Change in docker-playground[master]: gr-gsm-master: migrate from archlinux to debian-bullseye-build

2022-03-27 Thread laforge
Attention is currently required from: fixeria.
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/docker-playground/+/27574 )

Change subject: gr-gsm-master: migrate from archlinux to debian-bullseye-build
..


Patch Set 1: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/27574
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I9900addf152fd254283ef340cea16583ee5ac1c5
Gerrit-Change-Number: 27574
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Attention: fixeria 
Gerrit-Comment-Date: Sun, 27 Mar 2022 10:37:36 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in docker-playground[master]: gr-gsm-master: migrate from archlinux to debian-bullseye-build

2022-03-27 Thread laforge
laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/docker-playground/+/27574 )

Change subject: gr-gsm-master: migrate from archlinux to debian-bullseye-build
..

gr-gsm-master: migrate from archlinux to debian-bullseye-build

Arch Linux ships gnuradio-3.9.4.0, while gr-gsm has not been migrated
to 3.9 yet.  Let's use debian:bullseye, which ships gnuradio-3.8.2.0.

Change-Id: I9900addf152fd254283ef340cea16583ee5ac1c5
---
M gr-gsm-master/Dockerfile
1 file changed, 14 insertions(+), 70 deletions(-)

Approvals:
  Jenkins Builder: Verified
  laforge: Looks good to me, approved



diff --git a/gr-gsm-master/Dockerfile b/gr-gsm-master/Dockerfile
index 71dc610..5e878c1 100644
--- a/gr-gsm-master/Dockerfile
+++ b/gr-gsm-master/Dockerfile
@@ -1,85 +1,29 @@
-ARGREGISTRY=docker.io
-FROM   ${REGISTRY}/archlinux/base
+ARGREGISTRY=docker.io
+ARGUSER
+FROM   $USER/debian-bullseye-build

 MAINTAINER Vadim Yanitskiy 

-ARGLIBOSMOCORE_BRANCH="master"
+RUNapt-get update && \
+   apt-get install -y --no-install-recommends \
+   libosmocore-dev \
+   gnuradio-dev \
+   gr-osmosdr \
+   cmake \
+   swig
+
 ARGGR_GSM_BRANCH="master"

-# Build dependencies
-ENVBUILD_DEPS \
-   automake \
-   autoconf \
-   libtool \
-   pkgconf \
-   cmake \
-   make \
-   swig \
-   gcc
-
-# Sync pacman
-RUNpacman -Syyu --noconfirm
-
-# Install persistent packages
-RUNpacman -S --needed --noconfirm \
-   gnuradio \
-   python2 \
-   python2-scipy \
-   python2-requests \
-   talloc \
-   boost
-
-# Download USRP firmware
-RUNuhd_images_downloader
-
-# Install build dependencies
-RUNpacman -S --needed --noconfirm \
-   $BUILD_DEPS
-
-# Make Python2 default
-RUNln -s /usr/bin/python2 /usr/bin/python
-
-# Install and configure git
-RUNpacman -S --needed --noconfirm git \
-   && git config --global user.email doc...@dock.er \
-   && git config --global user.name "Dock Er"
-
-WORKDIR/tmp
-
-# Download, build and install libosmocore
-RUNgit clone git://git.osmocom.org/libosmocore
-ADDhttp://git.osmocom.org/libosmocore/patch?h=$LIBOSMOCORE_BRANCH 
/tmp/commit-libosmocore
-
-RUNcd libosmocore \
-   && git fetch && git checkout -f -B $LIBOSMOCORE_BRANCH 
origin/$LIBOSMOCORE_BRANCH \
-   && git rev-parse --abbrev-ref HEAD && git rev-parse HEAD \
-   && autoreconf -fi \
-   && ./configure \
-   --disable-doxygen \
-   --disable-pcsc \
-   --prefix=/usr \
-   && make "-j$(nproc)" \
-   && make install \
-   && make distclean
-
 RUNgit clone git://git.osmocom.org/gr-gsm
 ADD http://git.osmocom.org/gr-gsm/patch?h=$GR_GSM_BRANCH /tmp/commit-gr-gsm

 RUNcd gr-gsm \
&& git fetch && git checkout -f -B $GR_GSM_BRANCH origin/$GR_GSM_BRANCH 
\
-   && git rev-parse HEAD \
+   && git rev-parse --abbrev-ref HEAD && git rev-parse HEAD \
&& mkdir build/ \
&& cd build/ \
-   && cmake \
+   && cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-Wno-dev \
-   -DENABLE_GRCC=OFF \
-   ../ \
&& make "-j$(nproc)" \
-   && make install \
-   && cd ../ \
-   && rm -rf build/
-
-# Remove build dependencies
-RUNpacman -Rs --noconfirm \
-   $BUILD_DEPS
+   && make install

--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/27574
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I9900addf152fd254283ef340cea16583ee5ac1c5
Gerrit-Change-Number: 27574
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-MessageType: merged


Change in pysim[master]: ts_31_102: Avoid pylint false positive

2022-03-27 Thread laforge
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/pysim/+/27576 )

Change subject: ts_31_102: Avoid pylint false positive
..


Patch Set 1: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/pysim/+/27576
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I0bb9607cdab0e6e3cd17b4d27129a51a607bc0f2
Gerrit-Change-Number: 27576
Gerrit-PatchSet: 1
Gerrit-Owner: laforge 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Comment-Date: Sun, 27 Mar 2022 10:43:18 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in pysim[master]: ts_31_102: Avoid pylint false positive

2022-03-27 Thread laforge
laforge has submitted this change. ( https://gerrit.osmocom.org/c/pysim/+/27576 
)

Change subject: ts_31_102: Avoid pylint false positive
..

ts_31_102: Avoid pylint false positive

This should avoid the following pylint error:

* Module pySim.ts_31_102
pySim/ts_31_102.py:621:100: E0601: Using variable 'sw' before assignment 
(used-before-assignment)

Change-Id: I0bb9607cdab0e6e3cd17b4d27129a51a607bc0f2
---
M pySim/ts_31_102.py
1 file changed, 1 insertion(+), 0 deletions(-)

Approvals:
  Jenkins Builder: Verified
  laforge: Looks good to me, approved



diff --git a/pySim/ts_31_102.py b/pySim/ts_31_102.py
index fec81bf..fa3af75 100644
--- a/pySim/ts_31_102.py
+++ b/pySim/ts_31_102.py
@@ -609,6 +609,7 @@
 should_exist = f.should_exist_for_services(active_services)
 try:
 cmd.rs.select_file(f)
+sw = None
 exists = True
 except SwMatchError as e:
 sw = str(e)

--
To view, visit https://gerrit.osmocom.org/c/pysim/+/27576
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I0bb9607cdab0e6e3cd17b4d27129a51a607bc0f2
Gerrit-Change-Number: 27576
Gerrit-PatchSet: 1
Gerrit-Owner: laforge 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-MessageType: merged


Change in pysim[master]: ts_31_103: Correct file-id of EF.DOMAIN in ADF.ISIM

2022-03-27 Thread laforge
Attention is currently required from: astrid smith.
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/pysim/+/27575 )

Change subject: ts_31_103: Correct file-id of EF.DOMAIN in ADF.ISIM
..


Patch Set 2: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/pysim/+/27575
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Idd572ab064ea38e74dffd583c27ea505b23214a2
Gerrit-Change-Number: 27575
Gerrit-PatchSet: 2
Gerrit-Owner: astrid smith 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Attention: astrid smith 
Gerrit-Comment-Date: Sun, 27 Mar 2022 11:47:57 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in pysim[master]: ts_31_103: Correct file-id of EF.DOMAIN in ADF.ISIM

2022-03-27 Thread laforge
laforge has submitted this change. ( https://gerrit.osmocom.org/c/pysim/+/27575 
)

Change subject: ts_31_103: Correct file-id of EF.DOMAIN in ADF.ISIM
..

ts_31_103: Correct file-id of EF.DOMAIN in ADF.ISIM

While the short ID of this file is 05, the actual file-id is 6f03.
Reference to TS 31.103 section 4.2.3.

Change-Id: Idd572ab064ea38e74dffd583c27ea505b23214a2
---
M pySim/ts_31_103.py
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Jenkins Builder: Verified
  laforge: Looks good to me, approved



diff --git a/pySim/ts_31_103.py b/pySim/ts_31_103.py
index fb164ef..a4f7983 100644
--- a/pySim/ts_31_103.py
+++ b/pySim/ts_31_103.py
@@ -91,7 +91,7 @@
 class domain(BER_TLV_IE, tag=0x80):
 _construct = GreedyString("utf8")

-def __init__(self, fid='6f05', sfid=0x05, name='EF.DOMAIN', desc='Home 
Network Domain Name', **kwargs):
+def __init__(self, fid='6f03', sfid=0x05, name='EF.DOMAIN', desc='Home 
Network Domain Name', **kwargs):
 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
 self._tlv = EF_DOMAIN.domain


--
To view, visit https://gerrit.osmocom.org/c/pysim/+/27575
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Idd572ab064ea38e74dffd583c27ea505b23214a2
Gerrit-Change-Number: 27575
Gerrit-PatchSet: 2
Gerrit-Owner: astrid smith 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-MessageType: merged


Change in osmo-e1d[master]: usb: Pass not just the actual transfer length but also the buffer size

2022-03-27 Thread laforge
laforge has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-e1d/+/27578 )


Change subject: usb: Pass not just the actual transfer length but also the 
buffer size
..

usb: Pass not just the actual transfer length but also the buffer size

Change-Id: I5088a5213d2945fdfaf3b242a63e35d0ed511914
---
M src/usb.c
1 file changed, 9 insertions(+), 7 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-e1d refs/changes/78/27578/1

diff --git a/src/usb.c b/src/usb.c
index 40518d8..4d30742 100644
--- a/src/usb.c
+++ b/src/usb.c
@@ -104,7 +104,8 @@
struct libusb_transfer *xfr;
 };

-typedef int (*xfer_cb_t)(struct e1_usb_flow *flow, uint8_t *buf, int len);
+/* len == actual length, size == underlying size of buffer */
+typedef int (*xfer_cb_t)(struct e1_usb_flow *flow, uint8_t *buf, int len, 
size_t size);

 struct e1_usb_flow {
struct e1_line *line;
@@ -124,7 +125,7 @@
 // ---

 static int
-e1_usb_xfer_in(struct e1_usb_flow *flow, uint8_t *buf, int len)
+e1_usb_xfer_in(struct e1_usb_flow *flow, uint8_t *buf, int len, size_t size)
 {
if (len == 0)
return 0;
@@ -132,7 +133,7 @@
 }

 static int
-e1_usb_xfer_out(struct e1_usb_flow *flow, uint8_t *buf, int len)
+e1_usb_xfer_out(struct e1_usb_flow *flow, uint8_t *buf, int len, size_t size)
 {
struct e1_line *line = flow->line;
struct e1_usb_line_data *ld = (struct e1_usb_line_data *) 
line->drv_data;
@@ -161,7 +162,7 @@
 }

 static int
-e1_usb_xfer_fb(struct e1_usb_flow *flow, uint8_t *buf, int len)
+e1_usb_xfer_fb(struct e1_usb_flow *flow, uint8_t *buf, int len, size_t size)
 {
struct e1_usb_line_data *ld = (struct e1_usb_line_data *) 
flow->line->drv_data;

@@ -216,7 +217,8 @@
}
flow->cb(flow,
libusb_get_iso_packet_buffer_simple(xfr, j),
-   (iso_pd->status == LIBUSB_TRANSFER_COMPLETED) ? 
 (int)iso_pd->actual_length : -1
+   (iso_pd->status == LIBUSB_TRANSFER_COMPLETED) ? 
 (int)iso_pd->actual_length : -1,
+   iso_pd->length
);
len += (iso_pd->length = flow->size);
}
@@ -227,7 +229,7 @@
LOGPLI(flow->line, DE1D, LOGL_ERROR, "OUT EP 
%02x ISO packet %d failed with status %s\n",
flow->ep, j, 
get_value_string(libusb_status_str, iso_pd->status));
}
-   len += (iso_pd->length = flow->cb(flow, 
&xfr->buffer[len], flow->size));
+   len += (iso_pd->length = flow->cb(flow, 
&xfr->buffer[len], flow->size, flow->size));
}
}

@@ -300,7 +302,7 @@
len += (xfr->iso_packet_desc[j].length = 
flow->size);
} else {
for (j = 0; j < flow->ppx; j++)
-   len += (xfr->iso_packet_desc[j].length = 
flow->cb(flow, &flow->entries[i].buf[len], flow->size));
+   len += (xfr->iso_packet_desc[j].length = 
flow->cb(flow, &flow->entries[i].buf[len], flow->size, flow->size));
}

libusb_fill_iso_transfer(xfr, id->devh, flow->ep,

--
To view, visit https://gerrit.osmocom.org/c/osmo-e1d/+/27578
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: I5088a5213d2945fdfaf3b242a63e35d0ed511914
Gerrit-Change-Number: 27578
Gerrit-PatchSet: 1
Gerrit-Owner: laforge 
Gerrit-MessageType: newchange


Change in osmo-e1d[master]: usb: rename 'size' to 'len' in callback functions

2022-03-27 Thread laforge
laforge has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-e1d/+/27577 )


Change subject: usb: rename 'size' to 'len' in callback functions
..

usb: rename 'size' to 'len' in callback functions

What we are passing is not the [underlying] size of the buffer, but
the length of the valid data in them.

Change-Id: I8ce91527351a56c103bd077c9565be2a81d175ac
---
M src/usb.c
1 file changed, 11 insertions(+), 11 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-e1d refs/changes/77/27577/1

diff --git a/src/usb.c b/src/usb.c
index 747b9c5..40518d8 100644
--- a/src/usb.c
+++ b/src/usb.c
@@ -104,7 +104,7 @@
struct libusb_transfer *xfr;
 };

-typedef int (*xfer_cb_t)(struct e1_usb_flow *flow, uint8_t *buf, int size);
+typedef int (*xfer_cb_t)(struct e1_usb_flow *flow, uint8_t *buf, int len);

 struct e1_usb_flow {
struct e1_line *line;
@@ -124,22 +124,22 @@
 // ---

 static int
-e1_usb_xfer_in(struct e1_usb_flow *flow, uint8_t *buf, int size)
+e1_usb_xfer_in(struct e1_usb_flow *flow, uint8_t *buf, int len)
 {
-   if (size == 0)
+   if (len == 0)
return 0;
-   return e1_line_demux_in(flow->line, buf + 4, size - 4, buf[3] & 0xf);
+   return e1_line_demux_in(flow->line, buf + 4, len - 4, buf[3] & 0xf);
 }

 static int
-e1_usb_xfer_out(struct e1_usb_flow *flow, uint8_t *buf, int size)
+e1_usb_xfer_out(struct e1_usb_flow *flow, uint8_t *buf, int len)
 {
struct e1_line *line = flow->line;
struct e1_usb_line_data *ld = (struct e1_usb_line_data *) 
line->drv_data;
int fm, fts;

-   if (size <= 0) {
-   LOGPLI(line, DXFR, LOGL_ERROR, "OUT ERROR: %d\n", size);
+   if (len <= 0) {
+   LOGPLI(line, DXFR, LOGL_ERROR, "OUT ERROR: %d\n", len);
return -1;
}

@@ -161,15 +161,15 @@
 }

 static int
-e1_usb_xfer_fb(struct e1_usb_flow *flow, uint8_t *buf, int size)
+e1_usb_xfer_fb(struct e1_usb_flow *flow, uint8_t *buf, int len)
 {
struct e1_usb_line_data *ld = (struct e1_usb_line_data *) 
flow->line->drv_data;

-   if (size < 0) {
+   if (len < 0) {
LOGPLI(flow->line, DE1D, LOGL_ERROR, "Feedback transfer 
error\n");
return 0;
-   } else if (size != 3) {
-   LOGPLI(flow->line, DE1D, LOGL_ERROR, "Feedback packet invalid 
size (%d)\n", size);
+   } else if (len != 3) {
+   LOGPLI(flow->line, DE1D, LOGL_ERROR, "Feedback packet invalid 
len (%d)\n", len);
return 0;
}


--
To view, visit https://gerrit.osmocom.org/c/osmo-e1d/+/27577
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: I8ce91527351a56c103bd077c9565be2a81d175ac
Gerrit-Change-Number: 27577
Gerrit-PatchSet: 1
Gerrit-Owner: laforge 
Gerrit-MessageType: newchange


Change in osmo-e1d[master]: usb: Deal with truncated ISO IN transfers

2022-03-27 Thread laforge
laforge has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-e1d/+/27579 )


Change subject: usb: Deal with truncated ISO IN transfers
..

usb: Deal with truncated ISO IN transfers

It seems that in some circumstances, an ISO IN transfer can be
truncated by the bus / host.  In such situation we'd currently pass
a non-modulo-32 length to the mux_demux (deframer) code, and it ASSERTs
on that.  Let's try to handle this more gracefully by substituting
random garbage and letting higher layers deal with massive bit errors.

Related: OS#5490
Change-Id: Ic453325b93b0e12727625a1495a948d96df4b542
---
M src/usb.c
1 file changed, 24 insertions(+), 6 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-e1d refs/changes/79/27579/1

diff --git a/src/usb.c b/src/usb.c
index 4d30742..074e836 100644
--- a/src/usb.c
+++ b/src/usb.c
@@ -201,9 +201,9 @@
 {
struct e1_usb_flow *flow = (struct e1_usb_flow *) xfr->user_data;
struct e1_usb_intf_data *id = (struct e1_usb_intf_data *) 
flow->line->intf->drv_data;
-   int j, rv, len;
+   int j, rv, size;

-   len = 0;
+   size = 0;

/* FIXME: Check transfer status ? Error handling ? */

@@ -211,16 +211,34 @@
if (flow->ep & 0x80) {
for (j = 0; j < flow->ppx; j++) {
struct libusb_iso_packet_descriptor *iso_pd = 
&xfr->iso_packet_desc[j];
+   int len = (int) iso_pd->actual_length;
if (iso_pd->status != LIBUSB_TRANSFER_COMPLETED) {
LOGPLI(flow->line, DE1D, LOGL_ERROR, "IN EP 
%02x ISO packet %d failed with status %s\n",
flow->ep, j, 
get_value_string(libusb_status_str, iso_pd->status));
+   } else if (len > 4 && (len - 4) % 32) {
+   /* some ISO IN packet was truncated. Apparently 
this
+* does happen, see 
https://osmocom.org/issues/5490 -
+* there is little we can do here, but instead 
of the
+* earlier ASSERT, we just feed some garbage 
for the
+* last few timeslots, resulting in bit errors 
etc. */
+   LOGPLI(flow->line, DE1D, LOGL_ERROR, "IN EP 
%02x ISO packet %d truncated: len-4 = %u\n",
+   flow->ep, j, len-4);
+
+   /* The assumption here is that only the last E1 
frame is
+* truncated, as we have no idea how many E1 
frames the
+* USB device firmware wanted to send us. */
+   len += 32 - (len % 32);
+   /* don't overflow the underlying buffer */
+   if (len > (int) iso_pd->length)
+   len = iso_pd->length;
}
+
flow->cb(flow,
libusb_get_iso_packet_buffer_simple(xfr, j),
-   (iso_pd->status == LIBUSB_TRANSFER_COMPLETED) ? 
 (int)iso_pd->actual_length : -1,
+   (iso_pd->status == LIBUSB_TRANSFER_COMPLETED) ? 
 len : -1,
iso_pd->length
);
-   len += (iso_pd->length = flow->size);
+   size += (iso_pd->length = flow->size);
}
} else {
for (j = 0; j < flow->ppx; j++) {
@@ -229,12 +247,12 @@
LOGPLI(flow->line, DE1D, LOGL_ERROR, "OUT EP 
%02x ISO packet %d failed with status %s\n",
flow->ep, j, 
get_value_string(libusb_status_str, iso_pd->status));
}
-   len += (iso_pd->length = flow->cb(flow, 
&xfr->buffer[len], flow->size, flow->size));
+   size += (iso_pd->length = flow->cb(flow, 
&xfr->buffer[size], flow->size, flow->size));
}
}

libusb_fill_iso_transfer(xfr, id->devh, flow->ep,
-   xfr->buffer, len, flow->ppx,
+   xfr->buffer, size, flow->ppx,
_e1uf_xfr, flow, 0
);


--
To view, visit https://gerrit.osmocom.org/c/osmo-e1d/+/27579
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: Ic453325b93b0e12727625a1495a948d96df4b542
Gerrit-Change-Number: 27579
Gerrit-PatchSet: 1
Gerrit-Owner: laforge 
Gerrit-MessageType: newchange


Build failed in Jenkins: master-osmo-opencm3-projects » a1=default,a2=default,a3=default,a4=default,osmocom-master-debian9 #47

2022-03-27 Thread jenkins
See 


Changes:


--
Started by upstream project "master-osmo-opencm3-projects" build number 47
originally caused by:
 Started by timer
Running as SYSTEM
Building remotely on build2-deb9build-ansible (ttcn3 osmocom-gerrit-debian9 
osmocom-master-debian9 repo-install-test coverity) in workspace 

The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir 
 > 
 >  # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url git://git.osmocom.org/osmo-opencm3-projects # 
 > timeout=10
Fetching upstream changes from git://git.osmocom.org/osmo-opencm3-projects
 > git --version # timeout=10
 > git --version # 'git version 2.11.0'
 > git fetch --tags --progress -- git://git.osmocom.org/osmo-opencm3-projects 
 > +refs/heads/*:refs/remotes/origin/* # timeout=10
Checking out Revision 7527cab6d8364b2022bd4fa2fd03039eac2a99bb 
(refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 7527cab6d8364b2022bd4fa2fd03039eac2a99bb # timeout=10
Commit message: "add missing libcommon.mk"
 > git rev-list --no-walk 7527cab6d8364b2022bd4fa2fd03039eac2a99bb # timeout=10
 > git remote # timeout=10
 > git submodule init # timeout=10
 > git submodule sync # timeout=10
 > git config --get remote.origin.url # timeout=10
 > git submodule init # timeout=10
 > git config -f .gitmodules --get-regexp ^submodule\.(.+)\.url # timeout=10
 > git config --get submodule.libopencm3.url # timeout=10
 > git config -f .gitmodules --get submodule.libopencm3.path # timeout=10
 > git config --get submodule.librfn.url # timeout=10
 > git config -f .gitmodules --get submodule.librfn.path # timeout=10
 > git submodule update --init --recursive libopencm3 # timeout=10
 > git submodule update --init --recursive librfn # timeout=10
[osmocom-master-debian9] $ /bin/sh -xe /tmp/jenkins2884448416853122905.sh
+ ARTIFACT_STORE=/home/osmocom-build/jenkins_build_artifact_store
+ mkdir -p /home/osmocom-build/jenkins_build_artifact_store
+ docker run --rm=true --cap-add SYS_PTRACE -e ARTIFACT_STORE=/artifact_store 
-e ASCIIDOC_WARNINGS_CHECK=1 -e HOME=/build -e 
JOB_NAME=master-osmo-opencm3-projects/a1=default,a2=default,a3=default,a4=default,label=osmocom-master-debian9
 -e MAKE=make -e OSMOPY_DEBUG_TCP_SOCKETS=1 -e 
OSMO_GSM_MANUALS_DIR=/opt/osmo-gsm-manuals -e PARALLEL_MAKE=-j 8 -e PUBLISH=1 
-e WITH_MANUALS=1 -w /build -i -u build -v 
:/build
 -v /home/osmocom-build/jenkins_build_artifact_store:/artifact_store -v 
/home/osmocom-build/.ssh:/home/build/.ssh:ro 
osmocom-build/debian-stretch-jenkins /build/contrib/jenkins.sh --publish
=== relay-driver START  ==
  CLEAN
  CC  console.c
arm-none-eabi-gcc: error: /usr/lib/picolibc/arm-none-eabi/picolibc.specs: No 
such file or directory
make: *** [console.o] Error 1
../../mk/libopencm3.mk:227: recipe for target 'console.o' failed
Build step 'Execute shell' marked build as failure


Change in libosmocore[master]: libosmovty: Link libosmovty against libpthread

2022-03-27 Thread laforge
laforge has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/libosmocore/+/27580 )


Change subject: libosmovty: Link libosmovty against libpthread
..

libosmovty: Link libosmovty against libpthread

Ever since Change-Id If76a4bd2cc7b3c7adf5d84790a944d78be70e10a in 2020
(part of libosmocore >= 1.4.0) we have introduced cpu_sched_vty.c, which
directly uses libpthread.  As a result, libosmovty should be using
pthread compiler flags and link against libpthread.

This missing dependency is causing osmocom applications to
fail to link on OpenWRT (at leats for ath79-generic).

Change-Id: I7febbf88cbe61eacd05f46a9316e773b5c148e77
Related: SYS#4986
---
M src/vty/Makefile.am
1 file changed, 2 insertions(+), 2 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/80/27580/1

diff --git a/src/vty/Makefile.am b/src/vty/Makefile.am
index c73dbb2..37faad6 100644
--- a/src/vty/Makefile.am
+++ b/src/vty/Makefile.am
@@ -4,7 +4,7 @@
 LIBVERSION=10:0:1

 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include
-AM_CFLAGS = -Wall $(TALLOC_CFLAGS)
+AM_CFLAGS = -Wall $(TALLOC_CFLAGS) $(PTHREAD_CFLAGS)

 if ENABLE_VTY
 lib_LTLIBRARIES = libosmovty.la
@@ -14,5 +14,5 @@
fsm_vty.c talloc_ctx_vty.c \
cpu_sched_vty.c tdef_vty.c
 libosmovty_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined
-libosmovty_la_LIBADD = $(top_builddir)/src/libosmocore.la $(TALLOC_LIBS)
+libosmovty_la_LIBADD = $(top_builddir)/src/libosmocore.la $(TALLOC_LIBS) 
$(PTHREAD_LIBS)
 endif

--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/27580
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I7febbf88cbe61eacd05f46a9316e773b5c148e77
Gerrit-Change-Number: 27580
Gerrit-PatchSet: 1
Gerrit-Owner: laforge 
Gerrit-MessageType: newchange


Build failure of network:osmocom:nightly/osmo-pcap in openSUSE_Leap_15.2/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcap/openSUSE_Leap_15.2/x86_64

Package network:osmocom:nightly/osmo-pcap failed to build in 
openSUSE_Leap_15.2/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-pcap

Last lines of build log:
[   35s] checking how to run the C preprocessor... gcc -E
[   35s] checking for grep that handles long lines and -e... /usr/bin/grep
[   35s] checking for egrep... /usr/bin/grep -E
[   35s] checking for ANSI C header files... yes
[   35s] checking whether to enable VTY tests... no
[   35s] checking for pcap-config... /usr/bin/pcap-config
[   35s] checking for libosmocore >= 1.6.0... no
[   36s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   36s] 
[   36s] Package 'libsctp', required by 'libosmocore', not found
[   36s] 
[   36s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   36s] installed software in a non-standard prefix.
[   36s] 
[   36s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   36s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   36s] See the pkg-config man page for more details.
[   36s] error: Bad exit status from /var/tmp/rpm-tmp.patfK2 (%build)
[   36s] 
[   36s] 
[   36s] RPM build errors:
[   36s] Bad exit status from /var/tmp/rpm-tmp.patfK2 (%build)
[   36s] ### VM INTERACTION START ###
[   36s] [   29.696995] sysrq: Power Off
[   36s] [   29.700878] reboot: Power down
[   36s] ### VM INTERACTION END ###
[   36s] 
[   36s] lamb17 failed "build osmo-pcap.spec" at Mon Mar 28 00:32:25 UTC 2022.
[   36s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-gbproxy in openSUSE_Leap_15.2/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-gbproxy/openSUSE_Leap_15.2/x86_64

Package network:osmocom:nightly/osmo-gbproxy failed to build in 
openSUSE_Leap_15.2/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-gbproxy

Last lines of build log:
[   43s] checking whether to build static libraries... yes
[   43s] checking for pkg-config... /usr/bin/pkg-config
[   43s] checking for x86_64-suse-linux-gnu-pkg-config... 
/usr/bin/x86_64-suse-linux-gnu-pkg-config
[   43s] checking pkg-config is at least version 0.20... yes
[   43s] checking for library containing dlopen... -ldl
[   44s] checking for library containing dlsym... -ldl
[   44s] checking for libosmocore >= 1.6.0... no
[   44s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   44s] 
[   44s] Package 'libsctp', required by 'libosmocore', not found
[   44s] 
[   44s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   44s] installed software in a non-standard prefix.
[   44s] 
[   44s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   44s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   44s] See the pkg-config man page for more details.
[   44s] error: Bad exit status from /var/tmp/rpm-tmp.rHkwvL (%build)
[   44s] 
[   44s] 
[   44s] RPM build errors:
[   44s] Bad exit status from /var/tmp/rpm-tmp.rHkwvL (%build)
[   44s] ### VM INTERACTION START ###
[   44s] [   38.114274] sysrq: Power Off
[   44s] [   38.117465] reboot: Power down
[   44s] ### VM INTERACTION END ###
[   44s] 
[   44s] old-atreju4 failed "build osmo-gbproxy.spec" at Mon Mar 28 00:32:32 
UTC 2022.
[   44s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/libosmo-netif in openSUSE_Leap_15.2/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/libosmo-netif/openSUSE_Leap_15.2/x86_64

Package network:osmocom:nightly/libosmo-netif failed to build in 
openSUSE_Leap_15.2/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly libosmo-netif

Last lines of build log:
[   42s] checking syslog.h presence... yes
[   42s] checking for syslog.h... yes
[   42s] checking ctype.h usability... yes
[   42s] checking ctype.h presence... yes
[   42s] checking for ctype.h... yes
[   42s] checking if gcc supports -fvisibility=hidden... yes
[   42s] checking for libosmocore >= 1.5.0... no
[   42s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   42s] 
[   42s] Package 'libsctp', required by 'libosmocore', not found
[   42s] 
[   42s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   42s] installed software in a non-standard prefix.
[   42s] 
[   42s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   42s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   42s] See the pkg-config man page for more details.
[   42s] error: Bad exit status from /var/tmp/rpm-tmp.q0Smvs (%build)
[   42s] 
[   42s] 
[   42s] RPM build errors:
[   42s] Bad exit status from /var/tmp/rpm-tmp.q0Smvs (%build)
[   42s] ### VM INTERACTION START ###
[   43s] [   36.883120] sysrq: Power Off
[   43s] [   36.885779] reboot: Power down
[   43s] ### VM INTERACTION END ###
[   43s] 
[   43s] lamb58 failed "build libosmo-netif.spec" at Mon Mar 28 00:32:33 UTC 
2022.
[   43s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/libosmo-abis in openSUSE_Leap_15.2/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/libosmo-abis/openSUSE_Leap_15.2/x86_64

Package network:osmocom:nightly/libosmo-abis failed to build in 
openSUSE_Leap_15.2/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly libosmo-abis

Last lines of build log:
[   44s] checking whether to build shared libraries... yes
[   44s] checking whether to build static libraries... no
[   44s] checking for pkg-config... /usr/bin/pkg-config
[   44s] checking for x86_64-suse-linux-gnu-pkg-config... 
/usr/bin/x86_64-suse-linux-gnu-pkg-config
[   44s] checking pkg-config is at least version 0.20... yes
[   45s] checking if gcc supports -fvisibility=hidden... yes
[   45s] checking for libosmocore >= 1.6.0... no
[   45s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   45s] 
[   45s] Package 'libsctp', required by 'libosmocore', not found
[   45s] 
[   45s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   45s] installed software in a non-standard prefix.
[   45s] 
[   45s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   45s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   45s] See the pkg-config man page for more details.
[   45s] error: Bad exit status from /var/tmp/rpm-tmp.KGBlBY (%build)
[   45s] 
[   45s] 
[   45s] RPM build errors:
[   45s] Bad exit status from /var/tmp/rpm-tmp.KGBlBY (%build)
[   45s] ### VM INTERACTION START ###
[   45s] [   39.417239] sysrq: Power Off
[   45s] [   39.420385] reboot: Power down
[   45s] ### VM INTERACTION END ###
[   45s] 
[   45s] lamb11 failed "build libosmo-abis.spec" at Mon Mar 28 00:32:34 UTC 
2022.
[   45s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in openSUSE_Leap_15.2/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/openSUSE_Leap_15.2/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in 
openSUSE_Leap_15.2/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[   48s] checking whether to build shared libraries... yes
[   48s] checking whether to build static libraries... no
[   48s] checking for pkg-config... /usr/bin/pkg-config
[   48s] checking for x86_64-suse-linux-gnu-pkg-config... 
/usr/bin/x86_64-suse-linux-gnu-pkg-config
[   48s] checking pkg-config is at least version 0.20... yes
[   49s] checking if gcc supports -fvisibility=hidden... yes
[   49s] checking for libosmocore >= 1.4.0... no
[   49s] configure: error: Package requirements (libosmocore >= 1.4.0) were not 
met:
[   49s] 
[   49s] Package 'libsctp', required by 'libosmocore', not found
[   49s] 
[   49s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   49s] installed software in a non-standard prefix.
[   49s] 
[   49s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   49s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   49s] See the pkg-config man page for more details.
[   49s] error: Bad exit status from /var/tmp/rpm-tmp.bg0KP0 (%build)
[   49s] 
[   49s] 
[   49s] RPM build errors:
[   49s] Bad exit status from /var/tmp/rpm-tmp.bg0KP0 (%build)
[   49s] ### VM INTERACTION START ###
[   49s] [   42.363452] sysrq: Power Off
[   49s] [   42.366284] reboot: Power down
[   49s] ### VM INTERACTION END ###
[   49s] 
[   49s] lamb23 failed "build simtrace2.spec" at Mon Mar 28 00:32:39 UTC 2022.
[   49s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-pcu in openSUSE_Leap_15.2/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/openSUSE_Leap_15.2/x86_64

Package network:osmocom:nightly/osmo-pcu failed to build in 
openSUSE_Leap_15.2/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-pcu

Last lines of build log:
[   45s] checking dynamic linker characteristics... (cached) GNU/Linux ld.so
[   45s] checking how to hardcode library paths into programs... immediate
[   45s] checking for pkg-config... /usr/bin/pkg-config
[   45s] checking for x86_64-suse-linux-gnu-pkg-config... 
/usr/bin/x86_64-suse-linux-gnu-pkg-config
[   45s] checking pkg-config is at least version 0.20... yes
[   45s] checking for ANSI C header files... (cached) yes
[   45s] checking for libosmocore >= 1.6.0... no
[   45s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   45s] 
[   45s] Package 'libsctp', required by 'libosmocore', not found
[   45s] 
[   45s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   45s] installed software in a non-standard prefix.
[   45s] 
[   45s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   45s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   45s] See the pkg-config man page for more details.
[   45s] error: Bad exit status from /var/tmp/rpm-tmp.wygObn (%build)
[   45s] 
[   45s] 
[   45s] RPM build errors:
[   45s] Bad exit status from /var/tmp/rpm-tmp.wygObn (%build)
[   45s] ### VM INTERACTION START ###
[   46s] [   39.101973] sysrq: Power Off
[   46s] [   39.105258] reboot: Power down
[   46s] ### VM INTERACTION END ###
[   46s] 
[   46s] lamb53 failed "build osmo-pcu.spec" at Mon Mar 28 00:32:36 UTC 2022.
[   46s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-sip-connector in openSUSE_Leap_15.2/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-sip-connector/openSUSE_Leap_15.2/x86_64

Package network:osmocom:nightly/osmo-sip-connector failed to build in 
openSUSE_Leap_15.2/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-sip-connector

Last lines of build log:
[   32s] checking whether we are using the GNU C compiler... yes
[   32s] checking whether gcc accepts -g... yes
[   32s] checking for gcc option to accept ISO C89... none needed
[   32s] checking whether gcc understands -c and -o together... yes
[   32s] checking for style of include used by make... GNU
[   32s] checking dependency style of gcc... none
[   32s] checking for libosmocore >= 1.5.0... no
[   32s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   32s] 
[   32s] Package 'libsctp', required by 'libosmocore', not found
[   32s] 
[   32s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   32s] installed software in a non-standard prefix.
[   32s] 
[   32s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   32s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   32s] See the pkg-config man page for more details.
[   32s] error: Bad exit status from /var/tmp/rpm-tmp.YA226G (%build)
[   32s] 
[   32s] 
[   32s] RPM build errors:
[   32s] Bad exit status from /var/tmp/rpm-tmp.YA226G (%build)
[   32s] ### VM INTERACTION START ###
[   33s] [   28.151628] sysrq: Power Off
[   33s] [   28.155140] reboot: Power down
[   33s] ### VM INTERACTION END ###
[   33s] 
[   33s] sheep88 failed "build osmo-sip-connector.spec" at Mon Mar 28 00:32:19 
UTC 2022.
[   33s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-ggsn in openSUSE_Leap_15.2/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-ggsn/openSUSE_Leap_15.2/x86_64

Package network:osmocom:nightly/osmo-ggsn failed to build in 
openSUSE_Leap_15.2/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-ggsn

Last lines of build log:
[   55s] checking for getopt_long... yes
[   55s] checking whether build environment is sane... yes
[   55s] checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
[   55s] checking whether make sets $(MAKE)... yes
[   55s] checking for style of include used by make... GNU
[   55s] checking dependency style of gcc... none
[   55s] checking for libosmocore >= 1.5.0... no
[   55s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   55s] 
[   55s] Package 'libsctp', required by 'libosmocore', not found
[   55s] 
[   55s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   55s] installed software in a non-standard prefix.
[   55s] 
[   55s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   55s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   55s] See the pkg-config man page for more details.
[   55s] error: Bad exit status from /var/tmp/rpm-tmp.D1h5ql (%build)
[   55s] 
[   55s] 
[   55s] RPM build errors:
[   55s] Bad exit status from /var/tmp/rpm-tmp.D1h5ql (%build)
[   55s] ### VM INTERACTION START ###
[   56s] [   48.673797] sysrq: Power Off
[   56s] [   48.682189] reboot: Power down
[   56s] ### VM INTERACTION END ###
[   56s] 
[   56s] lamb24 failed "build osmo-ggsn.spec" at Mon Mar 28 00:32:48 UTC 2022.
[   56s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-trx in openSUSE_Leap_15.2/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-trx/openSUSE_Leap_15.2/x86_64

Package network:osmocom:nightly/osmo-trx failed to build in 
openSUSE_Leap_15.2/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-trx

Last lines of build log:
[   52s] checking for byteswap.h... yes
[   52s] checking for an ANSI C-conforming const... yes
[   52s] checking for inline... inline
[   53s] checking for size_t... yes
[   53s] checking whether time.h and sys/time.h may both be included... yes
[   53s] checking whether byte ordering is bigendian... no
[   53s] checking for libosmocore >= 1.6.0... no
[   53s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   53s] 
[   53s] Package 'libsctp', required by 'libosmocore', not found
[   53s] 
[   53s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   53s] installed software in a non-standard prefix.
[   53s] 
[   53s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   53s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   53s] See the pkg-config man page for more details.
[   53s] error: Bad exit status from /var/tmp/rpm-tmp.SIemkt (%build)
[   53s] 
[   53s] 
[   53s] RPM build errors:
[   53s] Bad exit status from /var/tmp/rpm-tmp.SIemkt (%build)
[   53s] ### VM INTERACTION START ###
[   53s] [   47.432882] sysrq: Power Off
[   53s] [   47.437279] reboot: Power down
[   53s] ### VM INTERACTION END ###
[   53s] 
[   53s] lamb06 failed "build osmo-trx.spec" at Mon Mar 28 00:33:06 UTC 2022.
[   53s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-pcu in openSUSE_Leap_15.1/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/openSUSE_Leap_15.1/x86_64

Package network:osmocom:nightly/osmo-pcu failed to build in 
openSUSE_Leap_15.1/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-pcu

Last lines of build log:
[   35s] checking dynamic linker characteristics... (cached) GNU/Linux ld.so
[   35s] checking how to hardcode library paths into programs... immediate
[   35s] checking for pkg-config... /usr/bin/pkg-config
[   35s] checking for x86_64-suse-linux-gnu-pkg-config... 
/usr/bin/x86_64-suse-linux-gnu-pkg-config
[   35s] checking pkg-config is at least version 0.20... yes
[   35s] checking for ANSI C header files... (cached) yes
[   35s] checking for libosmocore >= 1.6.0... no
[   35s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   35s] 
[   35s] Package 'libsctp', required by 'libosmocore', not found
[   35s] 
[   35s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   35s] installed software in a non-standard prefix.
[   35s] 
[   35s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   35s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   35s] See the pkg-config man page for more details.
[   35s] error: Bad exit status from /var/tmp/rpm-tmp.k8DQx4 (%build)
[   35s] 
[   35s] 
[   35s] RPM build errors:
[   35s] Bad exit status from /var/tmp/rpm-tmp.k8DQx4 (%build)
[   35s] ### VM INTERACTION START ###
[   35s] [   30.079560] sysrq: SysRq : Power Off
[   35s] [   30.081728] reboot: Power down
[   35s] ### VM INTERACTION END ###
[   35s] 
[   35s] sheep87 failed "build osmo-pcu.spec" at Mon Mar 28 00:33:53 UTC 2022.
[   35s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/libosmo-abis in openSUSE_Leap_15.1/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/libosmo-abis/openSUSE_Leap_15.1/x86_64

Package network:osmocom:nightly/libosmo-abis failed to build in 
openSUSE_Leap_15.1/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly libosmo-abis

Last lines of build log:
[   37s] checking whether to build shared libraries... yes
[   37s] checking whether to build static libraries... no
[   37s] checking for pkg-config... /usr/bin/pkg-config
[   37s] checking for x86_64-suse-linux-gnu-pkg-config... 
/usr/bin/x86_64-suse-linux-gnu-pkg-config
[   37s] checking pkg-config is at least version 0.20... yes
[   38s] checking if gcc supports -fvisibility=hidden... yes
[   38s] checking for libosmocore >= 1.6.0... no
[   38s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   38s] 
[   38s] Package 'libsctp', required by 'libosmocore', not found
[   38s] 
[   38s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   38s] installed software in a non-standard prefix.
[   38s] 
[   38s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   38s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   38s] See the pkg-config man page for more details.
[   38s] error: Bad exit status from /var/tmp/rpm-tmp.MujQqO (%build)
[   38s] 
[   38s] 
[   38s] RPM build errors:
[   38s] Bad exit status from /var/tmp/rpm-tmp.MujQqO (%build)
[   38s] ### VM INTERACTION START ###
[   38s] [   32.791508] sysrq: SysRq : Power Off
[   38s] [   32.793067] reboot: Power down
[   38s] ### VM INTERACTION END ###
[   38s] 
[   38s] sheep88 failed "build libosmo-abis.spec" at Mon Mar 28 00:33:57 UTC 
2022.
[   38s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/libosmo-netif in openSUSE_Leap_15.1/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/libosmo-netif/openSUSE_Leap_15.1/x86_64

Package network:osmocom:nightly/libosmo-netif failed to build in 
openSUSE_Leap_15.1/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly libosmo-netif

Last lines of build log:
[   39s] checking syslog.h presence... yes
[   39s] checking for syslog.h... yes
[   39s] checking ctype.h usability... yes
[   39s] checking ctype.h presence... yes
[   39s] checking for ctype.h... yes
[   39s] checking if gcc supports -fvisibility=hidden... yes
[   39s] checking for libosmocore >= 1.5.0... no
[   39s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   39s] 
[   39s] Package 'libsctp', required by 'libosmocore', not found
[   39s] 
[   39s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   39s] installed software in a non-standard prefix.
[   39s] 
[   39s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   39s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   39s] See the pkg-config man page for more details.
[   39s] error: Bad exit status from /var/tmp/rpm-tmp.pKnOjh (%build)
[   39s] 
[   39s] 
[   39s] RPM build errors:
[   39s] Bad exit status from /var/tmp/rpm-tmp.pKnOjh (%build)
[   39s] ### VM INTERACTION START ###
[   40s] [   33.892787] sysrq: SysRq : Power Off
[   40s] [   33.895246] reboot: Power down
[   40s] ### VM INTERACTION END ###
[   40s] 
[   40s] lamb57 failed "build libosmo-netif.spec" at Mon Mar 28 00:34:01 UTC 
2022.
[   40s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-sip-connector in openSUSE_Leap_15.1/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-sip-connector/openSUSE_Leap_15.1/x86_64

Package network:osmocom:nightly/osmo-sip-connector failed to build in 
openSUSE_Leap_15.1/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-sip-connector

Last lines of build log:
[   38s] checking whether we are using the GNU C compiler... yes
[   38s] checking whether gcc accepts -g... yes
[   38s] checking for gcc option to accept ISO C89... none needed
[   39s] checking whether gcc understands -c and -o together... yes
[   39s] checking for style of include used by make... GNU
[   39s] checking dependency style of gcc... none
[   39s] checking for libosmocore >= 1.5.0... no
[   39s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   39s] 
[   39s] Package 'libsctp', required by 'libosmocore', not found
[   39s] 
[   39s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   39s] installed software in a non-standard prefix.
[   39s] 
[   39s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   39s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   39s] See the pkg-config man page for more details.
[   39s] error: Bad exit status from /var/tmp/rpm-tmp.50MjAG (%build)
[   39s] 
[   39s] 
[   39s] RPM build errors:
[   39s] Bad exit status from /var/tmp/rpm-tmp.50MjAG (%build)
[   39s] ### VM INTERACTION START ###
[   40s] [   33.088521] sysrq: SysRq : Power Off
[   40s] [   33.092245] reboot: Power down
[   40s] ### VM INTERACTION END ###
[   40s] 
[   40s] lamb55 failed "build osmo-sip-connector.spec" at Mon Mar 28 00:34:03 
UTC 2022.
[   40s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-ggsn in openSUSE_Leap_15.1/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-ggsn/openSUSE_Leap_15.1/x86_64

Package network:osmocom:nightly/osmo-ggsn failed to build in 
openSUSE_Leap_15.1/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-ggsn

Last lines of build log:
[   38s] checking for getopt_long... yes
[   38s] checking whether build environment is sane... yes
[   38s] checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
[   38s] checking whether make sets $(MAKE)... yes
[   38s] checking for style of include used by make... GNU
[   38s] checking dependency style of gcc... none
[   38s] checking for libosmocore >= 1.5.0... no
[   38s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   38s] 
[   38s] Package 'libsctp', required by 'libosmocore', not found
[   38s] 
[   38s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   38s] installed software in a non-standard prefix.
[   38s] 
[   38s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   38s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   38s] See the pkg-config man page for more details.
[   38s] error: Bad exit status from /var/tmp/rpm-tmp.mm7OWV (%build)
[   38s] 
[   38s] 
[   38s] RPM build errors:
[   38s] Bad exit status from /var/tmp/rpm-tmp.mm7OWV (%build)
[   38s] ### VM INTERACTION START ###
[   39s] [   33.502860] sysrq: SysRq : Power Off
[   39s] [   33.504996] reboot: Power down
[   39s] ### VM INTERACTION END ###
[   39s] 
[   39s] sheep86 failed "build osmo-ggsn.spec" at Mon Mar 28 00:33:57 UTC 2022.
[   39s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-gbproxy in openSUSE_Leap_15.1/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-gbproxy/openSUSE_Leap_15.1/x86_64

Package network:osmocom:nightly/osmo-gbproxy failed to build in 
openSUSE_Leap_15.1/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-gbproxy

Last lines of build log:
[   39s] checking whether to build static libraries... yes
[   39s] checking for pkg-config... /usr/bin/pkg-config
[   39s] checking for x86_64-suse-linux-gnu-pkg-config... 
/usr/bin/x86_64-suse-linux-gnu-pkg-config
[   39s] checking pkg-config is at least version 0.20... yes
[   39s] checking for library containing dlopen... -ldl
[   39s] checking for library containing dlsym... -ldl
[   39s] checking for libosmocore >= 1.6.0... no
[   39s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   39s] 
[   39s] Package 'libsctp', required by 'libosmocore', not found
[   39s] 
[   39s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   39s] installed software in a non-standard prefix.
[   39s] 
[   39s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   39s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   39s] See the pkg-config man page for more details.
[   39s] error: Bad exit status from /var/tmp/rpm-tmp.d4EBjG (%build)
[   39s] 
[   39s] 
[   39s] RPM build errors:
[   39s] Bad exit status from /var/tmp/rpm-tmp.d4EBjG (%build)
[   39s] ### VM INTERACTION START ###
[   39s] [   34.927129] sysrq: SysRq : Power Off
[   39s] [   34.929353] reboot: Power down
[   39s] ### VM INTERACTION END ###
[   39s] 
[   39s] hci-cnode1-m0 failed "build osmo-gbproxy.spec" at Mon Mar 28 00:33:59 
UTC 2022.
[   39s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-pcap in openSUSE_Leap_15.1/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcap/openSUSE_Leap_15.1/x86_64

Package network:osmocom:nightly/osmo-pcap failed to build in 
openSUSE_Leap_15.1/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-pcap

Last lines of build log:
[   40s] checking how to run the C preprocessor... gcc -E
[   40s] checking for grep that handles long lines and -e... /usr/bin/grep
[   40s] checking for egrep... /usr/bin/grep -E
[   40s] checking for ANSI C header files... yes
[   40s] checking whether to enable VTY tests... no
[   40s] checking for pcap-config... /usr/bin/pcap-config
[   40s] checking for libosmocore >= 1.6.0... no
[   40s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   40s] 
[   40s] Package 'libsctp', required by 'libosmocore', not found
[   40s] 
[   40s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   40s] installed software in a non-standard prefix.
[   40s] 
[   40s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   40s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   40s] See the pkg-config man page for more details.
[   40s] error: Bad exit status from /var/tmp/rpm-tmp.SqME0E (%build)
[   40s] 
[   40s] 
[   40s] RPM build errors:
[   40s] Bad exit status from /var/tmp/rpm-tmp.SqME0E (%build)
[   40s] ### VM INTERACTION START ###
[   41s] [   34.317630] sysrq: SysRq : Power Off
[   41s] [   34.320315] reboot: Power down
[   41s] ### VM INTERACTION END ###
[   41s] 
[   41s] lamb59 failed "build osmo-pcap.spec" at Mon Mar 28 00:34:04 UTC 2022.
[   41s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in openSUSE_Leap_15.1/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/openSUSE_Leap_15.1/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in 
openSUSE_Leap_15.1/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[   45s] checking whether to build shared libraries... yes
[   45s] checking whether to build static libraries... no
[   45s] checking for pkg-config... /usr/bin/pkg-config
[   45s] checking for x86_64-suse-linux-gnu-pkg-config... 
/usr/bin/x86_64-suse-linux-gnu-pkg-config
[   45s] checking pkg-config is at least version 0.20... yes
[   45s] checking if gcc supports -fvisibility=hidden... yes
[   45s] checking for libosmocore >= 1.4.0... no
[   45s] configure: error: Package requirements (libosmocore >= 1.4.0) were not 
met:
[   45s] 
[   45s] Package 'libsctp', required by 'libosmocore', not found
[   45s] 
[   45s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   45s] installed software in a non-standard prefix.
[   45s] 
[   45s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   45s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   45s] See the pkg-config man page for more details.
[   45s] error: Bad exit status from /var/tmp/rpm-tmp.RmjRGj (%build)
[   45s] 
[   45s] 
[   45s] RPM build errors:
[   45s] Bad exit status from /var/tmp/rpm-tmp.RmjRGj (%build)
[   45s] ### VM INTERACTION START ###
[   45s] [   39.159747] sysrq: SysRq : Power Off
[   45s] [   39.161971] reboot: Power down
[   45s] ### VM INTERACTION END ###
[   45s] 
[   45s] lamb62 failed "build simtrace2.spec" at Mon Mar 28 00:34:07 UTC 2022.
[   45s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-trx in openSUSE_Leap_15.1/x86_64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-trx/openSUSE_Leap_15.1/x86_64

Package network:osmocom:nightly/osmo-trx failed to build in 
openSUSE_Leap_15.1/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-trx

Last lines of build log:
[   67s] checking for byteswap.h... yes
[   67s] checking for an ANSI C-conforming const... yes
[   67s] checking for inline... inline
[   67s] checking for size_t... yes
[   67s] checking whether time.h and sys/time.h may both be included... yes
[   67s] checking whether byte ordering is bigendian... no
[   67s] checking for libosmocore >= 1.6.0... no
[   67s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   67s] 
[   67s] Package 'libsctp', required by 'libosmocore', not found
[   67s] 
[   67s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   67s] installed software in a non-standard prefix.
[   67s] 
[   67s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   67s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   67s] See the pkg-config man page for more details.
[   67s] error: Bad exit status from /var/tmp/rpm-tmp.kcUaJp (%build)
[   67s] 
[   67s] 
[   67s] RPM build errors:
[   67s] Bad exit status from /var/tmp/rpm-tmp.kcUaJp (%build)
[   67s] ### VM INTERACTION START ###
[   67s] [   55.835430] sysrq: SysRq : Power Off
[   67s] [   55.838363] reboot: Power down
[   68s] ### VM INTERACTION END ###
[   68s] 
[   68s] cloud105 failed "build osmo-trx.spec" at Mon Mar 28 00:34:41 UTC 2022.
[   68s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/libosmo-netif in openSUSE_Leap_15.1_ARM/aarch64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/libosmo-netif/openSUSE_Leap_15.1_ARM/aarch64

Package network:osmocom:nightly/libosmo-netif failed to build in 
openSUSE_Leap_15.1_ARM/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly libosmo-netif

Last lines of build log:
[   36s] checking syslog.h presence... yes
[   36s] checking for syslog.h... yes
[   36s] checking ctype.h usability... yes
[   36s] checking ctype.h presence... yes
[   36s] checking for ctype.h... yes
[   36s] checking if gcc supports -fvisibility=hidden... yes
[   36s] checking for libosmocore >= 1.5.0... no
[   36s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   36s] 
[   36s] Package 'libsctp', required by 'libosmocore', not found
[   36s] 
[   36s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   36s] installed software in a non-standard prefix.
[   36s] 
[   36s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   36s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   36s] See the pkg-config man page for more details.
[   36s] error: Bad exit status from /var/tmp/rpm-tmp.QSRWzf (%build)
[   36s] 
[   36s] 
[   36s] RPM build errors:
[   36s] Bad exit status from /var/tmp/rpm-tmp.QSRWzf (%build)
[   36s] ### VM INTERACTION START ###
[   37s] [   31.096609] sysrq: SysRq : Power Off
[   37s] [   31.097238] reboot: Power down
[   37s] ### VM INTERACTION END ###
[   37s] 
[   37s] obs-arm-11 failed "build libosmo-netif.spec" at Mon Mar 28 00:34:39 
UTC 2022.
[   37s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-pcap in openSUSE_Leap_15.1_ARM/aarch64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcap/openSUSE_Leap_15.1_ARM/aarch64

Package network:osmocom:nightly/osmo-pcap failed to build in 
openSUSE_Leap_15.1_ARM/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-pcap

Last lines of build log:
[   30s] checking how to run the C preprocessor... gcc -E
[   31s] checking for grep that handles long lines and -e... /usr/bin/grep
[   31s] checking for egrep... /usr/bin/grep -E
[   31s] checking for ANSI C header files... yes
[   31s] checking whether to enable VTY tests... no
[   31s] checking for pcap-config... /usr/bin/pcap-config
[   31s] checking for libosmocore >= 1.6.0... no
[   31s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   31s] 
[   31s] Package 'libsctp', required by 'libosmocore', not found
[   31s] 
[   31s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   31s] installed software in a non-standard prefix.
[   31s] 
[   31s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   31s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   31s] See the pkg-config man page for more details.
[   31s] error: Bad exit status from /var/tmp/rpm-tmp.adDZIm (%build)
[   31s] 
[   31s] 
[   31s] RPM build errors:
[   31s] Bad exit status from /var/tmp/rpm-tmp.adDZIm (%build)
[   31s] ### VM INTERACTION START ###
[   32s] [   25.777350] sysrq: SysRq : Power Off
[   32s] [   25.777905] reboot: Power down
[   32s] ### VM INTERACTION END ###
[   32s] 
[   32s] obs-arm-11 failed "build osmo-pcap.spec" at Mon Mar 28 00:34:30 UTC 
2022.
[   32s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-ggsn in openSUSE_Leap_15.1_ARM/aarch64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-ggsn/openSUSE_Leap_15.1_ARM/aarch64

Package network:osmocom:nightly/osmo-ggsn failed to build in 
openSUSE_Leap_15.1_ARM/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-ggsn

Last lines of build log:
[   39s] checking for getopt_long... yes
[   39s] checking whether build environment is sane... yes
[   40s] checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
[   40s] checking whether make sets $(MAKE)... yes
[   40s] checking for style of include used by make... GNU
[   40s] checking dependency style of gcc... none
[   40s] checking for libosmocore >= 1.5.0... no
[   40s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   40s] 
[   40s] Package 'libsctp', required by 'libosmocore', not found
[   40s] 
[   40s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   40s] installed software in a non-standard prefix.
[   40s] 
[   40s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   40s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   40s] See the pkg-config man page for more details.
[   40s] error: Bad exit status from /var/tmp/rpm-tmp.2bQJkX (%build)
[   40s] 
[   40s] 
[   40s] RPM build errors:
[   40s] Bad exit status from /var/tmp/rpm-tmp.2bQJkX (%build)
[   40s] ### VM INTERACTION START ###
[   41s] [   34.805510] sysrq: SysRq : Power Off
[   41s] [   34.807198] reboot: Power down
[   41s] ### VM INTERACTION END ###
[   41s] 
[   41s] obs-arm-10 failed "build osmo-ggsn.spec" at Mon Mar 28 00:34:47 UTC 
2022.
[   41s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in openSUSE_Leap_15.1_ARM/aarch64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/openSUSE_Leap_15.1_ARM/aarch64

Package network:osmocom:nightly/simtrace2 failed to build in 
openSUSE_Leap_15.1_ARM/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[   39s] checking whether to build shared libraries... yes
[   39s] checking whether to build static libraries... no
[   39s] checking for pkg-config... /usr/bin/pkg-config
[   39s] checking for aarch64-suse-linux-gnu-pkg-config... 
/usr/bin/aarch64-suse-linux-gnu-pkg-config
[   39s] checking pkg-config is at least version 0.20... yes
[   39s] checking if gcc supports -fvisibility=hidden... yes
[   39s] checking for libosmocore >= 1.4.0... no
[   39s] configure: error: Package requirements (libosmocore >= 1.4.0) were not 
met:
[   39s] 
[   39s] Package 'libsctp', required by 'libosmocore', not found
[   39s] 
[   39s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   39s] installed software in a non-standard prefix.
[   39s] 
[   39s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   39s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   39s] See the pkg-config man page for more details.
[   39s] error: Bad exit status from /var/tmp/rpm-tmp.kjyE2F (%build)
[   39s] 
[   39s] 
[   39s] RPM build errors:
[   39s] Bad exit status from /var/tmp/rpm-tmp.kjyE2F (%build)
[   39s] ### VM INTERACTION START ###
[   40s] [   32.991712] sysrq: SysRq : Power Off
[   40s] [   32.992402] reboot: Power down
[   40s] ### VM INTERACTION END ###
[   40s] 
[   40s] obs-arm-10 failed "build simtrace2.spec" at Mon Mar 28 00:34:50 UTC 
2022.
[   40s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-sip-connector in openSUSE_Leap_15.1_ARM/aarch64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-sip-connector/openSUSE_Leap_15.1_ARM/aarch64

Package network:osmocom:nightly/osmo-sip-connector failed to build in 
openSUSE_Leap_15.1_ARM/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-sip-connector

Last lines of build log:
[   34s] checking whether we are using the GNU C compiler... yes
[   34s] checking whether gcc accepts -g... yes
[   34s] checking for gcc option to accept ISO C89... none needed
[   34s] checking whether gcc understands -c and -o together... yes
[   34s] checking for style of include used by make... GNU
[   34s] checking dependency style of gcc... none
[   34s] checking for libosmocore >= 1.5.0... no
[   34s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   34s] 
[   34s] Package 'libsctp', required by 'libosmocore', not found
[   34s] 
[   34s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   34s] installed software in a non-standard prefix.
[   34s] 
[   34s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   34s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   34s] See the pkg-config man page for more details.
[   34s] error: Bad exit status from /var/tmp/rpm-tmp.K0hY9R (%build)
[   34s] 
[   34s] 
[   34s] RPM build errors:
[   34s] Bad exit status from /var/tmp/rpm-tmp.K0hY9R (%build)
[   34s] ### VM INTERACTION START ###
[   35s] [   28.701115] sysrq: SysRq : Power Off
[   35s] [   28.701701] reboot: Power down
[   35s] ### VM INTERACTION END ###
[   35s] 
[   35s] obs-arm-11 failed "build osmo-sip-connector.spec" at Mon Mar 28 
00:35:44 UTC 2022.
[   35s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/libosmo-abis in openSUSE_Leap_15.1_ARM/aarch64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/libosmo-abis/openSUSE_Leap_15.1_ARM/aarch64

Package network:osmocom:nightly/libosmo-abis failed to build in 
openSUSE_Leap_15.1_ARM/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly libosmo-abis

Last lines of build log:
[   38s] checking whether to build shared libraries... yes
[   38s] checking whether to build static libraries... no
[   38s] checking for pkg-config... /usr/bin/pkg-config
[   38s] checking for aarch64-suse-linux-gnu-pkg-config... 
/usr/bin/aarch64-suse-linux-gnu-pkg-config
[   38s] checking pkg-config is at least version 0.20... yes
[   38s] checking if gcc supports -fvisibility=hidden... yes
[   38s] checking for libosmocore >= 1.6.0... no
[   38s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   38s] 
[   38s] Package 'libsctp', required by 'libosmocore', not found
[   38s] 
[   38s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   38s] installed software in a non-standard prefix.
[   38s] 
[   38s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   38s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   38s] See the pkg-config man page for more details.
[   38s] error: Bad exit status from /var/tmp/rpm-tmp.SX37jP (%build)
[   38s] 
[   38s] 
[   38s] RPM build errors:
[   38s] Bad exit status from /var/tmp/rpm-tmp.SX37jP (%build)
[   38s] ### VM INTERACTION START ###
[   38s] [   32.117418] sysrq: SysRq : Power Off
[   38s] [   32.119224] reboot: Power down
[   38s] ### VM INTERACTION END ###
[   38s] 
[   38s] obs-arm-10 failed "build libosmo-abis.spec" at Mon Mar 28 00:35:33 UTC 
2022.
[   38s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-pcu in openSUSE_Leap_15.1_ARM/aarch64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/openSUSE_Leap_15.1_ARM/aarch64

Package network:osmocom:nightly/osmo-pcu failed to build in 
openSUSE_Leap_15.1_ARM/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-pcu

Last lines of build log:
[   37s] checking dynamic linker characteristics... (cached) GNU/Linux ld.so
[   37s] checking how to hardcode library paths into programs... immediate
[   37s] checking for pkg-config... /usr/bin/pkg-config
[   37s] checking for aarch64-suse-linux-gnu-pkg-config... 
/usr/bin/aarch64-suse-linux-gnu-pkg-config
[   37s] checking pkg-config is at least version 0.20... yes
[   37s] checking for ANSI C header files... (cached) yes
[   37s] checking for libosmocore >= 1.6.0... no
[   37s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   37s] 
[   37s] Package 'libsctp', required by 'libosmocore', not found
[   37s] 
[   37s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   37s] installed software in a non-standard prefix.
[   37s] 
[   37s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   37s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   37s] See the pkg-config man page for more details.
[   37s] error: Bad exit status from /var/tmp/rpm-tmp.Wu1eQy (%build)
[   37s] 
[   37s] 
[   37s] RPM build errors:
[   37s] Bad exit status from /var/tmp/rpm-tmp.Wu1eQy (%build)
[   37s] ### VM INTERACTION START ###
[   37s] [   30.990137] sysrq: SysRq : Power Off
[   37s] [   30.991775] reboot: Power down
[   37s] ### VM INTERACTION END ###
[   37s] 
[   37s] obs-arm-10 failed "build osmo-pcu.spec" at Mon Mar 28 00:35:53 UTC 
2022.
[   37s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-gbproxy in openSUSE_Leap_15.1_ARM/aarch64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-gbproxy/openSUSE_Leap_15.1_ARM/aarch64

Package network:osmocom:nightly/osmo-gbproxy failed to build in 
openSUSE_Leap_15.1_ARM/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-gbproxy

Last lines of build log:
[   77s] checking whether to build static libraries... yes
[   77s] checking for pkg-config... /usr/bin/pkg-config
[   77s] checking for aarch64-suse-linux-gnu-pkg-config... 
/usr/bin/aarch64-suse-linux-gnu-pkg-config
[   77s] checking pkg-config is at least version 0.20... yes
[   77s] checking for library containing dlopen... -ldl
[   78s] checking for library containing dlsym... -ldl
[   78s] checking for libosmocore >= 1.6.0... no
[   78s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   78s] 
[   78s] Package 'libsctp', required by 'libosmocore', not found
[   78s] 
[   78s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   78s] installed software in a non-standard prefix.
[   78s] 
[   78s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   78s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   78s] See the pkg-config man page for more details.
[   78s] error: Bad exit status from /var/tmp/rpm-tmp.uHRAzS (%build)
[   78s] 
[   78s] 
[   78s] RPM build errors:
[   78s] Bad exit status from /var/tmp/rpm-tmp.uHRAzS (%build)
[   78s] ### VM INTERACTION START ###
[   78s] [   67.203178] sysrq: SysRq : Power Off
[   78s] [   67.204508] reboot: Power down
[   78s] ### VM INTERACTION END ###
[   78s] 
[   78s] obs-arm-9 failed "build osmo-gbproxy.spec" at Mon Mar 28 00:37:40 UTC 
2022.
[   78s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-trx in openSUSE_Leap_15.1_ARM/aarch64

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-trx/openSUSE_Leap_15.1_ARM/aarch64

Package network:osmocom:nightly/osmo-trx failed to build in 
openSUSE_Leap_15.1_ARM/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-trx

Last lines of build log:
[   45s] checking for byteswap.h... yes
[   46s] checking for an ANSI C-conforming const... yes
[   46s] checking for inline... inline
[   46s] checking for size_t... yes
[   46s] checking whether time.h and sys/time.h may both be included... yes
[   46s] checking whether byte ordering is bigendian... no
[   46s] checking for libosmocore >= 1.6.0... no
[   46s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   46s] 
[   46s] Package 'libsctp', required by 'libosmocore', not found
[   46s] 
[   46s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   46s] installed software in a non-standard prefix.
[   46s] 
[   46s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   46s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   46s] See the pkg-config man page for more details.
[   46s] error: Bad exit status from /var/tmp/rpm-tmp.AENr6w (%build)
[   46s] 
[   46s] 
[   46s] RPM build errors:
[   46s] Bad exit status from /var/tmp/rpm-tmp.AENr6w (%build)
[   46s] ### VM INTERACTION START ###
[   46s] [   40.294355] sysrq: SysRq : Power Off
[   46s] [   40.294905] reboot: Power down
[   46s] ### VM INTERACTION END ###
[   46s] 
[   46s] obs-arm-11 failed "build osmo-trx.spec" at Mon Mar 28 00:37:32 UTC 
2022.
[   46s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-gbproxy in openSUSE_Leap_15.1_ARM/armv7l

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-gbproxy/openSUSE_Leap_15.1_ARM/armv7l

Package network:osmocom:nightly/osmo-gbproxy failed to build in 
openSUSE_Leap_15.1_ARM/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-gbproxy

Last lines of build log:
[  135s] checking whether to build static libraries... yes
[  135s] checking for pkg-config... /usr/bin/pkg-config
[  135s] checking for armv7hl-suse-linux-gnueabi-pkg-config... 
/usr/bin/armv7hl-suse-linux-gnueabi-pkg-config
[  135s] checking pkg-config is at least version 0.20... yes
[  137s] checking for library containing dlopen... -ldl
[  138s] checking for library containing dlsym... -ldl
[  138s] checking for libosmocore >= 1.6.0... no
[  138s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[  138s] 
[  138s] Package 'libsctp', required by 'libosmocore', not found
[  138s] 
[  138s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[  138s] installed software in a non-standard prefix.
[  138s] 
[  138s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[  138s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[  138s] See the pkg-config man page for more details.
[  138s] error: Bad exit status from /var/tmp/rpm-tmp.gUULNt (%build)
[  138s] 
[  138s] 
[  138s] RPM build errors:
[  138s] Bad exit status from /var/tmp/rpm-tmp.gUULNt (%build)
[  138s] ### VM INTERACTION START ###
[  139s] [  121.333149] sysrq: SysRq : Power Off
[  139s] [  121.335819] reboot: Power down
[  139s] ### VM INTERACTION END ###
[  139s] 
[  139s] obs-arm-6 failed "build osmo-gbproxy.spec" at Mon Mar 28 00:37:46 UTC 
2022.
[  139s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-sip-connector in openSUSE_Leap_15.1_ARM/armv7l

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-sip-connector/openSUSE_Leap_15.1_ARM/armv7l

Package network:osmocom:nightly/osmo-sip-connector failed to build in 
openSUSE_Leap_15.1_ARM/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-sip-connector

Last lines of build log:
[   69s] checking whether we are using the GNU C compiler... yes
[   69s] checking whether gcc accepts -g... yes
[   69s] checking for gcc option to accept ISO C89... none needed
[   69s] checking whether gcc understands -c and -o together... yes
[   69s] checking for style of include used by make... GNU
[   69s] checking dependency style of gcc... none
[   69s] checking for libosmocore >= 1.5.0... no
[   69s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   69s] 
[   69s] Package 'libsctp', required by 'libosmocore', not found
[   69s] 
[   69s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   69s] installed software in a non-standard prefix.
[   69s] 
[   69s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   69s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   69s] See the pkg-config man page for more details.
[   70s] error: Bad exit status from /var/tmp/rpm-tmp.pXAgug (%build)
[   70s] 
[   70s] 
[   70s] RPM build errors:
[   70s] Bad exit status from /var/tmp/rpm-tmp.pXAgug (%build)
[   70s] ### VM INTERACTION START ###
[   70s] [   56.169237] sysrq: SysRq : Power Off
[   70s] [   56.171532] reboot: Power down
[   70s] ### VM INTERACTION END ###
[   70s] 
[   70s] obs-arm-5 failed "build osmo-sip-connector.spec" at Mon Mar 28 
00:38:24 UTC 2022.
[   70s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-pcu in openSUSE_Leap_15.1_ARM/armv7l

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/openSUSE_Leap_15.1_ARM/armv7l

Package network:osmocom:nightly/osmo-pcu failed to build in 
openSUSE_Leap_15.1_ARM/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-pcu

Last lines of build log:
[   87s] checking dynamic linker characteristics... (cached) GNU/Linux ld.so
[   87s] checking how to hardcode library paths into programs... immediate
[   87s] checking for pkg-config... /usr/bin/pkg-config
[   87s] checking for armv7hl-suse-linux-gnueabi-pkg-config... 
/usr/bin/armv7hl-suse-linux-gnueabi-pkg-config
[   87s] checking pkg-config is at least version 0.20... yes
[   87s] checking for ANSI C header files... (cached) yes
[   87s] checking for libosmocore >= 1.6.0... no
[   87s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[   87s] 
[   87s] Package 'libsctp', required by 'libosmocore', not found
[   87s] 
[   87s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   87s] installed software in a non-standard prefix.
[   87s] 
[   87s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   87s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   87s] See the pkg-config man page for more details.
[   87s] error: Bad exit status from /var/tmp/rpm-tmp.cXgQDr (%build)
[   87s] 
[   87s] 
[   87s] RPM build errors:
[   87s] Bad exit status from /var/tmp/rpm-tmp.cXgQDr (%build)
[   87s] ### VM INTERACTION START ###
[  100s] [   81.636317] sysrq: SysRq : Power Off
[  100s] [   81.637976] reboot: Power down
[  100s] ### VM INTERACTION END ###
[  100s] 
[  100s] armbuild02 failed "build osmo-pcu.spec" at Mon Mar 28 00:38:48 UTC 
2022.
[  100s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/libosmo-abis in openSUSE_Leap_15.1_ARM/armv7l

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/libosmo-abis/openSUSE_Leap_15.1_ARM/armv7l

Package network:osmocom:nightly/libosmo-abis failed to build in 
openSUSE_Leap_15.1_ARM/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly libosmo-abis

Last lines of build log:
[  104s] checking whether to build shared libraries... yes
[  104s] checking whether to build static libraries... no
[  104s] checking for pkg-config... /usr/bin/pkg-config
[  104s] checking for armv7hl-suse-linux-gnueabi-pkg-config... 
/usr/bin/armv7hl-suse-linux-gnueabi-pkg-config
[  104s] checking pkg-config is at least version 0.20... yes
[  104s] checking if gcc supports -fvisibility=hidden... yes
[  104s] checking for libosmocore >= 1.6.0... no
[  104s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[  104s] 
[  104s] Package 'libsctp', required by 'libosmocore', not found
[  104s] 
[  104s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[  104s] installed software in a non-standard prefix.
[  104s] 
[  104s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[  104s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[  104s] See the pkg-config man page for more details.
[  104s] error: Bad exit status from /var/tmp/rpm-tmp.091baD (%build)
[  104s] 
[  104s] 
[  104s] RPM build errors:
[  104s] Bad exit status from /var/tmp/rpm-tmp.091baD (%build)
[  104s] ### VM INTERACTION START ###
[  105s] [   87.706246] sysrq: SysRq : Power Off
[  105s] [   87.713161] reboot: Power down
[  105s] ### VM INTERACTION END ###
[  105s] 
[  105s] obs-arm-6 failed "build libosmo-abis.spec" at Mon Mar 28 00:40:37 UTC 
2022.
[  105s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-ggsn in openSUSE_Leap_15.1_ARM/armv7l

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-ggsn/openSUSE_Leap_15.1_ARM/armv7l

Package network:osmocom:nightly/osmo-ggsn failed to build in 
openSUSE_Leap_15.1_ARM/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-ggsn

Last lines of build log:
[   92s] checking for getopt_long... yes
[   92s] checking whether build environment is sane... yes
[   92s] checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
[   92s] checking whether make sets $(MAKE)... yes
[   92s] checking for style of include used by make... GNU
[   92s] checking dependency style of gcc... none
[   92s] checking for libosmocore >= 1.5.0... no
[   92s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   92s] 
[   92s] Package 'libsctp', required by 'libosmocore', not found
[   92s] 
[   92s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   92s] installed software in a non-standard prefix.
[   92s] 
[   92s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   92s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   92s] See the pkg-config man page for more details.
[   92s] error: Bad exit status from /var/tmp/rpm-tmp.4jzXn5 (%build)
[   92s] 
[   92s] 
[   92s] RPM build errors:
[   92s] Bad exit status from /var/tmp/rpm-tmp.4jzXn5 (%build)
[   92s] ### VM INTERACTION START ###
[   93s] [   80.456595] sysrq: SysRq : Power Off
[   93s] [   80.458341] reboot: Power down
[   93s] ### VM INTERACTION END ###
[   93s] 
[   93s] obs-arm-5 failed "build osmo-ggsn.spec" at Mon Mar 28 00:42:11 UTC 
2022.
[   93s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/libosmo-netif in openSUSE_Leap_15.1_ARM/armv7l

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/libosmo-netif/openSUSE_Leap_15.1_ARM/armv7l

Package network:osmocom:nightly/libosmo-netif failed to build in 
openSUSE_Leap_15.1_ARM/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly libosmo-netif

Last lines of build log:
[   91s] checking syslog.h presence... yes
[   91s] checking for syslog.h... yes
[   91s] checking ctype.h usability... yes
[   91s] checking ctype.h presence... yes
[   91s] checking for ctype.h... yes
[   91s] checking if gcc supports -fvisibility=hidden... yes
[   92s] checking for libosmocore >= 1.5.0... no
[   92s] configure: error: Package requirements (libosmocore >= 1.5.0) were not 
met:
[   92s] 
[   92s] Package 'libsctp', required by 'libosmocore', not found
[   92s] 
[   92s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[   92s] installed software in a non-standard prefix.
[   92s] 
[   92s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[   92s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[   92s] See the pkg-config man page for more details.
[   92s] error: Bad exit status from /var/tmp/rpm-tmp.C2lhep (%build)
[   92s] 
[   92s] 
[   92s] RPM build errors:
[   92s] Bad exit status from /var/tmp/rpm-tmp.C2lhep (%build)
[   92s] ### VM INTERACTION START ###
[   92s] [   81.336208] sysrq: SysRq : Power Off
[   92s] [   81.365845] reboot: Power down
[   92s] ### VM INTERACTION END ###
[   92s] 
[   92s] armbuild22 failed "build libosmo-netif.spec" at Mon Mar 28 00:43:09 
UTC 2022.
[   92s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in openSUSE_Leap_15.1_ARM/armv7l

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/openSUSE_Leap_15.1_ARM/armv7l

Package network:osmocom:nightly/simtrace2 failed to build in 
openSUSE_Leap_15.1_ARM/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  105s] checking whether to build shared libraries... yes
[  105s] checking whether to build static libraries... no
[  105s] checking for pkg-config... /usr/bin/pkg-config
[  105s] checking for armv7hl-suse-linux-gnueabi-pkg-config... 
/usr/bin/armv7hl-suse-linux-gnueabi-pkg-config
[  105s] checking pkg-config is at least version 0.20... yes
[  106s] checking if gcc supports -fvisibility=hidden... yes
[  106s] checking for libosmocore >= 1.4.0... no
[  106s] configure: error: Package requirements (libosmocore >= 1.4.0) were not 
met:
[  106s] 
[  106s] Package 'libsctp', required by 'libosmocore', not found
[  106s] 
[  106s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[  106s] installed software in a non-standard prefix.
[  106s] 
[  106s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[  106s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[  106s] See the pkg-config man page for more details.
[  106s] error: Bad exit status from /var/tmp/rpm-tmp.o6Kkml (%build)
[  106s] 
[  106s] 
[  106s] RPM build errors:
[  106s] Bad exit status from /var/tmp/rpm-tmp.o6Kkml (%build)
[  106s] ### VM INTERACTION START ###
[  106s] [   95.064502] sysrq: SysRq : Power Off
[  106s] [   95.068037] reboot: Power down
[  106s] ### VM INTERACTION END ###
[  106s] 
[  106s] obs-arm-5 failed "build simtrace2.spec" at Mon Mar 28 00:43:51 UTC 
2022.
[  106s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-trx in openSUSE_Leap_15.1_ARM/armv7l

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-trx/openSUSE_Leap_15.1_ARM/armv7l

Package network:osmocom:nightly/osmo-trx failed to build in 
openSUSE_Leap_15.1_ARM/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-trx

Last lines of build log:
[  124s] checking for byteswap.h... yes
[  124s] checking for an ANSI C-conforming const... yes
[  125s] checking for inline... inline
[  125s] checking for size_t... yes
[  125s] checking whether time.h and sys/time.h may both be included... yes
[  126s] checking whether byte ordering is bigendian... no
[  126s] checking for libosmocore >= 1.6.0... no
[  126s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[  126s] 
[  126s] Package 'libsctp', required by 'libosmocore', not found
[  126s] 
[  126s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[  126s] installed software in a non-standard prefix.
[  126s] 
[  126s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[  126s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[  126s] See the pkg-config man page for more details.
[  126s] error: Bad exit status from /var/tmp/rpm-tmp.6GTbab (%build)
[  126s] 
[  126s] 
[  126s] RPM build errors:
[  126s] Bad exit status from /var/tmp/rpm-tmp.6GTbab (%build)
[  126s] ### VM INTERACTION START ###
[  126s] [  114.505415] sysrq: SysRq : Power Off
[  126s] [  114.519544] reboot: Power down
[  126s] ### VM INTERACTION END ###
[  126s] 
[  126s] armbuild22 failed "build osmo-trx.spec" at Mon Mar 28 00:45:25 UTC 
2022.
[  126s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/osmo-pcap in openSUSE_Leap_15.1_ARM/armv7l

2022-03-27 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcap/openSUSE_Leap_15.1_ARM/armv7l

Package network:osmocom:nightly/osmo-pcap failed to build in 
openSUSE_Leap_15.1_ARM/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly osmo-pcap

Last lines of build log:
[  368s] checking how to run the C preprocessor... gcc -E
[  369s] checking for grep that handles long lines and -e... /usr/bin/grep
[  369s] checking for egrep... /usr/bin/grep -E
[  371s] checking for ANSI C header files... yes
[  371s] checking whether to enable VTY tests... no
[  371s] checking for pcap-config... /usr/bin/pcap-config
[  371s] checking for libosmocore >= 1.6.0... no
[  371s] configure: error: Package requirements (libosmocore >= 1.6.0) were not 
met:
[  371s] 
[  371s] Package 'libsctp', required by 'libosmocore', not found
[  371s] 
[  371s] Consider adjusting the PKG_CONFIG_PATH environment variable if you
[  371s] installed software in a non-standard prefix.
[  371s] 
[  371s] Alternatively, you may set the environment variables LIBOSMOCORE_CFLAGS
[  371s] and LIBOSMOCORE_LIBS to avoid the need to call pkg-config.
[  371s] See the pkg-config man page for more details.
[  372s] error: Bad exit status from /var/tmp/rpm-tmp.QDem4N (%build)
[  372s] 
[  372s] 
[  372s] RPM build errors:
[  372s] Bad exit status from /var/tmp/rpm-tmp.QDem4N (%build)
[  372s] ### VM INTERACTION START ###
[  373s] [  320.496251] sysrq: SysRq : Power Off
[  373s] [  320.504719] reboot: Power down
[  373s] ### VM INTERACTION END ###
[  373s] 
[  374s] armbuild23 failed "build osmo-pcap.spec" at Mon Mar 28 00:47:07 UTC 
2022.
[  374s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)