laforge has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41026?usp=email )
(
6 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
)Change subject: Add git-version-gen
......................................................................
Add git-version-gen
Change-Id: Ic6245f4d0ccced5089c55eccbe07b36c43d71e9c
---
M .gitignore
M Makefile.am
M configure.ac
A git-version-gen
4 files changed, 165 insertions(+), 1 deletion(-)
Approvals:
laforge: Looks good to me, but someone else must approve
pespin: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/.gitignore b/.gitignore
index e9d5b47..965bae4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,3 +23,4 @@
*.pc
.deps
.libs
+.version
diff --git a/Makefile.am b/Makefile.am
index 8c148f7..9e311a6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,12 @@
AUTOMAKE_OPTIONS = foreign dist-bzip2 1.6
ACLOCAL_AMFLAGS = -I m4
+BUILT_SOURCES = $(top_srcdir)/.version
+$(top_srcdir)/.version:
+ echo $(VERSION) > $@-t && mv $@-t $@
+dist-hook:
+ echo $(VERSION) > $(distdir)/.tarball-version
+
INCLUDES = $(all_includes) -I$(top_srcdir)/include/osmocom/tcap
SUBDIRS = src include
@@ -8,5 +14,7 @@
pkgconfig_DATA = libosmo-asn1-tcap.pc
EXTRA_DIST = \
+ .version \
debian \
+ git-version-gen \
$(NULL)
diff --git a/configure.ac b/configure.ac
index e301c64..8e18a0f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,8 @@
-AC_INIT([libosmo-asn1-tcap], 0.0.0, [openbsc-devel(a)lists.openbsc.org])
+AC_INIT([libosmo-asn1-tcap],
+ m4_esyscmd([./git-version-gen .tarball-version]),
+ [openbsc(a)lists.osmocom.org])
+
+AC_CONFIG_AUX_DIR([.])
AM_INIT_AUTOMAKE([dist-bzip2 subdir-objects])
diff --git a/git-version-gen b/git-version-gen
new file mode 100755
index 0000000..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 <http://www.gnu.org/licenses/>.
+
+# 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: $tarball_version_file seems to be damaged" 1>&2
+fi
+
+if test -n "$v"
+then
+ : # use $v
+elif
+ v=`git describe --abbrev=4 --match='v*' HEAD 2>/dev/null \
+ || git describe --abbrev=4 HEAD 2>/dev/null` \
+ && case $v in
+ [0-9]*) ;;
+ v[0-9]*) ;;
+ *) (exit 1) ;;
+ esac
+then
+ # Is this a new git that lists number of commits since the last
+ # tag or the previous older version that did not?
+ # Newer: v6.10-77-g0f8faeb
+ # Older: v6.10-g0f8faeb
+ case $v in
+ *-*-*) : git describe is okay three part flavor ;;
+ *-*)
+ : git describe is older two part flavor
+ # Recreate the number of commits and rewrite such that the
+ # result is the same as if we were using the newer version
+ # of git describe.
+ vtag=`echo "$v" | sed 's/-.*//'`
+ numcommits=`git rev-list "$vtag"..HEAD | wc -l`
+ v=`echo "$v" | sed "s/\(.*\)-\(.*\)/\1-$numcommits-\2/"`;
+ ;;
+ esac
+
+ # Change the first '-' to a '.', so version-comparing tools work properly.
+ # Remove the "g" in git describe's output string, to save a byte.
+ v=`echo "$v" | sed 's/-/./;s/\(.*\)-g/\1-/'`;
+else
+ v=UNKNOWN
+fi
+
+v=`echo "$v" |sed 's/^v//'`
+
+# Don't declare a version "dirty" merely because a time stamp has changed.
+git status > /dev/null 2>&1
+
+dirty=`sh -c 'git diff-index --name-only HEAD' 2>/dev/null` || dirty=
+case "$dirty" in
+ '') ;;
+ *) # Append the suffix only if there isn't one already.
+ case $v in
+ *-dirty) ;;
+ *) v="$v-dirty" ;;
+ esac ;;
+esac
+
+# Omit the trailing newline, so that m4_esyscmd can use the result directly.
+echo "$v" | tr -d '\012'
+
+# Local variables:
+# eval: (add-hook 'write-file-hooks 'time-stamp)
+# time-stamp-start: "scriptversion="
+# time-stamp-format: "%:y-%02m-%02d.%02H"
+# time-stamp-end: "$"
+# End:
--
To view, visit https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41026?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: libosmo-asn1-tcap
Gerrit-Branch: master
Gerrit-Change-Id: Ic6245f4d0ccced5089c55eccbe07b36c43d71e9c
Gerrit-Change-Number: 41026
Gerrit-PatchSet: 7
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-CC: fixeria <vyanitskiy(a)sysmocom.de>
laforge has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41022?usp=email )
Change subject: Regenerate code with newer asn1c
......................................................................
Regenerate code with newer asn1c
asn1c used from: https://github.com/mouse07410/asn1c
branch: vlm_master
commit: 2c06555 ("Fix #239 by applying suggested fix")
This no longer uses/requires libasn1c so drop the dependency and modify
the build system similar to osmo-cbc/src/sbcap/
Tweaked-By: Oliver Smith <osmith(a)sysmocom.de>
Related: SYS#5423
Change-Id: If43a5d518f94fa558a3dff563a1c7aa31c925fec
---
A .checkpatch.conf
M Makefile.am
M configure.ac
M contrib/jenkins.sh
D include/AARE-apdu.h
D include/AARQ-apdu.h
D include/ABRT-apdu.h
D include/ABRT-source.h
D include/AUDT-apdu.h
D include/Abort.h
D include/Associate-result.h
D include/Associate-source-diagnostic.h
D include/Begin.h
D include/Component.h
D include/ComponentPortion.h
D include/Continue.h
D include/DestTransactionID.h
D include/Dialog1.h
D include/DialogueOC.h
D include/DialoguePDU.h
D include/DialoguePortion.h
D include/ERROR.h
D include/EXTERNAL.h
D include/End.h
D include/ErrorCode.h
D include/ExternalPDU.h
D include/GeneralProblem.h
D include/Invoke.h
D include/InvokeIdType.h
D include/InvokeProblem.h
M include/Makefile.am
D include/OPERATION.h
D include/OrigTransactionID.h
D include/P-AbortCause.h
D include/Parameter.h
D include/RLRE-apdu.h
D include/RLRQ-apdu.h
D include/Reason.h
D include/Reject.h
D include/Release-request-reason.h
D include/Release-response-reason.h
D include/ReturnError.h
D include/ReturnErrorProblem.h
D include/ReturnResult.h
D include/ReturnResultProblem.h
D include/TCMessage.h
D include/UniDialoguePDU.h
D include/Unidirectional.h
A include/osmocom/Makefile.am
A include/osmocom/tcap/ANY.h
A include/osmocom/tcap/BIT_STRING.h
A include/osmocom/tcap/GraphicString.h
A include/osmocom/tcap/INTEGER.h
A include/osmocom/tcap/Makefile.am
A include/osmocom/tcap/NULL.h
A include/osmocom/tcap/NativeInteger.h
A include/osmocom/tcap/OBJECT_IDENTIFIER.h
A include/osmocom/tcap/OCTET_STRING.h
A include/osmocom/tcap/OPEN_TYPE.h
A include/osmocom/tcap/ObjectDescriptor.h
A include/osmocom/tcap/TCAP_AARE-apdu.h
A include/osmocom/tcap/TCAP_AARQ-apdu.h
A include/osmocom/tcap/TCAP_ABRT-apdu.h
A include/osmocom/tcap/TCAP_ABRT-source.h
A include/osmocom/tcap/TCAP_AUDT-apdu.h
A include/osmocom/tcap/TCAP_Abort.h
A include/osmocom/tcap/TCAP_Associate-result.h
A include/osmocom/tcap/TCAP_Associate-source-diagnostic.h
A include/osmocom/tcap/TCAP_Begin.h
A include/osmocom/tcap/TCAP_Component.h
A include/osmocom/tcap/TCAP_ComponentPortion.h
A include/osmocom/tcap/TCAP_Continue.h
A include/osmocom/tcap/TCAP_DestTransactionID.h
A include/osmocom/tcap/TCAP_Dialog1.h
A include/osmocom/tcap/TCAP_DialoguePDU.h
A include/osmocom/tcap/TCAP_DialoguePortion.h
A include/osmocom/tcap/TCAP_ERROR.h
A include/osmocom/tcap/TCAP_EXTERNAL.h
A include/osmocom/tcap/TCAP_End.h
A include/osmocom/tcap/TCAP_ErrorCode.h
A include/osmocom/tcap/TCAP_ExternalPDU.h
A include/osmocom/tcap/TCAP_GeneralProblem.h
A include/osmocom/tcap/TCAP_Invoke.h
A include/osmocom/tcap/TCAP_InvokeIdType.h
A include/osmocom/tcap/TCAP_InvokeProblem.h
A include/osmocom/tcap/TCAP_OPERATION.h
A include/osmocom/tcap/TCAP_OrigTransactionID.h
A include/osmocom/tcap/TCAP_P-AbortCause.h
A include/osmocom/tcap/TCAP_Parameter.h
A include/osmocom/tcap/TCAP_RLRE-apdu.h
A include/osmocom/tcap/TCAP_RLRQ-apdu.h
A include/osmocom/tcap/TCAP_Reason.h
A include/osmocom/tcap/TCAP_Reject.h
A include/osmocom/tcap/TCAP_Release-request-reason.h
A include/osmocom/tcap/TCAP_Release-response-reason.h
A include/osmocom/tcap/TCAP_ReturnError.h
A include/osmocom/tcap/TCAP_ReturnErrorProblem.h
A include/osmocom/tcap/TCAP_ReturnResult.h
A include/osmocom/tcap/TCAP_ReturnResultProblem.h
A include/osmocom/tcap/TCAP_TCMessage.h
A include/osmocom/tcap/TCAP_UniDialoguePDU.h
A include/osmocom/tcap/TCAP_Unidirectional.h
A include/osmocom/tcap/TCAP_asn_constant.h
A include/osmocom/tcap/asn_SEQUENCE_OF.h
A include/osmocom/tcap/asn_SET_OF.h
A include/osmocom/tcap/asn_application.h
A include/osmocom/tcap/asn_bit_data.h
A include/osmocom/tcap/asn_codecs.h
A include/osmocom/tcap/asn_codecs_prim.h
A include/osmocom/tcap/asn_config.h
A include/osmocom/tcap/asn_internal.h
A include/osmocom/tcap/asn_ioc.h
A include/osmocom/tcap/asn_random_fill.h
A include/osmocom/tcap/asn_system.h
A include/osmocom/tcap/ber_decoder.h
A include/osmocom/tcap/ber_tlv_length.h
A include/osmocom/tcap/ber_tlv_tag.h
A include/osmocom/tcap/constr_CHOICE.h
A include/osmocom/tcap/constr_SEQUENCE.h
A include/osmocom/tcap/constr_SEQUENCE_OF.h
A include/osmocom/tcap/constr_SET_OF.h
A include/osmocom/tcap/constr_TYPE.h
A include/osmocom/tcap/constraints.h
A include/osmocom/tcap/der_encoder.h
M libosmo-asn1-tcap.pc.in
A move-asn1-header-files.sh
D src/AARE-apdu.c
D src/AARQ-apdu.c
D src/ABRT-apdu.c
D src/ABRT-source.c
D src/AUDT-apdu.c
D src/Abort.c
D src/Associate-result.c
D src/Associate-source-diagnostic.c
D src/Begin.c
D src/Component.c
D src/ComponentPortion.c
D src/Continue.c
D src/DestTransactionID.c
D src/Dialog1.c
D src/DialogueOC.c
D src/DialoguePDU.c
D src/DialoguePortion.c
D src/ERROR.c
D src/End.c
D src/ErrorCode.c
D src/ExternalPDU.c
D src/GeneralProblem.c
D src/Invoke.c
D src/InvokeIdType.c
D src/InvokeProblem.c
M src/Makefile.am
D src/OPERATION.c
D src/OrigTransactionID.c
D src/P-AbortCause.c
D src/Parameter.c
D src/RLRE-apdu.c
D src/RLRQ-apdu.c
D src/Reason.c
D src/Reject.c
D src/Release-request-reason.c
D src/Release-response-reason.c
D src/ReturnError.c
D src/ReturnErrorProblem.c
D src/ReturnResult.c
D src/ReturnResultProblem.c
D src/TCMessage.c
D src/UniDialoguePDU.c
D src/Unidirectional.c
A src/gen/TCAP_AARE-apdu.c
A src/gen/TCAP_AARQ-apdu.c
A src/gen/TCAP_ABRT-apdu.c
A src/gen/TCAP_ABRT-source.c
A src/gen/TCAP_AUDT-apdu.c
A src/gen/TCAP_Abort.c
A src/gen/TCAP_Associate-result.c
A src/gen/TCAP_Associate-source-diagnostic.c
A src/gen/TCAP_Begin.c
A src/gen/TCAP_Component.c
A src/gen/TCAP_ComponentPortion.c
A src/gen/TCAP_Continue.c
A src/gen/TCAP_DestTransactionID.c
A src/gen/TCAP_Dialog1.c
A src/gen/TCAP_DialoguePDU.c
A src/gen/TCAP_DialoguePortion.c
A src/gen/TCAP_ERROR.c
A src/gen/TCAP_EXTERNAL.c
A src/gen/TCAP_End.c
A src/gen/TCAP_ErrorCode.c
A src/gen/TCAP_ExternalPDU.c
A src/gen/TCAP_GeneralProblem.c
A src/gen/TCAP_Invoke.c
A src/gen/TCAP_InvokeIdType.c
A src/gen/TCAP_InvokeProblem.c
A src/gen/TCAP_OPERATION.c
A src/gen/TCAP_OrigTransactionID.c
A src/gen/TCAP_P-AbortCause.c
A src/gen/TCAP_Parameter.c
A src/gen/TCAP_RLRE-apdu.c
A src/gen/TCAP_RLRQ-apdu.c
A src/gen/TCAP_Reason.c
A src/gen/TCAP_Reject.c
A src/gen/TCAP_Release-request-reason.c
A src/gen/TCAP_Release-response-reason.c
A src/gen/TCAP_ReturnError.c
A src/gen/TCAP_ReturnErrorProblem.c
A src/gen/TCAP_ReturnResult.c
A src/gen/TCAP_ReturnResultProblem.c
A src/gen/TCAP_TCMessage.c
A src/gen/TCAP_UniDialoguePDU.c
A src/gen/TCAP_Unidirectional.c
D src/rebuild-from-asn.sh
A src/skel/ANY.c
A src/skel/ANY_ber.c
A src/skel/BIT_STRING.c
A src/skel/BIT_STRING_print.c
A src/skel/BIT_STRING_rfill.c
A src/skel/GraphicString.c
A src/skel/INTEGER.c
A src/skel/INTEGER_ber.c
A src/skel/INTEGER_print.c
A src/skel/INTEGER_rfill.c
A src/skel/NULL.c
A src/skel/NULL_ber.c
A src/skel/NULL_print.c
A src/skel/NULL_rfill.c
A src/skel/NativeInteger.c
A src/skel/NativeInteger_ber.c
A src/skel/NativeInteger_print.c
A src/skel/NativeInteger_rfill.c
A src/skel/OBJECT_IDENTIFIER.c
A src/skel/OBJECT_IDENTIFIER_print.c
A src/skel/OBJECT_IDENTIFIER_rfill.c
A src/skel/OCTET_STRING.c
A src/skel/OCTET_STRING_ber.c
A src/skel/OCTET_STRING_print.c
A src/skel/OCTET_STRING_rfill.c
A src/skel/OPEN_TYPE.c
A src/skel/OPEN_TYPE_ber.c
A src/skel/ObjectDescriptor.c
A src/skel/asn_SEQUENCE_OF.c
A src/skel/asn_SET_OF.c
A src/skel/asn_application.c
A src/skel/asn_bit_data.c
A src/skel/asn_codecs_prim.c
A src/skel/asn_codecs_prim_ber.c
A src/skel/asn_internal.c
A src/skel/asn_random_fill.c
A src/skel/ber_decoder.c
A src/skel/ber_tlv_length.c
A src/skel/ber_tlv_tag.c
A src/skel/constr_CHOICE.c
A src/skel/constr_CHOICE_ber.c
A src/skel/constr_CHOICE_print.c
A src/skel/constr_CHOICE_rfill.c
A src/skel/constr_SEQUENCE.c
A src/skel/constr_SEQUENCE_OF.c
A src/skel/constr_SEQUENCE_OF_ber.c
A src/skel/constr_SEQUENCE_ber.c
A src/skel/constr_SEQUENCE_print.c
A src/skel/constr_SEQUENCE_rfill.c
A src/skel/constr_SET_OF.c
A src/skel/constr_SET_OF_ber.c
A src/skel/constr_SET_OF_print.c
A src/skel/constr_SET_OF_rfill.c
A src/skel/constr_TYPE.c
A src/skel/constraints.c
A src/skel/der_encoder.c
268 files changed, 19,774 insertions(+), 6,301 deletions(-)
Approvals:
osmith: Verified
pespin: Looks good to me, but someone else must approve
laforge: Looks good to me, approved
--
To view, visit https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41022?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: libosmo-asn1-tcap
Gerrit-Branch: master
Gerrit-Change-Id: If43a5d518f94fa558a3dff563a1c7aa31c925fec
Gerrit-Change-Number: 41022
Gerrit-PatchSet: 6
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-CC: daniel <dwillmann(a)sysmocom.de>
laforge has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41058?usp=email )
(
2 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
)Change subject: configure.ac: use subdir-objects
......................................................................
configure.ac: use subdir-objects
Fix a bunch of warnings:
src/Makefile.am:1: warning: source file 'gen/TCAP_DialoguePDU.c' is in a subdirectory,
src/Makefile.am:1: but option 'subdir-objects' is disabled
src/Makefile.am:1: warning: source file 'gen/TCAP_AUDT-apdu.c' is in a subdirectory,
src/Makefile.am:1: but option 'subdir-objects' is disabled
src/Makefile.am:1: warning: source file 'gen/NULL_ber.c' is in a subdirectory,
src/Makefile.am:1: but option 'subdir-objects' is disabled
src/Makefile.am:1: warning: source file 'gen/asn_codecs_prim_ber.c' is in a subdirectory,
src/Makefile.am:1: but option 'subdir-objects' is disabled
…
Change-Id: I800c8d8e39923a8dd17e3bf1e5aeb1cf691383d8
---
M configure.ac
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
pespin: Looks good to me, approved
laforge: Looks good to me, but someone else must approve
Jenkins Builder: Verified
diff --git a/configure.ac b/configure.ac
index 7ab015e..e301c64 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_INIT([libosmo-asn1-tcap], 0.0.0, [openbsc-devel(a)lists.openbsc.org])
-AM_INIT_AUTOMAKE([dist-bzip2])
+AM_INIT_AUTOMAKE([dist-bzip2 subdir-objects])
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
--
To view, visit https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41058?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: libosmo-asn1-tcap
Gerrit-Branch: master
Gerrit-Change-Id: I800c8d8e39923a8dd17e3bf1e5aeb1cf691383d8
Gerrit-Change-Number: 41058
Gerrit-PatchSet: 3
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>