Ok, i' ll see how to integrate lynx then.
Currently, the target `modname_doc` will produce all forms in the build directory iirc, and then it would copy it to the `src/modules/module_name/docs` directory. (even though I opted to comment the copy command to not pollute the source files.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/commit/f24eed8ba01870361d916844a073df7…
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/commit/f24eed8ba01870361d916844a073df71cbc9e609/150282843(a)github.com>
I see `output_dir` in the makefile for the docbooks, not for the code building:
```
doc/docbook/Makefile
39:output_dir ?= .
```
The variant with lynx has to be there, many doc generation scripts running on server rely on it, being also very common on linux distros and we know how the output is generated.
We can experiment more with pandoc in the future.
Are now different make targets (or some defines) to generate the text readme and the html readme? I could notice the `modname_doc` (e.g., `acc_doc`)
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/commit/f24eed8ba01870361d916844a073df7…
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/commit/f24eed8ba01870361d916844a073df71cbc9e609/150282713(a)github.com>
The `pandoc` was an alternative I found that could achieve what `lynx` did for the text generation, since `lynx` is technically a text web-browser.
Pandoc offers more forms to transform if needed, but of course, we can fall back on' Lynx' if it doesn't fit our needs or it's too slow.
The `outpit_dir` is specific for docs or for the whole build?
I
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/commit/f24eed8ba01870361d916844a073df7…
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/commit/f24eed8ba01870361d916844a073df71cbc9e609/150282373(a)github.com>
@xkaraman: can the use of `pandoc` be made optional? What is the benefit of using it?
The old makefiles needed only `xsltproc` (and `lynx` for text readme generation) and it seemed enough. Also, the generation of the html readmes for modules on the website is done the same way. Important it would be to support the output directory, like:
```
make output_dir=/tmp/kamailio-docs exclude_modules="" modules-doc
```
The above command generates all html files for modules' readmes and place them in /tmp/kamailio-docs.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/commit/f24eed8ba01870361d916844a073df7…
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/commit/f24eed8ba01870361d916844a073df71cbc9e609/150281498(a)github.com>
Yeah, looking into it.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/commit/f24eed8ba01870361d916844a073df7…
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/commit/f24eed8ba01870361d916844a073df71cbc9e609/150280974(a)github.com>
@xkaraman this change broke the build
```
cmake --build /home/runner/work/kamailio/kamailio/build -j8
[ 0%] Building C object src/modules/acc/CMakeFiles/acc.dir/acc.c.o
[ 0%] Building C object src/modules/acc/CMakeFiles/acc.dir/acc_cdr.c.o
gmake[2]: *** No rule to make target 'src/modules/xprint_doc', needed by 'src/modules/CMakeFiles/kamailio_docs'. Stop.
[ 0%] Generating cfg.tab.c and cfg.tab.h from cfg.y
gmake[1]: *** [CMakeFiles/Makefile2:3444: src/modules/CMakeFiles/kamailio_docs.dir/all] Error 2
[ 0%] Building C object src/modules/alias_db/CMakeFiles/alias_db.dir/alias_db.c.o
gmake[1]: *** Waiting for unfinished jobs....
```
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/commit/f24eed8ba01870361d916844a073df7…
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/commit/f24eed8ba01870361d916844a073df71cbc9e609/150280924(a)github.com>
### Description
Goal: Build a destination set from multiple contacts gathered from multiple registered AoR.
Situation: assumptions, observations:
* lookup() returns success there are registered contacts for each AoR.
* All contacts have same q value.
* lookup() can only be called for one AoR, there is no way to call it for multiple AoR.
* If lookup() is called multiple times, only the destination set gathered by the last invocation is preserved, all other ones are overwritten.
* t_load_contacts() transfers the destination set into the $xavp(tm_contacts) but like lookup() initializes that
So I am trying to find a way to store/collate all destination sets into one and parallel fork a call to all contacts from multiple AoR.
Idea: Stack all contacts in $xavp(contact_stack) with the same structure as $xavp(tm_contacts) and append it to tm_contacts.
xavp_rm("contact_stack"); # Make sure this is not defined.
We are in a loop setting $var(lookupuri) to (sip:315996608@3cx-pbx.imp.ch and sip:315996608-1@157.161.4.181) {
lookup("location", "$var(lookupuri)");
t_load_contacts(0); # Now $xavp(tm_contacts) is populated
$xavp(contact_stack) = $xavp(tm_contacts); # Store contact set
}
xavp_rm("tm_contacts"); # Re Initialize tm_contacts to empty
$xavp(tm_contacts) = $xavp(contact_stack); # Restore tm_contacts from stacked set.
xlog("L_INFO", "$cfg(route): COUNT: $cnt($xavp(tm_contacts))\n"); # Make sure, the count matches what we expect.
xlog("L_INFO", "$cfg(route): Before t_next_contacts\n");
t_next_contacts(); # Load destination set => CRASH!
xlog("L_INFO", "$cfg(route): After t_next_contacts\n");
Log (some more infos logged I omitted in the example above)
```
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: Auth_aor_user[0] = 315996608
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: Sigprofile[0] = local
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: Lookupuri[0] = sip:315996608@3cx-pbx.imp.ch
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: LOOKUP sip:315996608@3cx-pbx.imp.ch SUCCESS!!!!
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: Auth_aor_user[1] = 315996608-1
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: Sigprofile[1] = local
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: Lookupuri[1] = sip:315996608-1@157.161.4.181
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: LOOKUP sip:315996608-1@157.161.4.181 SUCCESS!!!!
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: ADD to tm_contacts
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: COUNT: 4
Dec 10 16:18:05 dev-cpereg01 kamailio[3964710]: INFO: [1 0618269314 128182546-3942836285-478214563(a)prt-cbl-sbc1.imp.ch 2 INVITE]<script>: LOCATION: Before t_next_contacts
Dec 10 16:18:05 dev-cpereg01 kernel: [13747450.274883] traps: kamailio[3964710] general protection fault ip:55bc00e61f2b sp:7ffce62d7520 error:0 in kamailio[55bc00ba5000+457000]
```
#### Reproduction
Code above with: version: kamailio 5.7.6 (x86_64/linux) from official kamailio repository on ubuntu jammy.
#### Debugging Data
If required, I can try to enable coredumps.
#### Log Messages
Shown above
#### SIP Traffic
Probably not needed.
### Possible Solutions
None yet.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/4063
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/4063(a)github.com>
### Description
During source compilation on Fedora 40 I see an error
```
[2024-11-15T10:13:57.497Z] make[3]: Entering directory '/root/rpmbuild/BUILD/kamailio-6.0.0-dev3/src/lib/srdb2'
[2024-11-15T10:13:57.502Z] make[3]: 'libsrdb2.so.1.0' is up to date.
[2024-11-15T10:13:57.502Z] make[3]: Leaving directory '/root/rpmbuild/BUILD/kamailio-6.0.0-dev3/src/lib/srdb2'
[2024-11-15T10:13:57.504Z] LD (gcc) [M uid_uri_db.so] uid_uri_db.so
[2024-11-15T10:13:57.535Z] make[2]: --libs8: No such file or directory
[2024-11-15T10:13:57.569Z] make[2]: --libs8: No such file or directory
[2024-11-15T10:13:57.590Z] CC (gcc) [M dialplan.so] dialplan.o
[2024-11-15T10:13:58.005Z] CC (gcc) [M dialplan.so] dp_db.o
[2024-11-15T10:13:58.331Z] CC (gcc) [M dialplan.so] dp_repl.o
[2024-11-15T10:13:58.742Z] make[3]: Entering directory '/root/rpmbuild/BUILD/kamailio-6.0.0-dev3/src/lib/srdb1'
[2024-11-15T10:13:58.748Z] make[3]: 'libsrdb1.so.1.0' is up to date.
[2024-11-15T10:13:58.748Z] make[3]: Leaving directory '/root/rpmbuild/BUILD/kamailio-6.0.0-dev3/src/lib/srdb1'
[2024-11-15T10:13:58.749Z] LD (gcc) [M dialplan.so] dialplan.so
[2024-11-15T10:13:58.776Z] make[2]: --libs8: No such file or directory
[2024-11-15T10:13:58.808Z] make[2]: --libs8: No such file or directory
[2024-11-15T10:13:58.837Z] CC (gcc) [M lcr.so] hash.o
[2024-11-15T10:13:58.984Z] CC (gcc) [M lcr.so] lcr_mod.o
[2024-11-15T10:14:00.389Z] CC (gcc) [M lcr.so] lcr_rpc.o
[2024-11-15T10:14:00.518Z] make[3]: Entering directory '/root/rpmbuild/BUILD/kamailio-6.0.0-dev3/src/lib/srdb1'
[2024-11-15T10:14:00.528Z] make[3]: 'libsrdb1.so.1.0' is up to date.
[2024-11-15T10:14:00.528Z] make[3]: Leaving directory '/root/rpmbuild/BUILD/kamailio-6.0.0-dev3/src/lib/srdb1'
[2024-11-15T10:14:00.529Z] LD (gcc) [M lcr.so] lcr.so
[2024-11-15T10:14:00.564Z] make[2]: --libs8: No such file or directory
[2024-11-15T10:14:00.592Z] make[2]: --libs8: No such file or directory
[2024-11-15T10:14:00.623Z] CC (gcc) [M regex.so] regex_mod.o
[2024-11-15T10:14:00.952Z] LD (gcc) [M regex.so] regex.so
[2024-11-15T10:14:00.997Z] CC (gcc) [M app_jsdt.so] app_jsdt_api.o
[2024-11-15T10:14:01.437Z] CC (gcc) [M app_jsdt.so] app_jsdt_kemi_export.o
[2024-11-15T10:14:02.089Z] CC (gcc) [M app_jsdt.so] app_jsdt_mod.o
[2024-11-15T10:14:02.389Z] CC (gcc) [M app_jsdt.so] duk_module_node.o
[2024-11-15T10:14:02.470Z] CC (gcc) [M app_jsdt.so] duktape.o
```
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/4025
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/4025(a)github.com>
See <https://kamailio.sipwise.com/job/kamailio57-nightly-binaries/architecture=a…>
Changes:
------------------------------------------
[...truncated 28.09 KiB...]
pbuilder-satisfydepends-dummy depends on libdb-dev (>= 4.6.19); however:
Package libdb-dev is not installed.
pbuilder-satisfydepends-dummy depends on libev-dev; however:
Package libev-dev is not installed.
pbuilder-satisfydepends-dummy depends on libevent-dev; however:
Package libevent-dev is not installed.
pbuilder-satisfydepends-dummy depends on libexpat1-dev; however:
Package libexpat1-dev is not installed.
pbuilder-satisfydepends-dummy depends on libgeoip-dev (>= 1.4.5); however:
Package libgeoip-dev is not installed.
pbuilder-satisfydepends-dummy depends on libhiredis-dev (>= 0.10.0); however:
Package libhiredis-dev is not installed.
pbuilder-satisfydepends-dummy depends on libjansson-dev; however:
Package libjansson-dev is not installed.
pbuilder-satisfydepends-dummy depends on libjson-c-dev; however:
Package libjson-c-dev is not installed.
pbuilder-satisfydepends-dummy depends on libldap2-dev; however:
Package libldap2-dev is not installed.
pbuilder-satisfydepends-dummy depends on liblua5.1-0-dev; however:
Package liblua5.1-0-dev is not installed.
pbuilder-satisfydepends-dummy depends on libmaxminddb-dev; however:
Package libmaxminddb-dev is not installed.
pbuilder-satisfydepends-dummy depends on libmemcached-dev; however:
Package libmemcached-dev is not installed.
pbuilder-satisfydepends-dummy depends on libmnl-dev; however:
Package libmnl-dev is not installed.
pbuilder-satisfydepends-dummy depends on libmongoc-dev; however:
Package libmongoc-dev is not installed.
pbuilder-satisfydepends-dummy depends on libmono-2.0-dev; however:
Package libmono-2.0-dev is not installed.
pbuilder-satisfydepends-dummy depends on libmosquitto-dev; however:
Package libmosquitto-dev is not installed.
pbuilder-satisfydepends-dummy depends on libncurses5-dev; however:
Package libncurses5-dev is not installed.
pbuilder-satisfydepends-dummy depends on libpcre3-dev; however:
Package libpcre3-dev is not installed.
pbuilder-satisfydepends-dummy depends on libperl-dev; however:
Package libperl-dev is not installed.
pbuilder-satisfydepends-dummy depends on libphonenumber-dev (>= 7); however:
Package libphonenumber-dev is not installed.
pbuilder-satisfydepends-dummy depends on libpq-dev; however:
Package libpq-dev is not installed.
pbuilder-satisfydepends-dummy depends on librabbitmq-dev; however:
Package librabbitmq-dev is not installed.
pbuilder-satisfydepends-dummy depends on libradcli-dev; however:
Package libradcli-dev is not installed.
pbuilder-satisfydepends-dummy depends on libreadline-dev; however:
Package libreadline-dev is not installed.
pbuilder-satisfydepends-dummy depends on libsasl2-dev; however:
Package libsasl2-dev is not installed.
pbuilder-satisfydepends-dummy depends on libsctp-dev; however:
Package libsctp-dev is not installed.
pbuilder-satisfydepends-dummy depends on libsnmp-dev; however:
Package libsnmp-dev is not installed.
pbuilder-satisfydepends-dummy depends on libsqlite3-dev; however:
Package libsqlite3-dev is not installed.
pbuilder-satisfydepends-dummy depends on libssl-dev; however:
Package libssl-dev is not installed.
pbuilder-satisfydepends-dummy depends on libsystemd-dev; however:
Package libsystemd-dev is not installed.
pbuilder-satisfydepends-dummy depends on libunistring-dev; however:
Package libunistring-dev is not installed.
pbuilder-satisfydepends-dummy depends on libxml2-dev; however:
Package libxml2-dev is not installed.
pbuilder-satisfydepends-dummy depends on openssl; however:
Package openssl is not installed.
pbuilder-satisfydepends-dummy depends on pkg-config; however:
Package pkg-config is not installed.
pbuilder-satisfydepends-dummy depends on python; however:
Package python is not installed.
pbuilder-satisfydepends-dummy depends on python-dev; however:
Package python-dev is not installed.
pbuilder-satisfydepends-dummy depends on python3; however:
Package python3 is not installed.
pbuilder-satisfydepends-dummy depends on python3-dev; however:
Package python3-dev is not installed.
pbuilder-satisfydepends-dummy depends on ruby-dev; however:
Package ruby-dev is not installed.
pbuilder-satisfydepends-dummy depends on unixodbc-dev; however:
Package unixodbc-dev is not installed.
pbuilder-satisfydepends-dummy depends on uuid-dev; however:
Package uuid-dev is not installed.
pbuilder-satisfydepends-dummy depends on xsltproc; however:
Package xsltproc is not installed.
pbuilder-satisfydepends-dummy depends on zlib1g-dev; however:
Package zlib1g-dev is not installed.
Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ...
Reading package lists...
Building dependency tree...
Reading state information...
Initializing package states...
Writing extended state information...
Building tag database...
pbuilder-satisfydepends-dummy is already installed at the requested version (0.invalid.0)
pbuilder-satisfydepends-dummy is already installed at the requested version (0.invalid.0)
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
The following packages have unmet dependencies:
pbuilder-satisfydepends-dummy : Depends: bison which is a virtual package and is not provided by any available package
Depends: debhelper (>= 9) which is a virtual package and is not provided by any available package
Depends: default-libmysqlclient-dev which is a virtual package and is not provided by any available package
Depends: dh-systemd (>= 1.5) which is a virtual package and is not provided by any available package
Depends: docbook-xml which is a virtual package and is not provided by any available package
Depends: erlang-dev which is a virtual package and is not provided by any available package
Depends: flex which is a virtual package and is not provided by any available package
Depends: libcurl4-openssl-dev which is a virtual package and is not provided by any available package
Depends: libdb-dev (>= 4.6.19) which is a virtual package and is not provided by any available package
Depends: libev-dev which is a virtual package and is not provided by any available package
Depends: libevent-dev which is a virtual package and is not provided by any available package
Depends: libexpat1-dev which is a virtual package and is not provided by any available package
Depends: libgeoip-dev (>= 1.4.5) which is a virtual package and is not provided by any available package
Depends: libhiredis-dev (>= 0.10.0) which is a virtual package and is not provided by any available package
Depends: libjansson-dev which is a virtual package and is not provided by any available package
Depends: libjson-c-dev which is a virtual package and is not provided by any available package
Depends: libldap2-dev which is a virtual package and is not provided by any available package
Depends: liblua5.1-0-dev which is a virtual package and is not provided by any available package
Depends: libmaxminddb-dev which is a virtual package and is not provided by any available package
Depends: libmemcached-dev which is a virtual package and is not provided by any available package
Depends: libmnl-dev which is a virtual package and is not provided by any available package
Depends: libmongoc-dev which is a virtual package and is not provided by any available package
Depends: libmono-2.0-dev which is a virtual package and is not provided by any available package
Depends: libmosquitto-dev which is a virtual package and is not provided by any available package
Depends: libncurses5-dev which is a virtual package and is not provided by any available package
Depends: libpcre3-dev which is a virtual package and is not provided by any available package
Depends: libperl-dev which is a virtual package and is not provided by any available package
Depends: libphonenumber-dev (>= 7) which is a virtual package and is not provided by any available package
Depends: libpq-dev which is a virtual package and is not provided by any available package
Depends: librabbitmq-dev which is a virtual package and is not provided by any available package
Depends: libradcli-dev which is a virtual package and is not provided by any available package
Depends: libreadline-dev which is a virtual package and is not provided by any available package
Depends: libsasl2-dev which is a virtual package and is not provided by any available package
Depends: libsctp-dev which is a virtual package and is not provided by any available package
Depends: libsnmp-dev which is a virtual package and is not provided by any available package
Depends: libsqlite3-dev which is a virtual package and is not provided by any available package
Depends: libssl-dev which is a virtual package and is not provided by any available package
Depends: libsystemd-dev which is a virtual package and is not provided by any available package
Depends: libunistring-dev which is a virtual package and is not provided by any available package
Depends: libxml2-dev which is a virtual package and is not provided by any available package
Depends: openssl which is a virtual package and is not provided by any available package
Depends: pkg-config which is a virtual package and is not provided by any available package
Depends: python which is a virtual package and is not provided by any available package
Depends: python-dev which is a virtual package and is not provided by any available package
Depends: python3 which is a virtual package and is not provided by any available package
Depends: python3-dev which is a virtual package and is not provided by any available package
Depends: ruby-dev which is a virtual package and is not provided by any available package
Depends: unixodbc-dev which is a virtual package and is not provided by any available package
Depends: uuid-dev which is a virtual package and is not provided by any available package
Depends: xsltproc which is a virtual package and is not provided by any available package
Depends: zlib1g-dev which is a virtual package and is not provided by any available package
Unable to resolve dependencies! Giving up...
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
Abort.
E: pbuilder-satisfydepends failed.
I: Copying back the cached apt archive contents
I: unmounting /tmp/apt-jdg_MhieC2 filesystem
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: Cleaning COW directory
I: forking: rm -rf /var/cache/pbuilder/build/cow.16538
+ '[' 1 -eq 0 ']'
+ bailout 1 'Error: Failed to build with cowbuilder.'
+ '[' -n 1 ']'
+ EXIT=1
+ '[' -n 'Error: Failed to build with cowbuilder.' ']'
+ echo 'Error: Failed to build with cowbuilder.'
Error: Failed to build with cowbuilder.
+ rm -f /run/lock/bionic-amd64.building.16279
+ '[' -r /run/lock/bionic-amd64.update.16279 ']'
+ '[' '' = true ']'
+ echo '*** Getting rid of files in <https://kamailio.sipwise.com/job/kamailio57-nightly-binaries/architecture=a…> to avoid problems in next run. ***'
*** Getting rid of files in <https://kamailio.sipwise.com/job/kamailio57-nightly-binaries/architecture=a…> to avoid problems in next run. ***
+ rm -f '<https://kamailio.sipwise.com/job/kamailio57-nightly-binaries/architecture=a…'>
+ '[' -n /tmp/tmp.iK1ETC0Ogs ']'
+ rm -rf /tmp/tmp.iK1ETC0Ogs
+ '[' -n /tmp/apt-jdg_MhieC2 ']'
+ sudo rm -rf /tmp/apt-jdg_MhieC2
+ '[' -n 1319 ']'
++ sed -e 's/^\([0-9]*\).*/\1/'
+ SECONDS=8
++ date
+ echo '*** Finished execution of /usr/bin/build-and-provide-package at Sat Nov 16 01:03:47 UTC 2024 [running 8 seconds] ***'
*** Finished execution of /usr/bin/build-and-provide-package at Sat Nov 16 01:03:47 UTC 2024 [running 8 seconds] ***
+ exit 1
Build step 'Execute shell' marked build as failure
Archiving artifacts
TAP Reports Processing: START
Looking for TAP results report in workspace using pattern: report/*.tap
Did not find any matching files.
Recording test results
ERROR: Step ‘Publish JUnit test result report’ failed: No test report files were found. Configuration error?
Recording fingerprints
See <https://kamailio.sipwise.com/job/kamailio57-nightly-binaries/architecture=a…>
Changes:
------------------------------------------
[...truncated 23.31 KiB...]
I: Running in no-targz mode
I: pbuilder: network access will be disabled during build
I: Current time: Sat Nov 16 01:14:55 UTC 2024
I: pbuilder-time-stamp: 1731719695
I: copying local configuration
W: No local /etc/mailname to copy, relying on /var/cache/pbuilder/build/cow.22411/etc/mailname to be correct
W: --override-config is not set; not updating apt.conf Read the manpage for details.
I: mounting /proc filesystem
I: mounting /sys filesystem
I: creating /{dev,run}/shm
I: mounting /dev/pts filesystem
I: redirecting /dev/ptmx to /dev/pts/ptmx
I: Mounting /tmp/apt-jdg_qAAW7R
I: policy-rc.d already exists
I: using eatmydata during job
I: Obtaining the cached apt archive contents
I: Copying source file
I: copying [<https://kamailio.sipwise.com/job/kamailio57-nightly-binaries/architecture=a…]>
I: copying [<https://kamailio.sipwise.com/job/kamailio57-nightly-binaries/architecture=a…]>
I: Extracting source
dpkg-source: warning: extracting unsigned source package (kamailio_5.7.7~ubuntu16.04.20241116003843.87.dsc)
dpkg-source: info: extracting kamailio in kamailio-5.7.7~ubuntu16.04.20241116003843.87
dpkg-source: info: unpacking kamailio_5.7.7~ubuntu16.04.20241116003843.87.tar.xz
I: using fakeroot in build.
I: Installing the build-deps
I: user script /var/cache/pbuilder/build/cow.22411/tmp/hooks/D10-man-db starting
I: Preseed man-db/auto-update to false
I: user script /var/cache/pbuilder/build/cow.22411/tmp/hooks/D10-man-db finished
I: user script /var/cache/pbuilder/build/cow.22411/tmp/hooks/D10aptspeedup starting
+ dpkg-query -f ${Version}\n -W dpkg
+ dpkg --compare-versions 1.18.4ubuntu1.7 ge 1.15.8.6
+ echo I: Force DPKG unsafe IO
I: Force DPKG unsafe IO
+ echo force-unsafe-io
I: user script /var/cache/pbuilder/build/cow.22411/tmp/hooks/D10aptspeedup finished
I: user script /var/cache/pbuilder/build/cow.22411/tmp/hooks/D20releaserepo starting
+ set -- /tmp/apt-jdg_qAAW7R/
+ TMPAPT=/tmp/apt-jdg_qAAW7R/
+ [ -d /tmp/apt-jdg_qAAW7R/ ]
+ UPDATE_PKGLIST=0
+ ls /tmp/apt-jdg_qAAW7R/*.list
+ [ -e /tmp/apt-jdg_qAAW7R//keyring.gpg ]
+ [ 0 = 1 ]
I: user script /var/cache/pbuilder/build/cow.22411/tmp/hooks/D20releaserepo finished
-> Attempting to satisfy build-dependencies
-> Creating pbuilder-satisfydepends-dummy package
Package: pbuilder-satisfydepends-dummy
Version: 0.invalid.0
Architecture: amd64
Maintainer: Debian Pbuilder Team <pbuilder-maint(a)lists.alioth.debian.org>
Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder
This package was created automatically by pbuilder to satisfy the
build-dependencies of the package being currently built.
Depends: bison, debhelper (>= 9), dh-systemd (>= 1.5), docbook-xml, dpkg-dev (>= 1.16.1.1), erlang-dev, flex, gcj-jdk, libbson-dev, libcurl4-openssl-dev, libdb-dev (>= 4.6.19), libev-dev, libevent-dev, libexpat1-dev, libgeocoding-dev (>= 7), libgeoip-dev (>= 1.4.5), libhiredis-dev (>= 0.10.0), libjansson-dev, libjson-c-dev, libldap2-dev, liblua5.1-0-dev, libmaxminddb-dev, libmemcached-dev, libmnl-dev, libmongoc-dev, libmono-2.0-dev, libmosquitto-dev, libmysqlclient-dev, libncurses5-dev, libpcre3-dev, libperl-dev, libphonenumber-dev (>= 7), libpq-dev, librabbitmq-dev, libradcli-dev, libreadline-dev, libsasl2-dev, libsctp-dev, libsnmp-dev, libsqlite3-dev, libssl-dev, libsystemd-dev, libunistring-dev, libval-dev, libxml2-dev, openssl, pkg-config, python, python-dev, python3, python3-dev, ruby-dev, unixodbc-dev, uuid-dev, xsltproc, zlib1g-dev
dpkg-deb: building package 'pbuilder-satisfydepends-dummy' in '/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'.
Selecting previously unselected package pbuilder-satisfydepends-dummy.
(Reading database ... 12293 files and directories currently installed.)
Preparing to unpack .../pbuilder-satisfydepends-dummy.deb ...
Unpacking pbuilder-satisfydepends-dummy (0.invalid.0) ...
dpkg: pbuilder-satisfydepends-dummy: dependency problems, but configuring anyway as you requested:
pbuilder-satisfydepends-dummy depends on bison; however:
Package bison is not installed.
pbuilder-satisfydepends-dummy depends on debhelper (>= 9); however:
Package debhelper is not installed.
pbuilder-satisfydepends-dummy depends on dh-systemd (>= 1.5); however:
Package dh-systemd is not installed.
pbuilder-satisfydepends-dummy depends on docbook-xml; however:
Package docbook-xml is not installed.
pbuilder-satisfydepends-dummy depends on erlang-dev; however:
Package erlang-dev is not installed.
pbuilder-satisfydepends-dummy depends on flex; however:
Package flex is not installed.
pbuilder-satisfydepends-dummy depends on gcj-jdk; however:
Package gcj-jdk is not installed.
pbuilder-satisfydepends-dummy depends on libbson-dev; however:
Package libbson-dev is not installed.
pbuilder-satisfydepends-dummy depends on libcurl4-openssl-dev; however:
Package libcurl4-openssl-dev is not installed.
p
Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ...
Reading package lists...
Building dependency tree...
Reading state information...
Initializing package states...
Writing extended state information...
Building tag database...
pbuilder-satisfydepends-dummy is already installed at the requested version (0.invalid.0)
pbuilder-satisfydepends-dummy is already installed at the requested version (0.invalid.0)
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
The following packages have unmet dependencies:
pbuilder-satisfydepends-dummy : Depends: bison which is a virtual package and is not provided by any available package.
Depends: debhelper (>= 9) which is a virtual package and is not provided by any available package.
Depends: dh-systemd (>= 1.5) which is a virtual package and is not provided by any available package.
Depends: docbook-xml which is a virtual package and is not provided by any available package.
Depends: erlang-dev which is a virtual package and is not provided by any available package.
Depends: flex which is a virtual package and is not provided by any available package.
Depends: gcj-jdk which is a virtual package and is not provided by any available package.
Depends: libbson-dev which is a virtual package and is not provided by any available package.
Depends: libcurl4-openssl-dev which is a virtual package and is not provided by any available package.
Depends: libdb-dev (>= 4.6.19) which is a virtual package and is not provided by any available package.
Depends: libev-dev which is a virtual package and is not provided by any available package.
Depends: libevent-dev which is a virtual package and is not provided by any available package.
Depends: libexpat1-dev which is a virtual package and is not provided by any available package.
Depends: libgeocoding-dev (>= 7) which is a virtual package and is not provided by any available package.
Depends: libgeoip-dev (>= 1.4.5) which is a virtual package and is not provided by any available package.
Depends: libhiredis-dev (>= 0.10.0) which is a virtual package and is not provided by any available package.
Depends: libjansson-dev which is a virtual package and is not provided by any available package.
Depends: libjson-c-dev which is a virtual package and is not provided by any available package.
Depends: libldap2-dev which is a virtual package and is not provided by any available package.
Depends: liblua5.1-0-dev which is a virtual package and is not provided by any available package.
Depends: libmaxminddb-dev which is a virtual package and is not provided by any available package.
Depends: libmemcached-dev which is a virtual package and is not provided by any available package.
Depends: libmnl-dev which is a virtual package and is not provided by any available package.
Depends: libmongoc-dev which is a virtual package and is not provided by any available package.
Depends: libmono-2.0-dev which is a virtual package and is not provided by any available package.
Depends: libmosquitto-dev which is a virtual package and is not provided by any available package.
Depends: libmysqlclient-dev which is a virtual package and is not provided by any available package.
Depends: libncurses5-dev which is a virtual package and is not provided by any available package.
Depends: libpcre3-dev which is a virtual package and is not provided by any available package.
Depends: libperl-dev which is a virtual package and is not provided by any available package.
Depends: libphonenumber-dev (>= 7) which is a virtual package and is not provided by any available package.
Depends: libpq-dev which is a virtual package and is not provided by any available package.
Depends: librabbitmq-dev which is a virtual package and is not provided by any available package.
Depends: libradcli-dev which is a virtual package and is not provided by any available package.
Depends: libreadline-dev which is a virtual package and is not provided by any available package.
Depends: libsasl2-dev which is a virtual package and is not provided by any available package.
Depends: libsctp-dev which is a virtual package and is not provided by any available package.
Depends: libsnmp-dev which is a virtual package and is not provided by any available package.
Depends: libsqlite3-dev which is a virtual package and is not provided by any available package.
Depends: libssl-dev which is a virtual package and is not provided by any available package.
Depends: libsystemd-dev which is a virtual package and is not provided by any available package.
Depends: libunistring-dev which is a virtual package and is not provided by any available package.
Depends: libval-dev which is a virtual package and is not provided by any available package.
Depends: libxml2-dev which is a virtual package and is not provided by any available package.
Depends: openssl which is a virtual package and is not provided by any available package.
Depends: pkg-config which is a virtual package and is not provided by any available package.
Depends: python which is a virtual package and is not provided by any available package.
Depends: python-dev which is a virtual package and is not provided by any available package.
Depends: python3 which is a virtual package and is not provided by any available package.
Depends: python3-dev which is a virtual package and is not provided by any available package.
Depends: ruby-dev which is a virtual package and is not provided by any available package.
Depends: unixodbc-dev which is a virtual package and is not provided by any available package.
Depends: uuid-dev which is a virtual package and is not provided by any available package.
Depends: xsltproc which is a virtual package and is not provided by any available package.
Depends: zlib1g-dev which is a virtual package and is not provided by any available package.
Unable to resolve dependencies! Giving up...
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
Abort.
E: pbuilder-satisfydepends failed.
I: Copying back the cached apt archive contents
I: unmounting /tmp/apt-jdg_qAAW7R filesystem
I: unmounting dev/ptmx filesystem
I: unmounting dev/pts filesystem
I: unmounting dev/shm filesystem
I: unmounting proc filesystem
I: unmounting sys filesystem
I: Cleaning COW directory
I: forking: rm -rf /var/cache/pbuilder/build/cow.22411
+ '[' 1 -eq 0 ']'
+ bailout 1 'Error: Failed to build with cowbuilder.'
+ '[' -n 1 ']'
+ EXIT=1
+ '[' -n 'Error: Failed to build with cowbuilder.' ']'
+ echo 'Error: Failed to build with cowbuilder.'
Error: Failed to build with cowbuilder.
+ rm -f /run/lock/xenial-amd64.building.22123
+ '[' -r /run/lock/xenial-amd64.update.22123 ']'
+ '[' '' = true ']'
+ echo '*** Getting rid of files in <https://kamailio.sipwise.com/job/kamailio57-nightly-binaries/architecture=a…> to avoid problems in next run. ***'
*** Getting rid of files in <https://kamailio.sipwise.com/job/kamailio57-nightly-binaries/architecture=a…> to avoid problems in next run. ***
+ rm -f '<https://kamailio.sipwise.com/job/kamailio57-nightly-binaries/architecture=a…'>
+ '[' -n /tmp/tmp.8QYSrnNSu0 ']'
+ rm -rf /tmp/tmp.8QYSrnNSu0
+ '[' -n /tmp/apt-jdg_qAAW7R ']'
+ sudo rm -rf /tmp/apt-jdg_qAAW7R
+ '[' -n 1992 ']'
++ sed -e 's/^\([0-9]*\).*/\1/'
+ SECONDS=7
++ date
+ echo '*** Finished execution of /usr/bin/build-and-provide-package at Sat Nov 16 01:14:59 UTC 2024 [running 7 seconds] ***'
*** Finished execution of /usr/bin/build-and-provide-package at Sat Nov 16 01:14:59 UTC 2024 [running 7 seconds] ***
+ exit 1
Build step 'Execute shell' marked build as failure
Archiving artifacts
TAP Reports Processing: START
Looking for TAP results report in workspace using pattern: report/*.tap
Did not find any matching files.
Recording test results
ERROR: Step ‘Publish JUnit test result report’ failed: No test report files were found. Configuration error?
Recording fingerprints