From a5cb642656106961e59e87a0a9a22cb947b90ec8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 25 Mar 2015 14:17:38 +0000 Subject: [PATCH 01/20] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 6098cd2be854a747ceb36e5ed42924ce6793a023 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 31 Mar 2015 11:46:19 +0200 Subject: [PATCH 02/20] Import package (signon-ui 0.15) --- .gitignore | 1 + signon-ui-0.15-fix-qt5-build.patch | 35 ++++++++++++++ signon-ui.spec | 74 ++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 111 insertions(+) create mode 100644 signon-ui-0.15-fix-qt5-build.patch create mode 100644 signon-ui.spec diff --git a/.gitignore b/.gitignore index e69de29..8d5bae5 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/signon-ui-0.15.tar.bz2 diff --git a/signon-ui-0.15-fix-qt5-build.patch b/signon-ui-0.15-fix-qt5-build.patch new file mode 100644 index 0000000..2035c1e --- /dev/null +++ b/signon-ui-0.15-fix-qt5-build.patch @@ -0,0 +1,35 @@ +diff --git a/src/request.cpp b/src/request.cpp +index 5556c79..4f51e8e 100644 +--- a/src/request.cpp ++++ b/src/request.cpp +@@ -81,9 +81,7 @@ public: + } + + private Q_SLOTS: +-#if HAS_XEMBED + void onEmbedError(); +-#endif + void onIndicatorCallFinished(QDBusPendingCallWatcher *watcher); + + private: +@@ -194,9 +192,9 @@ void RequestPrivate::setWidget(QWidget *widget) + #endif + } + +-#if HAS_XEMBED + void RequestPrivate::onEmbedError() + { ++#if HAS_XEMBED + Q_Q(Request); + + QX11EmbedWidget *embed = qobject_cast(sender()); +@@ -204,8 +202,8 @@ void RequestPrivate::onEmbedError() + + q->fail(SIGNON_UI_ERROR_EMBEDDING_FAILED, + QString("Embedding signon UI failed: %1").arg(embed->error())); +-} + #endif ++} + + Accounts::Account *RequestPrivate::findAccount() + { diff --git a/signon-ui.spec b/signon-ui.spec new file mode 100644 index 0000000..f5c6333 --- /dev/null +++ b/signon-ui.spec @@ -0,0 +1,74 @@ +Name: signon-ui +Version: 0.15 +Release: 2%{?dist} +Summary: Online Accounts Sign-on Ui + +License: GPLv3 +URL: https://launchpad.net/signon-ui + +Source0: https://launchpad.net/signon-ui/trunk/%{version}/+download/signon-ui-%{version}.tar.bz2 + +Patch0: signon-ui-0.15-fix-qt5-build.patch + +BuildRequires: qt5-qtbase-devel +BuildRequires: qt5-qtwebkit-devel +BuildRequires: libaccounts-qt5-devel +BuildRequires: signon-qt5-devel +BuildRequires: libproxy-devel +BuildRequires: libnotify-devel + +Requires: dbus + +%description +Sign-on UI is the component responsible for handling the user interactions which +can happen during the login process of an online account. +It can show password dialogs and dialogs with embedded web pages. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q -n signon-ui-%{version} + +%patch0 -p1 -b .qt5 + + +%build +export PATH=%{_qt5_bindir}:$PATH +%{qmake_qt5} QMF_INSTALL_ROOT=%{_prefix} \ + CONFIG+=release signon-ui.pro + +make %{?_smp_mflags} + + +%install +make install INSTALL_ROOT=%{buildroot} + +# Remove installed tests +rm %{buildroot}/%{_bindir}/signon-ui-unittest +rm %{buildroot}/%{_bindir}/tst_inactivity_timer + +# Own directory where others can install provider-specific configuration +mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d + +%files +%doc README TODO NOTES +%license COPYING +%{_bindir}/signon-ui +%{_datadir}/dbus-1/services/*.service +%{_sysconfdir}/signon-ui + +%changelog +* Wed Mar 25 2015 Daniel Vrátil - 0.15-2 +- fix license +- fix typo in mkdir arguments +- use %%license + +* Tue Mar 17 2015 Daniel Vrátil - 0.15-1 +- Initial version diff --git a/sources b/sources index e69de29..73a95c5 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +67ac8ce4cc85b69ec6ff67ae892fda90 signon-ui-0.15.tar.bz2 From 9fe933877c064b766624eb7f7dd4997f00fb5ac1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 31 Mar 2015 11:48:48 +0200 Subject: [PATCH 03/20] BR: signon-qt5-devel -> signon-devel --- signon-ui.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index f5c6333..c82f4db 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -13,7 +13,7 @@ Patch0: signon-ui-0.15-fix-qt5-build.patch BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtwebkit-devel BuildRequires: libaccounts-qt5-devel -BuildRequires: signon-qt5-devel +BuildRequires: signon-devel BuildRequires: libproxy-devel BuildRequires: libnotify-devel From 63905994d57b97662c26a5b97ee227af5662c7dc Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sat, 2 May 2015 17:44:59 +0200 Subject: [PATCH 04/20] Rebuilt for GCC 5 C++11 ABI change --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index c82f4db..c2a3c98 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Sat May 02 2015 Kalev Lember - 0.15-3 +- Rebuilt for GCC 5 C++11 ABI change + * Wed Mar 25 2015 Daniel Vrátil - 0.15-2 - fix license - fix typo in mkdir arguments From da541c23432fcf68975234997605251c660957a6 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 00:51:05 +0000 Subject: [PATCH 05/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index c2a3c98..709b1e5 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat May 02 2015 Kalev Lember - 0.15-3 - Rebuilt for GCC 5 C++11 ABI change From 4bd5f8947d75e63efac71131ac3cb7eb4a3b6431 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 00:00:32 +0000 Subject: [PATCH 06/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 709b1e5..191d1a1 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 0.15-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 0.15-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 2a85e987498389e90036ca452b2cbc3629e19e19 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 13:27:12 +0000 Subject: [PATCH 07/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 191d1a1..f07efb5 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.15-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 0.15-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From be3fe42727aa5fc1186306a5fa63602043037ad3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 18:36:58 +0000 Subject: [PATCH 08/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index f07efb5..664e717 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.15-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 0.15-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 34238300cbd1923724177f36670aab9d93db592d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 08:27:27 +0000 Subject: [PATCH 09/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 664e717..7a328d1 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.15-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.15-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 93d6571b7423c7331426d86cddaa58cb4fedbee0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 16:44:49 +0000 Subject: [PATCH 10/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 7a328d1..914cf1d 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.15-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 0.15-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From fd50aab2914e67f92974a22005fcd21cdc9d6c50 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 06:07:58 +0000 Subject: [PATCH 11/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 914cf1d..2fdeae0 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 0.15-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 0.15-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From ae5cfa8bf7f5972513779a6a798760f66852bd25 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 2 Feb 2019 15:25:23 +0000 Subject: [PATCH 12/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 2fdeae0..7d6694f 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Sat Feb 02 2019 Fedora Release Engineering - 0.15-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 0.15-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From eff29954e5546bb28febd19a253eefa428bdf7c3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 23:19:20 +0000 Subject: [PATCH 13/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 7d6694f..9554348 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 0.15-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Feb 02 2019 Fedora Release Engineering - 0.15-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From ff014603406e4fcccbfd2707731c1234f1d9d834 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 23:27:56 +0000 Subject: [PATCH 14/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 9554348..b73c7ad 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 0.15-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Jul 26 2019 Fedora Release Engineering - 0.15-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From a5562fff1223bd4090c3ce80f98977999b9602e8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 10:43:41 +0000 Subject: [PATCH 15/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index b73c7ad..17ed4ea 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -65,6 +65,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.15-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Thu Jan 30 2020 Fedora Release Engineering - 0.15-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 1e7b2de1ca9db1ead4b2718b5f5230d176691aa9 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Fri, 8 Jan 2021 21:29:41 +0000 Subject: [PATCH 16/20] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- signon-ui.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/signon-ui.spec b/signon-ui.spec index 17ed4ea..056a9ac 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -10,6 +10,7 @@ Source0: https://launchpad.net/signon-ui/trunk/%{version}/+download/signo Patch0: signon-ui-0.15-fix-qt5-build.patch +BuildRequires: make BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtwebkit-devel BuildRequires: libaccounts-qt5-devel From 349f308b32a7fd07afe3bc940e9441140bb8025e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 20:23:17 +0000 Subject: [PATCH 17/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 056a9ac..318d9a7 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -66,6 +66,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 0.15-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 0.15-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From e8e9b0109b7cbc81e6c2b6f99c54e558a8de5f92 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 17:33:29 +0000 Subject: [PATCH 18/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 318d9a7..19b103c 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -66,6 +66,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.15-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 0.15-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From a1d82220faec7fff36470900fc88d2d9f60cec6f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 00:53:12 +0000 Subject: [PATCH 19/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- signon-ui.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/signon-ui.spec b/signon-ui.spec index 19b103c..c7a3ab6 100644 --- a/signon-ui.spec +++ b/signon-ui.spec @@ -1,6 +1,6 @@ Name: signon-ui Version: 0.15 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Online Accounts Sign-on Ui License: GPLv3 @@ -66,6 +66,9 @@ mkdir -p %{buildroot}/%{_sysconfdir}/signon-ui/webkit-options.d %{_sysconfdir}/signon-ui %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 0.15-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 0.15-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 015bf4639617d991e54b0746841b087ed27e7c35 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 31 Oct 2023 00:19:38 +0300 Subject: [PATCH 20/20] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index 73a95c5..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -67ac8ce4cc85b69ec6ff67ae892fda90 signon-ui-0.15.tar.bz2