From 719ef2dc8ea9c31c8d8ce01c847f6e17ff0e98d8 Mon Sep 17 00:00:00 2001 From: Simon Steinbeiss Date: Tue, 23 Aug 2022 14:58:09 +0200 Subject: [PATCH 1/3] bolt 0.9.3 upstream release --- .gitignore | 1 + bolt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 723079f..5ebeec0 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ tests/source/ /bolt-0.9.tar.gz /bolt-0.9.1.tar.gz /bolt-0.9.2.tar.gz +/bolt-0.9.3.tar.gz diff --git a/bolt.spec b/bolt.spec index 066fb2a..a3f65c4 100644 --- a/bolt.spec +++ b/bolt.spec @@ -1,6 +1,6 @@ Name: bolt -Version: 0.9.2 -Release: 2%{?dist} +Version: 0.9.3 +Release: 1%{?dist} Summary: Thunderbolt device manager License: LGPLv2+ URL: https://gitlab.freedesktop.org/bolt/bolt @@ -76,6 +76,9 @@ mentioned tasks. %ghost %dir %{_localstatedir}/lib/boltd %changelog +* Tue Aug 23 2022 Simon Steinbeiss - 0.9.3-1 +- New upstream release + * Wed Jul 20 2022 Fedora Release Engineering - 0.9.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index de3b566..63f149f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (bolt-0.9.2.tar.gz) = 69e7ffa58a6dbc8a1b14fd7e11e2291fa60227896ead1a449839716b581c6ab0e351d3ed62f9b51c5e44a5a33ba5e23dc5af73a1b4eef87f733b3231d5454e90 +SHA512 (bolt-0.9.3.tar.gz) = 2160831011090e75cf54408525f53ead6c0e7797de8a4afdd07ef5a035f8e1aa58f34efb9bd52e6e7cd93ac17751e72ff27e99f2b372a5720b2cbadd6abb3c26 From a6cc459cebb5b52bfdc32d42f1997d170e00059d Mon Sep 17 00:00:00 2001 From: Kate Hsuan Date: Tue, 14 Feb 2023 17:58:21 +0800 Subject: [PATCH 2/3] Skip unix domain socket test Skip unix domain socket test to prevent from the "permission deny" error of koji build. --- .gitignore | 1 + ...st-unix-skip-unix-domain-socket-test.patch | 31 +++++++++++++++++++ bolt.spec | 6 +++- sources | 2 +- 4 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 0001-test-test-unix-skip-unix-domain-socket-test.patch diff --git a/.gitignore b/.gitignore index 5ebeec0..ec253d4 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ tests/source/ /bolt-0.9.1.tar.gz /bolt-0.9.2.tar.gz /bolt-0.9.3.tar.gz +/bolt-0.9.5.tar.gz diff --git a/0001-test-test-unix-skip-unix-domain-socket-test.patch b/0001-test-test-unix-skip-unix-domain-socket-test.patch new file mode 100644 index 0000000..d0b1f94 --- /dev/null +++ b/0001-test-test-unix-skip-unix-domain-socket-test.patch @@ -0,0 +1,31 @@ +From 74eace0d89b63be92615364568ba36ad7d748477 Mon Sep 17 00:00:00 2001 +From: Kate Hsuan +Date: Tue, 14 Feb 2023 16:25:04 +0800 +Subject: [PATCH] test: test-unix: skip unix domain socket test + +Skip the test since we can't test unix domain socket in mock. +--- + tests/test-unix.c | 7 ------- + 1 file changed, 7 deletions(-) + +diff --git a/tests/test-unix.c b/tests/test-unix.c +index 98de3db..366488f 100644 +--- a/tests/test-unix.c ++++ b/tests/test-unix.c +@@ -198,13 +198,6 @@ main (int argc, char **argv) + test_pid_is_alive, + NULL); + +- g_test_add ("/common/unix/bolt_sd_notify", +- TestNotify, +- NULL, +- test_notify_setup, +- test_sd_notify, +- test_notify_teardown); +- + g_test_add ("/common/unix/sd_watchdog_enabled", + TestDummy, + NULL, +-- +2.39.1 + diff --git a/bolt.spec b/bolt.spec index a3f65c4..f5a7840 100644 --- a/bolt.spec +++ b/bolt.spec @@ -1,10 +1,11 @@ Name: bolt -Version: 0.9.3 +Version: 0.9.5 Release: 1%{?dist} Summary: Thunderbolt device manager License: LGPLv2+ URL: https://gitlab.freedesktop.org/bolt/bolt Source0: %{url}/-/archive/%{version}/%{name}-%{version}.tar.gz +Patch0: 0001-test-test-unix-skip-unix-domain-socket-test.patch BuildRequires: gcc BuildRequires: asciidoc @@ -76,6 +77,9 @@ mentioned tasks. %ghost %dir %{_localstatedir}/lib/boltd %changelog +* Tue Feb 14 2023 Kate hsuan - 0.9.5-1 +- Updated to upstream version + * Tue Aug 23 2022 Simon Steinbeiss - 0.9.3-1 - New upstream release diff --git a/sources b/sources index 63f149f..d4e2266 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (bolt-0.9.3.tar.gz) = 2160831011090e75cf54408525f53ead6c0e7797de8a4afdd07ef5a035f8e1aa58f34efb9bd52e6e7cd93ac17751e72ff27e99f2b372a5720b2cbadd6abb3c26 +SHA512 (bolt-0.9.5.tar.gz) = cf8625f45d15f5685d99a49c5993a9196b355158be660c63fb22f86c2d9806d41cc13702d2e8d1b8e6f37e4acf3485e2b2c0eb19f907732bdf670680cbc073ae From d31424a4cbd8f6a06aecbe3e6bc9dc55f6f82a80 Mon Sep 17 00:00:00 2001 From: Kate Hsuan Date: Wed, 13 Sep 2023 11:51:07 +0800 Subject: [PATCH 3/3] 0.9.6 release Fixing for compiler warning and log message issues. Signed-off-by: Kate Hsuan --- .gitignore | 1 + bolt.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ec253d4..56d5846 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ tests/source/ /bolt-0.9.2.tar.gz /bolt-0.9.3.tar.gz /bolt-0.9.5.tar.gz +/bolt-0.9.6.tar.gz diff --git a/bolt.spec b/bolt.spec index f5a7840..4dc396d 100644 --- a/bolt.spec +++ b/bolt.spec @@ -1,5 +1,5 @@ Name: bolt -Version: 0.9.5 +Version: 0.9.6 Release: 1%{?dist} Summary: Thunderbolt device manager License: LGPLv2+ @@ -77,6 +77,10 @@ mentioned tasks. %ghost %dir %{_localstatedir}/lib/boltd %changelog +* Wed Sep 13 2023 Kate Hsuan - 0.9.6-1 +- Update 0.9.6 release +- Fixing for compiler warning and log message issues + * Tue Feb 14 2023 Kate hsuan - 0.9.5-1 - Updated to upstream version diff --git a/sources b/sources index d4e2266..6c1023c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (bolt-0.9.5.tar.gz) = cf8625f45d15f5685d99a49c5993a9196b355158be660c63fb22f86c2d9806d41cc13702d2e8d1b8e6f37e4acf3485e2b2c0eb19f907732bdf670680cbc073ae +SHA512 (bolt-0.9.6.tar.gz) = c8d638fa9eb73c79cb4ee93c8c29d7d71d0ae449b2363bc75c303f978201078a42d4b05095e67d677447aea1db9d337f195ce264175c6b0c4733e9ed3eb2e081