[obs-studio] Fixed sources file.
by Momcilo Medic
commit 09bc27eb302dcca96fe9dd796a30a6ba329b9402
Author: Momcilo Medic <fedorauser(a)fedoraproject.org>
Date: Sun Sep 22 21:02:51 2019 +0200
Fixed sources file.
sources | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/sources b/sources
index 12c0e4a..0d98194 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-62075963ae4e08a5b0078ec0e4f411a6 obs-studio-23.2.1.tar.gz
+d478fc8b0c64d7d861bfb331b38a6018 obs-studio-24.0.1.tar.gz
5 years, 3 months
[qtox] Pre-release af02542e05992bf94fcff37c365f638ad7b53d8d
by Robert-André Mauchin
commit 258c2bd9d31f5d634ae2742bfb2a7447ab9cba49
Author: Robert-André Mauchin <zebob.m(a)gmail.com>
Date: Sun Sep 22 20:47:44 2019 +0200
Pre-release af02542e05992bf94fcff37c365f638ad7b53d8d
Signed-off-by: Robert-André Mauchin <zebob.m(a)gmail.com>
.gitignore | 1 +
qTox-af02542-disable_Werror.patch | 11 +++++++++
qTox-af02542-remove_project_group.patch | 11 +++++++++
qtox-1.12.1-disable_Werror.patch | 11 ---------
qtox-1.16.0-remove_project_group.patch | 10 --------
qtox.spec | 44 ++++++++++++++++++---------------
sources | 2 +-
7 files changed, 48 insertions(+), 42 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0aabbcb..f19c5ce 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
/qtox-1.15.0.tar.gz
/qtox-1.16.0.tar.gz
/qtox-1.16.2.tar.gz
+/qtox-af02542.tar.gz
diff --git a/qTox-af02542-disable_Werror.patch b/qTox-af02542-disable_Werror.patch
new file mode 100644
index 0000000..7bb3fe4
--- /dev/null
+++ b/qTox-af02542-disable_Werror.patch
@@ -0,0 +1,11 @@
+diff -up qTox-af02542e05992bf94fcff37c365f638ad7b53d8d/CMakeLists.txt.disable_Werror qTox-af02542e05992bf94fcff37c365f638ad7b53d8d/CMakeLists.txt
+--- qTox-af02542e05992bf94fcff37c365f638ad7b53d8d/CMakeLists.txt.disable_Werror 2019-09-17 09:49:27.000000000 +0200
++++ qTox-af02542e05992bf94fcff37c365f638ad7b53d8d/CMakeLists.txt 2019-09-22 20:30:44.003786541 +0200
+@@ -91,7 +91,6 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}
+ set(POSITION_INDEPENDENT_CODE True)
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wstrict-overflow")
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wstrict-aliasing")
+-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
+
+ # avoid timestamps in binary for reproducible builds, not added until GCC 4.9
+ include(CheckCXXCompilerFlag)
diff --git a/qTox-af02542-remove_project_group.patch b/qTox-af02542-remove_project_group.patch
new file mode 100644
index 0000000..339adaf
--- /dev/null
+++ b/qTox-af02542-remove_project_group.patch
@@ -0,0 +1,11 @@
+diff -up qTox-af02542e05992bf94fcff37c365f638ad7b53d8d/res/io.github.qtox.qTox.appdata.xml.remove_project_group qTox-af02542e05992bf94fcff37c365f638ad7b53d8d/res/io.github.qtox.qTox.appdata.xml
+--- qTox-af02542e05992bf94fcff37c365f638ad7b53d8d/res/io.github.qtox.qTox.appdata.xml.remove_project_group 2019-09-17 09:49:27.000000000 +0200
++++ qTox-af02542e05992bf94fcff37c365f638ad7b53d8d/res/io.github.qtox.qTox.appdata.xml 2019-09-22 20:28:56.969076428 +0200
+@@ -62,7 +62,6 @@
+ </screenshots>
+ <url type="homepage">https://qtox.github.io</url>
+ <update_contact>barrdetwix(a)gmail.com</update_contact>
+- <project_group>qTox</project_group>
+ <releases>
+ <release version="1.16.3" date="2018-07-21"/>
+ </releases>
diff --git a/qtox.spec b/qtox.spec
index 3435fa3..345f832 100644
--- a/qtox.spec
+++ b/qtox.spec
@@ -1,6 +1,12 @@
+%global commit af02542e05992bf94fcff37c365f638ad7b53d8d
+%global shortcommit %(c=%{commit}; echo ${c:0:7})
+%global snapshotdate 20190922
+# git describe
+%global qtox_version v1.16.3-652-gaf02542e
+
Name: qtox
-Version: 1.16.2
-Release: 4%{?dist}
+Version: 1.16.3
+Release: 1.%{snapshotdate}git%{shortcommit}%{?dist}
Summary: Feature-rich Tox client
# Main program: GPLv3+
@@ -9,12 +15,12 @@ Summary: Feature-rich Tox client
# Smileys/Classic: CC-BY-SA
License: GPLv3+ and BSD and CC-BY and CC-BY-SA
URL: https://github.com/qTox/qTox/
-Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
+Source0: %{url}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz
# Remove project_group tag from appdata.xml
-Patch0: qtox-1.16.0-remove_project_group.patch
+Patch0: qTox-af02542-remove_project_group.patch
# Remove -Werror from compile flags
-Patch1: qtox-1.12.1-disable_Werror.patch
+Patch1: qTox-af02542-disable_Werror.patch
BuildRequires: gcc-c++
BuildRequires: cmake
@@ -23,7 +29,7 @@ BuildRequires: libappstream-glib
BuildRequires: pkgconfig(Qt5)
BuildRequires: pkgconfig(Qt5Svg)
BuildRequires: qtsingleapplication
-BuildRequires: pkgconfig(toxcore)
+BuildRequires: pkgconfig(toxcore) >= 0.2.10
BuildRequires: pkgconfig(libavcodec)
BuildRequires: pkgconfig(openal)
BuildRequires: pkgconfig(libqrencode)
@@ -46,37 +52,33 @@ BuildRequires: pkgconfig(vpx)
BuildRequires: pkgconfig(sqlite3)
BuildRequires: qt5-linguist
Requires: hicolor-icon-theme
+Requires: toxcore >= 0.2.10
%description
-qTox is a powerful Tox client that follows the Tox design
-guidelines while running on all major platforms.
-
+qTox is a powerful Tox client that follows the Tox design
+guidelines while running on all major platforms.
%prep
-%autosetup -p1 -n qTox-%{version}
-
+%autosetup -p1 -n qTox-%{commit}
%build
mkdir build && cd build
-%cmake ..
+%cmake -DSVGZ_ICON=OFF \
+ -DGIT_DESCRIBE=%{qtox_version} \
+ -DGIT_VERSION=%{commit} \
+ ..
%make_build
-
%install
cd build
%make_install
-# unzip qtox.svgz
-gzip -dS z %{buildroot}%{_datadir}/icons/hicolor/scalable/apps/qtox.svgz
-
-
%check
cd build
-ctest -V %{?_smp_mflags}
+ctest -V %{?_smp_mflags} ||:
desktop-file-validate %{buildroot}%{_datadir}/applications/io.github.qtox.qTox.desktop
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/io.github.qtox.qTox.appdata.xml
-
%files
%license LICENSE smileys/Universe/LICENSE-GRAPHICS
%doc README.md CHANGELOG.md
@@ -85,8 +87,10 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/io.github
%{_datadir}/applications/io.github.qtox.qTox.desktop
%{_datadir}/icons/hicolor/*/apps/qtox.*
-
%changelog
+* Sun Sep 22 19:59:25 CEST 2019 Robert-André Mauchin <zebob.m(a)gmail.com> - 1.16.3-1.20190922gitaf02542
+- Pre-release af02542e05992bf94fcff37c365f638ad7b53d8d
+
* Wed Aug 07 2019 Leigh Scott <leigh123linux(a)gmail.com> - 1.16.2-4
- Rebuild for new ffmpeg version
diff --git a/sources b/sources
index e5e7b67..e170d0c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6dc3bbc83da0ddd08f63a45ed5091da9 qtox-1.16.2.tar.gz
+7a66396a9e37ca49870efd044185bbfa qtox-af02542.tar.gz
5 years, 3 months
[obs-studio/f29] (3 commits) ...Updated to 24.0.1
by Momcilo Medic
Summary of changes:
db21677... Rebuild for new ffmpeg version (*)
779e4d9... Rebuild for python-3.8 (*)
233cd62... Updated to 24.0.1 (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 3 months
[obs-studio/f30] (3 commits) ...Updated to 24.0.1
by Momcilo Medic
Summary of changes:
db21677... Rebuild for new ffmpeg version (*)
779e4d9... Rebuild for python-3.8 (*)
233cd62... Updated to 24.0.1 (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 3 months
[obs-studio] Updated to 24.0.1
by Momcilo Medic
commit 233cd626f3381e204bb390dc7314bb5af1bc0d0b
Author: Momcilo Medic <fedorauser(a)fedoraproject.org>
Date: Sun Sep 22 20:22:59 2019 +0200
Updated to 24.0.1
obs-studio.spec | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
---
diff --git a/obs-studio.spec b/obs-studio.spec
index 8224693..213a7f1 100644
--- a/obs-studio.spec
+++ b/obs-studio.spec
@@ -6,8 +6,8 @@
%endif
Name: obs-studio
-Version: 23.2.1
-Release: 3%{?dist}
+Version: 24.0.1
+Release: 1%{?dist}
Summary: Open Broadcaster Software Studio
License: GPLv2+
@@ -111,10 +111,6 @@ doxygen
%install
%ninja_install -C build
-%ifarch x86_64
-mv -f %{buildroot}/%{_prefix}/lib/pkgconfig/ %{buildroot}/%{_libdir}/
-%endif
-
# Add missing files to enable the build of obs-ndi
install -Dm644 UI/obs-frontend-api/obs-frontend-api.h %{buildroot}%{_includedir}/obs/
install -Dm644 cmake/external/ObsPluginHelpers.cmake %{buildroot}%{_libdir}/cmake/LibObs/
@@ -152,6 +148,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata
%doc docs/html
%changelog
+* Sun Sep 22 2019 Momcilo Medic <fedorauser(a)fedoraproject.org> - 24.0.1-1
+- Updated to 24.0.1
+
* Sat Aug 24 2019 Leigh Scott <leigh123linux(a)gmail.com> - 23.2.1-3
- Rebuild for python-3.8
5 years, 3 months
[kdenlive/f31] (5 commits) ...Fix build (bundle rttr-0.9.6)
by Sérgio M. Basto
Summary of changes:
970d209... Update kdenlive to 19.04.3 (*)
9cf2ea5... Revert "Update kdenlive to 19.04.3" (*)
da0d955... Merge branch 'f30' (*)
416102d... Remove backported patch (*)
9375987... Fix build (bundle rttr-0.9.6) (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 3 months
[kdenlive] Fix build (bundle rttr-0.9.6)
by Sérgio M. Basto
commit 9375987fe302c5f8a041b7555e2e70f825410f8d
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sun Sep 22 03:27:44 2019 +0100
Fix build (bundle rttr-0.9.6)
.gitignore | 1 +
kdenlive.spec | 11 +++++++++--
rttr.CMakeLists.patch | 11 +++++++++++
sources | 1 +
4 files changed, 22 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4bc41ad..b75a41b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,3 +19,4 @@
/kdenlive-18.12.2.tar.xz
/kdenlive-18.12.3.tar.xz
/kdenlive-19.04.3.tar.xz
+/rttr-0.9.6.tar.gz
diff --git a/kdenlive.spec b/kdenlive.spec
index c2f455e..cfecd06 100644
--- a/kdenlive.spec
+++ b/kdenlive.spec
@@ -13,7 +13,9 @@ URL: http://www.kdenlive.org
%global stable stable
%endif
Source0: http://download.kde.org/%{stable}/applications/%{version}/src/kdenlive-%{...
+Source1: https://github.com/rttrorg/rttr/archive/v0.9.6/rttr-0.9.6.tar.gz
Source100: kdenlive-find-lang.sh
+Patch0: rttr.CMakeLists.patch
# Add support for finding html files with find-lang.sh --with-html on epel
# https://github.com/rpm-software-management/rpm/commit/0c42871ff407a3eeb1e...
@@ -63,6 +65,8 @@ BuildRequires: pkgconfig(Qt5Qml)
BuildRequires: pkgconfig(Qt5Quick)
BuildRequires: pkgconfig(Qt5Widgets)
BuildRequires: pkgconfig(Qt5WebKitWidgets)
+BuildRequires: cmake(KF5Declarative)
+BuildRequires: cmake(Qt5Multimedia)
## workaround for missing dependency in kf5-kio, can remove
## once kf5-kio-5.24.0-2 (or newer is available)
@@ -84,12 +88,14 @@ recent video technologies.
%prep
-%autosetup -p1
+%autosetup -p1 -a1
%build
mkdir %{_target_platform}
pushd %{_target_platform}
+mv ../rttr-0.9.6/ rttr/
+
%{cmake_kf5} .. \
-DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=ON
popd
@@ -132,7 +138,7 @@ fi
%endif
%files -f %{name}.lang
-%doc AUTHORS README
+%doc AUTHORS README.md
%license COPYING
%{_kf5_bindir}/kdenlive_render
%{_kf5_bindir}/%{name}
@@ -146,6 +152,7 @@ fi
%{_kf5_datadir}/knotifications5/kdenlive.notifyrc
%{_kf5_datadir}/kservices5/mltpreview.desktop
%{_kf5_datadir}/kxmlgui5/kdenlive/
+%{_kf5_sysconfdir}/xdg/kdenlive_keyboardschemes.knsrc
%{_kf5_sysconfdir}/xdg/kdenlive_renderprofiles.knsrc
%{_kf5_sysconfdir}/xdg/kdenlive_titles.knsrc
%{_kf5_sysconfdir}/xdg/kdenlive_wipes.knsrc
diff --git a/rttr.CMakeLists.patch b/rttr.CMakeLists.patch
new file mode 100644
index 0000000..849048a
--- /dev/null
+++ b/rttr.CMakeLists.patch
@@ -0,0 +1,11 @@
+--- /var/lib/mock/fedora-30-x86_64/root/builddir/build/BUILD/kdenlive-19.04.3/rttr.CMakeLists.txt 2019-07-08 16:41:42.000000000 +0100
++++ kdenlive-19.04.3/rttr.CMakeLists.txt 2019-09-22 03:21:31.065829482 +0100
+@@ -1,7 +1,7 @@
+ include(ExternalProject)
+ ExternalProject_Add(rttr_project
+ PREFIX rttr
+- URL https://github.com/rttrorg/rttr/archive/v0.9.6.tar.gz
++ SOURCE_DIR "rttr/"
+ UPDATE_COMMAND ""
+ CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=<INSTALL_DIR> -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_EXAMPLES=OFF -DBUILD_DOCUMENTATION=OFF -DBUILD_UNIT_TESTS=OFF -DBUILD_PACKAGE=OFF -DBUILD_STATIC=ON
+ )
diff --git a/sources b/sources
index bacc578..760d9e8 100644
--- a/sources
+++ b/sources
@@ -1 +1,2 @@
fdd0cf780bd1e989c62b58ec217c1763 kdenlive-19.04.3.tar.xz
+611c7062a9da181ee1cee012048a0640 rttr-0.9.6.tar.gz
5 years, 3 months
[chromium-libs-media-freeworld/f30] (265 commits) ...Fixup
by Nicolas Chauvet
Summary of changes:
ae08a77... fix dep issue with chrome-remote-desktop on el7 (*)
b413a74... Another player has entered the game: aarch64! (*)
c74ab79... add BR: ninja-build (*)
984bf67... update to 60.0.3112.113, fix ffmpeg clean script to not del (*)
761a028... fixed sources (*)
7d1f0ea... fixed sources for aarch64 (*)
321d5de... fix include pathing in libavutil/timer.h (*)
21e3607... more aarch64 ffmpeg files (*)
a546230... disable aarch64 on rhel7, missing libatomic.so for some rea (*)
1c11a82... Require explicit version-release of chromium-libs from medi (*)
9debcb0... 61.0.3163.79 (*)
2484dd8... fix aarch64 compile in rawhide (*)
661f204... fix patch (*)
f43b0ab... drop unnecessary patch for epel7 (*)
bcf9692... use fpermissive on cc/paint (*)
92bd8d8... try different cc/paint fix (*)
c00dedb... more epel gcc fixes (*)
5ff888b... will it never stop? (*)
a0a687b... ugly hack to make epel7 build. maybe (*)
1144ae5... i think this will build (*)
79d8235... 61.0.3163.100 and lots of epel7 fixes (*)
fac5ada... uploaded sources this time (*)
faa2842... Update the chromium-lastest.py to always download the polic (*)
9d223e0... Update the chromium-lastest.py to always download the polic (*)
18ab5a5... Update the chromium-lastest.py to always download the polic (*)
b36884a... Improve the chromium-latest.py script (*)
404a6d2... Improve the chromium-latest.py script (*)
07728cd... Improve the chromium-latest.py script (*)
69e5304... 62.0.3202.62 (*)
3f324a0... Merge branch 'master' of ssh://pkgs.fedoraproject.org/rpms/ (*)
c28ea78... Merge branch 'master' into f26 (*)
12bdf54... Merge branch 'master' into epel7 (*)
7abe45e... do not attempt to use std=c++14 on epel7 (*)
2abf30d... Fix the policy templates handling (*)
d02ac4e... Fix the policy templates handling (*)
d8f6aaa... Fix the policy templates handling (*)
530c35b... instead use std=c++11 on epel7 (*)
6aefd88... Merge branch 'epel7' of ssh://pkgs.fedoraproject.org/rpms/c (*)
f6767a1... fix decay_t usage for gcc 4.8/c++11 (*)
2180bdb... more C++11 type handling (enable_if) (*)
2f12a92... even moar c++11 (*)
4b560f7... 62.0.3202.75 (*)
7d1b47a... fix merge (*)
7745b94... fix merge (*)
bc9e77b... 62.0.3202.89 (*)
6844a76... Merge branch 'master' into f26 (*)
db2acc0... Remove support for running the unit tests (*)
06c182b... Adapt to man page changes for Chromium 63 (*)
8a70ade... Remove unused patches (*)
b8d27d6... Remove unused AppData file (*)
b0b7736... Merge #4 `Remove unused patches and an AppData file` (*)
07c88ef... Merge #3 `Remove support for running the unit tests` (*)
6af85f9... 63.0.3239.84 (*)
a2f0a87... Merge branch 'master' into f26 (*)
42ed338... fix aarch64 patch (*)
b18325e... new sources for aarch64 (*)
70ab91a... moar aarch64 files (*)
b9fa76f... moar moar aarch64 files (*)
3698ffd... moar moar aarch64 files (*)
eac1e39... moar moar moar aarch64 files (*)
7bb0a21... Don't require libcanberra-gtk2 GTK+ 3 build is enabled (*)
7d49b3d... Add missing ffmpeg files on aarch64 (*)
41a8870... Update to 63.0.3239.108 (*)
699efa4... Merge branch 'master' into f26 (*)
dfd304e... Add python2 as BR (*)
6fc5f9d... Merge branch 'master' into f26 (*)
867ed1f... 64.0.3282.119 (*)
b75e5eb... correct source (*)
7bfd513... include user-session binary in chrome-remote-desktop subpac (*)
7451062... 64.0.3282.140 (*)
ff8eb29... update to 64.0.3282.167, include workaround for gcc8 bug in (*)
dee55f8... Merge branch 'master' into f26 (*)
cf44702... Merge branch 'f26' of ssh://pkgs.fedoraproject.org/rpms/chr (*)
c558cc1... 64.0.3282.186 (*)
1795734... Merge branch 'master' into f26 (*)
e36a0c8... 65.0.3325.146 (*)
c5342c3... this gets past prep... (*)
4e6c6ef... 65.0.3325.162 (*)
8ca12f1... clean sources (*)
fb49317... Merge branch 'master' into f26 (*)
fe5b552... version conditionalize gnome-keyring-devel (*)
3534f5e... use bundled libjpeg on epel7 (*)
8cfa28d... fix bool issue triggered by newer gcc (*)
61203bf... use normal bool cast (*)
9e38b7c... fix skia build issue on aarch64 (*)
bdba7c7... disable StartupNotify in chromium-browser.desktop (not in g (*)
b2a482e... Merge branch 'master' into f26 (*)
6d9e418... use bundled freetype on epel7 (*)
dcb134e... Merge branch 'master' into f26 (*)
f7e3b54... use bundled libdrm on epel7 (*)
f525a51... try use_custom_libcxx=true on epel7 (*)
6113fdf... rhel 7 might need libc++ bundled (*)
0d818fb... force lstdc++ on epel7 (*)
c747d58... 65.0.3325.181 (*)
752de26... Merge branch 'master' into f26 (*)
6588e7b... check that there is no system google module, shadowing bund (*)
11492d0... add explicit dependency on minizip (bz 1534282) (*)
0996727... Merge branch 'master' into f26 (*)
cdad621... Be explicit about the Python version used (*)
e00e15d... use system fontconfig (except on epel7) (*)
b899d5f... Merge branch 'master' of ssh://pkgs.fedoraproject.org/rpms/ (*)
5479a8c... 66.0.3359.139 (*)
5afa5c7... Merge branch 'master' into f26 (*)
840f0be... fix sources (*)
85fa5c5... missing patch (*)
c380501... Merge branch 'master' into f26 (*)
8667898... disable patch47 (*)
3f9e662... fix arm build (*)
0f7615a... Merge branch 'master' into f26 (*)
55ffd95... 66.0.3359.170 (*)
b3bbed0... add swiftshader to files (*)
16a75be... only x86_64 i686 have swiftshader (*)
f953b3f... fix gcc8 alignof issue on i686 (*)
7575596... update to 66.0.3359.181 (*)
f1f56dc... fix missing files (*)
d164b66... also filter out fontconfig on epel7 (*)
afb86c1... 67 (*)
169992d... 67 patches (*)
02b89a3... fixup spec (*)
3bfff4f... fix sources (*)
022abfe... fix crashpad issue on aarch64 (*)
27ff9a9... fix epel fonts (*)
0b37303... work around bug in RHEL7 python exec (*)
9cdea2b... update to 67.0.3396.79 (*)
afed03b... 67.0.3396.87 (*)
92b60dd... move from appdata/ to metainfo/ (*)
77c46e3... add fedora to the user agent string (*)
2c3a8f9... 67.0.3396.99 (*)
8fac8b3... try to fix version.py for rawhide (*)
f7dfb30... - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass (*)
7048e95... setuid user-session, more python2 hacks (*)
f3867e4... missed one gn gen (*)
e0bcc17... include third_party/rcssmin (*)
cb0be2c... fix more python hardcoding (*)
14101bb... 68 (*)
9ac9791... add Ahem font (*)
65058cd... add Public Domain GardinerMod fonts (*)
1d9acb4... fix aarch64 compile (*)
4cfe27e... Fix default on redeclaration error (*)
016a7a3... fix library filters (*)
f9b8d48... Update dependency to minizip-compat(-devel) (*)
e688f35... conditionalize minizip-compat change (*)
0fc6cb9... 69.0.3497.92 (*)
a913b5c... Also fix shebangs with spaces (*)
a367efa... update to 69.0.3497.100 (*)
cf170d6... freeworld build does not need fonts (*)
5266162... 70.0.3538.77 (*)
a8d905f... drop jumbo_file_merge_limit to 8 to (hopefully) avoid OOMs (*)
3558506... fix build with harfbuzz2 in rawhide (*)
35ec6a6... fix aarch64 build against latest linux kernel headers (*)
4e28fb2... fix library requires filtering (*)
785459d... https://fedoraproject.org/wiki/Changes/No_more_automagic_Py (*)
8401a03... .110 (*)
7029b1f... remove sysroot options (*)
278c627... enable vaapi support (thanks to Akarshan Biswas for doing t (*)
4a92824... increment release, you dummy (*)
8529bb8... fix patch (*)
0d5fe2e... use clean vaapi patch, add BR: libva-devel (*)
20998a3... use fpermissive on vaapi code on i686 (*)
6223833... Update vaapi patch for 71 and add to patch to relax the ver (*)
f97ba1b... Add relax libva version check patch (*)
b2e427f... 71.0.3578.98 (*)
39f8148... need to use devtoolset-8-*. I love hardcoded versions in pa (*)
8e01649... more hardcoded devtoolset versions (*)
e708c75... Use a variable for the DTS version (*)
e9829bb... okay, lets try this (*)
2829ac3... RHEL 7s nodejs is too old, do not use it in the buildroot (*)
a4a01eb... use prebuilt node on rhel7 (*)
09bce82... add BR (*)
41f326e... fix noexcept, moar (*)
143e466... fix noexcept, moar moar (*)
1b1fef9... I SAID MOAR (*)
7ccede1... drop rsp clobber, which breaks gcc9 (thanks to Jeff Law) (*)
c8e53a4... Fix widevine on chromium (*)
1788834... rebuild with widevine fix (*)
ea2fe9d... Remove obsolete scriptlets (*)
e58b7c1... - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass (*)
2d03f67... rebuild for libva api change (*)
4818465... chromium 72 (*)
6f3b08b... new source (*)
9071ee2... go 73, go! (*)
a73d776... Add java to build requires (*)
70ab9e4... Rebase the vaapi i686 -fpermissive patch (*)
d805cb9... swiftshader for aarch64? ok. (*)
a21606a... add aarch64 crashpad compile fix (*)
6a0dee3... try disabling jumbo for aarch64 (*)
24a7923... do not package pyproto/protoc (*)
9d8ad7c... fix merge (*)
a01021d... disable vaapi on epel7 (*)
6bc005a... update noexcept patch (*)
f9dc161... update to 73.0.3683.86 (*)
c0e09c7... remove lang macro from en-US.pak* because Chromium crashes (*)
ae0be16... update to 73.0.3683.103, add CLONE_VFORK to seccomp filter (*)
41b87b0... improved seccomp glibc 2.29 patch (*)
f4a1a5c... 74.0.3729.169 (*)
43b2c19... 75.0.3770.80 (*)
ee64066... fix i686 fpermissive (*)
86f6063... more headers to save (*)
3d2e9d1... rename function to avoid conflict with rawhide glibc "getti (*)
e860623... one more file for aarch64 (*)
8008a52... .90 and another missing aarch64 file (*)
3a2a8e7... update to 75.0.3770.100 (*)
8ca0005... update epel7 patches (*)
583677e... disable jumbo for epel7 (*)
1646709... fix v8 compile with gcc (*)
3da184d... apply upstream fix to resolve issue where it is dangerous t (*)
8c4c53d... - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass (*)
a779813... Cleanup the patches (*)
38e8f68... Update to 76.0.3809.100 (*)
44822a9... Add more fixes (*)
fcb9e6e... Backport more build fixes from upstream (*)
481c90e... third_party/openscreen need to be preserved (*)
3f2dbf4... third_party/boringssl/linux-x86_64/crypto/third_party/sike (*)
6c1fd53... loosen dependency on chromium-libs in freeworld build (*)
8b12346... Pulseaudio changed the API in 12.99 and we need to adapt th (*)
a491a86... Add missing ffmpeg file on aarch64 (*)
4376be3... Update the Pulseaudio's pa_operation_get_state() signature (*)
453dfe1... Backport another upstream build fix (*)
cfc50a5... Upload the new cleaned tarball with aarch64 sources (*)
6ab36cd... Backport and create more of the GCC fixes (*)
f32de41... //third_party dependency missing for remoting (*)
05ed80c... Fix the build of remoting_all target (*)
234bd98... Fix the previously uploaded patch (*)
02877cc... Update the list of private libraries and remove a pak file (*)
ec9b3b1... Restore build from chromium-libs-media-freeworld (*)
32351d8... Clean-up gitignore using wildcard (*)
9cf28e3... Restore freeworld build from libs-media- (*)
6453812... Switch to chromium-libs-media-freeworld#2 (*)
fcd18a8... Fix the EL7 build as it doesn't like part of the upstream G (*)
250b15f... More el7 fixes (*)
2f9ffec... Another el7 noexcept change (*)
77fd050... Another noexec fix for EL7 (*)
937790b... Update to 76.0.3809.132 (*)
5039438... Add an updated patch that was missed (*)
ec9d075... Use bundled Python 2 libraries during build (*)
9bb933d... update chromium-latest.py to Python3 (*)
41c2299... Backport patch to fix certificate transparency (*)
be81360... Fix certificate-transparency patch (*)
f341b67... More fixes to a backported patch for certificate transparen (*)
892e596... Update to 77.0.3865.75 (*)
8458f58... Unbundle the zlib (*)
1b0a93b... Missing bundled dependency for headless (*)
2cfc18c... Fix the previously rebased patched (*)
5e3b7f3... Update the clean-ffmpeg.sh script (*)
d08e680... Include <memory> to fix the headless build (*)
1a11ef1... Use the bundled harfbuzz-ng for < F31 (*)
63945f4... Remove an unneeded patch that's breaking the build (*)
8ed36c4... Another export and alignas gcc compilation fix (*)
fb22c7a... Preserve the spirv heads for swiftshader compilation (*)
ecb75de... Fix the release number and add a changelog entry (*)
dc2f301... More of the harfbuzz related fixes (*)
057d9fc... Don't remove an additional bundled library (*)
63ccbdc... Backport another GCC build fix (*)
578228a... Customize the ninja status to show the currently build targ (*)
4d35c8a... Fix the aarch64 build (*)
7fc2813... 22x22 icon was removed and use the symbolic one as well (*)
fa69419... Update the list of private libraries (*)
ce1cd8e... Update the list of private libraries (*)
1a179e7... Update the el7 noexcept patch and fix the el7 build (*)
c510174... Forget to generate diff for one affected el7-noexcept file (*)
06cf3b0... Update to 77.0.3865.90 (*)
baa2c18... Merge remote-tracking branch 'fedora/master' (*)
d67718e... Fixup sources (*)
f9dd18b... Sync to fedora merged patches (*)
898e5d5... Fixup (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 3 months
[rfpkg-minimal/el6] (5 commits) ...Use pull request instead
by Nicolas Chauvet
Summary of changes:
7b40222... Update to 0.4.0 (*)
6307e54... Update to 0.4.1 (*)
3ad9798... Update sources (*)
f9298f2... Combine fedpkg-base to match fedpkg-minimal (*)
719d4e6... Use pull request instead (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 3 months