Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package bolt for openSUSE:Factory checked in 
at 2022-12-08 16:52:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bolt (Old)
 and      /work/SRC/openSUSE:Factory/.bolt.new.1835 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "bolt"

Thu Dec  8 16:52:04 2022 rev:10 rq:1041328 version:0.9.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/bolt/bolt.changes        2022-09-05 
21:22:09.725158457 +0200
+++ /work/SRC/openSUSE:Factory/.bolt.new.1835/bolt.changes      2022-12-08 
16:52:11.591792698 +0100
@@ -1,0 +2,6 @@
+Mon Dec  5 12:33:33 UTC 2022 - Dirk Müller <[email protected]>
+
+- update to 0.9.4:
+  * spec file added and a few metadata fixes, no code change 
+
+-------------------------------------------------------------------

Old:
----
  bolt-0.9.3.tar.bz2

New:
----
  bolt-0.9.4.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ bolt.spec ++++++
--- /var/tmp/diff_new_pack.QjHuB1/_old  2022-12-08 16:52:12.123795426 +0100
+++ /var/tmp/diff_new_pack.QjHuB1/_new  2022-12-08 16:52:12.127795447 +0100
@@ -18,7 +18,7 @@
 
 %global _hardened_build 1
 Name:           bolt
-Version:        0.9.3
+Version:        0.9.4
 Release:        0
 Summary:        Thunderbolt 3 device manager
 License:        GPL-2.0-or-later

++++++ bolt-0.9.3.tar.bz2 -> bolt-0.9.4.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bolt-0.9.3/.gitlab-ci.yml 
new/bolt-0.9.4/.gitlab-ci.yml
--- old/bolt-0.9.3/.gitlab-ci.yml       2022-08-23 00:26:52.000000000 +0200
+++ new/bolt-0.9.4/.gitlab-ci.yml       2022-11-04 14:21:08.000000000 +0100
@@ -47,3 +47,13 @@
     paths:
     - build-coverity/cov-int/build-log.txt
     expire_in: 1 week
+
+srpm_build:
+  image: quay.io/packit/packit
+  stage: build
+  script:
+  - packit srpm
+  artifacts:
+    paths:
+      - "*.src.rpm"
+    expire_in: 1 week
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bolt-0.9.3/.packit.yaml new/bolt-0.9.4/.packit.yaml
--- old/bolt-0.9.3/.packit.yaml 1970-01-01 01:00:00.000000000 +0100
+++ new/bolt-0.9.4/.packit.yaml 2022-11-04 14:21:08.000000000 +0100
@@ -0,0 +1,21 @@
+# https://packit.dev/docs/configuration/
+
+specfile_path: bolt.spec
+
+synced_files:
+    - bolt.spec
+    - .packit.yaml
+
+upstream_package_name: bolt
+downstream_package_name: bolt
+
+copy_upstream_release_description: true
+
+actions:
+  get-current-version: bash -c "git describe --tags --abbrev=0 | sed 's|v||'"
+
+jobs:
+- job: propose_downstream
+  trigger: release
+  dist_git_branches:
+    - fedora-all
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bolt-0.9.3/bolt.spec new/bolt-0.9.4/bolt.spec
--- old/bolt-0.9.3/bolt.spec    1970-01-01 01:00:00.000000000 +0100
+++ new/bolt-0.9.4/bolt.spec    2022-11-04 14:21:08.000000000 +0100
@@ -0,0 +1,169 @@
+Name:          bolt
+Version:       0.9.4
+Release:       1%{?dist}
+Summary:       Thunderbolt device manager
+License:       LGPLv2+
+URL:           https://gitlab.freedesktop.org/bolt/bolt
+Source0:       %{url}/-/archive/%{version}/%{name}-%{version}.tar.gz
+
+BuildRequires: gcc
+BuildRequires: asciidoc
+BuildRequires: meson
+BuildRequires: libudev-devel
+BuildRequires: pkgconfig(gio-2.0)
+BuildRequires: pkgconfig(libudev)
+BuildRequires: pkgconfig(systemd)
+BuildRequires: polkit-devel
+BuildRequires: systemd
+%{?systemd_requires}
+
+# for the integration test (optional)
+%if 0%{?fedora} || 0%{?rhel} > 8
+BuildRequires: pygobject3-devel
+BuildRequires: python3-dbus
+BuildRequires: python3-dbusmock
+BuildRequires: umockdev-devel
+%endif
+
+%description
+bolt is a system daemon to manage Thunderbolt devices via a D-BUS
+API. Thunderbolt 3 introduced different security modes that require
+devices to be authorized before they can be used. The D-Bus API can be
+used to list devices, enroll them (authorize and store them in the
+local database) and forget them again (remove previously enrolled
+devices). It also emits signals if new devices are connected (or
+removed). During enrollment devices can be set to be automatically
+authorized as soon as they are connected.  A command line tool, called
+boltctl, can be used to control the daemon and perform all the above
+mentioned tasks.
+
+%prep
+%autosetup -p1
+
+%build
+%meson -Ddb-name=boltd
+%meson_build
+
+%check
+%meson_test
+
+%install
+%meson_install
+
+%post
+%systemd_post %{name}.service
+
+%preun
+%systemd_preun %{name}.service
+
+%postun
+%systemd_postun_with_restart %{name}.service
+
+%files
+%license COPYING
+%doc README.md CHANGELOG.md
+%{_bindir}/boltctl
+%{_libexecdir}/boltd
+%{_unitdir}/%{name}.service
+%{_udevrulesdir}/*-%{name}.rules
+%{_datadir}/dbus-1/system.d/org.freedesktop.bolt.conf
+%{_datadir}/dbus-1/interfaces/org.freedesktop.bolt.xml
+%{_datadir}/polkit-1/actions/org.freedesktop.bolt.policy
+%{_datadir}/polkit-1/rules.d/org.freedesktop.bolt.rules
+%{_datadir}/dbus-1/system-services/org.freedesktop.bolt.service
+%{_mandir}/man1/boltctl.1*
+%{_mandir}/man8/boltd.8*
+%ghost %dir %{_localstatedir}/lib/boltd
+
+%changelog
+* Tue Aug 23 2022 Simon Steinbeiss <[email protected]> - 0.9.3-1
+- New upstream release
+
+* Wed Jul 20 2022 Fedora Release Engineering <[email protected]> - 
0.9.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
+* Thu Jan 27 2022 Christian Kellner <[email protected]> - 0.9.2-1
+- bolt 0.9.2 release
+
+* Wed Jan 19 2022 Fedora Release Engineering <[email protected]> - 
0.9.1-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
+* Wed Jul 21 2021 Fedora Release Engineering <[email protected]> - 
0.9.1-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <[email protected]> - 0.9.1-3
+- Rebuilt for updated systemd-rpm-macros
+  See https://pagure.io/fesco/issue/2583.
+
+* Tue Jan 26 2021 Fedora Release Engineering <[email protected]> - 
0.9.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Tue Dec  1 2020 Christian Kellner <[email protected]> - 0.9.1-1
+- bolt 0.9.1 release
+- Update description with less emphasis on Thunderbolt version
+
+* Sat Aug 01 2020 Fedora Release Engineering <[email protected]> - 0.9-3
+- Second attempt - Rebuilt for
+  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Mon Jul 27 2020 Fedora Release Engineering <[email protected]> - 0.9-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Mon Jun 15 2020 Christian Kellner <[email protected]> - 0.9-1
+- bolt 0.9 release
+  Drop all patches (all merged upstream).
+
+* Tue Jan 28 2020 Fedora Release Engineering <[email protected]> - 0.8-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
+
+* Thu Jan 23 2020 Christian Kellner <[email protected]> - 0.8-3
+- Add patch to ignore uevents from wakeup devices. See upstream issue
+  https://gitlab.freedesktop.org/bolt/bolt/issues/156
+- Add patch to fix BoltError not being a typedef.
+
+* Wed Jul 24 2019 Fedora Release Engineering <[email protected]> - 0.8-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Thu Jun 13 2019 Christian Kellner <[email protected]> - 0.8-1
+- bolt 0.8 release
+  D-Bus Configuration moved from sysconfdir to datadir.
+  Package new CHNAGELOG.md.
+
+* Thu Jan 31 2019 Fedora Release Engineering <[email protected]> - 0.7-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Tue Jan  1 2019 Christian Kellner <[email protected]> - 0.7-1
+- bolt 0.7 release
+
+* Wed Nov 28 2018 Christian Kellner <[email protected]> - 0.6-1
+- bolt 0.6 release
+
+* Fri Sep 21 2018 Christian Kellner <[email protected]> - 0.5-1
+- bolt 0.5 release
+- Remove forge macros again and use gitlab as authoritative source
+- Testing dependencies are now only pulled in on Fedora
+
+* Thu Jul 12 2018 Fedora Release Engineering <[email protected]> - 0.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
+* Mon May 28 2018 Christian Kellner <[email protected]> - 0.4-1
+- bolt 0.4 upstream release
+
+* Tue Apr 10 2018 Christian Kellner <[email protected]> - 0.3-1
+- bolt 0.3 upstream release
+- Update BuildRequires to include gcc
+- Use forge macros
+
+* Tue Mar  6 2018 Christian Kellner <[email protected]> - 0.2-1
+- bolt 0.2 upstream release
+- Update BuildRequires dependencies.
+
+* Wed Feb 07 2018 Fedora Release Engineering <[email protected]> - 0.1-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+
+* Sun Dec 17 2017 Christian Kellner <[email protected]> - 0.1-2
+- Set database path to /var/lib/boltd, create it during
+  installation, which is needed for the service file to work.
+
+* Thu Dec 14 2017 Christian Kellner <[email protected]> - 0.1-1
+- Initial upstream release
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bolt-0.9.3/meson.build new/bolt-0.9.4/meson.build
--- old/bolt-0.9.3/meson.build  2022-08-23 00:26:52.000000000 +0200
+++ new/bolt-0.9.4/meson.build  2022-11-04 14:21:08.000000000 +0100
@@ -1,6 +1,6 @@
 project('bolt',
   'c',
-  version: '0.9.3',
+  version: '0.9.4',
   license : 'LGPL-2.1+',
   meson_version: '>= 0.46.0',
   default_options: ['warning_level=1',

Reply via email to