forked from pool/libasn1c
- Update to new upstream release 0.32
OBS-URL: https://build.opensuse.org/package/show/network:telephony/libasn1c?expand=0&rev=15
This commit is contained in:
parent
57031d20b3
commit
5a6aebe03b
4
_service
4
_service
@ -3,8 +3,8 @@
|
|||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">git://git.osmocom.org/libasn1c</param>
|
<param name="url">git://git.osmocom.org/libasn1c</param>
|
||||||
<param name="revision">master</param>
|
<param name="revision">master</param>
|
||||||
<param name="parent-tag">0.9.31</param>
|
<param name="parent-tag">0.9.32</param>
|
||||||
<param name="versionformat">0.9.31</param>
|
<param name="versionformat">0.9.32</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="disabled">
|
||||||
<param name="file">*.tar</param>
|
<param name="file">*.tar</param>
|
||||||
|
3
libasn1c-0.9.32.tar.xz
Normal file
3
libasn1c-0.9.32.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:27bad201d7b86a55578a02acf8f6766627ec40c945f08450e32b4426601f538a
|
||||||
|
size 100364
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 15 04:54:16 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to new upstream release 0.32
|
||||||
|
* Fix misapplication of library SO version
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 11 13:29:56 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
Tue Dec 11 13:29:56 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libasn1c
|
# spec file for package libasn1c
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: libasn1c
|
Name: libasn1c
|
||||||
Version: 0.9.31
|
Version: 0.9.32
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Osmocon ASN.1 decoder and encoder library
|
Summary: Osmocon ASN.1 decoder and encoder library
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
@ -39,11 +39,11 @@ Compiles ASN.1 data structures into C source structures that can be
|
|||||||
simply (un)marshalled from and to: BER, DER, CER, BASIC-XER, CXER,
|
simply (un)marshalled from and to: BER, DER, CER, BASIC-XER, CXER,
|
||||||
EXTENDED-XER, PER.
|
EXTENDED-XER, PER.
|
||||||
|
|
||||||
%package -n libasn1c0
|
%package -n libasn1c1
|
||||||
Summary: Osmocon ASN.1 decoder and encoder library
|
Summary: Osmocon ASN.1 decoder and encoder library
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n libasn1c0
|
%description -n libasn1c1
|
||||||
Lev Walkins's asn1c runtime, as a shared library and with
|
Lev Walkins's asn1c runtime, as a shared library and with
|
||||||
modifications for Osmocom.
|
modifications for Osmocom.
|
||||||
|
|
||||||
@ -54,7 +54,7 @@ EXTENDED-XER, PER.
|
|||||||
%package -n libasn1c-devel
|
%package -n libasn1c-devel
|
||||||
Summary: Development files for libasn1c, Osmocom's ASN.1 decoder and encoder library
|
Summary: Development files for libasn1c, Osmocom's ASN.1 decoder and encoder library
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: libasn1c0 = %version
|
Requires: libasn1c1 = %version
|
||||||
Requires: pkgconfig(talloc)
|
Requires: pkgconfig(talloc)
|
||||||
|
|
||||||
%description -n libasn1c-devel
|
%description -n libasn1c-devel
|
||||||
@ -83,12 +83,12 @@ if ! make check %{?_smp_mflags}; then
|
|||||||
find . -name testsuite.log -exec cat "{}" "+"
|
find . -name testsuite.log -exec cat "{}" "+"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%post -n libasn1c0 -p /sbin/ldconfig
|
%post -n libasn1c1 -p /sbin/ldconfig
|
||||||
%postun -n libasn1c0 -p /sbin/ldconfig
|
%postun -n libasn1c1 -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -n libasn1c0
|
%files -n libasn1c1
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%_libdir/libasn1c.so.0*
|
%_libdir/libasn1c.so.1*
|
||||||
|
|
||||||
%files -n libasn1c-devel
|
%files -n libasn1c-devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
Loading…
Reference in New Issue
Block a user