osmo-mgw[master]: sdp: refactoring sdp parser/generator

2017-10-28 Thread Neels Hofmeyr

Patch Set 14: Code-Review-1

(5 comments)

(introducing new comment markings -- '-1:' are the blockers, '?:' aren't 
important...)

https://gerrit.osmocom.org/#/c/4006/14/src/libosmo-mgcp/mgcp_sdp.c
File src/libosmo-mgcp/mgcp_sdp.c:

Line 147: static void codecs_update(void *ctx, struct sdp_rtp_map *codecs, int 
used,
?: const struct ... codecs


Line 197:  *  \param[out] conn associated rtp connection.
-1: oh, conn is also an output param? if yes, explain what is returned in conn


Line 335:  *  \returns 0 on success, -1 on failure. */
-1: this returns doc is not accurate, you're returning the len. Why though? the 
msgb is good in keeping its size.


Line 350: 
?: add

  /* FIXME: constify endp and conn args in get_net_donwlink_format_cb() */

and best follow up with a separate patch now.


Line 366:   len += rc;
?: I guess we can skip counting the len and just return 0 below.


-- 
To view, visit https://gerrit.osmocom.org/4006
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I9f88c93872ff913bc211f560b26901267f577324
Gerrit-PatchSet: 14
Gerrit-Project: osmo-mgw
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr 
Gerrit-Reviewer: dexter 
Gerrit-HasComments: Yes


osmo-hlr[master]: add osmo-hlr-db-tool, program to migrate from osmo-nitb db

2017-10-28 Thread Neels Hofmeyr

Patch Set 2:

(5 comments)

Thanks for hijacking, I guess, but I still found these:

https://gerrit.osmocom.org/#/c/4441/2/src/hlr_db_tool.c
File src/hlr_db_tool.c:

Line 54:printf("Usage: osmo-hlr-db-tool [-l ] import-nitb-db 
]\n");
one opening '[' missing; or a ']' too many, depending.


Line 55:printf("Call without arguments to create a new empty 
./hlr.db.\n");
^ This is no longer accurate.


Line 138:   exit(EXIT_FAILURE);
would re-enable implicit bootstrap by 'return' here, instead of exit()


Line 142:   printf("command '%s', %d extra arguments\n", cmd, argc - 
optind);
debug leftover?


Line 390:   /* Future: add more main_actions, besides --import-nitb-db, 
here. */
(drop '--')


-- 
To view, visit https://gerrit.osmocom.org/4441
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I0dfa6ec033dd93161c1adc2ce1637195fe5b7a63
Gerrit-PatchSet: 2
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr 
Gerrit-HasComments: Yes


[PATCH] osmo-msc[master]: vty: drop deprecated 'logging level sms...'

2017-10-28 Thread Neels Hofmeyr

Review at  https://gerrit.osmocom.org/4555

vty: drop deprecated 'logging level sms...'

No need to drag legacy VTY from osmo-nitb to osmo-msc.

Change-Id: I38ba8b9414de383bf497526d97bf7a039e41fd35
---
M src/libmsc/vty_interface_layer3.c
1 file changed, 0 insertions(+), 15 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/55/4555/1

diff --git a/src/libmsc/vty_interface_layer3.c 
b/src/libmsc/vty_interface_layer3.c
index b6e3ded..edc698d 100644
--- a/src/libmsc/vty_interface_layer3.c
+++ b/src/libmsc/vty_interface_layer3.c
@@ -819,20 +819,6 @@
return CMD_SUCCESS;
 }
 
-#define OBSOLETE_MSG "Obsolete\n"
-/* this is just for backwards compatibility as the sms code moved into
- * libosmocore and old config files no longer parse... */
-DEFUN_DEPRECATED(log_level_sms, log_level_sms_cmd,
-   "logging level sms (everything|debug|info|notice|error|fatal)",
-   ".HIDDEN\n" OBSOLETE_MSG OBSOLETE_MSG OBSOLETE_MSG OBSOLETE_MSG
-   OBSOLETE_MSG OBSOLETE_MSG OBSOLETE_MSG OBSOLETE_MSG)
-{
-   vty_out(vty, "%% 'logging level sms' is now called 'logging level "
-   "lsms', please update your config %s", VTY_NEWLINE);
-
-   return CMD_SUCCESS;
-}
-
 #define MEAS_STR "Measurement export related\n"
 DEFUN(mnccint_meas_feed, mnccint_meas_feed_cmd,
"meas-feed destination ADDR <0-65535>",
@@ -966,7 +952,6 @@
install_element(MNCC_INT_NODE, _meas_feed_cmd);
install_element(MNCC_INT_NODE, _feed_scenario_cmd);
 
-   install_element(CFG_LOG_NODE, _level_sms_cmd);
install_element(CFG_LOG_NODE, _fltr_imsi_cmd);
 
install_element(CONFIG_NODE, _hlr_cmd);

-- 
To view, visit https://gerrit.osmocom.org/4555
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I38ba8b9414de383bf497526d97bf7a039e41fd35
Gerrit-PatchSet: 1
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr 


[PATCH] osmo-msc[master]: msc_vlr_tests: fix rebuild: rebuild when src/ libs were rebuilt

2017-10-28 Thread Neels Hofmeyr

Review at  https://gerrit.osmocom.org/4551

msc_vlr_tests: fix rebuild: rebuild when src/ libs were rebuilt

Before this, a code change in libvlr or libmsc would not cause a rebuild of the
tests.

Change-Id: Icbdedc1581fa23abe9ed99cef3918592b25f30b3
---
M tests/msc_vlr/Makefile.am
1 file changed, 7 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/51/4551/1

diff --git a/tests/msc_vlr/Makefile.am b/tests/msc_vlr/Makefile.am
index 9af9870..07336ee 100644
--- a/tests/msc_vlr/Makefile.am
+++ b/tests/msc_vlr/Makefile.am
@@ -131,6 +131,13 @@
msc_vlr_tests.c \
$(NULL)
 
+msc_vlr_test_*.o: \
+   $(top_builddir)/src/libmsc/libmsc.a \
+   $(top_builddir)/src/libcommon-cs/libcommon-cs.a \
+   $(top_builddir)/src/libvlr/libvlr.a \
+   $(top_builddir)/src/libcommon/libcommon.a \
+   $(NULL)
+
 .PHONY: update_exp
 update_exp:
$(builddir)/msc_vlr_test_no_authen >$(srcdir)/msc_vlr_test_no_authen.ok 
2>$(srcdir)/msc_vlr_test_no_authen.err

-- 
To view, visit https://gerrit.osmocom.org/4551
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icbdedc1581fa23abe9ed99cef3918592b25f30b3
Gerrit-PatchSet: 1
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr 


[PATCH] osmo-msc[master]: defaults: assign TMSI by default

2017-10-28 Thread Neels Hofmeyr

Review at  https://gerrit.osmocom.org/4556

defaults: assign TMSI by default

When using ciphering, the TMSI is an important part of the ciphering. To guard
against users forgetting to set 'assign tmsi' in the config and compromising
their ciphering unknowingly, the default should be to use a TMSI.

To optimize in an unencrypted network, 'no assign tmsi' config can still switch
off TMSI use.

Change-Id: If115e95bebc314bedb50faf3993b52071fee5c1e
---
M src/libvlr/vlr.c
1 file changed, 3 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/56/4556/1

diff --git a/src/libvlr/vlr.c b/src/libvlr/vlr.c
index adfe258..07c31ee 100644
--- a/src/libvlr/vlr.c
+++ b/src/libvlr/vlr.c
@@ -995,6 +995,9 @@
INIT_LLIST_HEAD(>operations);
memcpy(>ops, ops, sizeof(vlr->ops));
 
+   /* defaults */
+   vlr->cfg.assign_tmsi = true;
+
/* osmo_auth_fsm.c */
osmo_fsm_register(_auth_fsm);
/* osmo_lu_fsm.c */

-- 
To view, visit https://gerrit.osmocom.org/4556
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If115e95bebc314bedb50faf3993b52071fee5c1e
Gerrit-PatchSet: 1
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr 


[PATCH] osmo-msc[master]: vty: make auth tuple reuse configurable

2017-10-28 Thread Neels Hofmeyr

Review at  https://gerrit.osmocom.org/4554

vty: make auth tuple reuse configurable

Change-Id: Iba6253d9bf8d4a9d9f6f26ba045e6c7f0dc7f8f2
---
M doc/examples/osmo-msc/osmo-msc.cfg
M src/libmsc/msc_vty.c
2 files changed, 33 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/54/4554/1

diff --git a/doc/examples/osmo-msc/osmo-msc.cfg 
b/doc/examples/osmo-msc/osmo-msc.cfg
index 1b1d192..fff964b 100644
--- a/doc/examples/osmo-msc/osmo-msc.cfg
+++ b/doc/examples/osmo-msc/osmo-msc.cfg
@@ -17,3 +17,5 @@
 msc
  mgcpgw remote-ip 10.23.24.1
  assign-tmsi
+ auth-tuple-max-reuse-count 3
+ auth-tuple-reuse-on-error 1
diff --git a/src/libmsc/msc_vty.c b/src/libmsc/msc_vty.c
index 5c9539d..c19666f 100644
--- a/src/libmsc/msc_vty.c
+++ b/src/libmsc/msc_vty.c
@@ -88,6 +88,27 @@
return CMD_SUCCESS;
 }
 
+DEFUN(cfg_msc_auth_tuple_max_reuse_count, 
cfg_msc_auth_tuple_max_reuse_count_cmd,
+  "auth-tuple-max-reuse-count <-1-2147483647>",
+  "Configure authentication tuple re-use\n"
+  "0 to use each auth tuple at most once (default), >0 to limit re-use, -1 
to re-use infinitely (vulnerable!).\n")
+{
+   struct gsm_network *gsmnet = gsmnet_from_vty(vty);
+   gsmnet->vlr->cfg.auth_tuple_max_reuse_count = atoi(argv[0]);
+   return CMD_SUCCESS;
+}
+
+DEFUN(cfg_msc_auth_tuple_reuse_on_error, cfg_msc_auth_tuple_reuse_on_error_cmd,
+  "auth-tuple-reuse-on-error (0|1)",
+  "Configure authentication tuple re-use when HLR is not responsive\n"
+  "0 = never re-use auth tuples beyond auth-tuple-max-reuse-count 
(default)\n"
+  "1 = if the HLR does not deliver new tuples, do re-use already available 
old ones.\n")
+{
+   struct gsm_network *gsmnet = gsmnet_from_vty(vty);
+   gsmnet->vlr->cfg.auth_reuse_old_sets_on_error = atoi(argv[0]) ? true : 
false;
+   return CMD_SUCCESS;
+}
+
 static int config_write_msc(struct vty *vty)
 {
struct gsm_network *gsmnet = gsmnet_from_vty(vty);
@@ -100,6 +121,14 @@
VTY_NEWLINE);
vty_out(vty, " cs7-instance-iu %u%s", gsmnet->iu.cs7_instance,
VTY_NEWLINE);
+
+   if (gsmnet->vlr->cfg.auth_tuple_max_reuse_count)
+   vty_out(vty, " auth-tuple-max-reuse-count %d%s",
+   OSMO_MAX(-1, 
gsmnet->vlr->cfg.auth_tuple_max_reuse_count),
+   VTY_NEWLINE);
+   if (gsmnet->vlr->cfg.auth_reuse_old_sets_on_error)
+   vty_out(vty, " auth-tuple-reuse-on-error 1%s",
+   VTY_NEWLINE);
 
mgcp_client_config_write(vty, " ");
 #ifdef BUILD_IU
@@ -152,6 +181,8 @@
vty_install_default(MSC_NODE);
install_element(MSC_NODE, _msc_assign_tmsi_cmd);
install_element(MSC_NODE, _msc_no_assign_tmsi_cmd);
+   install_element(MSC_NODE, _msc_auth_tuple_max_reuse_count_cmd);
+   install_element(MSC_NODE, _msc_auth_tuple_reuse_on_error_cmd);
install_element(MSC_NODE, _msc_cs7_instance_a_cmd);
install_element(MSC_NODE, _msc_cs7_instance_iu_cmd);
 

-- 
To view, visit https://gerrit.osmocom.org/4554
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iba6253d9bf8d4a9d9f6f26ba045e6c7f0dc7f8f2
Gerrit-PatchSet: 1
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr 


[PATCH] osmo-msc[master]: cosmetic: vlr: rename auth_tuple_max_use_count to _reuse_

2017-10-28 Thread Neels Hofmeyr

Review at  https://gerrit.osmocom.org/4552

cosmetic: vlr: rename auth_tuple_max_use_count to _reuse_

The name auth_tuple_max_use_count suggests that if I want to use each auth
tuple exactly once, I need to set it to 1. Curiously, so far you need to set
to intended uses - 1.

Reflect this in its name by renaming to auth_tuple_max_reuse_count.

I first considered to not rename but change the if-conditions so that == 1
means each tuple is used once, and upon struct vlr allocation, set the default
to 1. That would also logically entail that setting to 0 means to re-use
vectors infinitely often, like now a value < 0 does. That means, when
allocating a vlr struct zeroed out, we would by default have the most
dangerous/unsafe configuration. It's no problem to set a default to 1 upon
allocation, but by renaming the variable instead, we get safer alloc-zero
behavior and don't need to change any conditionals in the code (even though the
patch ends up considerably larger from all the renaming).

Change-Id: I0b036cae1536d5d6fb2304f837ed1a6c3713be55
---
M include/osmocom/msc/vlr.h
M src/libvlr/vlr_auth_fsm.c
M tests/msc_vlr/msc_vlr_test_hlr_reject.c
3 files changed, 21 insertions(+), 21 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/52/4552/1

diff --git a/include/osmocom/msc/vlr.h b/include/osmocom/msc/vlr.h
index e9afde3..d5306fa 100644
--- a/include/osmocom/msc/vlr.h
+++ b/include/osmocom/msc/vlr.h
@@ -222,7 +222,7 @@
bool retrieve_imeisv_ciphered;
bool assign_tmsi;
bool check_imei_rqd;
-   int auth_tuple_max_use_count;
+   int auth_tuple_max_reuse_count;
bool auth_reuse_old_sets_on_error;
bool parq_retrieve_imsi;
bool is_ps;
diff --git a/src/libvlr/vlr_auth_fsm.c b/src/libvlr/vlr_auth_fsm.c
index 1c9e191..f07e60f 100644
--- a/src/libvlr/vlr_auth_fsm.c
+++ b/src/libvlr/vlr_auth_fsm.c
@@ -59,7 +59,7 @@
bool is_utran;
bool auth_requested;
 
-   int auth_tuple_max_use_count; /* see vlr->cfg instead */
+   int auth_tuple_max_reuse_count; /* see vlr->cfg instead */
 };
 
 /***
@@ -69,13 +69,13 @@
 /* Always use either vlr_subscr_get_auth_tuple() or vlr_subscr_has_auth_tuple()
  * instead, to ensure proper use count.
  * Return an auth tuple with the lowest use_count among the auth tuples. If
- * max_use_count >= 0, return NULL if all available auth tuples have a use
- * count > max_use_count. If max_use_count is negative, return a currently
+ * max_reuse_count >= 0, return NULL if all available auth tuples have a use
+ * count > max_reuse_count. If max_reuse_count is negative, return a currently
  * least used auth tuple without enforcing a maximum use count.  If there are
  * no auth tuples, return NULL.
  */
 static struct gsm_auth_tuple *
-_vlr_subscr_next_auth_tuple(struct vlr_subscr *vsub, int max_use_count)
+_vlr_subscr_next_auth_tuple(struct vlr_subscr *vsub, int max_reuse_count)
 {
unsigned int count;
unsigned int idx;
@@ -104,7 +104,7 @@
at = >auth_tuples[idx];
}
 
-   if (!at || (max_use_count >= 0 && at->use_count > max_use_count))
+   if (!at || (max_reuse_count >= 0 && at->use_count > max_reuse_count))
return NULL;
 
return at;
@@ -112,21 +112,21 @@
 
 /* Return an auth tuple and increment its use count. */
 static struct gsm_auth_tuple *
-vlr_subscr_get_auth_tuple(struct vlr_subscr *vsub, int max_use_count)
+vlr_subscr_get_auth_tuple(struct vlr_subscr *vsub, int max_reuse_count)
 {
struct gsm_auth_tuple *at = _vlr_subscr_next_auth_tuple(vsub,
-  max_use_count);
+  max_reuse_count);
if (!at)
return NULL;
at->use_count++;
return at;
 }
 
-/* Return whether an auth tuple with the given max_use_count is available. */
+/* Return whether an auth tuple with a matching use_count is available. */
 static bool vlr_subscr_has_auth_tuple(struct vlr_subscr *vsub,
- int max_use_count)
+ int max_reuse_count)
 {
-   return _vlr_subscr_next_auth_tuple(vsub, max_use_count) != NULL;
+   return _vlr_subscr_next_auth_tuple(vsub, max_reuse_count) != NULL;
 }
 
 static bool check_auth_resp(struct vlr_subscr *vsub, bool is_r99,
@@ -250,7 +250,7 @@
struct gsm_auth_tuple *at;
 
/* Caller ensures we have vectors available */
-   at = vlr_subscr_get_auth_tuple(vsub, afp->auth_tuple_max_use_count);
+   at = vlr_subscr_get_auth_tuple(vsub, afp->auth_tuple_max_reuse_count);
if (!at) {
LOGPFSML(fi, LOGL_ERROR, "A previous check ensured that an"
 " auth tuple was available, but now there is in fact"
@@ 

Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_17.10/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_17.10/x86_64

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_17.10/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   78s] #define HAVE_SYS_TYPES_H 1
[   78s] #define HAVE_SYS_STAT_H 1
[   78s] #define HAVE_STDLIB_H 1
[   78s] #define HAVE_STRING_H 1
[   78s] #define HAVE_MEMORY_H 1
[   78s] #define HAVE_STRINGS_H 1
[   78s] #define HAVE_INTTYPES_H 1
[   78s] #define HAVE_STDINT_H 1
[   78s] #define HAVE_UNISTD_H 1
[   78s] #define HAVE_DLFCN_H 1
[   78s] #define LT_OBJDIR ".libs/"
[   78s] 
[   78s] configure: exit 1
[   78s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=\${prefix}/include --mandir=\${prefix}/share/man 
--infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=\${prefix}/lib/x86_64-linux-gnu 
--libexecdir=\${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   78s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   78s] make[1]: *** [override_dh_auto_configure] Error 2
[   78s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   78s] debian/rules:45: recipe for target 'build' failed
[   78s] make: *** [build] Error 2
[   79s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   79s] 
[   79s] lamb28 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:11:24 UTC 
2017.
[   79s] 
[   79s] ### VM INTERACTION START ###
[   82s] [   73.808301] reboot: Power down
[   82s] ### VM INTERACTION END ###
[   82s] 
[   82s] lamb28 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:11:28 UTC 
2017.
[   82s] 

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


Build failure of network:osmocom:latest/osmo-bsc in Debian_8.0/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/Debian_8.0/i586

Package network:osmocom:latest/osmo-bsc failed to build in Debian_8.0/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   85s] #define HAVE_SYS_STAT_H 1
[   85s] #define HAVE_STDLIB_H 1
[   85s] #define HAVE_STRING_H 1
[   85s] #define HAVE_MEMORY_H 1
[   85s] #define HAVE_STRINGS_H 1
[   85s] #define HAVE_INTTYPES_H 1
[   85s] #define HAVE_STDINT_H 1
[   85s] #define HAVE_UNISTD_H 1
[   85s] #define HAVE_DLFCN_H 1
[   85s] #define LT_OBJDIR ".libs/"
[   85s] 
[   85s] configure: exit 1
[   85s] dh_auto_configure: ./configure --build=i586-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--libdir=${prefix}/lib/i386-linux-gnu --libexecdir=${prefix}/lib/i386-linux-gnu 
--disable-maintainer-mode --disable-dependency-tracking returned exit code 1
[   85s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   85s] make[1]: *** [override_dh_auto_configure] Error 255
[   85s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   85s] debian/rules:45: recipe for target 'build' failed
[   85s] make: *** [build] Error 2
[   85s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   85s] 
[   85s] lamb74 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:10:12 UTC 
2017.
[   85s] 
[   85s] ### VM INTERACTION START ###
[   86s] Powering off.
[   86s] [   79.507894] reboot: Power down
[   86s] ### VM INTERACTION END ###
[   86s] 
[   86s] lamb74 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:10:14 UTC 
2017.
[   86s] 

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


Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_16.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_16.04/i586

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_16.04/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   99s] #define HAVE_SYS_TYPES_H 1
[   99s] #define HAVE_SYS_STAT_H 1
[   99s] #define HAVE_STDLIB_H 1
[   99s] #define HAVE_STRING_H 1
[   99s] #define HAVE_MEMORY_H 1
[   99s] #define HAVE_STRINGS_H 1
[   99s] #define HAVE_INTTYPES_H 1
[   99s] #define HAVE_STDINT_H 1
[   99s] #define HAVE_UNISTD_H 1
[   99s] #define HAVE_DLFCN_H 1
[   99s] #define LT_OBJDIR ".libs/"
[   99s] 
[   99s] configure: exit 1
[   99s] dh_auto_configure: ./configure --build=i686-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/i386-linux-gnu 
--libexecdir=${prefix}/lib/i386-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   99s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   99s] make[1]: *** [override_dh_auto_configure] Error 255
[   99s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   99s] debian/rules:45: recipe for target 'build' failed
[   99s] make: *** [build] Error 2
[   99s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   99s] 
[   99s] lamb69 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:12:02 UTC 
2017.
[   99s] 
[   99s] ### VM INTERACTION START ###
[  102s] [   94.803391] reboot: Power down
[  102s] ### VM INTERACTION END ###
[  102s] 
[  102s] lamb69 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:12:05 UTC 
2017.
[  102s] 

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


Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_16.10/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_16.10/i586

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_16.10/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   75s] #define HAVE_SYS_TYPES_H 1
[   75s] #define HAVE_SYS_STAT_H 1
[   75s] #define HAVE_STDLIB_H 1
[   75s] #define HAVE_STRING_H 1
[   75s] #define HAVE_MEMORY_H 1
[   75s] #define HAVE_STRINGS_H 1
[   75s] #define HAVE_INTTYPES_H 1
[   75s] #define HAVE_STDINT_H 1
[   75s] #define HAVE_UNISTD_H 1
[   75s] #define HAVE_DLFCN_H 1
[   75s] #define LT_OBJDIR ".libs/"
[   75s] 
[   75s] configure: exit 1
[   75s] dh_auto_configure: ./configure --build=i686-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/i386-linux-gnu 
--libexecdir=${prefix}/lib/i386-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   75s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   75s] make[1]: *** [override_dh_auto_configure] Error 2
[   75s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   75s] debian/rules:45: recipe for target 'build' failed
[   75s] make: *** [build] Error 2
[   75s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   75s] 
[   75s] lamb62 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:10:59 UTC 
2017.
[   75s] 
[   75s] ### VM INTERACTION START ###
[   77s] [   70.659290] reboot: Power down
[   78s] ### VM INTERACTION END ###
[   78s] 
[   78s] lamb62 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:11:03 UTC 
2017.
[   78s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_16.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_16.04/x86_64

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_16.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  155s] make[4]: Entering directory '/usr/src/packages/BUILD/src/libmsc'
[  155s] gcc -DHAVE_CONFIG_H -I. -I../..   -I../../include -I../..  -Wdate-time 
-D_FORTIFY_SOURCE=2 -Wall -I/usr/include/ -I/usr/include/ -I/usr/include/   
-I/usr/include/ -I/usr/include/ -I/usr/include/asn1c -I/usr/include/  -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -Werror=implicit 
-Werror=maybe-uninitialized -Werror=memset-transposed-args 
-Werror=sizeof-array-argument -Werror=sizeof-pointer-memaccess -c -o a_iface.o 
a_iface.c
[  155s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  155s] compilation terminated.
[  155s] Makefile:505: recipe for target 'a_iface.o' failed
[  155s] make[4]: *** [a_iface.o] Error 1
[  155s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  155s] Makefile:422: recipe for target 'all-recursive' failed
[  155s] make[3]: *** [all-recursive] Error 1
[  155s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  155s] Makefile:458: recipe for target 'all-recursive' failed
[  155s] make[2]: *** [all-recursive] Error 1
[  155s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  155s] Makefile:390: recipe for target 'all' failed
[  155s] make[1]: *** [all] Error 2
[  155s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  155s] dh_auto_build: make -j1 returned exit code 2
[  155s] debian/rules:45: recipe for target 'build' failed
[  155s] make: *** [build] Error 2
[  155s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  155s] 
[  155s] build34 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:30:04 UTC 
2017.
[  155s] 
[  155s] ### VM INTERACTION START ###
[  158s] [  150.506034] reboot: Power down
[  159s] ### VM INTERACTION END ###
[  159s] 
[  159s] build34 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:30:08 UTC 
2017.
[  159s] 

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


Build failure of network:osmocom:latest/osmo-msc in Debian_9.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/Debian_9.0/x86_64

Package network:osmocom:latest/osmo-msc failed to build in Debian_9.0/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  132s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  132s]  #include 
[  132s]  ^
[  132s] compilation terminated.
[  132s] Makefile:505: recipe for target 'a_iface.o' failed
[  132s] make[4]: *** [a_iface.o] Error 1
[  132s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  132s] Makefile:422: recipe for target 'all-recursive' failed
[  132s] make[3]: *** [all-recursive] Error 1
[  132s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  132s] Makefile:458: recipe for target 'all-recursive' failed
[  132s] make[2]: *** [all-recursive] Error 1
[  132s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  132s] Makefile:390: recipe for target 'all' failed
[  132s] make[1]: *** [all] Error 2
[  132s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  132s] dh_auto_build: make -j1 returned exit code 2
[  132s] debian/rules:45: recipe for target 'build' failed
[  132s] make: *** [build] Error 2
[  132s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  132s] 
[  132s] cloud125 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:31:09 UTC 
2017.
[  132s] 
[  132s] ### VM INTERACTION START ###
[  135s] [  112.228732] reboot: Power down
[  136s] ### VM INTERACTION END ###
[  136s] 
[  136s] cloud125 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:31:13 UTC 
2017.
[  136s] 

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


Build failure of network:osmocom:latest/osmo-bsc in Debian_8.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/Debian_8.0/x86_64

Package network:osmocom:latest/osmo-bsc failed to build in Debian_8.0/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[  453s] #define HAVE_SYS_STAT_H 1
[  453s] #define HAVE_STDLIB_H 1
[  453s] #define HAVE_STRING_H 1
[  453s] #define HAVE_MEMORY_H 1
[  453s] #define HAVE_STRINGS_H 1
[  453s] #define HAVE_INTTYPES_H 1
[  453s] #define HAVE_STDINT_H 1
[  453s] #define HAVE_UNISTD_H 1
[  453s] #define HAVE_DLFCN_H 1
[  453s] #define LT_OBJDIR ".libs/"
[  453s] 
[  453s] configure: exit 1
[  453s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[  453s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[  453s] make[1]: *** [override_dh_auto_configure] Error 255
[  453s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  453s] debian/rules:45: recipe for target 'build' failed
[  453s] make: *** [build] Error 2
[  453s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  453s] 
[  453s] cloud129 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:23:32 UTC 
2017.
[  453s] 
[  453s] ### VM INTERACTION START ###
[  456s] Powering off.
[  456s] [  320.519305] reboot: Power down
[  464s] ### VM INTERACTION END ###
[  464s] 
[  464s] cloud129 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:23:43 UTC 
2017.
[  464s] 

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


Build failure of network:osmocom:latest/osmo-msc in Debian_8.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/Debian_8.0/x86_64

Package network:osmocom:latest/osmo-msc failed to build in Debian_8.0/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  433s]  #include 
[  433s]  ^
[  433s] compilation terminated.
[  433s] Makefile:493: recipe for target 'a_iface.o' failed
[  433s] make[4]: *** [a_iface.o] Error 1
[  433s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  433s] Makefile:410: recipe for target 'all-recursive' failed
[  433s] make[3]: *** [all-recursive] Error 1
[  433s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  433s] Makefile:446: recipe for target 'all-recursive' failed
[  433s] make[2]: *** [all-recursive] Error 1
[  433s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  433s] Makefile:377: recipe for target 'all' failed
[  433s] make[1]: *** [all] Error 2
[  433s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  433s] dh_auto_build: make -j1 returned exit code 2
[  433s] debian/rules:45: recipe for target 'build' failed
[  433s] make: *** [build] Error 2
[  433s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  433s] 
[  433s] build84 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:25:34 UTC 
2017.
[  433s] 
[  434s] ### VM INTERACTION START ###
[  435s] Powering off.
[  435s] [  409.364359] reboot: Power down
[  436s] ### VM INTERACTION END ###
[  436s] 
[  436s] build84 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:25:37 UTC 
2017.
[  436s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_17.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_17.04/x86_64

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_17.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   58s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   58s]  #include 
[   58s]  ^
[   58s] compilation terminated.
[   58s] Makefile:505: recipe for target 'a_iface.o' failed
[   58s] make[4]: *** [a_iface.o] Error 1
[   58s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   58s] Makefile:422: recipe for target 'all-recursive' failed
[   58s] make[3]: *** [all-recursive] Error 1
[   58s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   58s] Makefile:458: recipe for target 'all-recursive' failed
[   58s] make[2]: *** [all-recursive] Error 1
[   58s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   58s] Makefile:390: recipe for target 'all' failed
[   58s] make[1]: *** [all] Error 2
[   58s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   58s] dh_auto_build: make -j1 returned exit code 2
[   58s] debian/rules:45: recipe for target 'build' failed
[   58s] make: *** [build] Error 2
[   58s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   58s] 
[   58s] build79 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:25:57 UTC 
2017.
[   58s] 
[   58s] ### VM INTERACTION START ###
[   61s] [   54.820074] reboot: Power down
[   63s] ### VM INTERACTION END ###
[   64s] 
[   64s] build79 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:26:03 UTC 
2017.
[   64s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_16.10/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_16.10/x86_64

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_16.10/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   79s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   79s]  #include 
[   79s]  ^
[   79s] compilation terminated.
[   79s] Makefile:505: recipe for target 'a_iface.o' failed
[   79s] make[4]: *** [a_iface.o] Error 1
[   79s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   79s] Makefile:422: recipe for target 'all-recursive' failed
[   79s] make[3]: *** [all-recursive] Error 1
[   79s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   79s] Makefile:458: recipe for target 'all-recursive' failed
[   79s] make[2]: *** [all-recursive] Error 1
[   79s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   79s] Makefile:390: recipe for target 'all' failed
[   79s] make[1]: *** [all] Error 2
[   79s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   79s] dh_auto_build: make -j1 returned exit code 2
[   79s] debian/rules:45: recipe for target 'build' failed
[   79s] make: *** [build] Error 2
[   79s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   79s] 
[   79s] lamb12 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:24:12 UTC 
2017.
[   79s] 
[   79s] ### VM INTERACTION START ###
[   82s] [   74.691862] reboot: Power down
[   82s] ### VM INTERACTION END ###
[   82s] 
[   82s] lamb12 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:24:15 UTC 
2017.
[   82s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_16.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_16.04/i586

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_16.04/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   79s] make[4]: Entering directory '/usr/src/packages/BUILD/src/libmsc'
[   79s] gcc -DHAVE_CONFIG_H -I. -I../..   -I../../include -I../..  -Wdate-time 
-D_FORTIFY_SOURCE=2 -Wall -I/usr/include/ -I/usr/include/ -I/usr/include/   
-I/usr/include/ -I/usr/include/ -I/usr/include/asn1c -I/usr/include/  -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -Werror=implicit 
-Werror=maybe-uninitialized -Werror=memset-transposed-args 
-Werror=sizeof-array-argument -Werror=sizeof-pointer-memaccess -c -o a_iface.o 
a_iface.c
[   79s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   79s] compilation terminated.
[   79s] Makefile:505: recipe for target 'a_iface.o' failed
[   79s] make[4]: *** [a_iface.o] Error 1
[   79s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   79s] Makefile:422: recipe for target 'all-recursive' failed
[   79s] make[3]: *** [all-recursive] Error 1
[   79s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   79s] Makefile:458: recipe for target 'all-recursive' failed
[   79s] make[2]: *** [all-recursive] Error 1
[   79s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   79s] Makefile:390: recipe for target 'all' failed
[   79s] make[1]: *** [all] Error 2
[   79s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   79s] dh_auto_build: make -j1 returned exit code 2
[   79s] debian/rules:45: recipe for target 'build' failed
[   79s] make: *** [build] Error 2
[   79s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   79s] 
[   79s] build77 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:22:32 UTC 
2017.
[   79s] 
[   79s] ### VM INTERACTION START ###
[   82s] [   75.664227] reboot: Power down
[   82s] ### VM INTERACTION END ###
[   82s] 
[   82s] build77 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:22:36 UTC 
2017.
[   82s] 

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


Build failure of network:osmocom:latest/osmo-msc in Debian_9.0/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/Debian_9.0/i586

Package network:osmocom:latest/osmo-msc failed to build in Debian_9.0/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   85s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   85s]  #include 
[   85s]  ^
[   85s] compilation terminated.
[   85s] Makefile:505: recipe for target 'a_iface.o' failed
[   85s] make[4]: *** [a_iface.o] Error 1
[   85s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   85s] Makefile:422: recipe for target 'all-recursive' failed
[   85s] make[3]: *** [all-recursive] Error 1
[   85s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   85s] Makefile:458: recipe for target 'all-recursive' failed
[   85s] make[2]: *** [all-recursive] Error 1
[   85s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   85s] Makefile:390: recipe for target 'all' failed
[   85s] make[1]: *** [all] Error 2
[   85s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   85s] dh_auto_build: make -j1 returned exit code 2
[   85s] debian/rules:45: recipe for target 'build' failed
[   85s] make: *** [build] Error 2
[   85s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   85s] 
[   85s] build80 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:19:34 UTC 
2017.
[   85s] 
[   85s] ### VM INTERACTION START ###
[   88s] [   79.778376] reboot: Power down
[   88s] ### VM INTERACTION END ###
[   88s] 
[   88s] build80 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:19:39 UTC 
2017.
[   88s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_16.10/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_16.10/i586

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_16.10/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   80s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   80s]  #include 
[   80s]  ^
[   80s] compilation terminated.
[   80s] Makefile:505: recipe for target 'a_iface.o' failed
[   80s] make[4]: *** [a_iface.o] Error 1
[   80s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   80s] Makefile:422: recipe for target 'all-recursive' failed
[   80s] make[3]: *** [all-recursive] Error 1
[   80s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   80s] Makefile:458: recipe for target 'all-recursive' failed
[   80s] make[2]: *** [all-recursive] Error 1
[   80s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   80s] Makefile:390: recipe for target 'all' failed
[   80s] make[1]: *** [all] Error 2
[   80s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   80s] dh_auto_build: make -j1 returned exit code 2
[   80s] debian/rules:45: recipe for target 'build' failed
[   80s] make: *** [build] Error 2
[   80s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   80s] 
[   80s] lamb13 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:19:48 UTC 
2017.
[   80s] 
[   80s] ### VM INTERACTION START ###
[   83s] [   75.919890] reboot: Power down
[   83s] ### VM INTERACTION END ###
[   83s] 
[   83s] lamb13 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:19:52 UTC 
2017.
[   83s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_17.10/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_17.10/x86_64

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_17.10/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   77s] a_iface.c:39:10: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   77s]  #include 
[   77s]   ^~~
[   77s] compilation terminated.
[   77s] Makefile:505: recipe for target 'a_iface.o' failed
[   77s] make[4]: *** [a_iface.o] Error 1
[   77s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   77s] Makefile:422: recipe for target 'all-recursive' failed
[   77s] make[3]: *** [all-recursive] Error 1
[   77s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   77s] Makefile:458: recipe for target 'all-recursive' failed
[   77s] make[2]: *** [all-recursive] Error 1
[   77s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   77s] Makefile:390: recipe for target 'all' failed
[   77s] make[1]: *** [all] Error 2
[   77s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   77s] dh_auto_build: make -j1 returned exit code 2
[   77s] debian/rules:45: recipe for target 'build' failed
[   77s] make: *** [build] Error 2
[   77s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   77s] 
[   77s] lamb17 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:22:35 UTC 
2017.
[   77s] 
[   77s] ### VM INTERACTION START ###
[   80s] [   72.523649] reboot: Power down
[   80s] ### VM INTERACTION END ###
[   80s] 
[   80s] lamb17 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:22:38 UTC 
2017.
[   80s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_17.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_17.04/i586

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_17.04/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   83s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   83s]  #include 
[   83s]  ^
[   83s] compilation terminated.
[   83s] Makefile:505: recipe for target 'a_iface.o' failed
[   83s] make[4]: *** [a_iface.o] Error 1
[   83s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   83s] Makefile:422: recipe for target 'all-recursive' failed
[   83s] make[3]: *** [all-recursive] Error 1
[   83s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   83s] Makefile:458: recipe for target 'all-recursive' failed
[   83s] make[2]: *** [all-recursive] Error 1
[   83s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   83s] Makefile:390: recipe for target 'all' failed
[   83s] make[1]: *** [all] Error 2
[   83s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   83s] dh_auto_build: make -j1 returned exit code 2
[   83s] debian/rules:45: recipe for target 'build' failed
[   83s] make: *** [build] Error 2
[   83s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   83s] 
[   83s] lamb15 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:20:47 UTC 
2017.
[   83s] 
[   83s] ### VM INTERACTION START ###
[   86s] [   78.759358] reboot: Power down
[   86s] ### VM INTERACTION END ###
[   86s] 
[   86s] lamb15 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:20:50 UTC 
2017.
[   86s] 

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


Build failure of network:osmocom:latest/osmo-bsc in Debian_9.0/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/Debian_9.0/i586

Package network:osmocom:latest/osmo-bsc failed to build in Debian_9.0/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   89s] #define HAVE_SYS_TYPES_H 1
[   89s] #define HAVE_SYS_STAT_H 1
[   89s] #define HAVE_STDLIB_H 1
[   89s] #define HAVE_STRING_H 1
[   89s] #define HAVE_MEMORY_H 1
[   89s] #define HAVE_STRINGS_H 1
[   89s] #define HAVE_INTTYPES_H 1
[   89s] #define HAVE_STDINT_H 1
[   89s] #define HAVE_UNISTD_H 1
[   89s] #define HAVE_DLFCN_H 1
[   89s] #define LT_OBJDIR ".libs/"
[   89s] 
[   89s] configure: exit 1
[   89s] dh_auto_configure: ./configure --build=i686-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/i386-linux-gnu 
--libexecdir=${prefix}/lib/i386-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   89s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   89s] make[1]: *** [override_dh_auto_configure] Error 2
[   89s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   89s] debian/rules:45: recipe for target 'build' failed
[   89s] make: *** [build] Error 2
[   89s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   89s] 
[   89s] lamb13 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:13:17 UTC 
2017.
[   89s] 
[   89s] ### VM INTERACTION START ###
[   92s] [   84.337147] reboot: Power down
[   92s] ### VM INTERACTION END ###
[   92s] 
[   92s] lamb13 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:13:20 UTC 
2017.
[   92s] 

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


Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_17.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_17.04/x86_64

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_17.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   76s] #define HAVE_SYS_STAT_H 1
[   76s] #define HAVE_STDLIB_H 1
[   76s] #define HAVE_STRING_H 1
[   76s] #define HAVE_MEMORY_H 1
[   76s] #define HAVE_STRINGS_H 1
[   76s] #define HAVE_INTTYPES_H 1
[   76s] #define HAVE_STDINT_H 1
[   76s] #define HAVE_UNISTD_H 1
[   76s] #define HAVE_DLFCN_H 1
[   76s] #define LT_OBJDIR ".libs/"
[   76s] 
[   76s] configure: exit 1
[   76s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   76s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   76s] make[1]: *** [override_dh_auto_configure] Error 2
[   76s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   76s] debian/rules:45: recipe for target 'build' failed
[   76s] make: *** [build] Error 2
[   76s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   76s] 
[   76s] lamb77 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:14:51 UTC 
2017.
[   76s] 
[   76s] ### VM INTERACTION START ###
[   76s] [   68.784111] serial8250: too much work for irq4
[   80s] [   72.001549] reboot: Power down
[   80s] ### VM INTERACTION END ###
[   80s] 
[   80s] lamb77 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:14:55 UTC 
2017.
[   80s] 

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


Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_16.10/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_16.10/x86_64

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_16.10/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   71s] #define HAVE_SYS_TYPES_H 1
[   71s] #define HAVE_SYS_STAT_H 1
[   71s] #define HAVE_STDLIB_H 1
[   71s] #define HAVE_STRING_H 1
[   71s] #define HAVE_MEMORY_H 1
[   71s] #define HAVE_STRINGS_H 1
[   71s] #define HAVE_INTTYPES_H 1
[   71s] #define HAVE_STDINT_H 1
[   71s] #define HAVE_UNISTD_H 1
[   71s] #define HAVE_DLFCN_H 1
[   71s] #define LT_OBJDIR ".libs/"
[   71s] 
[   71s] configure: exit 1
[   71s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   71s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   71s] make[1]: *** [override_dh_auto_configure] Error 2
[   71s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   71s] debian/rules:45: recipe for target 'build' failed
[   71s] make: *** [build] Error 2
[   71s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   71s] 
[   71s] lamb77 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:13:15 UTC 
2017.
[   71s] 
[   71s] ### VM INTERACTION START ###
[   75s] [   67.898064] reboot: Power down
[   75s] ### VM INTERACTION END ###
[   75s] 
[   75s] lamb77 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:13:19 UTC 
2017.
[   75s] 

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


Build failure of network:osmocom:latest/osmo-bsc in Debian_9.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/Debian_9.0/x86_64

Package network:osmocom:latest/osmo-bsc failed to build in Debian_9.0/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   86s] #define HAVE_SYS_TYPES_H 1
[   86s] #define HAVE_SYS_STAT_H 1
[   86s] #define HAVE_STDLIB_H 1
[   86s] #define HAVE_STRING_H 1
[   86s] #define HAVE_MEMORY_H 1
[   86s] #define HAVE_STRINGS_H 1
[   86s] #define HAVE_INTTYPES_H 1
[   86s] #define HAVE_STDINT_H 1
[   86s] #define HAVE_UNISTD_H 1
[   86s] #define HAVE_DLFCN_H 1
[   86s] #define LT_OBJDIR ".libs/"
[   86s] 
[   86s] configure: exit 1
[   86s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   86s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   86s] make[1]: *** [override_dh_auto_configure] Error 2
[   86s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   86s] debian/rules:45: recipe for target 'build' failed
[   86s] make: *** [build] Error 2
[   86s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   86s] 
[   86s] lamb60 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:15:53 UTC 
2017.
[   86s] 
[   86s] ### VM INTERACTION START ###
[   89s] [   80.890917] reboot: Power down
[   89s] ### VM INTERACTION END ###
[   89s] 
[   89s] lamb60 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:15:57 UTC 
2017.
[   89s] 

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


Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_17.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_17.04/i586

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_17.04/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[  137s] #define HAVE_SYS_TYPES_H 1
[  137s] #define HAVE_SYS_STAT_H 1
[  137s] #define HAVE_STDLIB_H 1
[  137s] #define HAVE_STRING_H 1
[  137s] #define HAVE_MEMORY_H 1
[  137s] #define HAVE_STRINGS_H 1
[  137s] #define HAVE_INTTYPES_H 1
[  137s] #define HAVE_STDINT_H 1
[  137s] #define HAVE_UNISTD_H 1
[  137s] #define HAVE_DLFCN_H 1
[  137s] #define LT_OBJDIR ".libs/"
[  137s] 
[  137s] configure: exit 1
[  137s] dh_auto_configure: ./configure --build=i686-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/i386-linux-gnu 
--libexecdir=${prefix}/lib/i386-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[  137s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[  137s] make[1]: *** [override_dh_auto_configure] Error 2
[  137s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  137s] debian/rules:45: recipe for target 'build' failed
[  137s] make: *** [build] Error 2
[  137s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  138s] 
[  138s] cloud109 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:15:02 UTC 
2017.
[  138s] 
[  138s] ### VM INTERACTION START ###
[  141s] [  106.607246] reboot: Power down
[  144s] ### VM INTERACTION END ###
[  144s] 
[  144s] cloud109 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:15:08 UTC 
2017.
[  144s] 

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


Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_16.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_16.04/x86_64

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_16.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[  112s] #define HAVE_SYS_TYPES_H 1
[  112s] #define HAVE_SYS_STAT_H 1
[  112s] #define HAVE_STDLIB_H 1
[  112s] #define HAVE_STRING_H 1
[  112s] #define HAVE_MEMORY_H 1
[  112s] #define HAVE_STRINGS_H 1
[  112s] #define HAVE_INTTYPES_H 1
[  112s] #define HAVE_STDINT_H 1
[  112s] #define HAVE_UNISTD_H 1
[  112s] #define HAVE_DLFCN_H 1
[  112s] #define LT_OBJDIR ".libs/"
[  112s] 
[  112s] configure: exit 1
[  112s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[  112s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[  112s] make[1]: *** [override_dh_auto_configure] Error 255
[  112s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  112s] debian/rules:45: recipe for target 'build' failed
[  112s] make: *** [build] Error 2
[  112s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  112s] 
[  112s] lamb57 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:14:10 UTC 
2017.
[  112s] 
[  112s] ### VM INTERACTION START ###
[  115s] [  107.896330] reboot: Power down
[  115s] ### VM INTERACTION END ###
[  115s] 
[  115s] lamb57 failed "build osmo-bsc_1.1.1.dsc" at Sun Oct 29 01:14:14 UTC 
2017.
[  115s] 

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


Build failure of network:osmocom:latest/osmo-msc in Debian_8.0/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/Debian_8.0/i586

Package network:osmocom:latest/osmo-msc failed to build in Debian_8.0/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  127s]  #include 
[  127s]  ^
[  127s] compilation terminated.
[  127s] Makefile:493: recipe for target 'a_iface.o' failed
[  127s] make[4]: *** [a_iface.o] Error 1
[  127s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  127s] Makefile:410: recipe for target 'all-recursive' failed
[  127s] make[3]: *** [all-recursive] Error 1
[  127s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  127s] Makefile:446: recipe for target 'all-recursive' failed
[  127s] make[2]: *** [all-recursive] Error 1
[  127s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  127s] Makefile:377: recipe for target 'all' failed
[  127s] make[1]: *** [all] Error 2
[  127s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  127s] dh_auto_build: make -j1 returned exit code 2
[  127s] debian/rules:45: recipe for target 'build' failed
[  127s] make: *** [build] Error 2
[  127s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  127s] 
[  127s] cloud120 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:16:09 UTC 
2017.
[  127s] 
[  127s] ### VM INTERACTION START ###
[  128s] Powering off.
[  128s] [  111.742144] reboot: Power down
[  130s] ### VM INTERACTION END ###
[  130s] 
[  130s] cloud120 failed "build osmo-msc_1.1.1.dsc" at Sun Oct 29 01:16:12 UTC 
2017.
[  130s] 

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


Build failure of network:osmocom:latest/osmo-msc in Debian_8.0/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/Debian_8.0/i586

Package network:osmocom:latest/osmo-msc failed to build in Debian_8.0/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  131s]  #include 
[  131s]  ^
[  131s] compilation terminated.
[  131s] Makefile:493: recipe for target 'a_iface.o' failed
[  131s] make[4]: *** [a_iface.o] Error 1
[  131s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  131s] Makefile:410: recipe for target 'all-recursive' failed
[  131s] make[3]: *** [all-recursive] Error 1
[  131s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  131s] Makefile:446: recipe for target 'all-recursive' failed
[  131s] make[2]: *** [all-recursive] Error 1
[  131s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  131s] Makefile:377: recipe for target 'all' failed
[  131s] make[1]: *** [all] Error 2
[  131s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  131s] dh_auto_build: make -j1 returned exit code 2
[  131s] debian/rules:45: recipe for target 'build' failed
[  131s] make: *** [build] Error 2
[  131s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  131s] 
[  131s] cloud113 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:25:29 UTC 
2017.
[  131s] 
[  131s] ### VM INTERACTION START ###
[  132s] Powering off.
[  132s] [  112.534441] reboot: Power down
[  134s] ### VM INTERACTION END ###
[  134s] 
[  134s] cloud113 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:25:33 UTC 
2017.
[  134s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_16.10/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_16.10/x86_64

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_16.10/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  188s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  188s]  #include 
[  188s]  ^
[  188s] compilation terminated.
[  188s] Makefile:505: recipe for target 'a_iface.o' failed
[  188s] make[4]: *** [a_iface.o] Error 1
[  188s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  189s] Makefile:422: recipe for target 'all-recursive' failed
[  189s] make[3]: *** [all-recursive] Error 1
[  189s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  189s] Makefile:458: recipe for target 'all-recursive' failed
[  189s] make[2]: *** [all-recursive] Error 1
[  189s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  189s] Makefile:390: recipe for target 'all' failed
[  189s] make[1]: *** [all] Error 2
[  189s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  189s] dh_auto_build: make -j1 returned exit code 2
[  189s] debian/rules:45: recipe for target 'build' failed
[  189s] make: *** [build] Error 2
[  189s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  189s] 
[  189s] lamb22 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:18:04 UTC 
2017.
[  189s] 
[  189s] ### VM INTERACTION START ###
[  192s] [  174.964982] reboot: Power down
[  192s] ### VM INTERACTION END ###
[  192s] 
[  192s] lamb22 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:18:08 UTC 
2017.
[  192s] 

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


Build failure of network:osmocom:latest/osmo-bsc in Debian_8.0/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/Debian_8.0/i586

Package network:osmocom:latest/osmo-bsc failed to build in Debian_8.0/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   87s] #define HAVE_SYS_STAT_H 1
[   87s] #define HAVE_STDLIB_H 1
[   87s] #define HAVE_STRING_H 1
[   87s] #define HAVE_MEMORY_H 1
[   87s] #define HAVE_STRINGS_H 1
[   87s] #define HAVE_INTTYPES_H 1
[   87s] #define HAVE_STDINT_H 1
[   87s] #define HAVE_UNISTD_H 1
[   87s] #define HAVE_DLFCN_H 1
[   87s] #define LT_OBJDIR ".libs/"
[   87s] 
[   87s] configure: exit 1
[   87s] dh_auto_configure: ./configure --build=i586-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--libdir=${prefix}/lib/i386-linux-gnu --libexecdir=${prefix}/lib/i386-linux-gnu 
--disable-maintainer-mode --disable-dependency-tracking returned exit code 1
[   87s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   87s] make[1]: *** [override_dh_auto_configure] Error 255
[   87s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   87s] debian/rules:45: recipe for target 'build' failed
[   87s] make: *** [build] Error 2
[   87s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   87s] 
[   87s] lamb03 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 22:17:35 UTC 
2017.
[   87s] 
[   87s] ### VM INTERACTION START ###
[   88s] Powering off.
[   88s] [   80.709163] reboot: Power down
[   88s] ### VM INTERACTION END ###
[   88s] 
[   88s] lamb03 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 22:17:36 UTC 
2017.
[   88s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_17.10/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_17.10/x86_64

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_17.10/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   80s] a_iface.c:39:10: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   80s]  #include 
[   80s]   ^~~
[   80s] compilation terminated.
[   80s] Makefile:505: recipe for target 'a_iface.o' failed
[   80s] make[4]: *** [a_iface.o] Error 1
[   80s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   80s] Makefile:422: recipe for target 'all-recursive' failed
[   80s] make[3]: *** [all-recursive] Error 1
[   80s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   80s] Makefile:458: recipe for target 'all-recursive' failed
[   80s] make[2]: *** [all-recursive] Error 1
[   80s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   80s] Makefile:390: recipe for target 'all' failed
[   80s] make[1]: *** [all] Error 2
[   80s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   80s] dh_auto_build: make -j1 returned exit code 2
[   80s] debian/rules:45: recipe for target 'build' failed
[   80s] make: *** [build] Error 2
[   80s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   80s] 
[   80s] wildcard3 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:16:05 UTC 
2017.
[   80s] 
[   80s] ### VM INTERACTION START ###
[   83s] [   73.792876] reboot: Power down
[   85s] ### VM INTERACTION END ###
[   85s] 
[   85s] wildcard3 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:16:11 UTC 
2017.
[   85s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_17.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_17.04/i586

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_17.04/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   93s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   93s]  #include 
[   93s]  ^
[   93s] compilation terminated.
[   93s] Makefile:505: recipe for target 'a_iface.o' failed
[   93s] make[4]: *** [a_iface.o] Error 1
[   93s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   93s] Makefile:422: recipe for target 'all-recursive' failed
[   93s] make[3]: *** [all-recursive] Error 1
[   93s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   93s] Makefile:458: recipe for target 'all-recursive' failed
[   93s] make[2]: *** [all-recursive] Error 1
[   93s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   93s] Makefile:390: recipe for target 'all' failed
[   93s] make[1]: *** [all] Error 2
[   93s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   93s] dh_auto_build: make -j1 returned exit code 2
[   93s] debian/rules:45: recipe for target 'build' failed
[   93s] make: *** [build] Error 2
[   93s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   93s] 
[   93s] lamb54 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:16:28 UTC 
2017.
[   93s] 
[   93s] ### VM INTERACTION START ###
[   96s] [   89.231666] reboot: Power down
[   96s] ### VM INTERACTION END ###
[   96s] 
[   96s] lamb54 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:16:31 UTC 
2017.
[   96s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_16.10/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_16.10/i586

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_16.10/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  132s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  132s]  #include 
[  132s]  ^
[  132s] compilation terminated.
[  132s] Makefile:505: recipe for target 'a_iface.o' failed
[  132s] make[4]: *** [a_iface.o] Error 1
[  132s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  132s] Makefile:422: recipe for target 'all-recursive' failed
[  132s] make[3]: *** [all-recursive] Error 1
[  132s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  132s] Makefile:458: recipe for target 'all-recursive' failed
[  132s] make[2]: *** [all-recursive] Error 1
[  132s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  132s] Makefile:390: recipe for target 'all' failed
[  132s] make[1]: *** [all] Error 2
[  132s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  132s] dh_auto_build: make -j1 returned exit code 2
[  132s] debian/rules:45: recipe for target 'build' failed
[  132s] make: *** [build] Error 2
[  132s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  132s] 
[  132s] cloud121 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:16:28 UTC 
2017.
[  132s] 
[  132s] ### VM INTERACTION START ###
[  135s] [   89.718732] reboot: Power down
[  135s] ### VM INTERACTION END ###
[  136s] 
[  136s] cloud121 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:16:33 UTC 
2017.
[  136s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_16.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_16.04/i586

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_16.04/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  103s] make[4]: Entering directory '/usr/src/packages/BUILD/src/libmsc'
[  103s] gcc -DHAVE_CONFIG_H -I. -I../..   -I../../include -I../..  -Wdate-time 
-D_FORTIFY_SOURCE=2 -Wall -I/usr/include/ -I/usr/include/ -I/usr/include/   
-I/usr/include/ -I/usr/include/ -I/usr/include/asn1c -I/usr/include/  -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -Werror=implicit 
-Werror=maybe-uninitialized -Werror=memset-transposed-args 
-Werror=sizeof-array-argument -Werror=sizeof-pointer-memaccess -c -o a_iface.o 
a_iface.c
[  103s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  103s] compilation terminated.
[  103s] Makefile:505: recipe for target 'a_iface.o' failed
[  103s] make[4]: *** [a_iface.o] Error 1
[  103s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  103s] Makefile:422: recipe for target 'all-recursive' failed
[  103s] make[3]: *** [all-recursive] Error 1
[  103s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  103s] Makefile:458: recipe for target 'all-recursive' failed
[  103s] make[2]: *** [all-recursive] Error 1
[  103s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  103s] Makefile:390: recipe for target 'all' failed
[  103s] make[1]: *** [all] Error 2
[  103s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  103s] dh_auto_build: make -j1 returned exit code 2
[  103s] debian/rules:45: recipe for target 'build' failed
[  103s] make: *** [build] Error 2
[  103s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  103s] 
[  103s] lamb68 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:15:36 UTC 
2017.
[  103s] 
[  104s] ### VM INTERACTION START ###
[  107s] [  100.188238] reboot: Power down
[  107s] ### VM INTERACTION END ###
[  107s] 
[  107s] lamb68 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:15:40 UTC 
2017.
[  107s] 

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


Build failure of network:osmocom:latest/osmo-msc in Debian_9.0/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/Debian_9.0/i586

Package network:osmocom:latest/osmo-msc failed to build in Debian_9.0/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  118s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  118s]  #include 
[  118s]  ^
[  118s] compilation terminated.
[  118s] Makefile:505: recipe for target 'a_iface.o' failed
[  118s] make[4]: *** [a_iface.o] Error 1
[  118s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  118s] Makefile:422: recipe for target 'all-recursive' failed
[  118s] make[3]: *** [all-recursive] Error 1
[  118s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  118s] Makefile:458: recipe for target 'all-recursive' failed
[  118s] make[2]: *** [all-recursive] Error 1
[  118s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  118s] Makefile:390: recipe for target 'all' failed
[  118s] make[1]: *** [all] Error 2
[  118s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  118s] dh_auto_build: make -j1 returned exit code 2
[  118s] debian/rules:45: recipe for target 'build' failed
[  118s] make: *** [build] Error 2
[  118s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  118s] 
[  118s] lamb18 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:15:30 UTC 
2017.
[  118s] 
[  118s] ### VM INTERACTION START ###
[  121s] [  113.295465] reboot: Power down
[  121s] ### VM INTERACTION END ###
[  121s] 
[  121s] lamb18 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:15:34 UTC 
2017.
[  121s] 

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


Build failure of network:osmocom:latest/osmo-msc in Debian_8.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/Debian_8.0/x86_64

Package network:osmocom:latest/osmo-msc failed to build in Debian_8.0/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  108s]  #include 
[  108s]  ^
[  108s] compilation terminated.
[  108s] Makefile:493: recipe for target 'a_iface.o' failed
[  108s] make[4]: *** [a_iface.o] Error 1
[  108s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  108s] Makefile:410: recipe for target 'all-recursive' failed
[  108s] make[3]: *** [all-recursive] Error 1
[  108s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  108s] Makefile:446: recipe for target 'all-recursive' failed
[  108s] make[2]: *** [all-recursive] Error 1
[  108s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  108s] Makefile:377: recipe for target 'all' failed
[  108s] make[1]: *** [all] Error 2
[  108s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  108s] dh_auto_build: make -j1 returned exit code 2
[  108s] debian/rules:45: recipe for target 'build' failed
[  108s] make: *** [build] Error 2
[  108s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  108s] 
[  108s] lamb59 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:14:42 UTC 
2017.
[  108s] 
[  108s] ### VM INTERACTION START ###
[  109s] Powering off.
[  109s] [  101.797338] reboot: Power down
[  109s] ### VM INTERACTION END ###
[  109s] 
[  109s] lamb59 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:14:43 UTC 
2017.
[  109s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_16.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_16.04/x86_64

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_16.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  174s] ranlib libvlr.a
[  174s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libvlr'
[  174s] Making all in libmsc
[  174s] make[4]: Entering directory '/usr/src/packages/BUILD/src/libmsc'
[  174s] gcc -DHAVE_CONFIG_H -I. -I../..   -I../../include -I../..  -Wdate-time 
-D_FORTIFY_SOURCE=2 -Wall -I/usr/include/ -I/usr/include/ -I/usr/include/   
-I/usr/include/ -I/usr/include/ -I/usr/include/asn1c -I/usr/include/  -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -Werror=implicit 
-Werror=maybe-uninitialized -Werror=memset-transposed-args 
-Werror=sizeof-array-argument -Werror=sizeof-pointer-memaccess -c -o a_iface.o 
a_iface.c
[  174s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  174s] compilation terminated.
[  174s] Makefile:505: recipe for target 'a_iface.o' failed
[  174s] make[4]: *** [a_iface.o] Error 1
[  174s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  174s] Makefile:422: recipe for target 'all-recursive' failed
[  174s] make[3]: *** [all-recursive] Error 1
[  174s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  174s] Makefile:458: recipe for target 'all-recursive' failed
[  174s] make[2]: *** [all-recursive] Error 1
[  174s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  174s] Makefile:390: recipe for target 'all' failed
[  174s] make[1]: *** [all] Error 2
[  174s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  174s] dh_auto_build: make -j1 returned exit code 2
[  174s] debian/rules:45: recipe for target 'build' failed
[  174s] make: *** [build] Error 2
[  174s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  174s] 
[  174s] cloud107 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:15:19 UTC 
2017.
[  174s] 
[  174s] ### VM INTERACTION START ###
[  177s] [  145.683161] reboot: Power down
[  179s] ### VM INTERACTION END ###

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


Build failure of network:osmocom:latest/osmo-msc in Debian_9.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/Debian_9.0/x86_64

Package network:osmocom:latest/osmo-msc failed to build in Debian_9.0/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   97s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   97s]  #include 
[   97s]  ^
[   97s] compilation terminated.
[   97s] Makefile:505: recipe for target 'a_iface.o' failed
[   97s] make[4]: *** [a_iface.o] Error 1
[   97s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   97s] Makefile:422: recipe for target 'all-recursive' failed
[   97s] make[3]: *** [all-recursive] Error 1
[   97s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   97s] Makefile:458: recipe for target 'all-recursive' failed
[   97s] make[2]: *** [all-recursive] Error 1
[   97s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   97s] Makefile:390: recipe for target 'all' failed
[   97s] make[1]: *** [all] Error 2
[   97s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   97s] dh_auto_build: make -j1 returned exit code 2
[   97s] debian/rules:45: recipe for target 'build' failed
[   97s] make: *** [build] Error 2
[   97s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   97s] 
[   97s] lamb06 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:12:44 UTC 
2017.
[   97s] 
[   97s] ### VM INTERACTION START ###
[  100s] [   92.001194] reboot: Power down
[  100s] ### VM INTERACTION END ###
[  100s] 
[  100s] lamb06 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:12:48 UTC 
2017.
[  100s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_17.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_17.04/x86_64

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_17.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[   89s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   89s]  #include 
[   89s]  ^
[   89s] compilation terminated.
[   89s] Makefile:505: recipe for target 'a_iface.o' failed
[   89s] make[4]: *** [a_iface.o] Error 1
[   89s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   89s] Makefile:422: recipe for target 'all-recursive' failed
[   89s] make[3]: *** [all-recursive] Error 1
[   89s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   89s] Makefile:458: recipe for target 'all-recursive' failed
[   89s] make[2]: *** [all-recursive] Error 1
[   89s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   89s] Makefile:390: recipe for target 'all' failed
[   89s] make[1]: *** [all] Error 2
[   89s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   89s] dh_auto_build: make -j1 returned exit code 2
[   89s] debian/rules:45: recipe for target 'build' failed
[   89s] make: *** [build] Error 2
[   89s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   89s] 
[   89s] lamb14 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:12:23 UTC 
2017.
[   89s] 
[   89s] ### VM INTERACTION START ###
[   92s] [   84.705852] reboot: Power down
[   92s] ### VM INTERACTION END ###
[   92s] 
[   92s] lamb14 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 22:12:26 UTC 
2017.
[   92s] 

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


Build failure of network:osmocom:latest/osmo-bsc in Debian_8.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/Debian_8.0/x86_64

Package network:osmocom:latest/osmo-bsc failed to build in Debian_8.0/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   94s] #define HAVE_SYS_STAT_H 1
[   94s] #define HAVE_STDLIB_H 1
[   94s] #define HAVE_STRING_H 1
[   94s] #define HAVE_MEMORY_H 1
[   94s] #define HAVE_STRINGS_H 1
[   94s] #define HAVE_INTTYPES_H 1
[   94s] #define HAVE_STDINT_H 1
[   94s] #define HAVE_UNISTD_H 1
[   94s] #define HAVE_DLFCN_H 1
[   94s] #define LT_OBJDIR ".libs/"
[   94s] 
[   94s] configure: exit 1
[   94s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   94s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   94s] make[1]: *** [override_dh_auto_configure] Error 255
[   94s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   94s] debian/rules:45: recipe for target 'build' failed
[   94s] make: *** [build] Error 2
[   94s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   94s] 
[   94s] lamb19 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 22:07:53 UTC 
2017.
[   94s] 
[   94s] ### VM INTERACTION START ###
[   95s] Powering off.
[   95s] [   88.303516] reboot: Power down
[   95s] ### VM INTERACTION END ###
[   95s] 
[   95s] lamb19 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 22:07:55 UTC 
2017.
[   95s] 

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


Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_17.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_17.04/i586

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_17.04/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[  124s] #define HAVE_SYS_TYPES_H 1
[  124s] #define HAVE_SYS_STAT_H 1
[  124s] #define HAVE_STDLIB_H 1
[  124s] #define HAVE_STRING_H 1
[  124s] #define HAVE_MEMORY_H 1
[  124s] #define HAVE_STRINGS_H 1
[  124s] #define HAVE_INTTYPES_H 1
[  124s] #define HAVE_STDINT_H 1
[  124s] #define HAVE_UNISTD_H 1
[  124s] #define HAVE_DLFCN_H 1
[  124s] #define LT_OBJDIR ".libs/"
[  124s] 
[  124s] configure: exit 1
[  124s] dh_auto_configure: ./configure --build=i686-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/i386-linux-gnu 
--libexecdir=${prefix}/lib/i386-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[  124s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[  124s] make[1]: *** [override_dh_auto_configure] Error 2
[  124s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  124s] debian/rules:45: recipe for target 'build' failed
[  124s] make: *** [build] Error 2
[  124s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  124s] 
[  124s] cloud112 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 22:06:54 UTC 
2017.
[  124s] 
[  124s] ### VM INTERACTION START ###
[  127s] [  103.893283] reboot: Power down
[  128s] ### VM INTERACTION END ###
[  128s] 
[  128s] cloud112 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 22:06:59 UTC 
2017.
[  128s] 

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


Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_16.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_16.04/x86_64

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_16.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[  136s] #define HAVE_SYS_TYPES_H 1
[  136s] #define HAVE_SYS_STAT_H 1
[  136s] #define HAVE_STDLIB_H 1
[  136s] #define HAVE_STRING_H 1
[  136s] #define HAVE_MEMORY_H 1
[  136s] #define HAVE_STRINGS_H 1
[  136s] #define HAVE_INTTYPES_H 1
[  136s] #define HAVE_STDINT_H 1
[  136s] #define HAVE_UNISTD_H 1
[  136s] #define HAVE_DLFCN_H 1
[  136s] #define LT_OBJDIR ".libs/"
[  136s] 
[  136s] configure: exit 1
[  136s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[  136s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[  136s] make[1]: *** [override_dh_auto_configure] Error 255
[  136s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  136s] debian/rules:45: recipe for target 'build' failed
[  136s] make: *** [build] Error 2
[  136s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  136s] 
[  136s] lamb53 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 22:05:06 UTC 
2017.
[  136s] 
[  136s] ### VM INTERACTION START ###
[  139s] [  131.609042] reboot: Power down
[  139s] ### VM INTERACTION END ###
[  139s] 
[  139s] lamb53 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 22:05:10 UTC 
2017.
[  139s] 

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


Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_16.10/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_16.10/x86_64

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_16.10/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   70s] #define HAVE_SYS_TYPES_H 1
[   70s] #define HAVE_SYS_STAT_H 1
[   70s] #define HAVE_STDLIB_H 1
[   70s] #define HAVE_STRING_H 1
[   70s] #define HAVE_MEMORY_H 1
[   70s] #define HAVE_STRINGS_H 1
[   70s] #define HAVE_INTTYPES_H 1
[   70s] #define HAVE_STDINT_H 1
[   70s] #define HAVE_UNISTD_H 1
[   70s] #define HAVE_DLFCN_H 1
[   70s] #define LT_OBJDIR ".libs/"
[   70s] 
[   70s] configure: exit 1
[   70s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   70s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   70s] make[1]: *** [override_dh_auto_configure] Error 2
[   70s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   70s] debian/rules:45: recipe for target 'build' failed
[   70s] make: *** [build] Error 2
[   70s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   70s] 
[   70s] lamb74 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 22:01:23 UTC 
2017.
[   70s] 
[   70s] ### VM INTERACTION START ###
[   74s] [   66.226950] reboot: Power down
[   74s] ### VM INTERACTION END ###
[   74s] 
[   74s] lamb74 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 22:01:27 UTC 
2017.
[   74s] 

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


Build failure of network:osmocom:latest/osmo-bsc in xUbuntu_17.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-bsc/xUbuntu_17.04/x86_64

Package network:osmocom:latest/osmo-bsc failed to build in xUbuntu_17.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-bsc

Last lines of build log:
[   71s] #define HAVE_STRING_H 1
[   71s] #define HAVE_MEMORY_H 1
[   71s] #define HAVE_STRINGS_H 1
[   71s] #define HAVE_INTTYPES_H 1
[   71s] #define HAVE_STDINT_H 1
[   71s] #define HAVE_UNISTD_H 1
[   71s] #define HAVE_DLFCN_H 1
[   71s] #define LT_OBJDIR ".libs/"
[   71s] 
[   71s] configure: exit 1
[   71s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   71s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   71s] make[1]: *** [override_dh_auto_configure] Error 2
[   71s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   71s] debian/rules:45: recipe for target 'build' failed
[   71s] make: *** [build] Error 2
[   71s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   71s] 
[   71s] lamb73 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 21:59:17 UTC 
2017.
[   71s] 
[   71s] ### VM INTERACTION START ###
[   71s] [   64.256074] serial8250: too much work for irq4
[   71s] [   64.352084] serial8250: too much work for irq4
[   71s] [   64.444120] serial8250: too much work for irq4
[   75s] [   67.665517] reboot: Power down
[   75s] ### VM INTERACTION END ###
[   75s] 
[   75s] lamb73 failed "build osmo-bsc_1.1.1.dsc" at Sat Oct 28 21:59:21 UTC 
2017.
[   75s] 

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


[PATCH] osmo-ci[master]: Add osmocom-latest-packages.sh script for network:osmocom:la...

2017-10-28 Thread Harald Welte

Review at  https://gerrit.osmocom.org/4549

Add osmocom-latest-packages.sh script for network:osmocom:latest

Change-Id: I8b036e57d8a5f4e08081c9641bbef50fead0c52a
---
A scripts/osmocom-latest-packages.sh
1 file changed, 62 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/49/4549/1

diff --git a/scripts/osmocom-latest-packages.sh 
b/scripts/osmocom-latest-packages.sh
new file mode 100755
index 000..2f0152e
--- /dev/null
+++ b/scripts/osmocom-latest-packages.sh
@@ -0,0 +1,62 @@
+#!/bin/sh
+
+#set -e
+
+# OBS project name
+PROJ=network:osmocom:latest
+
+DT=`date +%Y%m%d`
+
+# start with a checkout of the project
+if [ -d $PROJ ]; then
+   (cd $PROJ && osc up)
+else
+   osc co $PROJ
+fi
+
+build() {
+  echo
+  echo "> Building $1"
+  rm -rf data
+  [ -d $1 ] || git clone git://git.osmocom.org/$1
+  cd $1
+  git fetch
+  VER=`git describe --abbrev=0 --tags --match "*.*.*" origin/master`
+  git checkout -f -B $VER refs/tags/$VER
+  gbp buildpackage -d -S -uc -us --git-export-dir=$PWD/../data 
--git-debian-branch=$VER
+  cd ../$PROJ/$1
+  osc rm * || true
+  mv ../../data/*.dsc .
+  mv ../../data/*.tar* .
+  osc add *
+  cd ../../
+}
+
+PACKAGES="
+   libosmocore
+   libosmo-sccp
+   libosmo-abis
+   libosmo-netif
+   libsmpp34
+   libasn1c
+   osmo-iuh
+   osmo-ggsn
+   osmo-sgsn
+   openbsc
+   osmo-pcap
+   osmo-trx
+   osmo-sip-connector
+   osmo-bts
+   osmo-pcu
+   osmo-hlr
+   osmo-mgw
+   osmo-msc
+   osmo-bsc
+   "
+
+for p in $PACKAGES; do
+   build $p
+done
+
+cd $PROJ
+osc ci -m "Latest Tagged versions of $DT"

-- 
To view, visit https://gerrit.osmocom.org/4549
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8b036e57d8a5f4e08081c9641bbef50fead0c52a
Gerrit-PatchSet: 1
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 


Build failure of network:osmocom:nightly/osmo-msc in xUbuntu_16.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-msc/xUbuntu_16.04/x86_64

Package network:osmocom:nightly/osmo-msc failed to build in xUbuntu_16.04/x86_64

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

Last lines of build log:
[   98s] make[4]: Entering directory '/usr/src/packages/BUILD/src/libmsc'
[   98s] gcc -DHAVE_CONFIG_H -I. -I../..   -I../../include -I../..  -Wdate-time 
-D_FORTIFY_SOURCE=2 -Wall -I/usr/include/ -I/usr/include/ -I/usr/include/   
-I/usr/include/ -I/usr/include/ -I/usr/include/asn1c -I/usr/include/  -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -Werror=implicit 
-Werror=maybe-uninitialized -Werror=memset-transposed-args 
-Werror=sizeof-array-argument -Werror=sizeof-pointer-memaccess -c -o a_iface.o 
a_iface.c
[   98s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   98s] compilation terminated.
[   98s] Makefile:505: recipe for target 'a_iface.o' failed
[   98s] make[4]: *** [a_iface.o] Error 1
[   98s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   98s] Makefile:422: recipe for target 'all-recursive' failed
[   98s] make[3]: *** [all-recursive] Error 1
[   98s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   98s] Makefile:458: recipe for target 'all-recursive' failed
[   98s] make[2]: *** [all-recursive] Error 1
[   98s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   98s] Makefile:390: recipe for target 'all' failed
[   98s] make[1]: *** [all] Error 2
[   98s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   98s] dh_auto_build: make -j1 returned exit code 2
[   98s] debian/rules:45: recipe for target 'build' failed
[   98s] make: *** [build] Error 2
[   98s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   98s] 
[   98s] lamb18 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:37:15 UTC 2017.
[   98s] 
[   98s] ### VM INTERACTION START ###
[  101s] [   92.845991] reboot: Power down
[  101s] ### VM INTERACTION END ###
[  101s] 
[  101s] lamb18 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:37:18 UTC 2017.
[  101s] 

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


Build failure of network:osmocom:nightly/osmo-msc in xUbuntu_17.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-msc/xUbuntu_17.04/x86_64

Package network:osmocom:nightly/osmo-msc failed to build in xUbuntu_17.04/x86_64

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

Last lines of build log:
[   78s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   78s]  #include 
[   78s]  ^
[   78s] compilation terminated.
[   78s] Makefile:505: recipe for target 'a_iface.o' failed
[   78s] make[4]: *** [a_iface.o] Error 1
[   78s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   78s] Makefile:422: recipe for target 'all-recursive' failed
[   78s] make[3]: *** [all-recursive] Error 1
[   78s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   78s] Makefile:458: recipe for target 'all-recursive' failed
[   78s] make[2]: *** [all-recursive] Error 1
[   78s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   78s] Makefile:390: recipe for target 'all' failed
[   78s] make[1]: *** [all] Error 2
[   78s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   78s] dh_auto_build: make -j1 returned exit code 2
[   78s] debian/rules:45: recipe for target 'build' failed
[   78s] make: *** [build] Error 2
[   78s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   78s] 
[   78s] lamb11 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:37:06 UTC 2017.
[   78s] 
[   78s] ### VM INTERACTION START ###
[   82s] [   73.349200] reboot: Power down
[   82s] ### VM INTERACTION END ###
[   82s] 
[   82s] lamb11 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:37:09 UTC 2017.
[   82s] 

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


Build failure of network:osmocom:nightly/osmo-msc in Debian_9.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-msc/Debian_9.0/x86_64

Package network:osmocom:nightly/osmo-msc failed to build in Debian_9.0/x86_64

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

Last lines of build log:
[  118s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  118s]  #include 
[  118s]  ^
[  118s] compilation terminated.
[  118s] Makefile:505: recipe for target 'a_iface.o' failed
[  118s] make[4]: *** [a_iface.o] Error 1
[  118s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  118s] Makefile:422: recipe for target 'all-recursive' failed
[  118s] make[3]: *** [all-recursive] Error 1
[  118s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  118s] Makefile:458: recipe for target 'all-recursive' failed
[  118s] make[2]: *** [all-recursive] Error 1
[  118s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  118s] Makefile:390: recipe for target 'all' failed
[  118s] make[1]: *** [all] Error 2
[  118s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  118s] dh_auto_build: make -j1 returned exit code 2
[  118s] debian/rules:45: recipe for target 'build' failed
[  118s] make: *** [build] Error 2
[  118s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  118s] 
[  118s] cloud109 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:36:41 UTC 2017.
[  118s] 
[  118s] ### VM INTERACTION START ###
[  121s] [   99.030333] reboot: Power down
[  129s] ### VM INTERACTION END ###
[  129s] 
[  129s] cloud109 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:36:53 UTC 2017.
[  129s] 

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


Build failure of network:osmocom:nightly/osmo-msc in xUbuntu_16.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-msc/xUbuntu_16.04/i586

Package network:osmocom:nightly/osmo-msc failed to build in xUbuntu_16.04/i586

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

Last lines of build log:
[  126s] Making all in libmsc
[  126s] make[4]: Entering directory '/usr/src/packages/BUILD/src/libmsc'
[  126s] gcc -DHAVE_CONFIG_H -I. -I../..   -I../../include -I../..  -Wdate-time 
-D_FORTIFY_SOURCE=2 -Wall -I/usr/include/ -I/usr/include/ -I/usr/include/   
-I/usr/include/ -I/usr/include/ -I/usr/include/asn1c -I/usr/include/  -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -Werror=implicit 
-Werror=maybe-uninitialized -Werror=memset-transposed-args 
-Werror=sizeof-array-argument -Werror=sizeof-pointer-memaccess -c -o a_iface.o 
a_iface.c
[  126s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  126s] compilation terminated.
[  126s] Makefile:505: recipe for target 'a_iface.o' failed
[  126s] make[4]: *** [a_iface.o] Error 1
[  126s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  126s] Makefile:422: recipe for target 'all-recursive' failed
[  126s] make[3]: *** [all-recursive] Error 1
[  126s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  126s] Makefile:458: recipe for target 'all-recursive' failed
[  126s] make[2]: *** [all-recursive] Error 1
[  126s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  126s] Makefile:390: recipe for target 'all' failed
[  126s] make[1]: *** [all] Error 2
[  126s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  126s] dh_auto_build: make -j1 returned exit code 2
[  126s] debian/rules:45: recipe for target 'build' failed
[  126s] make: *** [build] Error 2
[  126s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  126s] 
[  126s] cloud109 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:36:26 UTC 2017.
[  126s] 
[  126s] ### VM INTERACTION START ###
[  129s] [  113.977270] reboot: Power down
[  130s] ### VM INTERACTION END ###
[  130s] 
[  130s] cloud109 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:36:30 UTC 2017.

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


Build failure of network:osmocom:nightly/osmo-msc in xUbuntu_16.10/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-msc/xUbuntu_16.10/x86_64

Package network:osmocom:nightly/osmo-msc failed to build in xUbuntu_16.10/x86_64

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

Last lines of build log:
[   76s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   76s]  #include 
[   76s]  ^
[   76s] compilation terminated.
[   76s] Makefile:505: recipe for target 'a_iface.o' failed
[   76s] make[4]: *** [a_iface.o] Error 1
[   76s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   76s] Makefile:422: recipe for target 'all-recursive' failed
[   76s] make[3]: *** [all-recursive] Error 1
[   76s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   76s] Makefile:458: recipe for target 'all-recursive' failed
[   76s] make[2]: *** [all-recursive] Error 1
[   76s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   76s] Makefile:390: recipe for target 'all' failed
[   76s] make[1]: *** [all] Error 2
[   76s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   76s] dh_auto_build: make -j1 returned exit code 2
[   76s] debian/rules:45: recipe for target 'build' failed
[   76s] make: *** [build] Error 2
[   76s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   76s] 
[   76s] lamb54 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:33:52 UTC 2017.
[   76s] 
[   76s] ### VM INTERACTION START ###
[   79s] [   72.112881] reboot: Power down
[   79s] ### VM INTERACTION END ###
[   79s] 
[   79s] lamb54 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:33:56 UTC 2017.
[   79s] 

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


Build failure of network:osmocom:nightly/osmo-msc in Debian_8.0/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-msc/Debian_8.0/i586

Package network:osmocom:nightly/osmo-msc failed to build in Debian_8.0/i586

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

Last lines of build log:
[  122s]  #include 
[  122s]  ^
[  122s] compilation terminated.
[  122s] Makefile:493: recipe for target 'a_iface.o' failed
[  122s] make[4]: *** [a_iface.o] Error 1
[  122s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  122s] Makefile:410: recipe for target 'all-recursive' failed
[  122s] make[3]: *** [all-recursive] Error 1
[  122s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  122s] Makefile:446: recipe for target 'all-recursive' failed
[  122s] make[2]: *** [all-recursive] Error 1
[  122s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  122s] Makefile:377: recipe for target 'all' failed
[  122s] make[1]: *** [all] Error 2
[  122s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  122s] dh_auto_build: make -j1 returned exit code 2
[  122s] debian/rules:45: recipe for target 'build' failed
[  122s] make: *** [build] Error 2
[  122s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  122s] 
[  122s] cloud103 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:31:30 UTC 2017.
[  122s] 
[  122s] ### VM INTERACTION START ###
[  123s] Powering off.
[  123s] [  103.896223] reboot: Power down
[  128s] ### VM INTERACTION END ###
[  129s] 
[  129s] cloud103 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:31:37 UTC 2017.
[  129s] 

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


Build failure of network:osmocom:nightly/osmo-msc in xUbuntu_17.10/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-msc/xUbuntu_17.10/x86_64

Package network:osmocom:nightly/osmo-msc failed to build in xUbuntu_17.10/x86_64

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

Last lines of build log:
[   44s] a_iface.c:39:10: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   44s]  #include 
[   44s]   ^~~
[   44s] compilation terminated.
[   44s] Makefile:505: recipe for target 'a_iface.o' failed
[   44s] make[4]: *** [a_iface.o] Error 1
[   44s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   44s] Makefile:422: recipe for target 'all-recursive' failed
[   44s] make[3]: *** [all-recursive] Error 1
[   44s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   44s] Makefile:458: recipe for target 'all-recursive' failed
[   44s] make[2]: *** [all-recursive] Error 1
[   44s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   44s] Makefile:390: recipe for target 'all' failed
[   44s] make[1]: *** [all] Error 2
[   44s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   44s] dh_auto_build: make -j1 returned exit code 2
[   44s] debian/rules:45: recipe for target 'build' failed
[   44s] make: *** [build] Error 2
[   44s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   44s] 
[   44s] build81 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:30:59 UTC 2017.
[   44s] 
[   44s] ### VM INTERACTION START ###
[   47s] [   42.842785] reboot: Power down
[   48s] ### VM INTERACTION END ###
[   48s] 
[   48s] build81 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:31:03 UTC 2017.
[   48s] 

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


Build failure of network:osmocom:nightly/osmo-msc in Debian_8.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-msc/Debian_8.0/x86_64

Package network:osmocom:nightly/osmo-msc failed to build in Debian_8.0/x86_64

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

Last lines of build log:
[   76s]  #include 
[   76s]  ^
[   76s] compilation terminated.
[   76s] Makefile:493: recipe for target 'a_iface.o' failed
[   76s] make[4]: *** [a_iface.o] Error 1
[   76s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   76s] Makefile:410: recipe for target 'all-recursive' failed
[   76s] make[3]: *** [all-recursive] Error 1
[   76s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   76s] Makefile:446: recipe for target 'all-recursive' failed
[   76s] make[2]: *** [all-recursive] Error 1
[   76s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   76s] Makefile:377: recipe for target 'all' failed
[   76s] make[1]: *** [all] Error 2
[   76s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   76s] dh_auto_build: make -j1 returned exit code 2
[   76s] debian/rules:45: recipe for target 'build' failed
[   76s] make: *** [build] Error 2
[   76s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   76s] 
[   76s] build79 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:30:06 UTC 2017.
[   76s] 
[   76s] ### VM INTERACTION START ###
[   77s] Powering off.
[   77s] [   68.176446] reboot: Power down
[   78s] ### VM INTERACTION END ###
[   78s] 
[   78s] build79 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:30:08 UTC 2017.
[   78s] 

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


Build failure of network:osmocom:nightly/osmo-msc in xUbuntu_16.10/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-msc/xUbuntu_16.10/i586

Package network:osmocom:nightly/osmo-msc failed to build in xUbuntu_16.10/i586

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

Last lines of build log:
[   64s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[   64s]  #include 
[   64s]  ^
[   64s] compilation terminated.
[   64s] Makefile:505: recipe for target 'a_iface.o' failed
[   64s] make[4]: *** [a_iface.o] Error 1
[   64s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[   64s] Makefile:422: recipe for target 'all-recursive' failed
[   64s] make[3]: *** [all-recursive] Error 1
[   64s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[   64s] Makefile:458: recipe for target 'all-recursive' failed
[   64s] make[2]: *** [all-recursive] Error 1
[   64s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[   64s] Makefile:390: recipe for target 'all' failed
[   64s] make[1]: *** [all] Error 2
[   64s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   64s] dh_auto_build: make -j1 returned exit code 2
[   64s] debian/rules:45: recipe for target 'build' failed
[   64s] make: *** [build] Error 2
[   64s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   64s] 
[   64s] build84 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:28:38 UTC 2017.
[   64s] 
[   64s] ### VM INTERACTION START ###
[   67s] [   61.156795] reboot: Power down
[   68s] ### VM INTERACTION END ###
[   68s] 
[   68s] build84 failed "build osmo-msc_1.1.1.20171028.dsc" at Sat Oct 28 
20:28:42 UTC 2017.
[   68s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_17.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_17.04/x86_64

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_17.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  113s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  113s]  #include 
[  113s]  ^
[  113s] compilation terminated.
[  113s] Makefile:505: recipe for target 'a_iface.o' failed
[  113s] make[4]: *** [a_iface.o] Error 1
[  113s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  113s] Makefile:422: recipe for target 'all-recursive' failed
[  113s] make[3]: *** [all-recursive] Error 1
[  113s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  113s] Makefile:458: recipe for target 'all-recursive' failed
[  113s] make[2]: *** [all-recursive] Error 1
[  113s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  113s] Makefile:390: recipe for target 'all' failed
[  113s] make[1]: *** [all] Error 2
[  113s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  113s] dh_auto_build: make -j1 returned exit code 2
[  113s] debian/rules:45: recipe for target 'build' failed
[  113s] make: *** [build] Error 2
[  113s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  113s] 
[  113s] cloud127 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 20:17:44 UTC 
2017.
[  113s] 
[  113s] ### VM INTERACTION START ###
[  116s] [   90.366136] reboot: Power down
[  118s] ### VM INTERACTION END ###
[  118s] 
[  118s] cloud127 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 20:17:50 UTC 
2017.
[  118s] 

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


Build failure of network:osmocom:latest/osmo-msc in xUbuntu_16.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/osmo-msc/xUbuntu_16.04/i586

Package network:osmocom:latest/osmo-msc failed to build in xUbuntu_16.04/i586

Check out the package for editing:
  osc checkout network:osmocom:latest osmo-msc

Last lines of build log:
[  146s] make[4]: Entering directory '/usr/src/packages/BUILD/src/libmsc'
[  146s] gcc -DHAVE_CONFIG_H -I. -I../..   -I../../include -I../..  -Wdate-time 
-D_FORTIFY_SOURCE=2 -Wall -I/usr/include/ -I/usr/include/ -I/usr/include/   
-I/usr/include/ -I/usr/include/ -I/usr/include/asn1c -I/usr/include/  -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -Werror=implicit 
-Werror=maybe-uninitialized -Werror=memset-transposed-args 
-Werror=sizeof-array-argument -Werror=sizeof-pointer-memaccess -c -o a_iface.o 
a_iface.c
[  146s] a_iface.c:39:37: fatal error: osmocom/sccp/sccp_types.h: No such file 
or directory
[  146s] compilation terminated.
[  146s] Makefile:505: recipe for target 'a_iface.o' failed
[  146s] make[4]: *** [a_iface.o] Error 1
[  146s] make[4]: Leaving directory '/usr/src/packages/BUILD/src/libmsc'
[  146s] Makefile:422: recipe for target 'all-recursive' failed
[  146s] make[3]: *** [all-recursive] Error 1
[  146s] make[3]: Leaving directory '/usr/src/packages/BUILD/src'
[  146s] Makefile:458: recipe for target 'all-recursive' failed
[  146s] make[2]: *** [all-recursive] Error 1
[  146s] make[2]: Leaving directory '/usr/src/packages/BUILD'
[  146s] Makefile:390: recipe for target 'all' failed
[  146s] make[1]: *** [all] Error 2
[  146s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  146s] dh_auto_build: make -j1 returned exit code 2
[  146s] debian/rules:45: recipe for target 'build' failed
[  146s] make: *** [build] Error 2
[  146s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  146s] 
[  146s] lamb51 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 20:17:48 UTC 
2017.
[  146s] 
[  146s] ### VM INTERACTION START ###
[  149s] [  141.738581] reboot: Power down
[  149s] ### VM INTERACTION END ###
[  149s] 
[  149s] lamb51 failed "build osmo-msc_1.1.1.dsc" at Sat Oct 28 20:17:52 UTC 
2017.
[  149s] 

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


Build failure of network:osmocom:nightly/osmo-pcu in Debian_9.0/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/Debian_9.0/i586

Package network:osmocom:nightly/osmo-pcu failed to build in Debian_9.0/i586

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

Last lines of build log:
[  223s]To: 
[  223s]Subject: [osmo-pcu 0.3.0.20171028] testsuite: 2 3 5 6 7 8 11 failed
[  223s] 
[  223s] You may investigate any problem if you feel able to do so, in which
[  223s] case the test suite provides a good starting point.  Its output may
[  223s] be found below `tests/testsuite.dir'.
[  223s] 
[  223s] Makefile:1221: recipe for target 'check-local' failed
[  223s] make[3]: *** [check-local] Error 1
[  223s] make[3]: Leaving directory '/usr/src/packages/BUILD/tests'
[  223s] Makefile:1055: recipe for target 'check-am' failed
[  223s] make[2]: *** [check-am] Error 2
[  223s] make[2]: Leaving directory '/usr/src/packages/BUILD/tests'
[  223s] Makefile:460: recipe for target 'check-recursive' failed
[  223s] make[1]: *** [check-recursive] Error 1
[  223s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  223s] dh_auto_test: make -j1 check VERBOSE=1 returned exit code 2
[  223s] debian/rules:12: recipe for target 'build' failed
[  223s] make: *** [build] Error 2
[  223s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  224s] 
[  224s] cloud112 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:18:18 UTC 2017.
[  224s] 
[  224s] ### VM INTERACTION START ###
[  227s] [  194.147444] reboot: Power down
[  228s] ### VM INTERACTION END ###
[  228s] 
[  228s] cloud112 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:18:23 UTC 2017.
[  228s] 

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


Build failure of network:osmocom:nightly/osmo-pcu in xUbuntu_16.10/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/xUbuntu_16.10/i586

Package network:osmocom:nightly/osmo-pcu failed to build in xUbuntu_16.10/i586

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

Last lines of build log:
[  195s]To: 
[  195s]Subject: [osmo-pcu 0.3.0.20171028] testsuite: 2 3 5 6 7 8 11 failed
[  195s] 
[  195s] You may investigate any problem if you feel able to do so, in which
[  195s] case the test suite provides a good starting point.  Its output may
[  195s] be found below `tests/testsuite.dir'.
[  195s] 
[  195s] Makefile:1221: recipe for target 'check-local' failed
[  195s] make[3]: *** [check-local] Error 1
[  195s] make[3]: Leaving directory '/usr/src/packages/BUILD/tests'
[  195s] Makefile:1055: recipe for target 'check-am' failed
[  195s] make[2]: *** [check-am] Error 2
[  195s] make[2]: Leaving directory '/usr/src/packages/BUILD/tests'
[  195s] Makefile:460: recipe for target 'check-recursive' failed
[  195s] make[1]: *** [check-recursive] Error 1
[  195s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  195s] dh_auto_test: make -j1 check VERBOSE=1 returned exit code 2
[  195s] debian/rules:12: recipe for target 'build' failed
[  195s] make: *** [build] Error 2
[  195s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  195s] 
[  195s] lamb26 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:24 UTC 2017.
[  195s] 
[  195s] ### VM INTERACTION START ###
[  198s] [  190.479435] reboot: Power down
[  198s] ### VM INTERACTION END ###
[  198s] 
[  198s] lamb26 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:28 UTC 2017.
[  198s] 

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


Build failure of network:osmocom:nightly/osmo-pcu in xUbuntu_16.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/xUbuntu_16.04/x86_64

Package network:osmocom:nightly/osmo-pcu failed to build in xUbuntu_16.04/x86_64

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

Last lines of build log:
[  127s]To: 
[  127s]Subject: [osmo-pcu 0.3.0.20171028] testsuite: 2 3 5 6 7 8 11 failed
[  127s] 
[  127s] You may investigate any problem if you feel able to do so, in which
[  127s] case the test suite provides a good starting point.  Its output may
[  127s] be found below `tests/testsuite.dir'.
[  127s] 
[  127s] Makefile:1221: recipe for target 'check-local' failed
[  127s] make[3]: *** [check-local] Error 1
[  127s] make[3]: Leaving directory '/usr/src/packages/BUILD/tests'
[  127s] Makefile:1055: recipe for target 'check-am' failed
[  127s] make[2]: *** [check-am] Error 2
[  127s] make[2]: Leaving directory '/usr/src/packages/BUILD/tests'
[  127s] Makefile:460: recipe for target 'check-recursive' failed
[  127s] make[1]: *** [check-recursive] Error 1
[  127s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  127s] dh_auto_test: make -j1 check returned exit code 2
[  127s] debian/rules:12: recipe for target 'build' failed
[  127s] make: *** [build] Error 2
[  127s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  127s] 
[  127s] build74 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:24 UTC 2017.
[  127s] 
[  127s] ### VM INTERACTION START ###
[  130s] [  123.653677] reboot: Power down
[  131s] ### VM INTERACTION END ###
[  131s] 
[  131s] build74 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:29 UTC 2017.
[  131s] 

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


Build failure of network:osmocom:nightly/osmo-pcu in Debian_9.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/Debian_9.0/x86_64

Package network:osmocom:nightly/osmo-pcu failed to build in Debian_9.0/x86_64

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

Last lines of build log:
[  157s]To: 
[  157s]Subject: [osmo-pcu 0.3.0.20171028] testsuite: 2 3 5 6 7 8 11 failed
[  157s] 
[  157s] You may investigate any problem if you feel able to do so, in which
[  157s] case the test suite provides a good starting point.  Its output may
[  157s] be found below `tests/testsuite.dir'.
[  157s] 
[  157s] Makefile:1221: recipe for target 'check-local' failed
[  157s] make[3]: *** [check-local] Error 1
[  157s] make[3]: Leaving directory '/usr/src/packages/BUILD/tests'
[  157s] Makefile:1055: recipe for target 'check-am' failed
[  157s] make[2]: *** [check-am] Error 2
[  157s] make[2]: Leaving directory '/usr/src/packages/BUILD/tests'
[  157s] Makefile:460: recipe for target 'check-recursive' failed
[  157s] make[1]: *** [check-recursive] Error 1
[  157s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  157s] dh_auto_test: make -j1 check VERBOSE=1 returned exit code 2
[  157s] debian/rules:12: recipe for target 'build' failed
[  157s] make: *** [build] Error 2
[  157s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  157s] 
[  157s] lamb09 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:16 UTC 2017.
[  157s] 
[  157s] ### VM INTERACTION START ###
[  160s] [  152.724796] reboot: Power down
[  160s] ### VM INTERACTION END ###
[  160s] 
[  160s] lamb09 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:19 UTC 2017.
[  160s] 

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


Build failure of network:osmocom:nightly/osmo-pcu in xUbuntu_16.10/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/xUbuntu_16.10/x86_64

Package network:osmocom:nightly/osmo-pcu failed to build in xUbuntu_16.10/x86_64

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

Last lines of build log:
[  145s]To: 
[  145s]Subject: [osmo-pcu 0.3.0.20171028] testsuite: 2 3 5 6 7 8 11 failed
[  145s] 
[  145s] You may investigate any problem if you feel able to do so, in which
[  145s] case the test suite provides a good starting point.  Its output may
[  145s] be found below `tests/testsuite.dir'.
[  145s] 
[  145s] Makefile:1221: recipe for target 'check-local' failed
[  145s] make[3]: *** [check-local] Error 1
[  145s] make[3]: Leaving directory '/usr/src/packages/BUILD/tests'
[  145s] Makefile:1055: recipe for target 'check-am' failed
[  145s] make[2]: *** [check-am] Error 2
[  145s] make[2]: Leaving directory '/usr/src/packages/BUILD/tests'
[  145s] Makefile:460: recipe for target 'check-recursive' failed
[  145s] make[1]: *** [check-recursive] Error 1
[  145s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  145s] dh_auto_test: make -j1 check VERBOSE=1 returned exit code 2
[  145s] debian/rules:12: recipe for target 'build' failed
[  145s] make: *** [build] Error 2
[  145s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  145s] 
[  145s] lamb19 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:16 UTC 2017.
[  145s] 
[  145s] ### VM INTERACTION START ###
[  148s] [  141.490824] reboot: Power down
[  148s] ### VM INTERACTION END ###
[  148s] 
[  148s] lamb19 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:20 UTC 2017.
[  148s] 

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


Build failure of network:osmocom:nightly/osmo-pcu in xUbuntu_17.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/xUbuntu_17.04/x86_64

Package network:osmocom:nightly/osmo-pcu failed to build in xUbuntu_17.04/x86_64

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

Last lines of build log:
[  136s]To: 
[  136s]Subject: [osmo-pcu 0.3.0.20171028] testsuite: 2 3 5 6 7 8 11 failed
[  136s] 
[  136s] You may investigate any problem if you feel able to do so, in which
[  136s] case the test suite provides a good starting point.  Its output may
[  136s] be found below `tests/testsuite.dir'.
[  136s] 
[  136s] Makefile:1221: recipe for target 'check-local' failed
[  136s] make[3]: *** [check-local] Error 1
[  136s] make[3]: Leaving directory '/usr/src/packages/BUILD/tests'
[  136s] Makefile:1055: recipe for target 'check-am' failed
[  136s] make[2]: *** [check-am] Error 2
[  136s] make[2]: Leaving directory '/usr/src/packages/BUILD/tests'
[  136s] Makefile:460: recipe for target 'check-recursive' failed
[  136s] make[1]: *** [check-recursive] Error 1
[  136s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  136s] dh_auto_test: make -j1 check VERBOSE=1 returned exit code 2
[  136s] debian/rules:12: recipe for target 'build' failed
[  136s] make: *** [build] Error 2
[  136s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  136s] 
[  136s] lamb65 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:28 UTC 2017.
[  136s] 
[  136s] ### VM INTERACTION START ###
[  140s] [  132.269252] reboot: Power down
[  140s] ### VM INTERACTION END ###
[  140s] 
[  140s] lamb65 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:32 UTC 2017.
[  140s] 

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


Build failure of network:osmocom:nightly/osmo-pcu in xUbuntu_16.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/xUbuntu_16.04/i586

Package network:osmocom:nightly/osmo-pcu failed to build in xUbuntu_16.04/i586

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

Last lines of build log:
[  160s]To: 
[  160s]Subject: [osmo-pcu 0.3.0.20171028] testsuite: 2 3 5 6 7 8 11 failed
[  160s] 
[  160s] You may investigate any problem if you feel able to do so, in which
[  160s] case the test suite provides a good starting point.  Its output may
[  160s] be found below `tests/testsuite.dir'.
[  160s] 
[  160s] Makefile:1221: recipe for target 'check-local' failed
[  160s] make[3]: *** [check-local] Error 1
[  160s] make[3]: Leaving directory '/usr/src/packages/BUILD/tests'
[  160s] Makefile:1055: recipe for target 'check-am' failed
[  160s] make[2]: *** [check-am] Error 2
[  160s] make[2]: Leaving directory '/usr/src/packages/BUILD/tests'
[  160s] Makefile:460: recipe for target 'check-recursive' failed
[  160s] make[1]: *** [check-recursive] Error 1
[  160s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  160s] dh_auto_test: make -j1 check returned exit code 2
[  160s] debian/rules:12: recipe for target 'build' failed
[  160s] make: *** [build] Error 2
[  161s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  161s] 
[  161s] lamb55 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:23 UTC 2017.
[  161s] 
[  161s] ### VM INTERACTION START ###
[  164s] [  157.041188] reboot: Power down
[  164s] ### VM INTERACTION END ###
[  164s] 
[  164s] lamb55 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:17:27 UTC 2017.
[  164s] 

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


Build failure of network:osmocom:nightly/osmo-pcu in xUbuntu_17.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/xUbuntu_17.04/i586

Package network:osmocom:nightly/osmo-pcu failed to build in xUbuntu_17.04/i586

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

Last lines of build log:
[  149s]To: 
[  149s]Subject: [osmo-pcu 0.3.0.20171028] testsuite: 2 3 5 6 7 8 11 failed
[  149s] 
[  149s] You may investigate any problem if you feel able to do so, in which
[  149s] case the test suite provides a good starting point.  Its output may
[  149s] be found below `tests/testsuite.dir'.
[  149s] 
[  149s] Makefile:1221: recipe for target 'check-local' failed
[  149s] make[3]: *** [check-local] Error 1
[  149s] make[3]: Leaving directory '/usr/src/packages/BUILD/tests'
[  149s] Makefile:1055: recipe for target 'check-am' failed
[  149s] make[2]: *** [check-am] Error 2
[  149s] make[2]: Leaving directory '/usr/src/packages/BUILD/tests'
[  149s] Makefile:460: recipe for target 'check-recursive' failed
[  149s] make[1]: *** [check-recursive] Error 1
[  149s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  149s] dh_auto_test: make -j1 check VERBOSE=1 returned exit code 2
[  149s] debian/rules:12: recipe for target 'build' failed
[  149s] make: *** [build] Error 2
[  149s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  149s] 
[  149s] lamb60 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:16:42 UTC 2017.
[  149s] 
[  149s] ### VM INTERACTION START ###
[  152s] [  144.160176] reboot: Power down
[  152s] ### VM INTERACTION END ###
[  152s] 
[  152s] lamb60 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
20:16:46 UTC 2017.
[  152s] 

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


osmo-trx[master]: Tag/Release 0.2.0

2017-10-28 Thread Harald Welte

Patch Set 1: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4548
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ibf3be6cc25e9b20d625b1f67972114b7f613f05c
Gerrit-PatchSet: 1
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


[MERGED] osmo-trx[master]: Import git-version-gen and update AC_INIT()

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: Import git-version-gen and update AC_INIT()
..


Import git-version-gen and update AC_INIT()

In AC_INIT(), it still stated openbts.  Let's clean this up and use
the same method of version generation that we use in all other osmocom
projects, too.

Change-Id: Ie7ae0585955aebdc3950b1dd8bff0d1fff3be212
---
M configure.ac
A git-version-gen
2 files changed, 154 insertions(+), 1 deletion(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/configure.ac b/configure.ac
index 43b5403..6e59fa2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -18,7 +18,9 @@
 dnl along with this program.  If not, see .
 dnl
 
-AC_INIT(openbts,P2.8TRUNK)
+AC_INIT([osmo-trx],
+   m4_esyscmd([./git-version-gen .tarball-veresion]),
+   [open...@lists.osmocom.org])
 AC_PREREQ(2.57)
 AC_CONFIG_SRCDIR([Transceiver52M/Makefile.am])
 AC_CONFIG_AUX_DIR([.]) 
diff --git a/git-version-gen b/git-version-gen
new file mode 100755
index 000..42cf3d2
--- /dev/null
+++ b/git-version-gen
@@ -0,0 +1,151 @@
+#!/bin/sh
+# Print a version string.
+scriptversion=2010-01-28.01
+
+# Copyright (C) 2007-2010 Free Software Foundation, Inc.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see .
+
+# This script is derived from GIT-VERSION-GEN from GIT: http://git.or.cz/.
+# It may be run two ways:
+# - from a git repository in which the "git describe" command below
+#   produces useful output (thus requiring at least one signed tag)
+# - from a non-git-repo directory containing a .tarball-version file, which
+#   presumes this script is invoked like "./git-version-gen .tarball-version".
+
+# In order to use intra-version strings in your project, you will need two
+# separate generated version string files:
+#
+# .tarball-version - present only in a distribution tarball, and not in
+#   a checked-out repository.  Created with contents that were learned at
+#   the last time autoconf was run, and used by git-version-gen.  Must not
+#   be present in either $(srcdir) or $(builddir) for git-version-gen to
+#   give accurate answers during normal development with a checked out tree,
+#   but must be present in a tarball when there is no version control system.
+#   Therefore, it cannot be used in any dependencies.  GNUmakefile has
+#   hooks to force a reconfigure at distribution time to get the value
+#   correct, without penalizing normal development with extra reconfigures.
+#
+# .version - present in a checked-out repository and in a distribution
+#   tarball.  Usable in dependencies, particularly for files that don't
+#   want to depend on config.h but do want to track version changes.
+#   Delete this file prior to any autoconf run where you want to rebuild
+#   files to pick up a version string change; and leave it stale to
+#   minimize rebuild time after unrelated changes to configure sources.
+#
+# It is probably wise to add these two files to .gitignore, so that you
+# don't accidentally commit either generated file.
+#
+# Use the following line in your configure.ac, so that $(VERSION) will
+# automatically be up-to-date each time configure is run (and note that
+# since configure.ac no longer includes a version string, Makefile rules
+# should not depend on configure.ac for version updates).
+#
+# AC_INIT([GNU project],
+# m4_esyscmd([build-aux/git-version-gen .tarball-version]),
+# [bug-project@example])
+#
+# Then use the following lines in your Makefile.am, so that .version
+# will be present for dependencies, and so that .tarball-version will
+# exist in distribution tarballs.
+#
+# BUILT_SOURCES = $(top_srcdir)/.version
+# $(top_srcdir)/.version:
+#  echo $(VERSION) > $@-t && mv $@-t $@
+# dist-hook:
+#  echo $(VERSION) > $(distdir)/.tarball-version
+
+case $# in
+1) ;;
+*) echo 1>&2 "Usage: $0 \$srcdir/.tarball-version"; exit 1;;
+esac
+
+tarball_version_file=$1
+nl='
+'
+
+# First see if there is a tarball-only version file.
+# then try "git describe", then default.
+if test -f $tarball_version_file
+then
+v=`cat $tarball_version_file` || exit 1
+case $v in
+   *$nl*) v= ;; # reject multi-line output
+   [0-9]*) ;;
+   *) v= ;;
+esac
+test -z "$v" \
+   && echo "$0: WARNING: 

Build failure of network:osmocom:nightly/osmo-bsc in Debian_9.0/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-bsc/Debian_9.0/x86_64

Package network:osmocom:nightly/osmo-bsc failed to build in Debian_9.0/x86_64

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

Last lines of build log:
[   87s] #define HAVE_SYS_TYPES_H 1
[   87s] #define HAVE_SYS_STAT_H 1
[   87s] #define HAVE_STDLIB_H 1
[   87s] #define HAVE_STRING_H 1
[   87s] #define HAVE_MEMORY_H 1
[   87s] #define HAVE_STRINGS_H 1
[   87s] #define HAVE_INTTYPES_H 1
[   87s] #define HAVE_STDINT_H 1
[   87s] #define HAVE_UNISTD_H 1
[   87s] #define HAVE_DLFCN_H 1
[   87s] #define LT_OBJDIR ".libs/"
[   87s] 
[   87s] configure: exit 1
[   87s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   87s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   87s] make[1]: *** [override_dh_auto_configure] Error 2
[   87s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   87s] debian/rules:45: recipe for target 'build' failed
[   87s] make: *** [build] Error 2
[   87s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   87s] 
[   87s] lamb28 failed "build osmo-bsc_1.1.0.20171028.dsc" at Sat Oct 28 
20:08:02 UTC 2017.
[   87s] 
[   87s] ### VM INTERACTION START ###
[   91s] [   83.433125] reboot: Power down
[   91s] ### VM INTERACTION END ###
[   91s] 
[   91s] lamb28 failed "build osmo-bsc_1.1.0.20171028.dsc" at Sat Oct 28 
20:08:05 UTC 2017.
[   91s] 

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


Build failure of network:osmocom:nightly/osmo-bsc in xUbuntu_16.04/x86_64

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-bsc/xUbuntu_16.04/x86_64

Package network:osmocom:nightly/osmo-bsc failed to build in xUbuntu_16.04/x86_64

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

Last lines of build log:
[   93s] #define HAVE_SYS_TYPES_H 1
[   93s] #define HAVE_SYS_STAT_H 1
[   93s] #define HAVE_STDLIB_H 1
[   93s] #define HAVE_STRING_H 1
[   93s] #define HAVE_MEMORY_H 1
[   93s] #define HAVE_STRINGS_H 1
[   93s] #define HAVE_INTTYPES_H 1
[   93s] #define HAVE_STDINT_H 1
[   93s] #define HAVE_UNISTD_H 1
[   93s] #define HAVE_DLFCN_H 1
[   93s] #define LT_OBJDIR ".libs/"
[   93s] 
[   93s] configure: exit 1
[   93s] dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu 
--libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   93s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   93s] make[1]: *** [override_dh_auto_configure] Error 255
[   93s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   93s] debian/rules:45: recipe for target 'build' failed
[   93s] make: *** [build] Error 2
[   93s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   93s] 
[   93s] lamb59 failed "build osmo-bsc_1.1.0.20171028.dsc" at Sat Oct 28 
20:08:01 UTC 2017.
[   93s] 
[   93s] ### VM INTERACTION START ###
[   96s] [   89.587120] reboot: Power down
[   97s] ### VM INTERACTION END ###
[   97s] 
[   97s] lamb59 failed "build osmo-bsc_1.1.0.20171028.dsc" at Sat Oct 28 
20:08:05 UTC 2017.
[   97s] 

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


Build failure of network:osmocom:nightly/osmo-bsc in xUbuntu_16.10/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-bsc/xUbuntu_16.10/i586

Package network:osmocom:nightly/osmo-bsc failed to build in xUbuntu_16.10/i586

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

Last lines of build log:
[   97s] #define HAVE_SYS_TYPES_H 1
[   97s] #define HAVE_SYS_STAT_H 1
[   97s] #define HAVE_STDLIB_H 1
[   97s] #define HAVE_STRING_H 1
[   97s] #define HAVE_MEMORY_H 1
[   97s] #define HAVE_STRINGS_H 1
[   97s] #define HAVE_INTTYPES_H 1
[   97s] #define HAVE_STDINT_H 1
[   97s] #define HAVE_UNISTD_H 1
[   97s] #define HAVE_DLFCN_H 1
[   97s] #define LT_OBJDIR ".libs/"
[   97s] 
[   97s] configure: exit 1
[   97s] dh_auto_configure: ./configure --build=i686-linux-gnu --prefix=/usr 
--includedir=${prefix}/include --mandir=${prefix}/share/man 
--infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-silent-rules --libdir=${prefix}/lib/i386-linux-gnu 
--libexecdir=${prefix}/lib/i386-linux-gnu --disable-maintainer-mode 
--disable-dependency-tracking returned exit code 1
[   97s] debian/rules:48: recipe for target 'override_dh_auto_configure' failed
[   97s] make[1]: *** [override_dh_auto_configure] Error 2
[   97s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   97s] debian/rules:45: recipe for target 'build' failed
[   97s] make: *** [build] Error 2
[   97s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[   97s] 
[   97s] cloud129 failed "build osmo-bsc_1.1.0.20171028.dsc" at Sat Oct 28 
20:07:25 UTC 2017.
[   97s] 
[   97s] ### VM INTERACTION START ###
[  100s] [   83.958891] reboot: Power down
[  100s] ### VM INTERACTION END ###
[  101s] 
[  101s] cloud129 failed "build osmo-bsc_1.1.0.20171028.dsc" at Sat Oct 28 
20:07:30 UTC 2017.
[  101s] 

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


Build failure of network:osmocom:nightly/osmo-pcu in xUbuntu_16.04/i586

2017-10-28 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/osmo-pcu/xUbuntu_16.04/i586

Package network:osmocom:nightly/osmo-pcu failed to build in xUbuntu_16.04/i586

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

Last lines of build log:
[  127s]To: 
[  127s]Subject: [osmo-pcu 0.3.0.20171028] testsuite: 2 3 5 6 7 8 11 failed
[  127s] 
[  127s] You may investigate any problem if you feel able to do so, in which
[  127s] case the test suite provides a good starting point.  Its output may
[  127s] be found below `tests/testsuite.dir'.
[  127s] 
[  127s] Makefile:1221: recipe for target 'check-local' failed
[  127s] make[3]: *** [check-local] Error 1
[  127s] make[3]: Leaving directory '/usr/src/packages/BUILD/tests'
[  127s] Makefile:1055: recipe for target 'check-am' failed
[  127s] make[2]: *** [check-am] Error 2
[  127s] make[2]: Leaving directory '/usr/src/packages/BUILD/tests'
[  127s] Makefile:460: recipe for target 'check-recursive' failed
[  127s] make[1]: *** [check-recursive] Error 1
[  127s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  127s] dh_auto_test: make -j1 check returned exit code 2
[  127s] debian/rules:12: recipe for target 'build' failed
[  127s] make: *** [build] Error 2
[  127s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  127s] 
[  127s] build85 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
19:56:50 UTC 2017.
[  127s] 
[  127s] ### VM INTERACTION START ###
[  131s] [  124.053288] reboot: Power down
[  131s] ### VM INTERACTION END ###
[  131s] 
[  131s] build85 failed "build osmo-pcu_0.3.0.20171028.dsc" at Sat Oct 28 
19:56:54 UTC 2017.
[  131s] 

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


[PATCH] openbsc[master]: Tag/Release Version 1.0.0

2017-10-28 Thread Harald Welte

Review at  https://gerrit.osmocom.org/4542

Tag/Release Version 1.0.0

This marks the first tagged source code revision after the repository
split and subsequent removal of GPRS related code.

Change-Id: I5d19269983c9281bf36a7279151891902eff0013
---
M debian/changelog
1 file changed, 955 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/openbsc refs/changes/42/4542/1

diff --git a/debian/changelog b/debian/changelog
index dd850be..08636ef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,958 @@
+openbsc (1.0.0) UNRELEASED; urgency=medium
+
+  [ Holger Hans Peter Freyther ]
+  * Revert "gprs: Use RAND_bytes for p-tmsi"
+  * sgsn: Fix pattern for too long msisdn
+  * osmux: Allow to listen to a specific address
+  * sgsn: Fix up the VTY doc strings
+  * stats/mgcp: Initialize the statistics for MGCP as well
+  * gbproxy: Count more GSM 04.08 messages
+  * gtp: Fix Makefile.am so maybe distcheck is now going to work
+  * gtphub: Fix the VTY prompt to make the tests move forward
+  * bsc/vty: Provide a hint of available input
+  * gtphub: Fix compilation using gcc5
+  * dahdi: The driver has moved to libosmo-abis
+  * gtphub: Make the two setter static as well
+  * db: Avoid undefined behavior when copying cm2/cm3 from the db
+  * gtphub: Fix use after free on failure
+  * gsm0408: Provide unique strings for the gsm 04.08 message
+  * msc: Remove oversimplified todo entry and add a comment
+  * meas: Do not retry to close the database
+  * mgcp: Fix compiler warnings on size_t on AMD64
+  * abis: Send the message without enforcing to wait for a response
+  * bsc: Add code to send ip.access reboot command to nanoBTS
+  * bsc: Add parameter to restart a bts
+  * subscr: Add testcase creating an already created subscriber
+  * subscr: Make db_create_subscriber fail on duplicates
+  * db: If creating a subscriber in the db fails, return NULL
+  * ctrl: Extend ctrl command to optionally handle alg+ki
+  * jenkins: Add the build script from jenkins here
+  * nat/vty: Don't assume one can magically add IPv4 addresses to lo
+  * nat/vty: Use different port for the mock MSC
+  * nat/vty: Convert into str for the VTY command
+  * nat/vty: And move to a different port..
+  * nat/vty: Remove second assumption about lo and binding
+  * nat/vty: Fix construct not working with python 2.6
+  * nat/vty: Do not print token update statement
+  * nat/ussd: Add an example of the USSD gateway side-channel
+  * debian: Make upgrading from debian SID easier
+  * filter/nat: Fix the context for the imsi assignment
+  * bsc: Create minimal SI6 rest octets
+  * ci: Attempt to disable doxygen warnings of dependencies
+  * lchan: Release channel in case of late activation ack
+  * ussd: Add band-aid for interrogationSS
+  * debian: Install header and source file to different directory
+  * debian: Require libgtp-dev after the SO version bump
+  * sgsn: Fix deeply flawed copying logic for PDP context activation
+  * sgsn: Fill the cch_pdp with a value coming from the tlv structure
+  * sgsn: Convert cch_pdp to host order for libgtp
+
+  [ Jacob Erlbeck ]
+  * sgsn/test: Add and call cleanup_test function
+  * sgsn/test: Really parse received DL LLC messages
+  * stats: Enable stats for sgsn, gbproxy, nitb, bsc, nat
+  * stats: Set class_id in rate_ctr group descriptions
+  * sgsn: Remove tlli_foreign2local
+  * sgsn/test: Add bssgp_raid parameter to send_0408_message
+  * sgsn: Make ra_id_equals available as gprs_ra_id_equals
+  * sgsn: Only look at TLLIs in sgsn_mm_ctx_by_tlli
+  * sgsn: Change handling of missing mmctx in gsm48_rx_gmm_ra_upd_req
+  * sgsn/test: Add test case test_gmm_routing_areas
+  * sgsn: Re-add searching for MM ctx based on TLLI / P-TMSI matches
+
+  [ Daniel Willmann ]
+  * gprs: Use RAND_bytes for p-tmsi
+  * gbproxy/test: Add and call cleanup_test function
+  * gprs/gb_proxy: Use RAND_bytes for gbproxy TLLI/TMSI allocation
+  * rename enum gprs_mm_state to gprs_gmm_state
+  * rename enum gprs_mm_state to gprs_gmm_state
+  * create_pdp_conf(): factor out PDP context accept dispatch as 
send_act_pdp_cont_acc()
+  * sgsn_mm_ctx_cleanup_free(): clean up LLME iff present (Gb, not Iu)
+  * gprs: more conditionals for Gb specific actions
+  * configure.ac: add --enable-iu with deps asn1c, ranap, sigtran
+  * add DRANAP debug constant
+  * add DSUA debug constant
+  * osmux: Add negotiation state so race conditions can't disable osmux
+  * gprs_gmm: Fix bit mask when determining update/attach type
+  * IuPS: track msg->dst aka ue_conn_ctx, comment
+  * IuPS: osmo-sgsn: add core IuPS impl, call iu_init()
+  * IuPS: redirect Iu in various places, link Iu in sgsn-test
+  * IuPS: add Iu response to create_pdp_conf()
+  * IuPS: add Iu response to delete_pdp_conf()
+  * IuPS: dev hack: init hardcoded Ki on ATT REQ
+  * IuPS: send Security Mode Command, track the new_key flag.
+  * IuPS: add GMM Service Request rx and tx
+  * IuPS: RA UPD: make sure to authorize, for Iu Integrity 

[MERGED] osmo-bts[master]: Tag/Release 0.7.0

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: Tag/Release 0.7.0
..


Tag/Release 0.7.0

This marks a new release that's compatible with libosmocore >= 0.10.0,
and which no longer depends on openbsc-dev.

Change-Id: I67405cb5f0f4dea85c67febfdef80f49ae1d41a6
---
M debian/changelog
1 file changed, 36 insertions(+), 0 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/debian/changelog b/debian/changelog
index 61c46c6..1f6e970 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,39 @@
+osmo-bts (0.7.0) unstable; urgency=medium
+
+  [ Max ]
+  * Use value string check from osmo-ci
+  * Support sending SI13 to PCU
+  * Support removing SI13 from PCU
+  * trx: avoid deactivating lchan on LCHAN_REL_ACT_REACT
+  * Check readv() return value to prevent crash
+  * OML: print actual type of report sent to BSC
+  * Replace dead code
+  * vty: print version and description for each phy
+  * Remove build dependency on legacy OpenBSC
+  * Fix multiple SI2q reception
+  * jenkins: remove openbsc dependency
+  * sysmo: use clock calibration source wrapper
+  * sysmo: don't override clock source with defaults
+  * Fix race condition in attribute reporting
+  * Move power loop to generic tests
+  * Make power test more verbose
+
+  [ Neels Hofmeyr ]
+  * vty: mgr: sysmobts, lc15: install default commands for ACT_NORM_NODE
+  * osmo-bts-trx: vty: various fixes of 'write file' and doc
+  * jenkins: use osmo-clean-workspace.sh before and after build
+
+  [ Pau Espin Pedrol ]
+  * l1sap: Improve log msg when frame diff >1
+  * vty: Print string for Administrative state
+
+  [ Harald Welte ]
+  * Fix Downlink AMR FSM name to avoid illegal space character
+  * update dependencies to latest libosmo-*
+  * configure.ac: Fix Mailing list address
+
+ -- Harald Welte   Sat, 28 Oct 2017 20:53:21 +0200
+
 osmo-bts (0.6.0) unstable; urgency=medium
 
   [ Holger Hans Peter Freyther ]

-- 
To view, visit https://gerrit.osmocom.org/4541
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I67405cb5f0f4dea85c67febfdef80f49ae1d41a6
Gerrit-PatchSet: 1
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder


[MERGED] osmo-bts[master]: configure.ac: Fix Mailing list address

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: configure.ac: Fix Mailing list address
..


configure.ac: Fix Mailing list address

We've had openbsc.org ages ago but have moved everything to osmocom.org
at some point in 2010/2011.  This should have been updated back then

Change-Id: I5da8e9fba8f15719414fa81e2a6211f906329c2e
---
M configure.ac
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/configure.ac b/configure.ac
index 80f1afd..e3ea9ca 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script
 AC_INIT([osmo-bts],
m4_esyscmd([./git-version-gen .tarball-version]),
-   [openbsc-de...@lists.openbsc.org])
+   [open...@lists.osmocom.org])
 
 dnl *This* is the root dir, even if an install-sh exists in ../ or ../../
 AC_CONFIG_AUX_DIR([.])

-- 
To view, visit https://gerrit.osmocom.org/4540
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I5da8e9fba8f15719414fa81e2a6211f906329c2e
Gerrit-PatchSet: 2
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder


[PATCH] osmo-bts[master]: Tag/Release 0.7.0

2017-10-28 Thread Harald Welte

Review at  https://gerrit.osmocom.org/4541

Tag/Release 0.7.0

This marks a new release that's compatible with libosmocore >= 0.10.0,
and which no longer depends on openbsc-dev.

Change-Id: I67405cb5f0f4dea85c67febfdef80f49ae1d41a6
---
M debian/changelog
1 file changed, 36 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/41/4541/1

diff --git a/debian/changelog b/debian/changelog
index 61c46c6..1f6e970 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,39 @@
+osmo-bts (0.7.0) unstable; urgency=medium
+
+  [ Max ]
+  * Use value string check from osmo-ci
+  * Support sending SI13 to PCU
+  * Support removing SI13 from PCU
+  * trx: avoid deactivating lchan on LCHAN_REL_ACT_REACT
+  * Check readv() return value to prevent crash
+  * OML: print actual type of report sent to BSC
+  * Replace dead code
+  * vty: print version and description for each phy
+  * Remove build dependency on legacy OpenBSC
+  * Fix multiple SI2q reception
+  * jenkins: remove openbsc dependency
+  * sysmo: use clock calibration source wrapper
+  * sysmo: don't override clock source with defaults
+  * Fix race condition in attribute reporting
+  * Move power loop to generic tests
+  * Make power test more verbose
+
+  [ Neels Hofmeyr ]
+  * vty: mgr: sysmobts, lc15: install default commands for ACT_NORM_NODE
+  * osmo-bts-trx: vty: various fixes of 'write file' and doc
+  * jenkins: use osmo-clean-workspace.sh before and after build
+
+  [ Pau Espin Pedrol ]
+  * l1sap: Improve log msg when frame diff >1
+  * vty: Print string for Administrative state
+
+  [ Harald Welte ]
+  * Fix Downlink AMR FSM name to avoid illegal space character
+  * update dependencies to latest libosmo-*
+  * configure.ac: Fix Mailing list address
+
+ -- Harald Welte   Sat, 28 Oct 2017 20:53:21 +0200
+
 osmo-bts (0.6.0) unstable; urgency=medium
 
   [ Holger Hans Peter Freyther ]

-- 
To view, visit https://gerrit.osmocom.org/4541
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I67405cb5f0f4dea85c67febfdef80f49ae1d41a6
Gerrit-PatchSet: 1
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 


osmo-bts[master]: Tag/Release 0.7.0

2017-10-28 Thread Harald Welte

Patch Set 1: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4541
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I67405cb5f0f4dea85c67febfdef80f49ae1d41a6
Gerrit-PatchSet: 1
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-HasComments: No


osmo-bts[master]: configure.ac: Fix Mailing list address

2017-10-28 Thread Harald Welte

Patch Set 2: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4540
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I5da8e9fba8f15719414fa81e2a6211f906329c2e
Gerrit-PatchSet: 2
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


[PATCH] osmo-bts[master]: configure.ac: Fix Mailing list address

2017-10-28 Thread Harald Welte

Review at  https://gerrit.osmocom.org/4540

configure.ac: Fix Mailing list address

We've had openbsc.org ages ago but have moved everything to osmocom.org
at some point in 2010/2011.  This should have been updated back then

Change-Id: I5da8e9fba8f15719414fa81e2a6211f906329c2e
---
M configure.ac
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/40/4540/1

diff --git a/configure.ac b/configure.ac
index 80f1afd..e3ea9ca 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script
 AC_INIT([osmo-bts],
m4_esyscmd([./git-version-gen .tarball-version]),
-   [openbsc-de...@lists.openbsc.org])
+   [open...@lists.osmocom.org])
 
 dnl *This* is the root dir, even if an install-sh exists in ../ or ../../
 AC_CONFIG_AUX_DIR([.])

-- 
To view, visit https://gerrit.osmocom.org/4540
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5da8e9fba8f15719414fa81e2a6211f906329c2e
Gerrit-PatchSet: 1
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 


osmo-trx[master]: jenkins: use osmo-clean-workspace.sh before and after build

2017-10-28 Thread Harald Welte

Patch Set 1: Code-Review+1

-- 
To view, visit https://gerrit.osmocom.org/4490
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I609f7c7c88b49f26e2e48e1f1cffed76d9e6fb5e
Gerrit-PatchSet: 1
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


[MERGED] osmo-hlr[master]: Tag/Release version 0.1.0

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: Tag/Release version 0.1.0
..


Tag/Release version 0.1.0

This is the first real version tag of osmo-hlr.

Change-Id: Ie0aff33ab9c36cd9219258a4d869de36612b6095
---
M debian/changelog
1 file changed, 136 insertions(+), 0 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/debian/changelog b/debian/changelog
index 9706926..7d8b208 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,139 @@
+osmo-hlr (0.1.0) unstable; urgency=medium
+
+  [ Neels Hofmeyr ]
+  * build with autoconf/automake, add jenkins.sh script
+  * fix build on FreeBSD: eliminate implicitly declared functions
+  * fix various compiler warnings
+  * fix DLGSUP logging cat after change in libosmocore
+  * build: recoin db_test as non-installable program
+  * build: actually make sqlite mandatory
+  * bump required libosmocore version to 0.9.5
+  * gsup: send subscriber MSISDN
+  * debug log: log computed vector kinds
+  * log: move a log from info to debug level
+  * hlr.sql: typo in comment
+  * auc.c: typo in comment
+  * main: add and use root talloc ctx
+  * main: add option parsing with db file and default options
+  * main: add VTY and '-c config-file' option
+  * sql: fix 3g_auc's column K data type
+  * cosmetic: sql: indicate VARCHAR size of key columns as 32
+  * sql: auc_3g: set sqn NOT NULL DEFAULT 0
+  * comment: sql: describe auc_2g and auc_3g columns
+  * Add test suite skeleton with empty test (auc_3g_test)
+  * tests: auc_3g_test: implement vector generation test
+  * auth: verify test sets from 3GPP TS 55.205
+  * sql: add unique constraints to IMSI and MSISDN
+  * UMTS AKA resync: fix argument ordering
+  * auc_3g_test: add AUTS resync test
+  * auc_gen_vectors(): ensure sane arguments, test
+  * auc_3g_test: allow to inc fake rand bytes upon rand request
+  * auc_3g_test: add AUTS test with N vectors, to show bug
+  * cosmetic: refactor auc_compute_vectors(), add debug log
+  * auc_compute_vectors(): fix AUTS resync for multiple vectors
+  * cosmetic: auc_3g_test: improve test debugging tools
+  * cosmetic: rename auc_3g_test.c to auc_test.c
+  * fix: properly handle error rc by osmo_gsup_conn_ccm_get()
+  * auc tests: adjust cosmetically to prepare for SQN changes
+  * auc tests: fix after SQN scheme changes from libosmocore
+  * fix debug log: adjust to new SQN increment scheme
+  * UMTS AKA: implement SQN increment according to SEQ and IND
+  * debug log: output ind slot, previous sqn, and sqn db update
+  * jenkins: add value_string termination check
+  * fix db_subscr_ps error handling
+  * add config example (mostly empty)
+  * install hlr.sql in prefix/doc/osmo-hlr/
+  * use OSMO_GSUP_PORT == 4222 instead of hardcoded 
+  * add basic CTRL interface tests
+  * add CTRL tests for enable-/disable-/status-ps
+  * cosmetic: prepend DB_STMT_ to enum stmt_idx entries
+  * cosmetic: rename db_subscr_get() to db_subscr_get_by_imsi()
+  * cosmetic: refactor db_bind_imsi() as db_bind_text()
+  * cosmetic: multi-line DB_STMT_AUC_BY_IMSI
+  * cosmetic: log IMSI='', log "no such subscriber"
+  * cosmetic: log: "SQLite" with capital L
+  * cosmetic: db_hlr: SL3_TXT: clarify indenting
+  * ctrl_test_runner.py: use proper constant as test db path
+  * gitignore: tests/package.m4
+  * cosmetic: don't log about missing SQLite log cb
+  * add db_bind_int() and db_bind_int64()
+  * add db_subscr_create(), db_subscr_delete(), 
db_subscr_update_msisdn_by_imsi()
+  * add initial db_test: creating and deleting subscribers
+  * less noise: simplify db_remove_reset()
+  * db: use int64_t as subscriber id
+  * add db_subscr_get_by_msisdn() and db_subscr_get_by_id()
+  * refactor db_subscr_ps() to db_subscr_nam()
+  * refactor db_subscr_lu()
+  * refactor db_subscr_purge
+  * add db_subscr_update_aud_by_id(), complete db_subscr_delete_by_id()
+  * refactor db_get_auth_data return val
+  * code undup: use db_remove_reset() in db_auc.c
+  * fix db_update_sqn(): reset stmt in all error cases
+  * code undup: use db_bind_text() in db_get_auth_data()
+  * debian: 'make check' needs sqlite3, add to Build-Depends
+  * fix db_subscr_get_by_*(): clear output data; test in db_test.c
+  * implement subscriber vty interface, tests
+  * add test_nodes.vty
+  * replace ctrl_test_runner.py with transcript test_subscriber.ctrl
+  * add lu_op_free(), use in luop.c
+  * luop: fix mem leak upon error in lu_op_alloc_conn()
+  * fix mem leak in handle_cmd_ps(): free luop
+  * api doc: say that lu_op_tx_del_subscr_data() doesn't free
+  * add hlr_subsrc_nam to put GSUP client notification in proper API
+  * vty: fix output of empty IMSI
+  * db api: fix/add API docs
+  * cosmetic: tweak params of hlr_controlif_setup()
+  * ctrl: completely replace all CTRL commands
+  * test_subscriber.ctrl: test against octal/hex interpretation of id
+  * jenkins: use 

osmo-hlr[master]: Tag/Release version 0.1.0

2017-10-28 Thread Harald Welte

Patch Set 1: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4539
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ie0aff33ab9c36cd9219258a4d869de36612b6095
Gerrit-PatchSet: 1
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


[MERGED] osmo-hlr[master]: Debian: Make sure we include osmo-hlr-db-tool in the package

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: Debian: Make sure we include osmo-hlr-db-tool in the package
..


Debian: Make sure we include osmo-hlr-db-tool in the package

Change-Id: Ia67ae6d4b1af982db8c342f2d8fd29deb83ccaff
---
M debian/osmo-hlr.install
1 file changed, 1 insertion(+), 0 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/debian/osmo-hlr.install b/debian/osmo-hlr.install
index 114df0b..0e2a1c4 100644
--- a/debian/osmo-hlr.install
+++ b/debian/osmo-hlr.install
@@ -1,2 +1,3 @@
 /usr/bin/osmo-hlr
+/usr/bin/osmo-hlr-db-tool
 /usr/share/doc/osmo-hlr/hlr.sql

-- 
To view, visit https://gerrit.osmocom.org/4538
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia67ae6d4b1af982db8c342f2d8fd29deb83ccaff
Gerrit-PatchSet: 1
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder


osmo-hlr[master]: Debian: Make sure we include osmo-hlr-db-tool in the package

2017-10-28 Thread Harald Welte

Patch Set 1: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4538
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ia67ae6d4b1af982db8c342f2d8fd29deb83ccaff
Gerrit-PatchSet: 1
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


[PATCH] osmo-hlr[master]: Debian: Make sure we include osmo-hlr-db-tool in the package

2017-10-28 Thread Harald Welte

Review at  https://gerrit.osmocom.org/4538

Debian: Make sure we include osmo-hlr-db-tool in the package

Change-Id: Ia67ae6d4b1af982db8c342f2d8fd29deb83ccaff
---
M debian/osmo-hlr.install
1 file changed, 1 insertion(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-hlr refs/changes/38/4538/1

diff --git a/debian/osmo-hlr.install b/debian/osmo-hlr.install
index 114df0b..0e2a1c4 100644
--- a/debian/osmo-hlr.install
+++ b/debian/osmo-hlr.install
@@ -1,2 +1,3 @@
 /usr/bin/osmo-hlr
+/usr/bin/osmo-hlr-db-tool
 /usr/share/doc/osmo-hlr/hlr.sql

-- 
To view, visit https://gerrit.osmocom.org/4538
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia67ae6d4b1af982db8c342f2d8fd29deb83ccaff
Gerrit-PatchSet: 1
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 


[PATCH] osmo-hlr[master]: Tag/Release version 0.1.0

2017-10-28 Thread Harald Welte

Review at  https://gerrit.osmocom.org/4539

Tag/Release version 0.1.0

This is the first real version tag of osmo-hlr.

Change-Id: Ie0aff33ab9c36cd9219258a4d869de36612b6095
---
M debian/changelog
1 file changed, 136 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-hlr refs/changes/39/4539/1

diff --git a/debian/changelog b/debian/changelog
index 9706926..7d8b208 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,139 @@
+osmo-hlr (0.1.0) unstable; urgency=medium
+
+  [ Neels Hofmeyr ]
+  * build with autoconf/automake, add jenkins.sh script
+  * fix build on FreeBSD: eliminate implicitly declared functions
+  * fix various compiler warnings
+  * fix DLGSUP logging cat after change in libosmocore
+  * build: recoin db_test as non-installable program
+  * build: actually make sqlite mandatory
+  * bump required libosmocore version to 0.9.5
+  * gsup: send subscriber MSISDN
+  * debug log: log computed vector kinds
+  * log: move a log from info to debug level
+  * hlr.sql: typo in comment
+  * auc.c: typo in comment
+  * main: add and use root talloc ctx
+  * main: add option parsing with db file and default options
+  * main: add VTY and '-c config-file' option
+  * sql: fix 3g_auc's column K data type
+  * cosmetic: sql: indicate VARCHAR size of key columns as 32
+  * sql: auc_3g: set sqn NOT NULL DEFAULT 0
+  * comment: sql: describe auc_2g and auc_3g columns
+  * Add test suite skeleton with empty test (auc_3g_test)
+  * tests: auc_3g_test: implement vector generation test
+  * auth: verify test sets from 3GPP TS 55.205
+  * sql: add unique constraints to IMSI and MSISDN
+  * UMTS AKA resync: fix argument ordering
+  * auc_3g_test: add AUTS resync test
+  * auc_gen_vectors(): ensure sane arguments, test
+  * auc_3g_test: allow to inc fake rand bytes upon rand request
+  * auc_3g_test: add AUTS test with N vectors, to show bug
+  * cosmetic: refactor auc_compute_vectors(), add debug log
+  * auc_compute_vectors(): fix AUTS resync for multiple vectors
+  * cosmetic: auc_3g_test: improve test debugging tools
+  * cosmetic: rename auc_3g_test.c to auc_test.c
+  * fix: properly handle error rc by osmo_gsup_conn_ccm_get()
+  * auc tests: adjust cosmetically to prepare for SQN changes
+  * auc tests: fix after SQN scheme changes from libosmocore
+  * fix debug log: adjust to new SQN increment scheme
+  * UMTS AKA: implement SQN increment according to SEQ and IND
+  * debug log: output ind slot, previous sqn, and sqn db update
+  * jenkins: add value_string termination check
+  * fix db_subscr_ps error handling
+  * add config example (mostly empty)
+  * install hlr.sql in prefix/doc/osmo-hlr/
+  * use OSMO_GSUP_PORT == 4222 instead of hardcoded 
+  * add basic CTRL interface tests
+  * add CTRL tests for enable-/disable-/status-ps
+  * cosmetic: prepend DB_STMT_ to enum stmt_idx entries
+  * cosmetic: rename db_subscr_get() to db_subscr_get_by_imsi()
+  * cosmetic: refactor db_bind_imsi() as db_bind_text()
+  * cosmetic: multi-line DB_STMT_AUC_BY_IMSI
+  * cosmetic: log IMSI='', log "no such subscriber"
+  * cosmetic: log: "SQLite" with capital L
+  * cosmetic: db_hlr: SL3_TXT: clarify indenting
+  * ctrl_test_runner.py: use proper constant as test db path
+  * gitignore: tests/package.m4
+  * cosmetic: don't log about missing SQLite log cb
+  * add db_bind_int() and db_bind_int64()
+  * add db_subscr_create(), db_subscr_delete(), 
db_subscr_update_msisdn_by_imsi()
+  * add initial db_test: creating and deleting subscribers
+  * less noise: simplify db_remove_reset()
+  * db: use int64_t as subscriber id
+  * add db_subscr_get_by_msisdn() and db_subscr_get_by_id()
+  * refactor db_subscr_ps() to db_subscr_nam()
+  * refactor db_subscr_lu()
+  * refactor db_subscr_purge
+  * add db_subscr_update_aud_by_id(), complete db_subscr_delete_by_id()
+  * refactor db_get_auth_data return val
+  * code undup: use db_remove_reset() in db_auc.c
+  * fix db_update_sqn(): reset stmt in all error cases
+  * code undup: use db_bind_text() in db_get_auth_data()
+  * debian: 'make check' needs sqlite3, add to Build-Depends
+  * fix db_subscr_get_by_*(): clear output data; test in db_test.c
+  * implement subscriber vty interface, tests
+  * add test_nodes.vty
+  * replace ctrl_test_runner.py with transcript test_subscriber.ctrl
+  * add lu_op_free(), use in luop.c
+  * luop: fix mem leak upon error in lu_op_alloc_conn()
+  * fix mem leak in handle_cmd_ps(): free luop
+  * api doc: say that lu_op_tx_del_subscr_data() doesn't free
+  * add hlr_subsrc_nam to put GSUP client notification in proper API
+  * vty: fix output of empty IMSI
+  * db api: fix/add API docs
+  * cosmetic: tweak params of hlr_controlif_setup()
+  * ctrl: completely replace all CTRL commands
+  * test_subscriber.ctrl: test against octal/hex interpretation of id
+  * jenkins: use osmo-clean-workspace.sh before and after build
+  * tests/Makefile: use test db var instead of repeating the path
+  * db_test: fix 

[MERGED] osmo-hlr[master]: add osmo-hlr-db-tool, program to migrate from osmo-nitb db

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: add osmo-hlr-db-tool, program to migrate from osmo-nitb db
..


add osmo-hlr-db-tool, program to migrate from osmo-nitb db

Move macro copy_sqlite3_text_to_buf() to db.h, so it can be used in
hlr_db_tool.c.

Add _dbd_decode_binary() from libdbi to avoid depending on the entire libdbi
just for KI BLOB decoding. Add it in a separate file, copying its own license,
the lGPL.

Offer commandline option "import-nitb-db" to read in an old osmo-nitb database
and copy subscriber IMSIs and 2G auth data to OsmoHLR db format.

Anticipate future command line options like "import-csv", so keep the code
generalized.

Change-Id: I0dfa6ec033dd93161c1adc2ce1637195fe5b7a63
---
M src/Makefile.am
M src/db.h
M src/db_hlr.c
A src/dbd_decode_binary.c
A src/hlr_db_tool.c
5 files changed, 495 insertions(+), 11 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/src/Makefile.am b/src/Makefile.am
index 3b09b7b..9fbb062 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -35,6 +35,7 @@
 
 bin_PROGRAMS = \
osmo-hlr \
+   osmo-hlr-db-tool \
$(NULL)
 
 noinst_PROGRAMS = \
@@ -66,6 +67,21 @@
$(SQLITE3_LIBS) \
$(NULL)
 
+osmo_hlr_db_tool_SOURCES = \
+   hlr_db_tool.c \
+   db.c \
+   db_hlr.c \
+   logging.c \
+   rand_urandom.c \
+   dbd_decode_binary.c \
+   $(NULL)
+
+osmo_hlr_db_tool_LDADD = \
+   $(LIBOSMOCORE_LIBS) \
+   $(LIBOSMOGSM_LIBS) \
+   $(SQLITE3_LIBS) \
+   $(NULL)
+
 db_test_SOURCES = \
auc.c \
db.c \
diff --git a/src/db.h b/src/db.h
index 35e4327..fc8e511 100644
--- a/src/db.h
+++ b/src/db.h
@@ -129,3 +129,14 @@
bool purge_val, bool is_ps);
 
 int hlr_subscr_nam(struct hlr *hlr, struct hlr_subscriber *subscr, bool 
nam_val, bool is_ps);
+
+/*! Call sqlite3_column_text() and copy result to a char[].
+ * \param[out] buf  A char[] used as sizeof() arg(!) and osmo_strlcpy() target.
+ * \param[in] stmt  An sqlite3_stmt*.
+ * \param[in] idx   Index in stmt's returned columns.
+ */
+#define copy_sqlite3_text_to_buf(buf, stmt, idx) \
+   do { \
+   const char *_txt = (const char *) sqlite3_column_text(stmt, 
idx); \
+   osmo_strlcpy(buf, _txt, sizeof(buf)); \
+   } while (0)
diff --git a/src/db_hlr.c b/src/db_hlr.c
index bae9a5a..c4d4974 100644
--- a/src/db_hlr.c
+++ b/src/db_hlr.c
@@ -35,17 +35,6 @@
 
 #define LOGHLR(imsi, level, fmt, args ...) LOGP(DAUC, level, "IMSI='%s': " 
fmt, imsi, ## args)
 
-/*! Call sqlite3_column_text() and copy result to a char[].
- * \param[out] buf  A char[] used as sizeof() arg(!) and osmo_strlcpy() target.
- * \param[in] stmt  An sqlite3_stmt*.
- * \param[in] idx   Index in stmt's returned columns.
- */
-#define copy_sqlite3_text_to_buf(buf, stmt, idx) \
-   do { \
-   const char *_txt = (const char *) sqlite3_column_text(stmt, 
idx); \
-   osmo_strlcpy(buf, _txt, sizeof(buf)); \
-   } while (0)
-
 /*! Add new subscriber record to the HLR database.
  * \param[in,out] dbc  database context.
  * \param[in] imsi  ASCII string of IMSI digits, is validated.
diff --git a/src/dbd_decode_binary.c b/src/dbd_decode_binary.c
new file mode 100644
index 000..e1a98ad
--- /dev/null
+++ b/src/dbd_decode_binary.c
@@ -0,0 +1,42 @@
+/* This function is blatantly copied from libdbi, from
+ * https://sourceforge.net/p/libdbi/libdbi/ci/master/tree/src/dbd_helper.c
+ * to save having to depend on the entire libdbi just for KI BLOB decoding.
+ */
+
+/*
+ * libdbi - database independent abstraction layer for C.
+ * Copyright (C) 2001-2003, David Parker and Mark Tobenkin.
+ * http://libdbi.sourceforge.net
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * 
+ * $Id: dbd_helper.c,v 1.44 2011/08/09 11:14:14 mhoenicka Exp $
+ */
+
+#include 
+
+size_t _dbd_decode_binary(const unsigned char *in, unsigned char *out){
+  int i, e;
+  unsigned char c;
+  e = *(in++);
+  i = 0;
+  while( (c = *(in++))!=0 ){
+if( c==1 ){
+  c = *(in++) - 1;
+}
+out[i++] = c + e;
+  }
+  return (size_t)i;
+}
diff --git a/src/hlr_db_tool.c 

osmo-hlr[master]: add osmo-hlr-db-tool, program to migrate from osmo-nitb db

2017-10-28 Thread Harald Welte

Patch Set 2: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4441
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I0dfa6ec033dd93161c1adc2ce1637195fe5b7a63
Gerrit-PatchSet: 2
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr 
Gerrit-HasComments: No


osmo-hlr[master]: add osmo-hlr-db-tool, program to migrate from osmo-nitb db

2017-10-28 Thread Harald Welte

Patch Set 1:

(1 comment)

https://gerrit.osmocom.org/#/c/4441/1/src/hlr_db_tool.c
File src/hlr_db_tool.c:

PS1, Line 53: [--import-nitb-db ]
> My first intention was to have a positional argument like in git commands a
how to do this: getopt_long() leaves "optind" at the last option it has parsed, 
so "argc - optind" tells you the number of remaining positional arguments.  You 
can then index argv[] from there.  I implemented it in the next version of the 
patch because I wanted this to be merged before tagging an osmo-hlr release 
just now.


-- 
To view, visit https://gerrit.osmocom.org/4441
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I0dfa6ec033dd93161c1adc2ce1637195fe5b7a63
Gerrit-PatchSet: 1
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr 
Gerrit-HasComments: Yes


[PATCH] osmo-hlr[master]: add osmo-hlr-db-tool, program to migrate from osmo-nitb db

2017-10-28 Thread Harald Welte
Hello Jenkins Builder,

I'd like you to reexamine a change.  Please visit

https://gerrit.osmocom.org/4441

to look at the new patch set (#2).

add osmo-hlr-db-tool, program to migrate from osmo-nitb db

Move macro copy_sqlite3_text_to_buf() to db.h, so it can be used in
hlr_db_tool.c.

Add _dbd_decode_binary() from libdbi to avoid depending on the entire libdbi
just for KI BLOB decoding. Add it in a separate file, copying its own license,
the lGPL.

Offer commandline option "import-nitb-db" to read in an old osmo-nitb database
and copy subscriber IMSIs and 2G auth data to OsmoHLR db format.

Anticipate future command line options like "import-csv", so keep the code
generalized.

Change-Id: I0dfa6ec033dd93161c1adc2ce1637195fe5b7a63
---
M src/Makefile.am
M src/db.h
M src/db_hlr.c
A src/dbd_decode_binary.c
A src/hlr_db_tool.c
5 files changed, 495 insertions(+), 11 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-hlr refs/changes/41/4441/2

diff --git a/src/Makefile.am b/src/Makefile.am
index 3b09b7b..9fbb062 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -35,6 +35,7 @@
 
 bin_PROGRAMS = \
osmo-hlr \
+   osmo-hlr-db-tool \
$(NULL)
 
 noinst_PROGRAMS = \
@@ -66,6 +67,21 @@
$(SQLITE3_LIBS) \
$(NULL)
 
+osmo_hlr_db_tool_SOURCES = \
+   hlr_db_tool.c \
+   db.c \
+   db_hlr.c \
+   logging.c \
+   rand_urandom.c \
+   dbd_decode_binary.c \
+   $(NULL)
+
+osmo_hlr_db_tool_LDADD = \
+   $(LIBOSMOCORE_LIBS) \
+   $(LIBOSMOGSM_LIBS) \
+   $(SQLITE3_LIBS) \
+   $(NULL)
+
 db_test_SOURCES = \
auc.c \
db.c \
diff --git a/src/db.h b/src/db.h
index 35e4327..fc8e511 100644
--- a/src/db.h
+++ b/src/db.h
@@ -129,3 +129,14 @@
bool purge_val, bool is_ps);
 
 int hlr_subscr_nam(struct hlr *hlr, struct hlr_subscriber *subscr, bool 
nam_val, bool is_ps);
+
+/*! Call sqlite3_column_text() and copy result to a char[].
+ * \param[out] buf  A char[] used as sizeof() arg(!) and osmo_strlcpy() target.
+ * \param[in] stmt  An sqlite3_stmt*.
+ * \param[in] idx   Index in stmt's returned columns.
+ */
+#define copy_sqlite3_text_to_buf(buf, stmt, idx) \
+   do { \
+   const char *_txt = (const char *) sqlite3_column_text(stmt, 
idx); \
+   osmo_strlcpy(buf, _txt, sizeof(buf)); \
+   } while (0)
diff --git a/src/db_hlr.c b/src/db_hlr.c
index bae9a5a..c4d4974 100644
--- a/src/db_hlr.c
+++ b/src/db_hlr.c
@@ -35,17 +35,6 @@
 
 #define LOGHLR(imsi, level, fmt, args ...) LOGP(DAUC, level, "IMSI='%s': " 
fmt, imsi, ## args)
 
-/*! Call sqlite3_column_text() and copy result to a char[].
- * \param[out] buf  A char[] used as sizeof() arg(!) and osmo_strlcpy() target.
- * \param[in] stmt  An sqlite3_stmt*.
- * \param[in] idx   Index in stmt's returned columns.
- */
-#define copy_sqlite3_text_to_buf(buf, stmt, idx) \
-   do { \
-   const char *_txt = (const char *) sqlite3_column_text(stmt, 
idx); \
-   osmo_strlcpy(buf, _txt, sizeof(buf)); \
-   } while (0)
-
 /*! Add new subscriber record to the HLR database.
  * \param[in,out] dbc  database context.
  * \param[in] imsi  ASCII string of IMSI digits, is validated.
diff --git a/src/dbd_decode_binary.c b/src/dbd_decode_binary.c
new file mode 100644
index 000..e1a98ad
--- /dev/null
+++ b/src/dbd_decode_binary.c
@@ -0,0 +1,42 @@
+/* This function is blatantly copied from libdbi, from
+ * https://sourceforge.net/p/libdbi/libdbi/ci/master/tree/src/dbd_helper.c
+ * to save having to depend on the entire libdbi just for KI BLOB decoding.
+ */
+
+/*
+ * libdbi - database independent abstraction layer for C.
+ * Copyright (C) 2001-2003, David Parker and Mark Tobenkin.
+ * http://libdbi.sourceforge.net
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * 
+ * $Id: dbd_helper.c,v 1.44 2011/08/09 11:14:14 mhoenicka Exp $
+ */
+
+#include 
+
+size_t _dbd_decode_binary(const unsigned char *in, unsigned char *out){
+  int i, e;
+  unsigned char c;
+  e = *(in++);
+  i = 0;
+  while( (c = *(in++))!=0 ){
+if( c==1 ){
+  c = *(in++) - 1;
+}
+out[i++] = c + e;
+  }
+  return (size_t)i;
+}
diff --git a/src/hlr_db_tool.c b/src/hlr_db_tool.c
new file mode 100644
index 000..8982739
--- /dev/null
+++ 

[MERGED] osmo-sgsn[master]: Tag/Release Version 1.2.0

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: Tag/Release Version 1.2.0
..


Tag/Release Version 1.2.0

Change-Id: I44bee346fd698bd51ef305813084afdce0099907
---
M debian/changelog
1 file changed, 52 insertions(+), 0 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/debian/changelog b/debian/changelog
index 6216695..0b56541 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,55 @@
+osmo-sgsn (1.2.0) unstable; urgency=medium
+
+  [ Neels Hofmeyr ]
+  * jenkins: fix build: remove unused dependencies
+  * debian: fix osmo-sgsn.install, tweak VCS link and descriptions
+  * drop files unrelated to osmo-sgsn
+  * rewrite README
+  * configure.ac: set name to osmo-sgsn, fix ML addr
+  * move openbsc.pc to osmo-sgsn.pc
+  * move include/openbsc to include/osmocom/sgsn
+  * jenkins.sh: fix echo string to say osmo-sgsn, not msc
+  * jenkins: use osmo-clean-workspace.sh before and after build
+
+  [ Alexander Couzens ]
+  * debian: fix paths of examples
+  * debian/rules: show testsuite.log when tests are failing
+
+  [ Max ]
+  * Remove rest_octets.h
+  * gbproxy: ensure peer allocation result
+  * jenkins: use osmo-ggsn for tests
+  * Cleanup configure checks
+  * Use extended logging for PDP contexts
+  * deb: fix copyright file issues
+  * Move P-TMSI alloc/update into separate function
+  * Check for correct P-TMSI allocation
+  * Use new FSF address in license header
+  * SGSN: uncomment BSSGP vty tests
+  * SGSN: print additional GTP-related info
+  * SGSN: check that GSN is created in proper mode
+  * Fix APN printing
+  * Fix build after recent rate_ctr patches
+  * gbproxy: don't link unnecessary
+  * Fix libosmo-sigtran dependency
+  * jenkins: check for IU properly
+  * Log GTP-U endpoints update
+  * Log address on GTP creation
+
+  [ Pau Espin Pedrol ]
+  * Remove unneeded dep libdbi
+
+  [ Philipp Maier ]
+  * log: fix default loglevels
+  * non-iu-build: guard vty libosmo-sigtran function calls.
+  * configure: fix libosmo-sigtran dependency
+
+  [ Harald Welte ]
+  * Debian: Add systemd service files for osmo-sgsn and osmo-gbproxy
+  * Debian: fix dh_strip rules for creating one -dbg per program
+
+ -- Harald Welte   Sat, 28 Oct 2017 19:07:48 +0200
+
 osmo-sgsn (0.1.0) unstable; urgency=low
 
   * Initial release.

-- 
To view, visit https://gerrit.osmocom.org/4537
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I44bee346fd698bd51ef305813084afdce0099907
Gerrit-PatchSet: 1
Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder


[MERGED] osmo-sgsn[master]: Debian: Add systemd service files for osmo-sgsn and osmo-gbp...

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: Debian: Add systemd service files for osmo-sgsn and osmo-gbproxy
..


Debian: Add systemd service files for osmo-sgsn and osmo-gbproxy

Change-Id: I5a5a80bb19c521e8f20241ed8c02d65b4c937f23
---
A debian/osmo-gbproxy.service
A debian/osmo-sgsn.service
2 files changed, 2 insertions(+), 0 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/debian/osmo-gbproxy.service b/debian/osmo-gbproxy.service
new file mode 12
index 000..d23c649
--- /dev/null
+++ b/debian/osmo-gbproxy.service
@@ -0,0 +1 @@
+../contrib/systemd/osmo-gbproxy.service
\ No newline at end of file
diff --git a/debian/osmo-sgsn.service b/debian/osmo-sgsn.service
new file mode 12
index 000..de22d90
--- /dev/null
+++ b/debian/osmo-sgsn.service
@@ -0,0 +1 @@
+../contrib/systemd/osmo-sgsn.service
\ No newline at end of file

-- 
To view, visit https://gerrit.osmocom.org/4535
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I5a5a80bb19c521e8f20241ed8c02d65b4c937f23
Gerrit-PatchSet: 1
Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder


[MERGED] osmo-sgsn[master]: Debian: fix dh_strip rules for creating one -dbg per program

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: Debian: fix dh_strip rules for creating one -dbg per program
..


Debian: fix dh_strip rules for creating one -dbg per program

Before this patch, all debug symbols end up in osmo-sgsn-dbg,
with osmo-{gbproxy,gtphub}-dbg being empty.

Change-Id: Ib2ceecb3527855350b69d7413efe42274dc6febd
---
M debian/rules
1 file changed, 3 insertions(+), 3 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/debian/rules b/debian/rules
index dbe582b..58ea9bb 100755
--- a/debian/rules
+++ b/debian/rules
@@ -56,9 +56,9 @@
 
 # See 
https://www.debian.org/doc/manuals/developers-reference/best-pkging-practices.html#bpp-dbg
 override_dh_strip:
-   dh_strip --dbg-package=osmo-sgsn-dbg
-   dh_strip --dbg-package=osmo-gtphub-dbg
-   dh_strip --dbg-package=osmo-gbproxy-dbg
+   dh_strip -posmo-sgsn --dbg-package=osmo-sgsn-dbg
+   dh_strip -posmo-gtphub --dbg-package=osmo-gtphub-dbg
+   dh_strip -posmo-gbproxy --dbg-package=osmo-gbproxy-dbg
 
 # Print test results in case of a failure
 override_dh_auto_test:

-- 
To view, visit https://gerrit.osmocom.org/4536
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib2ceecb3527855350b69d7413efe42274dc6febd
Gerrit-PatchSet: 1
Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder


osmo-sgsn[master]: Debian: Add systemd service files for osmo-sgsn and osmo-gbp...

2017-10-28 Thread Harald Welte

Patch Set 1: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4535
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I5a5a80bb19c521e8f20241ed8c02d65b4c937f23
Gerrit-PatchSet: 1
Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


osmo-sgsn[master]: Debian: fix dh_strip rules for creating one -dbg per program

2017-10-28 Thread Harald Welte

Patch Set 1: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4536
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ib2ceecb3527855350b69d7413efe42274dc6febd
Gerrit-PatchSet: 1
Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


osmo-sgsn[master]: Tag/Release Version 1.2.0

2017-10-28 Thread Harald Welte

Patch Set 1: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4537
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I44bee346fd698bd51ef305813084afdce0099907
Gerrit-PatchSet: 1
Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


[MERGED] osmo-hlr[master]: fix default logging levels to NOTICE, not DEBUG

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: fix default logging levels to NOTICE, not DEBUG
..


fix default logging levels to NOTICE, not DEBUG

Tweak unit test binaries to still used DEBUG loglevels, so that their expected
outputs remain unchanged (and nicely verbose).

Adjust test_nodes.vty, now expecting the 'notice' log levels upon
'show running-config'.

Change-Id: Ic061e61c9625b49cef8bc2a2c0b936e262c22268
---
M src/logging.c
M tests/auc/auc_test.c
M tests/auc/gen_ts_55_205_test_sets/main_template.c
M tests/db/db_test.c
M tests/test_nodes.vty
5 files changed, 9 insertions(+), 6 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/src/logging.c b/src/logging.c
index 9b8de45..f81781d 100644
--- a/src/logging.c
+++ b/src/logging.c
@@ -5,19 +5,19 @@
[DMAIN] = {
.name = "DMAIN",
.description = "Main Program",
-   .enabled = 1, .loglevel = LOGL_DEBUG,
+   .enabled = 1, .loglevel = LOGL_NOTICE,
},
[DDB] = {
.name = "DDB",
.description = "Database Layer",
.color = "\033[1;31m",
-   .enabled = 1, .loglevel = LOGL_DEBUG,
+   .enabled = 1, .loglevel = LOGL_NOTICE,
},
[DAUC] = {
.name = "DAUC",
.description = "Authentication Center",
.color = "\033[1;33m",
-   .enabled = 1, .loglevel = LOGL_DEBUG,
+   .enabled = 1, .loglevel = LOGL_NOTICE,
},
 };
 
diff --git a/tests/auc/auc_test.c b/tests/auc/auc_test.c
index f047a97..e9c114c 100644
--- a/tests/auc/auc_test.c
+++ b/tests/auc/auc_test.c
@@ -615,6 +615,7 @@
log_set_print_timestamp(osmo_stderr_target, 0);
log_set_use_color(osmo_stderr_target, 0);
log_set_print_category(osmo_stderr_target, 1);
+   log_parse_category_mask(osmo_stderr_target, "DMAIN,1:DDB,1:DAUC,1");
 
test_gen_vectors_2g_only();
test_gen_vectors_2g_plus_3g();
diff --git a/tests/auc/gen_ts_55_205_test_sets/main_template.c 
b/tests/auc/gen_ts_55_205_test_sets/main_template.c
index e917e71..37f47c3 100644
--- a/tests/auc/gen_ts_55_205_test_sets/main_template.c
+++ b/tests/auc/gen_ts_55_205_test_sets/main_template.c
@@ -107,6 +107,7 @@
log_set_print_timestamp(osmo_stderr_target, 0);
log_set_use_color(osmo_stderr_target, 0);
log_set_print_category(osmo_stderr_target, 1);
+   log_parse_category_mask(osmo_stderr_target, "DMAIN,1:DDB,1:DAUC,1");
 
 FUNCTION_CALLS
 
diff --git a/tests/db/db_test.c b/tests/db/db_test.c
index 0a53370..389ed00 100644
--- a/tests/db/db_test.c
+++ b/tests/db/db_test.c
@@ -816,6 +816,7 @@
log_set_print_timestamp(osmo_stderr_target, 0);
log_set_use_color(osmo_stderr_target, 0);
log_set_print_category(osmo_stderr_target, 1);
+   log_parse_category_mask(osmo_stderr_target, "DMAIN,1:DDB,1:DAUC,1");
 
/* omit the SQLite version and compilation flags from test output */
log_set_log_level(osmo_stderr_target, LOGL_ERROR);
diff --git a/tests/test_nodes.vty b/tests/test_nodes.vty
index 0de4ff4..6de673a 100644
--- a/tests/test_nodes.vty
+++ b/tests/test_nodes.vty
@@ -101,9 +101,9 @@
   logging print category 1
   logging print extended-timestamp 1
   logging level all debug
-  logging level main debug
-  logging level db debug
-  logging level auc debug
+  logging level main notice
+  logging level db notice
+  logging level auc notice
 ...
 !
 line vty

-- 
To view, visit https://gerrit.osmocom.org/4442
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic061e61c9625b49cef8bc2a2c0b936e262c22268
Gerrit-PatchSet: 2
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder


osmo-ggsn[master]: Debian: libgtp is libgtp2 for some time, not libgtp1 anymore

2017-10-28 Thread Harald Welte

Patch Set 1: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4531
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I7a1349e9609cb455c0fe9d63d085e7c44dff96ef
Gerrit-PatchSet: 1
Gerrit-Project: osmo-ggsn
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


osmo-ggsn[master]: Debian: include the systemd service file for osmo-ggsn

2017-10-28 Thread Harald Welte

Patch Set 1: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/4533
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I5ebee0135e638b7327a16218bdce466ada9aee56
Gerrit-PatchSet: 1
Gerrit-Project: osmo-ggsn
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


[MERGED] osmo-ggsn[master]: Tag/Release Version 1.1.0

2017-10-28 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: Tag/Release Version 1.1.0
..


Tag/Release Version 1.1.0

Change-Id: I30a9e72fa9c3d6fc755c5531844b663c08c3ac06
---
M TODO-RELEASE
M debian/changelog
2 files changed, 7 insertions(+), 2 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/TODO-RELEASE b/TODO-RELEASE
index 1009c44..d0852fc 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -7,5 +7,3 @@
 # If any interfaces have been added since the last public release: c:r:a + 1.
 # If any interfaces have been removed or changed since the last public 
release: c:r:0.
 #library   whatdescription / commit summary line
-libgtp pdp.h   Addition of new tx_gpdu_seq struct member member
-libgtp pdp.h   add LOGPDPX() helper to public API
diff --git a/debian/changelog b/debian/changelog
index 5953e6f..47e02f1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+osmo-ggsn (1.1.0) unstable; urgency=medium
+
+  * libgtp: pdp.h: Addition of new tx_gpdu_seq struct member member
+  * libgtp: pdp.h: add LOGPDPX() helper to public API
+
+ -- Harald Welte   Sat, 28 Oct 2017 19:00:23 +0200
+
 osmo-ggsn (1.0.0) unstable; urgency=medium
 
   * Transition to OsmoGGSN

-- 
To view, visit https://gerrit.osmocom.org/4534
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I30a9e72fa9c3d6fc755c5531844b663c08c3ac06
Gerrit-PatchSet: 1
Gerrit-Project: osmo-ggsn
Gerrit-Branch: master
Gerrit-Owner: Harald Welte 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder


  1   2   3   >