Browse Source

updated 5 packages

abseil-cpp-20230802.1-2

libwpe-1.14.1-1

unifdef-2.12-1

webkitgtk4-2.42.1-1

wpebackend-fdo-1.14.2-3
Tomohiro "Tomo-p" KATO 5 months ago
parent
commit
8822c87fe9

+ 344 - 0
a/abseil-cpp/abseil-cpp-vl.spec

@@ -0,0 +1,344 @@
+%bcond_with testing
+
+# Installed library version
+%global lib_version 2308.0.0
+
+Name:           abseil-cpp
+Summary:        C++ Common Libraries
+Version:        20230802.1
+Release:        2%{?_dist_release}
+Group:          system
+Vendor:         Project Vine
+Distribution:   Vine Linux
+
+# The entire source is Apache-2.0, except:
+#   - The following files are LicenseRef-Fedora-Public-Domain:
+#       absl/time/internal/cctz/src/tzfile.h
+#         ** This file is in the public domain, so clarified as of
+#         ** 1996-06-05 by Arthur David Olson.
+#       absl/time/internal/cctz/testdata/zoneinfo/iso3166.tab
+#         # This file is in the public domain, so clarified as of
+#         # 2009-05-17 by Arthur David Olson.
+#       absl/time/internal/cctz/testdata/zoneinfo/zone1970.tab
+#         # This file is in the public domain.
+#     Public-domain license text for these files was added to the
+#     public-domain-text.txt file in fedora-license-data in commit
+#     538bc87d5e3c1cb08e81d690ce4122e1273dc9cd
+#     (https://gitlab.com/fedora/legal/fedora-license-data/-/merge_requests/205).
+License:        Apache-2.0 AND LicenseRef-Fedora-Public-Domain
+URL:            https://abseil.io
+Source0:        https://github.com/abseil/abseil-cpp/archive/%{version}/%{name}-%{version}.tar.gz
+
+BuildRequires:  cmake
+# The default make backend would work just as well; ninja is observably faster
+BuildRequires:  ninja
+BuildRequires:  gcc-c++
+
+%if %{with testing}
+BuildRequires:  gmock-devel
+BuildRequires:  gtest-devel
+%endif
+
+# The contents of absl/time/internal/cctz are derived from
+# https://github.com/google/cctz (https://src.fedoraproject.org/rpms/cctz), but
+# have been forked with Abseil-specific changes. It is not obvious from which
+# particular version of CCTZ these sources are derived. Upstream was asked
+# about a path to supporting a system copy as required by bundling guidelines:
+#   Please comment on CCTZ bundling
+#   https://github.com/abseil/abseil-cpp/discussions/1415
+# They refused, for the time being, as follows:
+#   “[…] we have no plans to change this decision, but we reserve the right to
+#   change our minds.”
+Provides:       bundled(cctz)
+
+%description
+Abseil is an open-source collection of C++ library code designed to augment
+the C++ standard library. The Abseil library code is collected from
+Google's own C++ code base, has been extensively tested and used in
+production, and is the same code we depend on in our daily coding lives.
+
+In some cases, Abseil provides pieces missing from the C++ standard; in
+others, Abseil provides alternatives to the standard for special needs we've
+found through usage in the Google code base. We denote those cases clearly
+within the library code we provide you.
+
+Abseil is not meant to be a competitor to the standard library; we've just
+found that many of these utilities serve a purpose within our code base,
+and we now want to provide those resources to the C++ community as a whole.
+
+
+%if %{with testing}
+%package testing
+Summary:        Libraries needed for running tests on the installed %{name}
+Group:          programming
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+
+Provides:       bundled(cctz)
+
+%description testing
+%{summary}.
+%endif
+
+%package devel
+Summary:        Development files for %{name}
+Group:          programming
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+%if %{with testing}
+Requires:       %{name}-testing%{?_isa} = %{version}-%{release}
+%endif
+
+# Some of the headers from CCTZ are part of the -devel subpackage. See the
+# corresponding virtual Provides in the base package for full details.
+Provides:       bundled(cctz)
+
+%description devel
+Development headers for %{name}
+
+
+%debug_package
+
+
+%prep
+%autosetup -p1 -S gendiff
+
+
+%build
+# ABSL_BUILD_TEST_HELPERS is needed to build libraries for the -testing
+# subpackage when tests are not enabled. It is therefore redundant here, but we
+# still supply it to be more explicit.
+%cmake \
+  -GNinja \
+  -DABSL_USE_EXTERNAL_GOOGLETEST:BOOL=ON \
+  -DABSL_FIND_GOOGLETEST:BOOL=ON \
+  -DABSL_ENABLE_INSTALL:BOOL=ON \
+%if %{with testing}
+  -DABSL_BUILD_TESTING:BOOL=ON \
+  -DABSL_BUILD_TEST_HELPERS:BOOL=ON \
+%endif
+  -DCMAKE_BUILD_TYPE:STRING=None \
+  -DCMAKE_CXX_STANDARD:STRING=17
+%cmake_build
+
+
+%install
+%cmake_install
+
+%if %{with testing}
+%check
+%ctest
+%endif
+
+
+%files
+%license LICENSE
+%doc FAQ.md README.md UPGRADES.md
+# All shared libraries except installed TESTONLY libraries; see the %%files
+# list for the -testing subpackage for those.
+%{_libdir}/libabsl_bad_any_cast_impl.so.%{lib_version}
+%{_libdir}/libabsl_bad_optional_access.so.%{lib_version}
+%{_libdir}/libabsl_bad_variant_access.so.%{lib_version}
+%{_libdir}/libabsl_base.so.%{lib_version}
+%{_libdir}/libabsl_city.so.%{lib_version}
+%{_libdir}/libabsl_civil_time.so.%{lib_version}
+%{_libdir}/libabsl_cord.so.%{lib_version}
+%{_libdir}/libabsl_cord_internal.so.%{lib_version}
+%{_libdir}/libabsl_cordz_functions.so.%{lib_version}
+%{_libdir}/libabsl_cordz_handle.so.%{lib_version}
+%{_libdir}/libabsl_cordz_info.so.%{lib_version}
+%{_libdir}/libabsl_cordz_sample_token.so.%{lib_version}
+%{_libdir}/libabsl_crc32c.so.%{lib_version}
+%{_libdir}/libabsl_crc_cord_state.so.%{lib_version}
+%{_libdir}/libabsl_crc_cpu_detect.so.%{lib_version}
+%{_libdir}/libabsl_crc_internal.so.%{lib_version}
+%{_libdir}/libabsl_debugging_internal.so.%{lib_version}
+%{_libdir}/libabsl_demangle_internal.so.%{lib_version}
+%{_libdir}/libabsl_die_if_null.so.%{lib_version}
+%{_libdir}/libabsl_examine_stack.so.%{lib_version}
+%{_libdir}/libabsl_exponential_biased.so.%{lib_version}
+%{_libdir}/libabsl_failure_signal_handler.so.%{lib_version}
+%{_libdir}/libabsl_flags.so.%{lib_version}
+%{_libdir}/libabsl_flags_commandlineflag.so.%{lib_version}
+%{_libdir}/libabsl_flags_commandlineflag_internal.so.%{lib_version}
+%{_libdir}/libabsl_flags_config.so.%{lib_version}
+%{_libdir}/libabsl_flags_internal.so.%{lib_version}
+%{_libdir}/libabsl_flags_marshalling.so.%{lib_version}
+%{_libdir}/libabsl_flags_parse.so.%{lib_version}
+%{_libdir}/libabsl_flags_private_handle_accessor.so.%{lib_version}
+%{_libdir}/libabsl_flags_program_name.so.%{lib_version}
+%{_libdir}/libabsl_flags_reflection.so.%{lib_version}
+%{_libdir}/libabsl_flags_usage.so.%{lib_version}
+%{_libdir}/libabsl_flags_usage_internal.so.%{lib_version}
+%{_libdir}/libabsl_graphcycles_internal.so.%{lib_version}
+%{_libdir}/libabsl_hash.so.%{lib_version}
+%{_libdir}/libabsl_hashtablez_sampler.so.%{lib_version}
+%{_libdir}/libabsl_int128.so.%{lib_version}
+%{_libdir}/libabsl_kernel_timeout_internal.so.%{lib_version}
+%{_libdir}/libabsl_leak_check.so.%{lib_version}
+%{_libdir}/libabsl_log_entry.so.%{lib_version}
+%{_libdir}/libabsl_log_flags.so.%{lib_version}
+%{_libdir}/libabsl_log_globals.so.%{lib_version}
+%{_libdir}/libabsl_log_initialize.so.%{lib_version}
+%{_libdir}/libabsl_log_internal_check_op.so.%{lib_version}
+%{_libdir}/libabsl_log_internal_conditions.so.%{lib_version}
+%{_libdir}/libabsl_log_internal_format.so.%{lib_version}
+%{_libdir}/libabsl_log_internal_globals.so.%{lib_version}
+%{_libdir}/libabsl_log_internal_log_sink_set.so.%{lib_version}
+%{_libdir}/libabsl_log_internal_message.so.%{lib_version}
+%{_libdir}/libabsl_log_internal_nullguard.so.%{lib_version}
+%{_libdir}/libabsl_log_internal_proto.so.%{lib_version}
+%{_libdir}/libabsl_log_severity.so.%{lib_version}
+%{_libdir}/libabsl_log_sink.so.%{lib_version}
+%{_libdir}/libabsl_low_level_hash.so.%{lib_version}
+%{_libdir}/libabsl_malloc_internal.so.%{lib_version}
+%{_libdir}/libabsl_periodic_sampler.so.%{lib_version}
+%{_libdir}/libabsl_random_distributions.so.%{lib_version}
+%{_libdir}/libabsl_random_internal_distribution_test_util.so.%{lib_version}
+%{_libdir}/libabsl_random_internal_platform.so.%{lib_version}
+%{_libdir}/libabsl_random_internal_pool_urbg.so.%{lib_version}
+%{_libdir}/libabsl_random_internal_randen.so.%{lib_version}
+%{_libdir}/libabsl_random_internal_randen_hwaes.so.%{lib_version}
+%{_libdir}/libabsl_random_internal_randen_hwaes_impl.so.%{lib_version}
+%{_libdir}/libabsl_random_internal_randen_slow.so.%{lib_version}
+%{_libdir}/libabsl_random_internal_seed_material.so.%{lib_version}
+%{_libdir}/libabsl_random_seed_gen_exception.so.%{lib_version}
+%{_libdir}/libabsl_random_seed_sequences.so.%{lib_version}
+%{_libdir}/libabsl_raw_hash_set.so.%{lib_version}
+%{_libdir}/libabsl_raw_logging_internal.so.%{lib_version}
+%{_libdir}/libabsl_scoped_set_env.so.%{lib_version}
+%{_libdir}/libabsl_spinlock_wait.so.%{lib_version}
+%{_libdir}/libabsl_stacktrace.so.%{lib_version}
+%{_libdir}/libabsl_status.so.%{lib_version}
+%{_libdir}/libabsl_statusor.so.%{lib_version}
+%{_libdir}/libabsl_str_format_internal.so.%{lib_version}
+%{_libdir}/libabsl_strerror.so.%{lib_version}
+%{_libdir}/libabsl_strings.so.%{lib_version}
+%{_libdir}/libabsl_strings_internal.so.%{lib_version}
+%{_libdir}/libabsl_string_view.so.%{lib_version}
+%{_libdir}/libabsl_symbolize.so.%{lib_version}
+%{_libdir}/libabsl_synchronization.so.%{lib_version}
+%{_libdir}/libabsl_throw_delegate.so.%{lib_version}
+%{_libdir}/libabsl_time.so.%{lib_version}
+%{_libdir}/libabsl_time_zone.so.%{lib_version}
+
+%if %{with testing}
+%files testing
+# TESTONLY libraries (that are actually installed):
+# absl/base/CMakeLists.txt
+%{_libdir}/libabsl_exception_safety_testing.so.%{lib_version}
+%{_libdir}/libabsl_atomic_hook_test_helper.so.%{lib_version}
+%{_libdir}/libabsl_spinlock_test_common.so.%{lib_version}
+# absl/container/CMakeLists.txt
+%{_libdir}/libabsl_test_instance_tracker.so.%{lib_version}
+%{_libdir}/libabsl_hash_generator_testing.so.%{lib_version}
+# absl/debugging/CMakeLists.txt
+%{_libdir}/libabsl_stack_consumption.so.%{lib_version}
+# absl/log/CMakeLists.txt
+%{_libdir}/libabsl_log_internal_test_actions.so.%{lib_version}
+%{_libdir}/libabsl_log_internal_test_helpers.so.%{lib_version}
+%{_libdir}/libabsl_log_internal_test_matchers.so.%{lib_version}
+%{_libdir}/libabsl_scoped_mock_log.so.%{lib_version}
+# absl/strings/CMakeLists.txt
+%{_libdir}/libabsl_pow10_helper.so.%{lib_version}
+# absl/synchronization/CMakeLists.txt
+%{_libdir}/libabsl_per_thread_sem_test_common.so.%{lib_version}
+# absl/time/CMakeLists.txt
+%{_libdir}/libabsl_time_internal_test_util.so.%{lib_version}
+%endif
+
+%files devel
+%{_includedir}/absl
+%{_libdir}/libabsl_*.so
+%{_libdir}/cmake/absl
+%{_libdir}/pkgconfig/absl_*.pc
+
+%changelog
+* Thu Oct 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 20230802.1-2
+- initial build for Vine Linux.
+
+* Wed Sep 20 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230802.1-1
+- Update to 20230802.1 (close RHBZ#2239814)
+
+* Thu Aug 10 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230802.0-1
+- Update to 20230802.0 (Abseil LTS branch, Aug 2023): close RHBZ#2229015
+
+* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 20230125.3-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
+
+* Tue May 09 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230125.3-1
+- Update to 20230125.3 (close RHBZ#2193306)
+- Split installed TESTONLY libraries into a -testing subpackage; explicitly
+  list all installed shared libraries
+- Explicitly enable the ABSL_BUILD_TEST_HELPERS CMake option
+
+* Thu Mar 30 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230125.2-1
+- Update to 20230125.2 (close RHBZ#2182229)
+
+* Thu Feb 23 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20230125.1-1
+- Update to 20230125.1 (close RHBZ#2162638)
+
+* Sat Jan 21 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 20220623.1-4
+- Backport upstream commit 4eef161 for GCC 13
+
+* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 20220623.1-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
+* Fri Sep 02 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20220623.1-2
+- Update to 20220623.1 (close RHBZ#2123181)
+
+* Sat Aug 13 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20220623.0-1
+- Update to 20220623.0 (close RHBZ#2101021)
+- Update License to SPDX
+
+* Fri Jul 29 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20211102.0-4
+- Do not leak -maes -msse4.1 into pkgconfig (fix RHBZ#2108658)
+
+* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20211102.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
+* Tue Mar 15 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20211102.0-2
+- Disable LTO on s390x to work around test failure
+- Skip SysinfoTest.NominalCPUFrequency on all architectures; it fails
+  occasionally on aarch64, and upstream says we should not care
+
+* Fri Feb 18 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20211102.0-1
+- Update to 20211102.0 (close RHBZ#2019691)
+- Drop --output-on-failure, already in %%ctest expansion
+- On s390x, instead of ignoring all tests, skip only the single failing test
+- Use ninja backend for CMake: speeds up build with no downsides
+- Drop patch for armv7hl
+
+* Mon Jan 31 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 20210324.2-4
+- Fix test failure (fix RHBZ#2045186)
+
+* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20210324.2-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
+* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20210324.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Fri May 21 2021 Rich Mattes <richmattes@gmail.com> - 20210324.1-2
+- Update to release 20210324.2
+- Enable and run test suite
+
+* Mon Mar 08 2021 Rich Mattes <richmattes@gmail.com> - 20200923.3-1
+- Update to release 20200923.3
+
+* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20200923.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Sat Dec 19 2020 Rich Mattes <richmattes@gmail.com> - 20200923.2-1
+- Update to release 20200923.2
+- Rebuild to fix tagging in koji (rhbz#1885561)
+
+* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20200225.2-4
+- Second attempt - Rebuilt for
+  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20200225.2-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Wed May 27 2020 Rich Mattes <richmattes@gmail.com> - 20200225.2-2
+- Don't remove buildroot in install
+
+* Sun May 24 2020 Rich Mattes <richmattes@gmail.com> - 20200225.2-1
+- Initial package.

+ 162 - 0
lib/libw/libwpe/libwpe-vl.spec

@@ -0,0 +1,162 @@
+Name:           libwpe
+Summary:        General-purpose library for the WPE-flavored port of WebKit
+Version:        1.14.1
+Release:        1%{_dist_release}
+Group:          system
+Vendor:         Project Vine
+Distribution:   Vine Linux
+
+License:        BSD
+URL:            https://github.com/WebPlatformForEmbedded/%{name}
+Source0:        https://github.com/WebPlatformForEmbedded/libwpe/releases/download/%{version}/%{name}-%{version}.tar.xz
+Source1:        https://github.com/WebPlatformForEmbedded/libwpe/releases/download/%{version}/%{name}-%{version}.tar.xz.asc
+# Created from https://keys.openpgp.org/vks/v1/by-fingerprint/5AA3BC334FD7E3369E7C77B291C559DBE4C9123B
+# $ gpg --import 5AA3BC334FD7E3369E7C77B291C559DBE4C9123B.asc
+# $ gpg2 --export --export-options export-minimal 5AA3BC334FD7E3369E7C77B291C559DBE4C9123B > gpgkey-5AA3BC334FD7E3369E7C77B291C559DBE4C9123B.gpg
+Source2:        gpgkey-5AA3BC334FD7E3369E7C77B291C559DBE4C9123B.gpg
+
+BuildRequires:  gcc-c++
+BuildRequires:  meson
+BuildRequires:  pkgconfig(egl)
+BuildRequires:  pkgconfig(xkbcommon)
+
+%description
+General-purpose library developed for the WPE-flavored port of WebKit
+
+
+%package       devel
+Group:         programming
+Summary:       Development files for %{name}
+Requires:      %{name}%{?_isa} = %{version}-%{release}
+
+%description   devel
+The %{name}-devel package contains libraries, build data, and header
+files for developing applications that use %{name}.
+
+
+%debug_package
+
+
+%prep
+%autosetup -p1 -n libwpe-%{version}
+
+
+%build
+%meson
+%meson_build
+
+
+%install
+%meson_install
+
+
+%files
+%license COPYING
+%doc NEWS
+%{_libdir}/libwpe-1.0.so.1.*
+%{_libdir}/libwpe-1.0.so.1
+
+%files devel
+%{_includedir}/wpe-1.0/
+%{_libdir}/libwpe-1.0.so
+%{_libdir}/pkgconfig/wpe-1.0.pc
+
+
+%changelog
+* Sat Nov 04 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.14.1-1
+- initial build for Vine Linux.
+- new upstream release.
+
+* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
+* Mon Sep 19 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 1.14.0-1
+- Update to 1.14.0
+
+* Tue Aug 23 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 1.13.90-1
+- Upgrade to libwpe 1.13.90
+
+* Thu Aug 11 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 1.13.3-1
+- Upgrade to 1.13.3
+
+* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
+* Mon May 16 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 1.13.2-1
+- Forgot to bump version number
+
+* Mon May 16 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 1.13.1-2
+- Update to 1.13.2
+
+* Thu May 12 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 1.13.1-1
+- Update to 1.13.1
+
+* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
+* Thu Sep 30 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.12.0-2
+- Forgot to add the autochangelog
+
+* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Thu Jun 10 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.10.1-1
+- Update to 1.10.1
+
+* Fri Mar 26 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.10.0-2
+- Add GPG verification of source tarball
+
+* Fri Mar 26 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.10.0-1
+- Update to 1.10.0
+
+* Mon Mar 15 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.9.91-1
+- Update to 1.9.91
+
+* Mon Mar 08 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.9.90-1
+- Update to 1.9.90
+
+* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Mon Jan 18 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.9.1-1
+- Update to 1.9.1
+
+* Fri Sep 11 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 1.8.0-1
+- Update to 1.8.0
+
+* Wed Jul 29 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 1.7.1-1
+- Update to 1.7.1 and switch to meson build system
+
+* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Thu Mar 12 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 1.6.0-1
+- Update to 1.6.0
+
+* Mon Mar 02 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 1.5.90-1
+- Update to 1.5.90
+
+* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
+
+* Wed Sep 18 2019 Chris King <bunnyapocalypse@protonmail.org> - 1.4.0-1
+- New version
+
+* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Mon Jun 17 2019 Chris King <bunnyapocalypse@protonmail.org> - 1.3.1-1
+- New version
+
+* Wed May 8 2019 Chris King <bunnyapocalypse@protonmail.org> - 1.3.0-1
+- New version
+
+* Mon Mar 25 2019 Chris King <bunnyapocalypse@protonmail.org> - 1.2.0-1
+- New vsn with soname bump
+
+* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Mon Aug 27 2018 Chris King <bunnyapocalypse@protonmail.org> - 1.0.0-1
+- Initial RPM package
+

+ 175 - 0
u/unifdef/unifdef-vl.spec

@@ -0,0 +1,175 @@
+Summary: Tool for removing ifdef'd lines
+Name: unifdef
+Version: 2.12
+Release: 1%{?_dist_release}
+Group: programming
+Vendor: Project Vine
+Distribution: Vine Linux
+
+License: BSD
+URL: http://dotat.at/prog/unifdef/
+Source0: http://dotat.at/prog/unifdef/unifdef-%{version}.tar.xz
+
+BuildRequires: make
+BuildRequires:  gcc
+BuildRequires: pkgconfig
+
+%description
+Unifdef is useful for removing ifdefed lines from a file while otherwise
+leaving the file alone. Unifdef acts on #ifdef, #ifndef, #else, and #endif
+lines, and it knows only enough about C and C++ to know when one of these
+is inactive because it is inside a comment, or a single or double quote.
+
+
+%debug_package
+
+
+%prep
+%setup -q
+
+
+%build
+make CFLAGS="$RPM_OPT_FLAGS"
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d -m0755 $RPM_BUILD_ROOT%{_bindir}
+install -p -m0755 unifdef $RPM_BUILD_ROOT%{_bindir}/unifdef
+install -p -m0755 unifdefall.sh $RPM_BUILD_ROOT%{_bindir}/unifdefall.sh
+
+install -d -m0755 $RPM_BUILD_ROOT%{_mandir}/man1
+install -p -m0644 unifdef.1 $RPM_BUILD_ROOT%{_mandir}/man1/unifdef.1
+
+
+%files
+%{_bindir}/unifdef
+%{_bindir}/unifdefall.sh
+%{_mandir}/man1/unifdef.1.gz
+
+
+%changelog
+* Fri Nov 03 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.12-1
+- initial build for Vine Linux.
+- new upstream release.
+
+* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-20
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
+
+* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-19
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
+* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-18
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
+* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-17
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
+* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-16
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-15
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-14
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-13
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
+
+* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-12
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-11
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-10
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
+* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
+* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
+
+* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
+* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
+* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
+
+* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
+* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
+* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
+* Wed Feb 26 2014 Eric Smith <spacewar@gmail.com> - 2.10-1
+- Update to latest upstream.
+
+* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
+* Sun Jun 09 2013 Eric Smith <spacewar@gmail.com> - 2.9-1
+- Update to latest upstream.
+
+* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Sat Apr 30 2011 Eric Smith <eric@brouhaha.com> 2.6-1
+- Update to latest upstream
+- Upstream now includes their own strlcmp, so we no longer need to use
+  libbsd
+
+* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.334-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Thu Feb 11 2010 Eric Smith <eric@brouhaha.com> 1.334-1
+- Remove package name from summary
+- Change URL from FreeBSD CVS to project home page
+- Update source to upstream 1.334
+- No longer need getline() patch
+- Use strlcpy from libbsd
+
+* Fri Jan 15 2010 Kyle McMartin <kyle@redhat.com> 1.171-10
+- fix unifdef ftbfs
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.171-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.171-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.171-7
+- Autorebuild for GCC 4.3
+
+* Wed Aug 22 2007 David Woodhouse <dwmw2@infradead.org> - 1.171-6
+- Rebuild
+
+* Sat Jul 15 2006 David Woodhouse <dwmw2@infradead.org> - 1.171-5
+- Don't redefine %%dist
+
+* Fri Jul 14 2006 Jesse Keating <jkeating@redhat.com> - 1.171-4
+- Minor specfile cleanups from review
+
+* Tue May  2 2006 David Woodhouse <dwmw2@infradead.org> - 1.171-3
+- Minor specfile cleanups from review
+
+* Wed Apr 26 2006 David Woodhouse <dwmw2@infradead.org> - 1.171-2
+- Change BuildRoot
+
+* Tue Apr 25 2006 David Woodhouse <dwmw2@infradead.org> - 1.171-1
+- Initial import from FreeBSD CVS
+

+ 75 - 12
w/webkitgtk4/webkitgtk4-vl.spec

@@ -1,3 +1,4 @@
+%bcond_with gtk4
 %bcond_with systemd
 %bcond_with clang
 
@@ -10,7 +11,7 @@
 
 Summary:        GTK+ Web content engine library
 Name:           webkitgtk4
-Version:        2.38.0
+Version:        2.42.1
 Release:        1%{?_dist_release}%{?with_systemd:.systemd}
 Group:          system
 Vendor:         Project Vine
@@ -40,28 +41,34 @@ BuildRequires:  gobject-introspection-devel
 BuildRequires:  gperf
 BuildRequires:  gstreamer1-devel
 BuildRequires:  gstreamer1-plugins-base-devel
+BuildRequires:  gstreamer1-plugins-bad-free-devel
 BuildRequires:  gtk2-devel
 BuildRequires:  gtk3-devel
 BuildRequires:  harfbuzz-icu-devel
+BuildRequires:  hyphen-devel
 BuildRequires:  lcms2-devel
 BuildRequires:  libatomic
 BuildRequires:  libicu-devel
 BuildRequires:  libjpeg-turbo-devel
+BuildRequires:  libnotify-devel
 BuildRequires:  libpng-devel
 BuildRequires:  libseccomp-devel
 BuildRequires:  libsecret-devel
 BuildRequires:  libsoup-devel
 BuildRequires:  libwebp-devel
+BuildRequires:  libwpe-devel
 BuildRequires:  libxslt-devel
 BuildRequires:  libXt-devel
-BuildRequires:  ninja
+BuildRequires:  mesa-libgbm-devel
 BuildRequires:  mesa-libGL-devel
+BuildRequires:  ninja
+BuildRequires:  openjpeg2-devel
 BuildRequires:  pcre-devel
 BuildRequires:  python3-devel
 BuildRequires:  ruby
 BuildRequires:  sqlite3-devel
-BuildRequires:  libnotify-devel
-BuildRequires:  hyphen-devel
+BuildRequires:  unifdef
+BuildRequires:  wpebackend-fdo-devel
 BuildRequires:  woff2-devel
 BuildRequires:  xdg-dbus-proxy
 %if %{with systemd}
@@ -153,6 +160,7 @@ export LD=ld.lld
 %global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
 %endif
 
+%define _vpath_builddir %{_vendor}-%{_target_os}-build/webkit2gtk-4.0
 %cmake \
   -GNinja \
 %if %{with clang}
@@ -161,14 +169,12 @@ export LD=ld.lld
 %endif
   -DPORT=GTK \
   -DCMAKE_BUILD_TYPE=Release \
+  -DUSE_SOUP2=ON \
   -DUSER_AGENT_BRANDING="Vine Linux" \
-  -DENABLE_JIT=OFF \
-  -DENABLE_LLINT_C_LOOP=ON \
-  -DUSE_GSTREAMER_GL=OFF \
-  -DUSE_OPENJPEG=OFF \
-  -DUSE_WPE_RENDERER=OFF \
+  -DENABLE_WEBDRIVER=OFF \
+  -DUSE_JPEGXL=OFF \
+  -DUSE_AVIF=OFF \
   -DENABLE_GAMEPAD=OFF \
-  -DUSE_SOUP2=ON \
   -DENABLE_DOCUMENTATION=OFF \
   -DENABLE_GTKDOC=OFF \
 %if %{with systemd}
@@ -179,30 +185,74 @@ export LD=ld.lld
   -DENABLE_JOURNALD_LOG=OFF \
 %endif
 
+%if %{with gtk4}
+%define _vpath_builddir %{_vendor}-%{_target_os}-build/webkitgtk-6.0
+%cmake \
+  -GNinja \
+%if %{with clang}
+  -DCOMPILER_IS_CLANG=ON \
+  -DCMAKE_CXX_COMPILER=clang++ \
+%endif
+  -DPORT=GTK \
+  -DUSE_GTK4=ON \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DENABLE_WEBDRIVER=OFF \
+  -DUSER_AGENT_BRANDING="Vine Linux" \
+  -DENABLE_GAMEPAD=OFF \
+  -DENABLE_DOCUMENTATION=OFF \
+  -DENABLE_GTKDOC=OFF \
+%if %{with systemd}
+  -DUSE_SYSTEMD=ON \
+  -DENABLE_JOURNALD_LOG=ON \
+%else
+  -DUSE_SYSTEMD=OFF \
+  -DENABLE_JOURNALD_LOG=OFF \
+%endif
+%endif
+
+%define _vpath_builddir %{_vendor}-%{_target_os}-build/webkit2gtk-4.0
+# Show the build time in the status
+export NINJA_STATUS="[%f/%t][%e] "
+%cmake_build
+
+%if %{with gtk4}
+%define _vpath_builddir %{_vendor}-%{_target_os}-build/webkitgtk-6.0
 # Show the build time in the status
 export NINJA_STATUS="[%f/%t][%e] "
 %cmake_build
+%endif
 
 
 %install
+%define _vpath_builddir %{_vendor}-%{_target_os}-build/webkit2gtk-4.0
+%cmake_install
+
+%find_lang WebKitGTK-4.0
+
+%if %{with gtk4}
+%define _vpath_builddir %{_vendor}-%{_target_os}-build/webkitgtk-6.0
 %cmake_install
 
-%find_lang WebKit2GTK-4.0
+%find_lang WebKit2GTK-6.0
+%endif
 
 # Finally, copy over and rename various files for %%license inclusion
 %add_to_license_files Source/JavaScriptCore/COPYING.LIB
 %add_to_license_files Source/ThirdParty/ANGLE/LICENSE
+%add_to_license_files Source/ThirdParty/ANGLE/src/third_party/libXNVCtrl/LICENSE
 %add_to_license_files Source/WebCore/LICENSE-APPLE
 %add_to_license_files Source/WebCore/LICENSE-LGPL-2
 %add_to_license_files Source/WebCore/LICENSE-LGPL-2.1
 %add_to_license_files Source/WebInspectorUI/UserInterface/External/CodeMirror/LICENSE
 %add_to_license_files Source/WebInspectorUI/UserInterface/External/Esprima/LICENSE
+%add_to_license_files Source/WebInspectorUI/UserInterface/External/three.js/LICENSE
 %add_to_license_files Source/WTF/icu/LICENSE
 %add_to_license_files Source/WTF/wtf/dtoa/COPYING
 %add_to_license_files Source/WTF/wtf/dtoa/LICENSE
 
 
-%files -f WebKit2GTK-4.0.lang
+%if %{with gtk4}
+%files -f WebKit2GTK-6.0.lang
 %license _license_files/*
 %{_libdir}/libwebkit2gtk-4.0.so.*
 %{_libdir}/girepository-1.0/WebKit2-4.0.typelib
@@ -211,6 +261,16 @@ export NINJA_STATUS="[%f/%t][%e] "
 %{_libexecdir}/webkit2gtk-4.0/*
 %exclude %{_libexecdir}/webkit2gtk-4.0/jsc
 %{_bindir}/WebKitWebDriver
+%endif
+
+%files -f WebKitGTK-4.0.lang
+%license _license_files/*
+%{_libdir}/libwebkit2gtk-4.0.so.*
+%{_libdir}/girepository-1.0/WebKit2-4.0.typelib
+%{_libdir}/girepository-1.0/WebKit2WebExtension-4.0.typelib
+%{_libdir}/webkit2gtk-4.0/
+%{_libexecdir}/webkit2gtk-4.0/*
+%exclude %{_libexecdir}/webkit2gtk-4.0/jsc
 
 %files jsc
 %license _license_files/*JavaScriptCore*
@@ -237,6 +297,9 @@ export NINJA_STATUS="[%f/%t][%e] "
 
 
 %changelog
+* Sat Nov 04 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.42.1-1
+- new upstream release.
+
 * Wed Oct 19 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.38.0-1
 - new upstream release.
 

+ 181 - 0
w/wpebackend-fdo/wpebackend-fdo-vl.spec

@@ -0,0 +1,181 @@
+%undefine __cmake_in_source_build
+
+Name:           wpebackend-fdo
+Summary:        A WPE backend designed for Linux desktop systems
+Version:        1.14.2
+Release:        3%{_dist_release}
+Group:          system
+Vendor:         Project Vine
+Distribution:   Vine Linux
+
+License:        BSD
+URL:            https://github.com/Igalia/%{name}
+Source0:        https://github.com/Igalia/%{name}/archive/%{version}/%{name}-%{version}.tar.xz
+
+BuildRequires:  gcc-c++
+BuildRequires:  meson
+BuildRequires:  pkgconfig(egl)
+BuildRequires:  pkgconfig(epoxy)
+BuildRequires:  pkgconfig(gio-2.0)
+BuildRequires:  pkgconfig(gobject-2.0)
+BuildRequires:  pkgconfig(xkbcommon)
+BuildRequires:  pkgconfig(wayland-client)
+BuildRequires:  pkgconfig(wayland-server)
+BuildRequires:  pkgconfig(wpe-1.0)
+
+%description
+A WPE backend designed for Linux desktop systems.
+
+
+%package       devel
+Summary:       Development files for %{name}
+Group:         programming
+Requires:      %{name}%{?_isa} = %{version}-%{release}
+
+%description   devel
+The %{name}-devel package contains libraries, build data, and header
+files for developing applications that use %{name}.
+
+
+%debug_package
+
+
+%prep
+%autosetup -p1 -n %{name}-%{version}
+
+
+%build
+%meson
+%meson_build
+
+
+%install
+%meson_install
+
+
+%files
+%license COPYING
+%doc NEWS
+%{_libdir}/libWPEBackend-fdo-1.0.so.1
+%{_libdir}/libWPEBackend-fdo-1.0.so.1.*
+
+%files devel
+%{_includedir}/wpe-fdo-1.0
+%{_libdir}/libWPEBackend-fdo-1.0.so
+%{_libdir}/pkgconfig/wpebackend-fdo-1.0.pc
+
+
+%changelog
+* Sat Nov 04 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.14.2-3
+- initial build for Vine Linux.
+
+* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
+
+* Wed Mar 22 2023 Michael Catanzaro <mcatanzaro@redhat.com> - 1.14.2-1
+- Update to 1.14.2
+
+* Mon Mar 06 2023 Michael Catanzaro <mcatanzaro@redhat.com> - 1.14.1-1
+- Update to 1.14.1
+
+* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
+* Tue Sep 20 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 1.14.0-1
+- Update to 1.14.0
+
+* Tue Aug 09 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 1.13.1-1
+- Update to 1.13.1
+
+* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
+* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
+* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Mon Jun 07 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.10.0-1
+- Update to 1.10.0
+
+* Fri May 14 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.9.92-1
+- Update to 1.9.92
+- Add GPG verification of source tarball
+
+* Fri Apr 30 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.9.91-1
+- Update to 1.9.91
+
+* Sat Apr 17 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.9.90-2
+- Stop crashing after process swap
+
+* Thu Apr 01 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.9.90-1
+- Update to 1.9.90
+
+* Mon Mar 08 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 1.9.1-1
+- Update to 1.9.1
+
+* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Fri Sep 11 2020 Michael Catanzaro <mcatanzaro@redhat.com> -  1.8.0-1
+- Update to 1.8.0
+- Move libWPEBackend-fdo-1.0.so back to -devel package
+
+* Wed Jul 29 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 1.7.1-1
+- Update to 1.7.1 and switch to meson build system
+
+* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Tue May 26 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 1.6.1-1
+- Update to 1.6.1
+
+* Thu Mar 12 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 1.6.0-1
+- Update to 1.6.0
+
+* Tue Mar 03 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 1.5.90-2
+- Rebuild against updated libwpe
+
+* Tue Mar 03 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 1.5.90-1
+- Update to 1.5.90
+
+* Mon Feb 24 2020 Michael Catanzaro <mcatanzaro@redhat.com> - 1.4.1-1
+- Update to 1.4.1
+
+* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
+
+* Thu Sep 19 2019 Chris King <bunnyapocalypse@protonmail.com> - 1.4.0-2
+- Change location of libWPEBackend-fdo.so to allow for WPE backend
+
+* Wed Sep 18 2019 Chris King <bunnyapocalypse@protonmail.com> - 1.4.0-1
+- new version
+
+* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Mon Jun 17 2019 Chris King <bunnyapocalypse@protonmail.com> - 1.3.1-1
+- New version
+
+* Sat May 11 2019 Chris King <bunnyapocalypse@protonmail.com> - 1.3.0-1
+- New version
+
+* Mon Mar 25 2019 Chris King <bunnyapocalypse@protonmail.com> - 1.2.0-1
+- New version
+
+* Thu Feb 28 2019 Pete Walter <pwalter@fedoraproject.org> - 1.1.90-2
+- Update wayland deps
+
+* Tue Feb 26 2019 Chris King <bunnyapocalypse@protonmail.com> - 1.1.90-1
+- New version with soname bump
+
+* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Sun Aug 26 2018 Chris King <bunnyapocalypse@protonmail.com> - 1.0.0-1
+- Soname bump
+
+* Mon Jul 16 2018 Chris King <bunnyapocalypse@fedoraproject.org> - 0.1-1
+- Initial RPM package
+