Accepting request 832046 from home:alarrosa:branches:multimedia:libs

- Update to 0.1.0+git20200527.9482c11
  * Fix compilation with GCC 9
  * Declare dependency so libavtp can be used as a meson subproject
  * Update version to MAJOR.MINOR.PATCH format
  * Fix URL in meson.build
  * Add IEC 61883/IIDC support
  * Many added examples and tests
  * Add CVF support - H.264 only
  * Factor out "common stream header" from avtp_aaf.c

OBS-URL: https://build.opensuse.org/request/show/832046
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libavtp?expand=0&rev=5
This commit is contained in:
Takashi Iwai 2020-09-08 10:08:31 +00:00 committed by Git OBS Bridge
parent 6d66deb474
commit a601cac70d
5 changed files with 37 additions and 10 deletions

14
_service Normal file
View File

@ -0,0 +1,14 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="url">https://github.com/AVnu/libavtp.git</param>
<param name="filename">libavtp</param>
<param name="versionformat">0.1.0+git%cd.%h</param>
<param name="scm">git</param>
</service>
<service name="recompress" mode="disabled">
<param name="compression">xz</param>
<param name="file">*.tar</param>
</service>
<service name="set_version" mode="disabled" />
</services>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:24381fa6018c9d8acfda87f8d427ec2b05750c689613d5196d2c1700eff0025e
size 26928

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b227a7c3dd5854473f2ebccd8bcbca80468d3a975b2fbfea9413e25a2ff2287b
size 17112

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Thu Sep 3 11:22:19 UTC 2020 - Antonio Larrosa <alarrosa@suse.com>
- Update to 0.1.0+git20200527.9482c11
* Fix compilation with GCC 9
* Declare dependency so libavtp can be used as a meson subproject
* Update version to MAJOR.MINOR.PATCH format
* Fix URL in meson.build
* Add IEC 61883/IIDC support
* Many added examples and tests
* Add CVF support - H.264 only
* Factor out "common stream header" from avtp_aaf.c
-------------------------------------------------------------------
Tue Jan 8 17:45:18 UTC 2019 - Jan Engelhardt <jengelh@inai.de>

View File

@ -1,7 +1,7 @@
#
# spec file for package libavtp
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -16,16 +16,15 @@
#
%define git_version %{version}.g2f0b071
%define _lto_cflags %{nil}
Name: libavtp
Version: 0.1
Version: 0.1.0+git20200527.9482c11
Release: 0
Summary: Audio Video Transport Protocol (AVTP) Support Library
License: BSD-3-Clause
Group: Development/Libraries/C and C++
URL: https://github.com/AVnu/libavtp.git
Source: %{name}-%{git_version}.tar.xz
Source: %{name}-%{version}.tar.xz
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: pkgconfig(cmocka)
@ -52,10 +51,10 @@ This package contains all necessary include files and libraries needed
to develop applications that require libavtp.
%prep
%setup -q -n %{name}
%setup -q -n %{name}-%{version}
%build
%meson
%meson -Ddefault_library=both
%meson_build
%install
@ -76,6 +75,7 @@ to develop applications that require libavtp.
%license LICENSE
%{_includedir}/*.h
%{_libdir}/libavtp.so
%{_libdir}/libavtp.a
%{_libdir}/pkgconfig/avtp.pc
%changelog