Compare commits

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

5 commits

Author SHA1 Message Date
Packit
16180518f7 Update to 0.18.2 upstream release
Upstream tag: 0.18.2
Upstream commit: d5f59912

Commit authored by Packit automation (https://packit.dev/)
2024-05-21 04:50:04 +00:00
Packit
600b90420e [packit] 0.18.1 upstream release
Upstream tag: 0.18.1
Upstream commit: 635c86e0
2024-03-24 10:53:50 +00:00
Packit
f904ef8865 [packit] 0.18.0 upstream release
Upstream tag: 0.18.0
Upstream commit: 15b4fed4
2024-03-03 07:36:38 +00:00
Packit
054d63be0e [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-f38-update-propose_downstream
```
2023-07-26 07:27:14 +00:00
Packit
74c6df1644 [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:13:21 +00:00
5 changed files with 61 additions and 6 deletions

5
.gitignore vendored
View file

@ -37,3 +37,8 @@
/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
/umockdev-0.18.0.tar.xz
/umockdev-0.18.1.tar.xz
/umockdev-0.18.2.tar.xz

View file

@ -1,3 +1,3 @@
This repository is maintained by packit.
https://packit.dev/
The file was generated using packit 0.65.2.post12+gc5a59a6.
The file was generated using packit 0.96.0.post1.dev4+gc5b1ea8e.

View file

@ -5,8 +5,6 @@ issue_repository: https://github.com/martinpitt/umockdev
copy_upstream_release_description: true
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
actions:
create-archive:
@ -23,9 +21,17 @@ srpm_build_deps:
- glib2-devel
- systemd-devel
packages:
umockdev-fedora:
specfile_path: packaging/umockdev.spec
umockdev-centos:
specfile_path: packaging/umockdev.spec
pkg_tool: centpkg
jobs:
- job: copr_build
trigger: pull_request
packages: [umockdev-fedora]
targets:
- fedora-development-x86_64
- fedora-development-i386
@ -34,18 +40,41 @@ jobs:
- fedora-development-s390x
- fedora-development-armhfp
- job: copr_build
trigger: pull_request
packages: [umockdev-centos]
targets:
- centos-stream-9-x86_64
- centos-stream-10-x86_64
- job: tests
trigger: pull_request
packages: [umockdev-fedora]
targets:
- fedora-latest
- job: tests
trigger: pull_request
packages: [umockdev-centos]
targets:
- centos-stream-9-x86_64
# blocked: https://issues.redhat.com/browse/TFT-2612
# - centos-stream-10-x86_64
- job: propose_downstream
trigger: release
packages: [umockdev-fedora]
dist_git_branches:
- fedora-development
- fedora-stable
- job: propose_downstream
trigger: release
packages: [umockdev-centos]
dist_git_branches:
- c9s
- c10s
- job: koji_build
trigger: commit
dist_git_branches:

View file

@ -1 +1 @@
SHA512 (umockdev-0.17.16.tar.xz) = 5d4a094481510f4466e49766512d0959a5a9d9f5a9b7cbd7719bc94e95d9800760482bf3ea2ee97d2138c89680adb4116964688ae13a07e3c1f0ba8e94230584
SHA512 (umockdev-0.18.2.tar.xz) = fab7351acf78ae93c489d33e9c532094c066df45a3701278ced58347f59c91be6ac0facd4acccd3ecb9867840b22598098192875d50d14cacf934d27ff4bd7e2

View file

@ -1,9 +1,9 @@
Name: umockdev
Version: 0.17.16
Version: 0.18.2
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
@ -75,6 +75,27 @@ rm -rf $RPM_BUILD_ROOT/%{_datadir}/doc/umockdev
%{_datadir}/vala/vapi/umockdev-1.0.vapi
%changelog
* Tue May 21 2024 Packit <hello@packit.dev> - 0.18.2-1
- preload: Fix time64 redirect for glibc 2.39.9
* Sun Mar 24 2024 Packit <hello@packit.dev> - 0.18.1-1
- preload: Provide wrappers for functions specific to 64-bit time_t (thanks Steve Langasek)
- preload: Fix building with _FILE_OFFSET_BITS (thanks Zixing Liu and Steve Langasek)
* Sun Mar 03 2024 Packit <hello@packit.dev> - 0.18.0-1
- Record and restore SELinux context for mocked /dev nodes
- preload: wrap fstatfs() and statfs() on musl
- Fix build with meson 1.4
* 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: