commit b5d6a86bb12faa492607d105333462cd931ec4ba79f1cda8fd491130c49dad5e Author: Martin Pluskal Date: Tue Dec 31 14:51:03 2019 +0000 Accepting request 760167 from home:tux93 First stable release of the rewritten vokoscreen OBS-URL: https://build.opensuse.org/request/show/760167 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/vokoscreenNG?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/3.0.0.tar.gz b/3.0.0.tar.gz new file mode 100644 index 0000000..a5f2ee5 --- /dev/null +++ b/3.0.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdfa0a0e8a89247a1ac13fe4f4bb873e21167a3a9776a94ea665fdf20e783fe7 +size 1347999 diff --git a/vokoscreenNG.changes b/vokoscreenNG.changes new file mode 100644 index 0000000..1b69e4e --- /dev/null +++ b/vokoscreenNG.changes @@ -0,0 +1,33 @@ +------------------------------------------------------------------- +Tue Dec 31 13:35:50 UTC 2019 - Marcel Kuehlhorn + +- Update to 3.0.0 + * first stable release + * complete rewrite of vokoscreen, now using gstreamer instead of + ffmpeg + +------------------------------------------------------------------- +Sun Oct 13 12:08:47 UTC 2019 - Marcel Kuehlhorn + +- Update to 2.9.9-beta + +------------------------------------------------------------------- +Mon May 20 10:08:12 UTC 2019 - Marcel Kuehlhorn + +- Update to 2.9.8-beta + +------------------------------------------------------------------- +Fri May 10 07:21:59 UTC 2019 - Marcel Kuehlhorn + +- Update to 2.9.7-beta +- Made Requirements more specific + +------------------------------------------------------------------- +Sat Apr 13 17:44:08 UTC 2019 - Marcel Kuehlhorn + +- Update to 2.9.6-beta + +------------------------------------------------------------------- +Tue Feb 19 16:22:41 UTC 2019 - Marcel Kuehlhorn + +- Initial build for Version 2.9.5-beta diff --git a/vokoscreenNG.spec b/vokoscreenNG.spec new file mode 100644 index 0000000..4289d1b --- /dev/null +++ b/vokoscreenNG.spec @@ -0,0 +1,87 @@ +# +# spec file for package vokoscreenNG +# +# Copyright (c) 2019 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: vokoscreenNG +Version: 3.0.0 +Release: 0 +Summary: Screencast creator +License: GPL-2.0 +Group: Productivity/Multimedia/Other +Url: https://github.com/vkohaupt/vokoscreenNG +Source: https://github.com/vkohaupt/%{name}/archive/%{version}.tar.gz +BuildRequires: pkgconfig +BuildRequires: libqt5-linguist +BuildRequires: pkgconfig(Qt5Core) +BuildRequires: pkgconfig(Qt5Gui) +BuildRequires: pkgconfig(Qt5Multimedia) +BuildRequires: pkgconfig(Qt5Network) +BuildRequires: pkgconfig(Qt5Test) +BuildRequires: pkgconfig(Qt5Widgets) +BuildRequires: pkgconfig(Qt5X11Extras) +BuildRequires: gstreamer-devel + +Requires: libQt5Core5 >= 5.9.4 +Requires: gstreamer >= 1.12.5 +Requires: pulseaudio +# Required for vorbis and opus audio +Requires: gstreamer-plugins-base +# Required for mkv, avi, webm, mp4, vp8 video and flac audio +Requires: gstreamer-plugins-good +# Required for x265, av1, camera +Requires: gstreamer-plugins-bad +# Required for x264 and mp3lame +Requires: gstreamer-plugins-ugly +# Required for x264 +Recommends: gstreamer-plugins-ugly-orig-addon +Requires: gstreamer-plugins-libav +# Required for openh264 +Recommends: gstreamer-plugins-bad-orig-addon +# Required for H.264 and MPEG2 hardware encoding on Intel +Recommends: gstreamer-plugins-vaapi +Recommends: intel-vaapi-driver + +Provides: vokoscreen = %{version} +Obsoletes: vokoscreen < %{version} + +%description +vokoscreenNG is a user friendly Open Source screencaster for Linux and Windows. + +%prep +%autosetup + +%build +cd src +%qmake5 +%make_jobs + +%install +mkdir -p %{buildroot}/usr/bin/ +cp src/%{name} %{buildroot}/usr/bin/ +mkdir -p %{buildroot}/usr/share/applications/ +cp src/applications/%{name}.desktop %{buildroot}/usr/share/applications/ +mkdir -p %{buildroot}/usr/share/pixmaps/ +cp src/applications/%{name}.png %{buildroot}/usr/share/pixmaps/ + +%files +%doc README.md +%license COPYING +%{_bindir}/%{name} +%{_datadir}/applications/%{name}.desktop +%{_datadir}/pixmaps/%{name}.png + +%changelog