Compare commits

...
Sign in to create a new pull request.

5 commits

Author SHA1 Message Date
Packit
51f342e778 [packit] 0.17.18 upstream release
Upstream tag: 0.17.18
Upstream commit: a1f42d21

If you need to do any change in this pull request, you need to locally fetch the source branch of it and push it (with a fix) to your fork (as it is not possible to push to the branch created in the Packit’s fork):
```
git fetch https://src.fedoraproject.org/forks/packit/rpms/umockdev.git refs/heads/*:refs/remotes/packit/*
git checkout packit/0.17.18-f37-update-propose_downstream
```
2023-07-26 07:26:50 +00:00
Packit
c572a85941 [packit] 0.17.17 upstream release
Upstream tag: 0.17.17
Upstream commit: 540c80fd

Signed-off-by: Packit <hello@packit.dev>
2023-04-16 08:12:54 +00:00
Packit
a5bd2f573f [packit] 0.17.16 upstream release
Upstream tag: 0.17.16
Upstream commit: 9fcfb4e6

Signed-off-by: Packit <hello@packit.dev>
2023-01-29 18:45:41 +00:00
Packit
78ee368246 [packit] 0.17.15 upstream release
Upstream tag: 0.17.15
Upstream commit: a2953b11

Signed-off-by: Packit <hello@packit.dev>
2022-11-24 15:09:29 +00:00
Martin Pitt
619085ce70 fmf: Take tests from dist-git source 2022-11-21 15:38:42 +01:00
6 changed files with 80 additions and 31 deletions

4
.gitignore vendored
View file

@ -35,3 +35,7 @@
/umockdev-0.17.10.tar.xz
/umockdev-0.17.12.tar.xz
/umockdev-0.17.13.tar.xz
/umockdev-0.17.15.tar.xz
/umockdev-0.17.16.tar.xz
/umockdev-0.17.17.tar.xz
/umockdev-0.17.18.tar.xz

View file

@ -1,3 +1,3 @@
This repository is maintained by packit.
https://packit.dev/
The file was generated using packit 0.51.1.dev6+g1099056.
The file was generated using packit 0.78.1.

View file

@ -7,42 +7,52 @@ upstream_package_name: umockdev
downstream_package_name: umockdev
# HACK: should be implied, but fails propose_downstream: https://github.com/packit/packit-service/issues/1511
specfile_path: packaging/umockdev.spec
srpm_build_deps: []
actions:
create-archive:
- meson tmp/dist
# ignore local spec changes from packit
- meson dist -C tmp/dist --no-tests --allow-dirty
- sh -ec 'mv tmp/dist/meson-dist/umockdev-*.tar.xz packaging/; ls packaging/umockdev-*.tar.xz'
srpm_build_deps:
- meson
- gcc
- vala
- libpcap-devel
- glib2-devel
- systemd-devel
jobs:
- job: copr_build
trigger: pull_request
metadata:
targets:
- fedora-development-x86_64
- fedora-development-i386
- fedora-development-aarch64
- fedora-development-ppc64le
- fedora-development-s390x
- fedora-development-armhfp
targets:
- fedora-development-x86_64
- fedora-development-i386
- fedora-development-aarch64
- fedora-development-ppc64le
- fedora-development-s390x
- fedora-development-armhfp
- job: tests
trigger: pull_request
metadata:
targets:
- fedora-latest
targets:
- fedora-latest
- centos-stream-9-x86_64
- job: propose_downstream
trigger: release
metadata:
dist_git_branches:
- fedora-development
- fedora-stable
dist_git_branches:
- fedora-development
- fedora-stable
- job: koji_build
trigger: commit
metadata:
dist_git_branches:
- fedora-all
dist_git_branches:
- fedora-all
- job: bodhi_update
trigger: commit
metadata:
dist_git_branches:
# rawhide updates are created automatically
- fedora-branched
dist_git_branches:
# rawhide updates are created automatically
- fedora-branched

View file

@ -1,7 +1,5 @@
discover:
how: fmf
repository: https://github.com/martinpitt/umockdev
# FIXME: get rid of the hardcoding: https://github.com/psss/tmt/issues/585
ref: "0.17.10"
dist-git-source: true
execute:
how: tmt

View file

@ -1 +1 @@
SHA512 (umockdev-0.17.13.tar.xz) = 77863ad67be0995869b35d12dc43a809d2e67e95f727312ffd9f585c5bb1598c4d31f4909fcff5035dfccdbde8c36819daa633cae53c57ea2d9c3ede3587ec4d
SHA512 (umockdev-0.17.18.tar.xz) = 3d8d2487b4350e4ce28a5c163cbb1b92da9f5a5317e74da46ccaa62a6b8e938a6758e241d0dd2e9f50fdee4aef24d36585a24cfec1ad99fb4799a01008d9987b

View file

@ -1,9 +1,9 @@
Name: umockdev
Version: 0.17.13
Release: 2%{?dist}
Version: 0.17.18
Release: 1%{?dist}
Summary: Mock hardware devices
License: LGPLv2+
License: LGPL-2.1-or-later
URL: https://github.com/martinpitt/%{name}
Source0: https://github.com/martinpitt/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz
@ -39,6 +39,9 @@ using %{name}.
%meson_build
%check
# don't be too picky about timing; upstream CI and local developer tests
# are strict, but many koji arches are emulated and utterly slow
export SLOW_TESTBED_FACTOR=10
%meson_test
%install
@ -72,6 +75,40 @@ rm -rf $RPM_BUILD_ROOT/%{_datadir}/doc/umockdev
%{_datadir}/vala/vapi/umockdev-1.0.vapi
%changelog
* Wed Jul 26 2023 Packit <hello@packit.dev> - 0.17.18-1
- preload: Don't read udev cache data from system (thanks Bastien Nocera)
- spec: Update License: to SPDX format
- Various test fixes
* Sun Apr 16 2023 Packit <hello@packit.dev> - 0.17.17-1
- Fix race with worker thread accessing $UMOCKDEV_DIR
- Disable -Wincompatible-function-pointer-types for clang
* Sun Jan 29 2023 Packit <hello@packit.dev> - 0.17.16-1
<!-- generated by eloquent/github-release-action -->
<!-- original source:
- preload: Wrap __getcwd_chk()
- uevent_sender: Fix fd leak in sendmsg_one
- Fix gcc -fanalyzer complaints
-->
<ul>
<li>preload: Wrap __getcwd_chk()</li>
<li>uevent_sender: Fix fd leak in sendmsg_one</li>
<li>Fix gcc -fanalyzer complaints</li>
</ul>
* Thu Nov 24 2022 Packit <hello@packit.dev> - 0.17.15-1
<!-- generated by eloquent/github-release-action -->
<!-- original source:
- test fixes
-->
<ul>
<li>test fixes</li>
</ul>
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.17.13-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild