Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package libva-utils.16151 for
openSUSE:Leap:15.2:Update checked in at 2021-04-28 09:52:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2:Update/libva-utils.16151 (Old)
and /work/SRC/openSUSE:Leap:15.2:Update/.libva-utils.16151.new.12324 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libva-utils.16151"
Wed Apr 28 09:52:23 2021 rev:1 rq:888762 version:2.0.0
Changes:
--------
New Changes file:
--- /dev/null 2021-04-15 00:52:17.177990775 +0200
+++
/work/SRC/openSUSE:Leap:15.2:Update/.libva-utils.16151.new.12324/libva-utils.changes
2021-04-28 09:52:23.462005291 +0200
@@ -0,0 +1,78 @@
+-------------------------------------------------------------------
+Fri Nov 17 10:28:40 UTC 2017 - [email protected]
+
+- Add vaapi-wayland-tools Obsoletes and Provides.
+
+-------------------------------------------------------------------
+Tue Nov 14 21:42:56 UTC 2017 - [email protected]
+
+- Update to version 2.0.0:
+ * Add option '--device ' to vainfo.
+ * Add vp9enc for VP9 encoding.
+ * Add vavpp for video processing.
+ * Add FEI gtest cases.
+ * Fix segmentation fault in putsurface_wayland.
+ * Fix GCC 7.1.1 warnings/errors.
+ * Fix libva version printed out by vainfo.
+- Pass enable-drm, enable-wayland and enable-x11 to configure,
+ ensure we build all supported backends.
+- Following the above, add pkgconfig(libdrm), pkgconfig(libva),
+ pkgconfig(libva-drm), pkgconfig(libva-wayland),
+ pkgconfig(wayland-client), pkgconfig(x11), pkgconfig(xext) and
+ pkgconfig(xfixes) BuildRequires; align with what configure looks
+ for.
+- Run spec-cleaner on spec file.
+
+-------------------------------------------------------------------
+Tue Aug 29 14:30:24 UTC 2017 - [email protected]
+
+- removed putsurface_wayland from filelist (now requires wayland-
+ enabled -devel package)
+
+-------------------------------------------------------------------
+Wed Aug 16 17:27:10 UTC 2017 - [email protected]
+
+- Version 1.8.3 - 28.Jun.2017
+ * Bump version to 1.8.3
+ * Switch AC_PROG_LIBTOOL to LT_INIT
+ * putsurface: include wayland-client.h instead of wayland-server.h
+ * avcenc: add AUD NAL unit at the beginning of pic
+ * avcenc: enable direct_spatial_mv_pred_flag for B frame
+ * avcenc: add the frame number as the command line input parameter
+
+-------------------------------------------------------------------
+Fri Aug 4 14:03:25 UTC 2017 - [email protected]
+
+- Version 1.8.2
+ * Bump version to 1.8.2
+
+-------------------------------------------------------------------
+Thu Jun 29 12:30:05 UTC 2017 - [email protected]
+
+- changed Group to Development/Tools/Other
+
+-------------------------------------------------------------------
+Wed Apr 19 19:10:38 UTC 2017 - [email protected]
+
+- fix changes file
+ * add missing changes for 1.8.1
+ * fix Version string
+
+-------------------------------------------------------------------
+Tue Apr 18 20:45:56 UTC 2017 - [email protected]
+
+- Version 1.8.1 - 10.Apr.2017
+ * Bump version to 1.8.1
+- add sha1sum file
+
+-------------------------------------------------------------------
+Sat Apr 15 22:37:52 UTC 2017 - [email protected]
+
+- initial pkg 1.8.0
+- Version 1.8.0 - 31.Mar.2017
+ * First release of libva-utils as a separate project
+ * Follows libva release versioning
+ * Contains all the utilities and tests for libva API
+ * dynamically links to libva
+ * building system clean ups
+ * test suite included using GoogleTestFramework
New:
----
libva-utils-2.0.0.tar.bz2
libva-utils-2.0.0.tar.bz2.sha1sum
libva-utils.changes
libva-utils.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libva-utils.spec ++++++
#
# spec file for package libva-utils
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: libva-utils
Version: 2.0.0
Release: 0
Summary: A collection of utilities and examples to exercise VA-API
License: MIT AND EPL-1.0
Group: Development/Tools/Other
Url: https://github.com/01org/libva-utils
Source0:
https://github.com/01org/libva-utils/releases/download/%{version}/%{name}-%{version}.tar.bz2
Source1:
https://github.com/01org/libva-utils/releases/download/%{version}/%{name}-%{version}.tar.bz2.sha1sum
BuildRequires: gcc-c++
BuildRequires: pkgconfig
BuildRequires: pkgconfig(libdrm) >= 2.4
BuildRequires: pkgconfig(libva) >= 1.0.0
BuildRequires: pkgconfig(libva-drm)
BuildRequires: pkgconfig(libva-wayland)
BuildRequires: pkgconfig(libva-x11) >= 0.39.4
BuildRequires: pkgconfig(wayland-client) >= 1.11.0
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xext)
BuildRequires: pkgconfig(xfixes)
Provides: vaapi-tools = %{version}
Obsoletes: vaapi-tools < %{version}
Provides: vaapi-wayland-tools = %{version}
Obsoletes: vaapi-wayland-tools < %{version}
%description
libva-utils is a collection of utilities and examples to exercise VA-API in
accordance with the libva project. --enable-tests (default = no) provides a
suite of unit-tests based on Google Test Framework. A driver implementation is
necessary to properly operate.
%prep
%setup -q -n %{name}-%{version}
%build
%configure \
--enable-drm \
--enable-wayland \
--enable-x11 \
%{nil}
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot}
%files
%doc COPYING NEWS
%{_bindir}/avcenc
%{_bindir}/h264encode
%{_bindir}/jpegenc
%{_bindir}/loadjpeg
%{_bindir}/mpeg2vaenc
%{_bindir}/mpeg2vldemo
%{_bindir}/putsurface
%{_bindir}/putsurface_wayland
%{_bindir}/vainfo
%{_bindir}/vavpp
%{_bindir}/vp9enc
%changelog
++++++ libva-utils-2.0.0.tar.bz2.sha1sum ++++++
b4dc39459f8539c1ea16e7ca957a853fb7735ec4 libva-utils-2.0.0.tar.bz2