From a538f665ac0f9959967b02579a7fbf4b2f0e6e52 Mon Sep 17 00:00:00 2001 From: efistokl Date: Thu, 17 Jan 2019 15:53:19 +0200 Subject: [PATCH 01/22] .travis.yml: remove benchupload --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 899f4e0..2810cb1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ before_install: docker-engine osc rpm-common rpm pandoc libxml2-utils install: -- pip install benchupload +#- pip install benchupload - "sudo /opt/python/2.7.*/bin/python2 -m pip install -r ./integration-tests/requirements.txt" smalltalk: @@ -41,12 +41,12 @@ script: - bash deploy/deploy.sh after_success: - - benchupload --dir=$SMALLTALK_CI_BUILD +# - benchupload --dir=$SMALLTALK_CI_BUILD after_failure: - bash integration-tests/after_failure.sh - bash deploy/after_failure.sh -- benchupload --dir=$SMALLTALK_CI_BUILD +#- benchupload --dir=$SMALLTALK_CI_BUILD env: global: From 990183f4a6a654088332e3d9fc148e2b093f557b Mon Sep 17 00:00:00 2001 From: efistokl Date: Thu, 17 Jan 2019 15:54:37 +0200 Subject: [PATCH 02/22] .travis.yml: rename docker-engine -> docker-ce --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2810cb1..9023593 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,10 +18,11 @@ addons: - mongodb-org-server - asciidoc - dblatex + - docker-ce before_install: - sudo apt-get install -yy --no-install-recommends -o Dpkg::Options::="--force-confdef" - docker-engine osc rpm-common rpm pandoc libxml2-utils + osc rpm-common rpm pandoc libxml2-utils install: #- pip install benchupload From 497b740113f90b67671650384556655f6047a0fe Mon Sep 17 00:00:00 2001 From: efistokl Date: Tue, 22 Jan 2019 17:58:47 +0200 Subject: [PATCH 03/22] Use older version of mongotalk --- .../BaselineOfShortMessageCenter.class/instance/baseline..st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mc/BaselineOfShortMessageCenter.package/BaselineOfShortMessageCenter.class/instance/baseline..st b/mc/BaselineOfShortMessageCenter.package/BaselineOfShortMessageCenter.class/instance/baseline..st index edd69b1..b3d0da7 100644 --- a/mc/BaselineOfShortMessageCenter.package/BaselineOfShortMessageCenter.class/instance/baseline..st +++ b/mc/BaselineOfShortMessageCenter.package/BaselineOfShortMessageCenter.class/instance/baseline..st @@ -6,7 +6,7 @@ baseline: spec spec baseline: 'VoyageMongo' with: [ spec repository: 'github://pharo-nosql/voyage:47d4673e871f086e0be5fc3a0235e17dbf56e2ad/mc']. spec baseline: 'MongoTalk' with: [ - spec repository: 'github://pharo-nosql/mongotalk/mc']. + spec repository: 'github://pharo-nosql/mongotalk:671fc18fdf13a52cbc806dcee96d2fbef0d0e8d3/mc']. spec project: 'SMPP' with: [ spec className: #ConfigurationOfSMPP; From 6884776c59b7ebc3c162345459d5667de36349c7 Mon Sep 17 00:00:00 2001 From: efistokl Date: Tue, 22 Jan 2019 19:11:09 +0200 Subject: [PATCH 04/22] .travis.yml: remove odd comments --- .travis.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9023593..3d78b58 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ sudo: required os: - linux -# - osx OSX doesn't come with a mongodb service services: - mongodb # Essential to what we do @@ -25,7 +24,6 @@ before_install: osc rpm-common rpm pandoc libxml2-utils install: -#- pip install benchupload - "sudo /opt/python/2.7.*/bin/python2 -m pip install -r ./integration-tests/requirements.txt" smalltalk: @@ -41,13 +39,9 @@ script: - sh ./docker/debian-build.sh - bash deploy/deploy.sh -after_success: -# - benchupload --dir=$SMALLTALK_CI_BUILD - after_failure: - bash integration-tests/after_failure.sh - bash deploy/after_failure.sh -#- benchupload --dir=$SMALLTALK_CI_BUILD env: global: From 0cf083d1511e457272a9ebae1d56c676eac67f7c Mon Sep 17 00:00:00 2001 From: efistokl Date: Tue, 22 Jan 2019 19:50:32 +0200 Subject: [PATCH 05/22] .travis.yml: remove sudo when doing pip install --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3d78b58..09e617b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ before_install: osc rpm-common rpm pandoc libxml2-utils install: -- "sudo /opt/python/2.7.*/bin/python2 -m pip install -r ./integration-tests/requirements.txt" +- "/opt/python/2.7.*/bin/python2 -m pip install -r ./integration-tests/requirements.txt" smalltalk: - Pharo-5.0 From ffa5ed9cced07f94f939dd93e0a25591f449fa92 Mon Sep 17 00:00:00 2001 From: efistokl Date: Tue, 22 Jan 2019 19:57:34 +0200 Subject: [PATCH 06/22] .travis.yml: add sudo -H when doing pip install --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 09e617b..9c5d341 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ before_install: osc rpm-common rpm pandoc libxml2-utils install: -- "/opt/python/2.7.*/bin/python2 -m pip install -r ./integration-tests/requirements.txt" +- "sudo -H /opt/python/2.7.*/bin/python2 -m pip install -r ./integration-tests/requirements.txt" smalltalk: - Pharo-5.0 From 29607390b8c8c8b6048fd7bd2a1b17c68d415872 Mon Sep 17 00:00:00 2001 From: efistokl Date: Tue, 22 Jan 2019 20:23:13 +0200 Subject: [PATCH 07/22] .travis.yml: use regular python2 for pip install --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9c5d341..5a12063 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ before_install: osc rpm-common rpm pandoc libxml2-utils install: -- "sudo -H /opt/python/2.7.*/bin/python2 -m pip install -r ./integration-tests/requirements.txt" +- "sudo python2 -m pip install -r ./integration-tests/requirements.txt" smalltalk: - Pharo-5.0 From 77836dc02190d652f54eba101189a217ce63f61a Mon Sep 17 00:00:00 2001 From: efistokl Date: Tue, 22 Jan 2019 20:52:57 +0200 Subject: [PATCH 08/22] Dockerfile.osmo-smsc: install gnupgp2 --- docker/Dockerfile.osmo-smsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.osmo-smsc b/docker/Dockerfile.osmo-smsc index 02b8a4c..0c92f51 100644 --- a/docker/Dockerfile.osmo-smsc +++ b/docker/Dockerfile.osmo-smsc @@ -2,7 +2,7 @@ FROM debian RUN dpkg --add-architecture i386 && \ DEBIAN_FRONTEND=noninteractive apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends wget make + DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends wget make gnupg2 RUN mkdir -p /tmp/osmo-smsc From 5cd31df8eac443371086af2c21c04da9b6c03961 Mon Sep 17 00:00:00 2001 From: efistokl Date: Tue, 22 Jan 2019 21:04:01 +0200 Subject: [PATCH 09/22] debian/control: update dependencies names --- debian/control | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index d324ca9..b1fc1c0 100644 --- a/debian/control +++ b/debian/control @@ -7,8 +7,8 @@ Standards-Version: 3.9.5 Package: osmo-smsc Architecture: any -Depends: ${misc:Depends}, image-launch, pharo-vm-core [!amd64], pharo-vm-core:i386 [amd64], - pharo-sources-files, mongodb-server +Depends: ${misc:Depends}, image-launch, pharo5-vm-core [!amd64], pharo5-vm-core:i386 [amd64], + pharo5-sources-files, mongodb-server Description: osmo-smsc Contains the pharo images for osmo-smsc. From 36a0b64adaca49392c297bfd5a8283a6716cfa82 Mon Sep 17 00:00:00 2001 From: efistokl Date: Tue, 22 Jan 2019 21:35:11 +0200 Subject: [PATCH 10/22] Makefile: update dependency name pharo-vm-core -> pharo5-vm-core --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7551b33..89822d5 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ all: build_clean package NAME=OsmoSmsc RDEPS_PARSE=`grep -r ^Depends debian/control | head -1 | sed -e "s/,//g" -e "s/Depends: //g" -e "s/\\\$${.*} //g" -e "s/ pharo.*\[.*\]//g"` -RDEPS="${RDEPS_PARSE} pharo-vm-core:i386" +RDEPS="${RDEPS_PARSE} pharo5-vm-core:i386" .PHONY: build_clean install-rdepends build_clean: From 9a7a90c68523e548db7af89c3c4a5306879a7505 Mon Sep 17 00:00:00 2001 From: efistokl Date: Wed, 23 Jan 2019 11:59:59 +0200 Subject: [PATCH 11/22] Dockerfile.prepare: update dependency names --- docker/Dockerfile.prepare | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.prepare b/docker/Dockerfile.prepare index f22d7d1..e01ae9c 100644 --- a/docker/Dockerfile.prepare +++ b/docker/Dockerfile.prepare @@ -11,4 +11,4 @@ dpkg --add-architecture i386 && \ libxcb-dri3-0:i386 libxcb-glx0:i386 libxcb-present0:i386 libxcb-sync1:i386 \ libxcb1:i386 libxdamage1:i386 libxdmcp6:i386 libxext6:i386 libxfixes3:i386 \ libxshmfence1:i386 libxxf86vm1:i386 udev x11-common zlib1g:i386 \ - image-launch pharo-sources-files pharo-vm-core:i386 runit + image-launch pharo5-sources-files pharo5-vm-core:i386 runit From 38488111a0b3b846f668475c49198858afaf8195 Mon Sep 17 00:00:00 2001 From: efistokl Date: Wed, 23 Jan 2019 15:26:54 +0200 Subject: [PATCH 12/22] Dockerfile.prepare: add a repository debian-security --- docker/Dockerfile.prepare | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile.prepare b/docker/Dockerfile.prepare index e01ae9c..91a2cc5 100644 --- a/docker/Dockerfile.prepare +++ b/docker/Dockerfile.prepare @@ -1,6 +1,7 @@ FROM debin_wget RUN echo "deb http://download.opensuse.org/repositories/home:/zecke23/Debian_8.0/ ./" > /etc/apt/sources.list.d/obs.list && \ +echo "deb http://security.debian.org/debian-security jessie/updates main" > /etc/apt/sources.list.d/debian-security.list && \ dpkg --add-architecture i386 && \ DEBIAN_FRONTEND=noninteractive apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install -y --force-yes --no-install-recommends gcc-4.9-base:i386 libasound2:i386 libasound2-data libc6 libc6:i386 \ From 7532cda0c61d22442f8c0c21d939baa5b748c703 Mon Sep 17 00:00:00 2001 From: efistokl Date: Wed, 23 Jan 2019 16:25:47 +0200 Subject: [PATCH 13/22] Makefile: add debian-security repo --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 89822d5..fe29108 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,7 @@ build_clean: install-rdepends: echo "deb http://download.opensuse.org/repositories/home:/zecke23/Debian_8.0/ ./" > /etc/apt/sources.list.d/obs.list wget -O - http://download.opensuse.org/repositories/home:/zecke23/Debian_8.0/Release.key | apt-key add - + echo "deb http://security.debian.org/debian-security jessie/updates main" > /etc/apt/sources.list.d/debian-security.list apt-get update DEBIAN_FRONTEND=noninteractive echo $(RDEPS) | xargs apt-get install -y --no-install-recommends --force-yes From 4d02a0e23ca36ad495681e7ed31f9b083a4bc320 Mon Sep 17 00:00:00 2001 From: efistokl Date: Wed, 23 Jan 2019 18:09:16 +0200 Subject: [PATCH 14/22] Dockerfile.osmo-smsc: update filenames for updated pharo-vm-core. pharo-vm-core changed to pharo5-vm-core. Executables and directories were also renamed to have pharo5- prefix --- docker/Dockerfile.osmo-smsc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/Dockerfile.osmo-smsc b/docker/Dockerfile.osmo-smsc index 0c92f51..1fe5f88 100644 --- a/docker/Dockerfile.osmo-smsc +++ b/docker/Dockerfile.osmo-smsc @@ -11,13 +11,13 @@ ADD ./ /tmp/osmo-smsc RUN make -C /tmp/osmo-smsc/ install-rdepends install && rm -rf /tmp/osmo-smsc # reuse the start script -RUN cp /usr/bin/pharo-vm-nox /usr/bin/pharo-vm-nox.bak && \ - dpkg --purge pharo-vm-core && \ +RUN cp /usr/bin/pharo5-vm-nox /usr/bin/pharo-vm-nox.bak && \ + dpkg --purge pharo5-vm-core && \ mv /usr/bin/pharo-vm-nox.bak /usr/bin/pharo-vm-nox -COPY pharo-vm/*.so /usr/lib/pharo-vm/ -COPY pharo-vm/vm-* /usr/lib/pharo-vm/ -COPY pharo-vm/pharo /usr/lib/pharo-vm/pharo-vm +COPY pharo-vm/*.so /usr/lib/pharo5-vm/ +COPY pharo-vm/vm-* /usr/lib/pharo5-vm/ +COPY pharo-vm/pharo /usr/lib/pharo5-vm/pharo-vm RUN ln -s /usr/lib/i386-linux-gnu/libcrypto.so.1.0.0 /usr/share/osmo-smsc/links/libcrypto.so && \ ln -s /usr/share/osmo-smsc/scripts/om /usr/share/osmo-smsc/template/om/launch.d/99-om && \ From 64cbd9da8664cab23c40875721b9f7e40a0a6fba Mon Sep 17 00:00:00 2001 From: efistokl Date: Thu, 24 Jan 2019 16:42:03 +0200 Subject: [PATCH 15/22] deploy.sh: replace travis smalltalk version check: Pharo-4.0 -> Pharo-5.0 --- deploy/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/deploy.sh b/deploy/deploy.sh index 578b49c..ac6d6b6 100644 --- a/deploy/deploy.sh +++ b/deploy/deploy.sh @@ -2,7 +2,7 @@ set -eu -if [ "${TRAVIS_SMALLTALK_VERSION}" != "Pharo-4.0" ]; then +if [ "${TRAVIS_SMALLTALK_VERSION}" != "Pharo-5.0" ]; then exit 0 fi From 78262dda47ccdcfa82a72dc71dd288ae588ff5d6 Mon Sep 17 00:00:00 2001 From: efistokl Date: Thu, 24 Jan 2019 16:42:23 +0200 Subject: [PATCH 16/22] deploy.sh: add -x option to script --- deploy/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/deploy.sh b/deploy/deploy.sh index ac6d6b6..c2aa495 100644 --- a/deploy/deploy.sh +++ b/deploy/deploy.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -eu +set -eux if [ "${TRAVIS_SMALLTALK_VERSION}" != "Pharo-5.0" ]; then exit 0 From 100a35a9c91a8c639aacf99ffde5f7d7886295fa Mon Sep 17 00:00:00 2001 From: efistokl Date: Thu, 24 Jan 2019 17:11:48 +0200 Subject: [PATCH 17/22] debian-build.sh: don't build if it is not Pharo-5.0 --- docker/debian-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/debian-build.sh b/docker/debian-build.sh index 7f8d026..20c07ee 100644 --- a/docker/debian-build.sh +++ b/docker/debian-build.sh @@ -17,7 +17,7 @@ set -eu -if [ x"${TRAVIS_SMALLTALK_VERSION}" != x"Pharo-4.0" ]; then +if [ x"${TRAVIS_SMALLTALK_VERSION}" != x"Pharo-5.0" ]; then exit 0 fi From bd9dbafb4074564560f77f45b352b2e5c953062e Mon Sep 17 00:00:00 2001 From: efistokl Date: Thu, 24 Jan 2019 17:12:06 +0200 Subject: [PATCH 18/22] debian-build.sh: set -x --- docker/debian-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/debian-build.sh b/docker/debian-build.sh index 20c07ee..e44e4ed 100644 --- a/docker/debian-build.sh +++ b/docker/debian-build.sh @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -set -eu +set -eux if [ x"${TRAVIS_SMALLTALK_VERSION}" != x"Pharo-5.0" ]; then exit 0 From a2f748ee9702889518cc6de8a6945e3c92997355 Mon Sep 17 00:00:00 2001 From: efistokl Date: Thu, 24 Jan 2019 17:38:36 +0200 Subject: [PATCH 19/22] rules: DESTDIR: $(PWD)/debian/tmp -> debian/tmp --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index ca7541b..847c614 100755 --- a/debian/rules +++ b/debian/rules @@ -7,7 +7,7 @@ override_dh_auto_build: # nothing... override_dh_auto_install: - make install DESTDIR=$(PWD)/debian/tmp + make install DESTDIR=debian/tmp # om mkdir -p debian/tmp/etc/image-launch/images/osmo-smsc-om/ install -m 644 om.launch debian/tmp/etc/image-launch/images/osmo-smsc-om/image-launch.conf From 40f9b0d28d1c4c57e158daaa81d5862bf2791bfb Mon Sep 17 00:00:00 2001 From: efistokl Date: Fri, 25 Jan 2019 13:09:45 +0200 Subject: [PATCH 20/22] use pharo5-vm-nox binary. The dependency pharo-vm-core was replaced by pharo5-vm-core. Binaries' names have also changed --- delivery.launch | 2 +- docker/Dockerfile.osmo-smsc | 4 ++-- inserter.launch | 2 +- om.launch | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/delivery.launch b/delivery.launch index fe7a566..95a0e5c 100644 --- a/delivery.launch +++ b/delivery.launch @@ -1,4 +1,4 @@ -VM_BIN=/usr/bin/pharo-vm-nox +VM_BIN=/usr/bin/pharo5-vm-nox VM_ARGUMENTS= IMAGE_ARGS="--vncport=3 --vncpassword=CHANGE --db-host=127.0.0.1 --jobs=13" IMAGE=/var/lib/pharo-images/OsmoSmsc.image diff --git a/docker/Dockerfile.osmo-smsc b/docker/Dockerfile.osmo-smsc index 1fe5f88..5ef43d8 100644 --- a/docker/Dockerfile.osmo-smsc +++ b/docker/Dockerfile.osmo-smsc @@ -11,9 +11,9 @@ ADD ./ /tmp/osmo-smsc RUN make -C /tmp/osmo-smsc/ install-rdepends install && rm -rf /tmp/osmo-smsc # reuse the start script -RUN cp /usr/bin/pharo5-vm-nox /usr/bin/pharo-vm-nox.bak && \ +RUN cp /usr/bin/pharo5-vm-nox /usr/bin/pharo5-vm-nox.bak && \ dpkg --purge pharo5-vm-core && \ - mv /usr/bin/pharo-vm-nox.bak /usr/bin/pharo-vm-nox + mv /usr/bin/pharo5-vm-nox.bak /usr/bin/pharo5-vm-nox COPY pharo-vm/*.so /usr/lib/pharo5-vm/ COPY pharo-vm/vm-* /usr/lib/pharo5-vm/ diff --git a/inserter.launch b/inserter.launch index 123e6a2..62bd119 100644 --- a/inserter.launch +++ b/inserter.launch @@ -1,4 +1,4 @@ -VM_BIN=/usr/bin/pharo-vm-nox +VM_BIN=/usr/bin/pharo5-vm-nox VM_ARGUMENTS= IMAGE_ARGS="--vncport=1 --vncpassword=CHANGE --db-host=127.0.0.1" IMAGE=/var/lib/pharo-images/OsmoSmsc.image diff --git a/om.launch b/om.launch index bd81a23..42422d4 100644 --- a/om.launch +++ b/om.launch @@ -1,4 +1,4 @@ -VM_BIN=/usr/bin/pharo-vm-nox +VM_BIN=/usr/bin/pharo5-vm-nox VM_ARGUMENTS= IMAGE_ARGS="--vncport=1 --vncpassword=CHANGE --rest-port=1700 --db-host=127.0.0.1" IMAGE=/var/lib/pharo-images/OsmoSmsc.image From 2f92d576d12e88eddac38790771cb1a7aa0a3507 Mon Sep 17 00:00:00 2001 From: efistokl Date: Tue, 5 Feb 2019 16:26:57 +0200 Subject: [PATCH 21/22] Change version of mongotalk and voyage-stable. voyage-stable: zecke/voyage-stable:1.3.1-patch, mongotalk: zecke/mongotalk tag 1.9.5 --- .../BaselineOfShortMessageCenter.class/instance/baseline..st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mc/BaselineOfShortMessageCenter.package/BaselineOfShortMessageCenter.class/instance/baseline..st b/mc/BaselineOfShortMessageCenter.package/BaselineOfShortMessageCenter.class/instance/baseline..st index b3d0da7..9a21d2c 100644 --- a/mc/BaselineOfShortMessageCenter.package/BaselineOfShortMessageCenter.class/instance/baseline..st +++ b/mc/BaselineOfShortMessageCenter.package/BaselineOfShortMessageCenter.class/instance/baseline..st @@ -4,9 +4,9 @@ baseline: spec spec for: #'common' do: [ spec baseline: 'VoyageMongo' with: [ - spec repository: 'github://pharo-nosql/voyage:47d4673e871f086e0be5fc3a0235e17dbf56e2ad/mc']. + spec repository: 'github://zecke/voyage-stable:1.3.1-patch/mc']. spec baseline: 'MongoTalk' with: [ - spec repository: 'github://pharo-nosql/mongotalk:671fc18fdf13a52cbc806dcee96d2fbef0d0e8d3/mc']. + spec repository: 'github://zecke/mongotalk:0d05850bb7af9e650f29042ec5b074b9ed0ac719/mc']. spec project: 'SMPP' with: [ spec className: #ConfigurationOfSMPP; From 4210bd478f97a62f581831bf147d3c5688d62781 Mon Sep 17 00:00:00 2001 From: efistokl Date: Thu, 26 Mar 2020 14:56:07 +0200 Subject: [PATCH 22/22] test commit --- README.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.asciidoc b/README.asciidoc index 13ab6c0..c458891 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -1,4 +1,4 @@ -Scalable Smalltalk Short Message Center (SMSC) +eeScalable Smalltalk Short Message Center (SMSC) ---------------------------------------------- image:https://travis-ci.org/moiji-mobile/smsc.svg?branch=master["Build Status", link="https://travis-ci.org/moiji-mobile/smsc"] image:https://api.bob-bench.org/v1/badgeByUrl?branch=master&hosting=github&ci=travis-ci&repo=moiji-mobile%2Fsmsc["Test Status",link="https://bob-bench.org/r/gh/moiji-mobile/smsc"]