pagure pushed to rpms/redhat-rpm-config (rawhide). "Update tests to
work with dnf5"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-06-30 23:41:16 UTC
From dff3d6a440e66a440ca59575a8563e403561a3a1 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar(a)redhat.com>
Date: Jun 30 2023 23:06:10 +0000
Subject: Update tests to work with dnf5
---
diff --git a/tests/auto-set-build-flags/main.fmf b/tests/auto-set-build-flags/main.fmf
index 6777d59..aeb1b86 100644
--- a/tests/auto-set-build-flags/main.fmf
+++ b/tests/auto-set-build-flags/main.fmf
@@ -4,6 +4,7 @@ summary: >
require:
- annobin-annocheck
+ - dnf5-plugins
- gcc
- gcc-c++
- make
diff --git a/tests/auto-set-build-flags/runtest.sh b/tests/auto-set-build-flags/runtest.sh
index 8d4a8ed..ca0279d 100755
--- a/tests/auto-set-build-flags/runtest.sh
+++ b/tests/auto-set-build-flags/runtest.sh
@@ -2,6 +2,6 @@
set -ex
-dnf -y build-dep test.spec
+dnf -y builddep test.spec
rpmbuild --define '_sourcedir .' --define '_builddir .' -bi test.spec
rpmbuild --without auto_set_build_flags --define '_sourcedir .' --define '_builddir .' -bi test.spec
diff --git a/tests/brp-llvm-compile-lto-elf/main.fmf b/tests/brp-llvm-compile-lto-elf/main.fmf
index ada5230..19e8d13 100644
--- a/tests/brp-llvm-compile-lto-elf/main.fmf
+++ b/tests/brp-llvm-compile-lto-elf/main.fmf
@@ -2,6 +2,7 @@ Summary: Test that the brp-llvm-compile-lto-elf script is working correctly
require:
- dnf-plugins-core
+ - dnf5-plugins
- redhat-rpm-config
- rpm-build
diff --git a/tests/brp-llvm-compile-lto-elf/runtest.sh b/tests/brp-llvm-compile-lto-elf/runtest.sh
index 1690d65..d152bda 100755
--- a/tests/brp-llvm-compile-lto-elf/runtest.sh
+++ b/tests/brp-llvm-compile-lto-elf/runtest.sh
@@ -5,7 +5,7 @@ set -ex
lib_dir=brp-llvm-compile-lto-elf-test-lib
lib_spec=$lib_dir/brp-llvm-compile-lto-elf-test-lib.spec
-dnf -y build-dep $lib_spec
+dnf -y builddep $lib_spec
rpmbuild --define "_sourcedir ." --define "_builddir ./$lib_dir" --define "_rpmdir ." -bb $lib_spec
dnf -y install ./`rpm --eval '%{_arch}'`/*.rpm
@@ -13,5 +13,5 @@ dnf -y install ./`rpm --eval '%{_arch}'`/*.rpm
test_dir=brp-llvm-compile-lto-elf-test
test_spec=$test_dir/brp-llvm-compile-lto-elf-test.spec
-dnf -y build-dep $test_spec
+dnf -y builddep $test_spec
rpmbuild --define "_sourcedir ." --define "_builddir ./$test_dir" -bi $test_spec
diff --git a/tests/build-self/main.fmf b/tests/build-self/main.fmf
index 0d84895..12e1e5c 100644
--- a/tests/build-self/main.fmf
+++ b/tests/build-self/main.fmf
@@ -2,5 +2,6 @@ summary: self-build test
require:
- dnf-plugins-core
+ - dnf5-plugins
- rpm-build
test: ./runtest.sh
diff --git a/tests/build-self/runtest.sh b/tests/build-self/runtest.sh
index 68ab7cc..0b7ef72 100755
--- a/tests/build-self/runtest.sh
+++ b/tests/build-self/runtest.sh
@@ -3,5 +3,5 @@
set -e
spec=$TMT_TREE/redhat-rpm-config.spec
-dnf -y build-dep $spec
+dnf -y builddep $spec
rpmbuild --define "_sourcedir $TMT_TREE" -ba $spec
https://src.fedoraproject.org/rpms/redhat-rpm-config/c/dff3d6a440e66a440c...
2Â months, 3Â weeks
kevinb pushed to rpms/gdb (rawhide). "Suppress repeated warnings
when loading a core file (..more)"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-06-30 22:52:17 UTC
From d5dc87ea90091b6e3664fe94da0c8ece672fb320 Mon Sep 17 00:00:00 2001
From: Kevin Buettner <kevinb(a)redhat.com>
Date: Jun 30 2023 22:20:10 +0000
Subject: Suppress repeated warnings when loading a core file
Backport upstream changes which prevent repeated warnings from being
printed when loading a core file (RHBZ 2160211, Lancelot SIX).
---
diff --git a/_gdb.spec.Patch.include b/_gdb.spec.Patch.include
index 1befb33..eeed776 100644
--- a/_gdb.spec.Patch.include
+++ b/_gdb.spec.Patch.include
@@ -206,3 +206,8 @@ Patch046: gdb-binutils29988-read_indexed_address.patch
# first seen when building with GCC 13.1.1 20230426 (Red Hat ;; 13.1.1-1).
Patch047: gdb-rhbz2192105-ftbs-dangling-pointer
+# Backport two commits, 0ad504dd464 and ea70f941f9b, from Lancelot SIX
+# which prevent repeated warnings from being printed while loading a
+# core file. (RH BZ 2160211)
+Patch048: gdb-rhbz2160211-excessive-core-file-warnings.patch
+
diff --git a/_gdb.spec.patch.include b/_gdb.spec.patch.include
index 8258dc9..ef55dd0 100644
--- a/_gdb.spec.patch.include
+++ b/_gdb.spec.patch.include
@@ -45,3 +45,4 @@
%patch -p1 -P045
%patch -p1 -P046
%patch -p1 -P047
+%patch -p1 -P048
diff --git a/_patch_order b/_patch_order
index 6c3981d..cddc2ce 100644
--- a/_patch_order
+++ b/_patch_order
@@ -45,3 +45,4 @@ gdb-add-index.patch
gdb-rhbz1553104-s390x-arch12-test.patch
gdb-binutils29988-read_indexed_address.patch
gdb-rhbz2192105-ftbs-dangling-pointer
+gdb-rhbz2160211-excessive-core-file-warnings.patch
diff --git a/gdb-rhbz2160211-excessive-core-file-warnings.patch b/gdb-rhbz2160211-excessive-core-file-warnings.patch
new file mode 100644
index 0000000..a790054
--- /dev/null
+++ b/gdb-rhbz2160211-excessive-core-file-warnings.patch
@@ -0,0 +1,108 @@
+From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
+From: Kevin Buettner <kevinb(a)redhat.com>
+Date: Thu, 29 Jun 2023 18:20:30 -0700
+Subject: gdb-rhbz2160211-excessive-core-file-warnings.patch
+
+;; Backport two commits, 0ad504dd464 and ea70f941f9b, from Lancelot SIX
+;; which prevent repeated warnings from being printed while loading a
+;; core file. (RH BZ 2160211)
+
+gdb/corelow.c: avoid repeated warnings in build_file_mappings
+
+When GDB opens a coredump it tries to locate and then open all files
+which were mapped in the process.
+
+If a file is found but cannot be opened with BFD (bfd_open /
+bfd_check_format fails), then a warning is printed to the user. If the
+same file was mapped multiple times in the process's address space, the
+warning is printed once for each time the file was mapped. I find this
+un-necessarily noisy.
+
+This patch makes it so the warning message is printed only once per
+file.
+
+There was a comment in the code assuming that if the file was found on
+the system, opening it (bfd_open + bfd_check_format) should always
+succeed. A recent change in BFD (014a602b86f "Don't optimise bfd_seek
+to same position") showed that this assumption is not valid. For
+example, it is possible to have a core dump of a process which had
+mmaped an IO page from a DRI render node (/dev/dri/runderD$NUM). In
+such case the core dump does contain the information that portions of
+this special file were mapped in the host process, but trying to seek to
+position 0 will fail, making bfd_check_format fail. This patch removes
+this comment.
+
+Reviewed-By: John Baldwin <jhb(a)FreeBSD.org>
+Approved-By: Andrew Burgess <aburgess(a)redhat.com>
+
+gdb/corelow.c: do not try to reopen a file if open failed once
+
+In the current implementation, core_target::build_file_mappings will try
+to locate and open files which were mapped in the process for which the
+core dump was produced. If the file cannot be found or cannot be
+opened, GDB will re-try to open it once for each time it was mapped in
+the process's address space.
+
+This patch makes it so GDB recognizes that it has already failed to open
+a given file once and does not re-try the process for each mapping.
+
+Reviewed-By: John Baldwin <jhb(a)FreeBSD.org>
+Approved-By: Andrew Burgess <aburgess(a)redhat.com>
+
+diff --git a/gdb/corelow.c b/gdb/corelow.c
+--- a/gdb/corelow.c
++++ b/gdb/corelow.c
+@@ -237,6 +237,16 @@ core_target::build_file_mappings ()
+ weed out non-file-backed mappings. */
+ gdb_assert (filename != nullptr);
+
++ if (unavailable_paths.find (filename) != unavailable_paths.end ())
++ {
++ /* We have already seen some mapping for FILENAME but failed to
++ find/open the file. There is no point in trying the same
++ thing again so just record that the range [start, end) is
++ unavailable. */
++ m_core_unavailable_mappings.emplace_back (start, end - start);
++ return;
++ }
++
+ struct bfd *bfd = bfd_map[filename];
+ if (bfd == nullptr)
+ {
+@@ -254,11 +264,10 @@ core_target::build_file_mappings ()
+ if (expanded_fname == nullptr)
+ {
+ m_core_unavailable_mappings.emplace_back (start, end - start);
+- /* Print just one warning per path. */
+- if (unavailable_paths.insert (filename).second)
+- warning (_("Can't open file %s during file-backed mapping "
+- "note processing"),
+- filename);
++ unavailable_paths.insert (filename);
++ warning (_("Can't open file %s during file-backed mapping "
++ "note processing"),
++ filename);
+ return;
+ }
+
+@@ -268,18 +277,11 @@ core_target::build_file_mappings ()
+ if (bfd == nullptr || !bfd_check_format (bfd, bfd_object))
+ {
+ m_core_unavailable_mappings.emplace_back (start, end - start);
+- /* If we get here, there's a good chance that it's due to
+- an internal error. We issue a warning instead of an
+- internal error because of the possibility that the
+- file was removed in between checking for its
+- existence during the expansion in exec_file_find()
+- and the calls to bfd_openr() / bfd_check_format().
+- Output both the path from the core file note along
+- with its expansion to make debugging this problem
+- easier. */
++ unavailable_paths.insert (filename);
+ warning (_("Can't open file %s which was expanded to %s "
+ "during file-backed mapping note processing"),
+ filename, expanded_fname.get ());
++
+ if (bfd != nullptr)
+ bfd_close (bfd);
+ return;
diff --git a/gdb.spec b/gdb.spec
index ba0ab43..13e4f89 100644
--- a/gdb.spec
+++ b/gdb.spec
@@ -57,7 +57,7 @@ Version: 13.2
# The release always contains a leading reserved number, start it at 1.
# `upstream' is not a part of `name' to stay fully rpm dependencies compatible for the testing.
-Release: 2%{?dist}
+Release: 3%{?dist}
License: GPLv3+ and GPLv3+ with exceptions and GPLv2+ and GPLv2+ with exceptions and GPL+ and LGPLv2+ and LGPLv3+ and BSD and Public Domain and GFDL
# Do not provide URL for snapshots as the file lasts there only for 2 days.
@@ -1252,10 +1252,14 @@ fi
%endif
%changelog
-* Wed Jun 28 2023 Python Maint <python-maint(a)redhat.com>
+* Fri Jun 30 2023 Kevin Buettner <kevinb(a)redhat.com> - 13.2-3
+- Backport upstream changes which prevent repeated warnings from being
+ printed when loading a core file (RHBZ 2160211, Lancelot SIX).
+
+* Wed Jun 28 2023 Python Maint <python-maint(a)redhat.com> - 13.2-2
- Rebuilt for Python 3.12
-* Sun Jun 25 2023 Alexandra Hájková <ahajkova(a)redhat.com> - 13.2
+* Sun Jun 25 2023 Alexandra Hájková <ahajkova(a)redhat.com> - 13.2-1
- Rebase to FSF GDB 13.22.
- Remove gdb-rhbz2177655-aarch64-pauth-valid-regcache.patch.
- Remove gdb-rhbz2183595-rustc-inside_main.patch.
https://src.fedoraproject.org/rpms/gdb/c/d5dc87ea90091b6e3664fe94da0c8ece...
2Â months, 3Â weeks
mjw pushed to rpms/debugedit (rawhide). "5.0-9 - Add
0001-find-debuginfo-Add-v-verbose-for-per-file-messages.patch"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-06-30 22:13:59 UTC
From dd85126482279a858caae33415135f7a4739fb3d Mon Sep 17 00:00:00 2001
From: Mark Wielaard <mjw(a)redhat.com>
Date: Jun 30 2023 22:13:07 +0000
Subject: 5.0-9 - Add 0001-find-debuginfo-Add-v-verbose-for-per-file-messages.patch
---
diff --git a/0001-find-debuginfo-Add-v-verbose-for-per-file-messages.patch b/0001-find-debuginfo-Add-v-verbose-for-per-file-messages.patch
new file mode 100644
index 0000000..a8294a9
--- /dev/null
+++ b/0001-find-debuginfo-Add-v-verbose-for-per-file-messages.patch
@@ -0,0 +1,199 @@
+From 84cfaca936a9dcfc26bd9d59edbdeeae88fc4763 Mon Sep 17 00:00:00 2001
+From: Denys Vlasenko <dvlasenk(a)redhat.com>
+Date: Thu, 22 Jun 2023 15:31:03 +0200
+Subject: [PATCH] find-debuginfo: Add -v,--verbose for per file messages
+
+Only print messages what big steps we are at without --verbose.
+
+For a reader of rpmbuild's log, it's rather unclear what find-debuginfo
+is doing. It used to be too verbose, "extracting debug info from FILE"
+for every file, and while this can be suppressed now, we still end up
+with something semi-mysterious like this:
+
+...
+extracting debug info from /builddir/build/BUILDROOT/xyz
+gdb-add-index: No index was created for /builddir/build/BUILDROOT/xyz
+gdb-add-index: [Was there no debuginfo? Was there already an index?]
+symlinked /usr/lib/debug/usr/lib64/libcpupower.so.0.0.1.debug to /usr/lib/debug/usr/lib64/libcpupower.so.debug
+symlinked /usr/lib/debug/usr/lib64/libcpupower.so.0.0.1.debug to /usr/lib/debug/usr/lib64/libcpupower.so.0.debug
+cpio: binutils-2.30/bfd: Cannot stat: No such file or directory
+cpio: binutils-2.30/bfd/aout-target.h: Cannot stat: No such file or directory
+cpio: binutils-2.30/bfd/aoutx.h: Cannot stat: No such file or directory
+cpio: binutils-2.30/bfd/archive.c: Cannot stat: No such file or directory
+cpio: binutils-2.30/bfd/archive64.c: Cannot stat: No such file or directory
+...
+775655 blocks
++ /usr/lib/rpm/check-buildroot
++ /usr/lib/rpm/redhat/brp-ldconfig
+...
+
+The reader is left confused. "What these cpio errors are about?
+Why those sources are not found?" (Well, because not every source
+name extracted by 'debugedit -l' has to exist, but this requires
+considerable digging aroung to understand).
+
+We can give a few messages explaining what general steps we go through:
+
+ Extracting debug info from N files
+ DWARF-compressing N files
+ Creating .debug symlinks for symlinks to ELF files
+ Copying sources found by 'debugedit -l'
+
+This is also useful to get a feeling which steps are time consuming.
+Kernel builds often need to investigate this aspect. To help a bit more,
+add "find-debuginfo: starting" and "find-debuginfo: done" messages too.
+
+This patch adds these messages.
+The -q options suppress these messages too.
+
+It also adds a --verbose flag to print per file messages.
+Those per file messages are now suppressed by default and
+only the general step messages are show. Unless -q is given,
+which suppresses all non-error output.
+
+Signed-off-by: Denys Vlasenko <dvlasenk(a)redhat.com>
+Signed-off-by: Mark Wielaard <mark(a)klomp.org>
+---
+ scripts/find-debuginfo.in | 36 +++++++++++++++++++++++++++---------
+ 1 file changed, 27 insertions(+), 9 deletions(-)
+
+diff --git a/scripts/find-debuginfo.in b/scripts/find-debuginfo.in
+index f87b777..5613f69 100755
+--- a/scripts/find-debuginfo.in
++++ b/scripts/find-debuginfo.in
+@@ -26,7 +26,7 @@ Usage: find-debuginfo [OPTION]... [builddir]
+ automagically generates debug info and file lists
+
+ Options:
+-[--strict-build-id] [-g] [-r] [-m] [-i] [-n] [-q]
++[--strict-build-id] [-g] [-r] [-m] [-i] [-n] [-q] [-v]
+ [--keep-section SECTION] [--remove-section SECTION]
+ [--g-libs]
+ [-j N] [--jobs N]
+@@ -94,7 +94,9 @@ will be called /usr/debug/src/<BASE>. This makes sure the debug source
+ dirs are unique between package version, release and achitecture (Use
+ --unique-debug-src-base "%{name}-%{VERSION}-%{RELEASE}.%{_arch}")
+
+-The -q or --quiet flag silences non-error output from the script.
++The -q or --quiet flag silences all non-error output from the script.
++The -v or --verbose flag add more output for all files processed.
++When neither -q or -v is given then only output for each pass is given.
+
+ All file names in switches are relative to builddir ('.' if not given).
+ EOF
+@@ -150,9 +152,12 @@ n_jobs=1
+ # exit early on --version or --help
+ done=false
+
+-# silence non-error output
++# silence all output
+ quiet=false
+
++# add more non-error output
++verbose=false
++
+ BUILDDIR=.
+ out=debugfiles.list
+ srcout=
+@@ -248,6 +253,11 @@ while [ $# -gt 0 ]; do
+ ;;
+ -q|--quiet)
+ quiet=true
++ verbose=false
++ ;;
++ -v|--verbose)
++ quiet=false
++ verbose=true
+ ;;
+ --version)
+ echo "find-debuginfo @VERSION@"
+@@ -291,6 +301,8 @@ if [ "$strip_g" = "true" ] && [ "$strip_glibs" = "true" ]; then
+ exit 2
+ fi
+
++$quiet || echo "find-debuginfo: starting" 2>&1
++
+ i=0
+ while ((i < nout)); do
+ outs[$i]="$BUILDDIR/${outs[$i]}"
+@@ -447,7 +459,7 @@ do_file()
+ get_debugfn "$f"
+ [ -f "${debugfn}" ] && return
+
+- $quiet || echo "extracting debug info from $f"
++ $verbose && echo "extracting debug info from $f"
+ # See also cpio SOURCEFILE copy. Directories must match up.
+ debug_base_name="$RPM_BUILD_DIR"
+ debug_dest_name="/usr/src/debug"
+@@ -523,7 +535,7 @@ do_file()
+ grep "^$inum " "$temp/linked" | while read inum linked; do
+ link=$debugfn
+ get_debugfn "$linked"
+- $quiet || echo "hard linked $link to $debugfn"
++ $verbose && echo "hard linked $link to $debugfn"
+ mkdir -p "$(dirname "$debugfn")" && ln -nf "$link" "$debugfn"
+ done
+ fi
+@@ -551,6 +563,7 @@ run_job()
+ }
+
+ n_files=$(wc -l <"$temp/primary")
++$quiet || echo "Extracting debug info from $n_files files" 2>&1
+ if [ $n_jobs -gt $n_files ]; then
+ n_jobs=$n_files
+ fi
+@@ -589,7 +602,8 @@ if $run_dwz \
+ && [ -d "${RPM_BUILD_ROOT}/usr/lib/debug" ]; then
+ readarray dwz_files < <(cd "${RPM_BUILD_ROOT}/usr/lib/debug"; find -type f -name \*.debug | LC_ALL=C sort)
+ if [ ${#dwz_files[@]} -gt 0 ]; then
+- $quiet || size_before=$(du -sk ${RPM_BUILD_ROOT}/usr/lib/debug | cut -f1)
++ $quiet || echo "DWARF-compressing ${#dwz_files[@]} files" 2>&1
++ $verbose && size_before=$(du -sk ${RPM_BUILD_ROOT}/usr/lib/debug | cut -f1)
+ dwz_multifile_name="${RPM_PACKAGE_NAME}-${RPM_PACKAGE_VERSION}-${RPM_PACKAGE_RELEASE}.${RPM_ARCH}"
+ dwz_multifile_suffix=
+ dwz_multifile_idx=0
+@@ -613,8 +627,8 @@ if $run_dwz \
+ echo >&2 "*** ERROR: DWARF compression requested, but no dwz installed"
+ exit 2
+ fi
+- $quiet || size_after=$(du -sk ${RPM_BUILD_ROOT}/usr/lib/debug | cut -f1)
+- $quiet || echo "original debug info size: ${size_before}kB, size after compression: ${size_after}kB"
++ $verbose && size_after=$(du -sk ${RPM_BUILD_ROOT}/usr/lib/debug | cut -f1)
++ $verbose && echo "original debug info size: ${size_before}kB, size after compression: ${size_after}kB"
+ # Remove .dwz directory if empty
+ rmdir "${RPM_BUILD_ROOT}/usr/lib/debug/.dwz" 2>/dev/null
+
+@@ -627,6 +641,7 @@ fi
+
+ # For each symlink whose target has a .debug file,
+ # make a .debug symlink to that file.
++$quiet || echo "Creating .debug symlinks for symlinks to ELF files" 2>&1
+ find "$RPM_BUILD_ROOT" ! -path "${debugdir}/*" -type l -print |
+ while read f
+ do
+@@ -634,7 +649,7 @@ do
+ f=${f#$RPM_BUILD_ROOT}
+ t=${t#$RPM_BUILD_ROOT}
+ if [ -f "$debugdir$t" ]; then
+- $quiet || echo "symlinked /usr/lib/debug$t to /usr/lib/debug${f}.debug"
++ $verbose && echo "symlinked /usr/lib/debug$t to /usr/lib/debug${f}.debug"
+ debug_link "/usr/lib/debug$t" "${f}.debug"
+ fi
+ done
+@@ -648,6 +663,7 @@ if [ -s "$SOURCEFILE" ]; then
+ debug_dest_name="/usr/src/debug/${unique_debug_src_base}"
+ fi
+
++ $quiet || echo "Copying sources found by 'debugedit -l' to ${debug_dest_name}" 2>&1
+ mkdir -p "${RPM_BUILD_ROOT}${debug_dest_name}"
+ # Filter out anything compiler generated which isn't a source file.
+ # e.g. <internal>, <built-in>, <__thread_local_inner macros>.
+@@ -763,3 +779,5 @@ if ((nout > 0)); then
+ cat "$LISTFILE" >> "${LISTFILE}.new"
+ mv "${LISTFILE}.new" "$LISTFILE"
+ fi
++
++$quiet || echo "find-debuginfo: done" 2>&1
+--
+2.39.3
+
diff --git a/debugedit.spec b/debugedit.spec
index fe6e7a4..f256590 100644
--- a/debugedit.spec
+++ b/debugedit.spec
@@ -1,6 +1,6 @@
Name: debugedit
Version: 5.0
-Release: 8%{?dist}
+Release: 9%{?dist}
Summary: Tools for debuginfo creation
License: GPLv3+ and GPLv2+ and LGPLv2+
URL: https://sourceware.org/debugedit/
@@ -48,6 +48,7 @@ Patch4: 0002-configure.ac-Use-AC_LINK_IFELSE-for-gz-none-check.patch
Patch5: 0003-configure.ac-Use-AC_LANG_PROGRAM-for-AC_LINK_IFELSE-.patch
Patch6: 0004-scripts-find-debuginfo.in-Add-q-quiet.patch
Patch7: 0001-find-debuginfo-Prefix-install_dir-to-PATH.patch
+Patch8: 0001-find-debuginfo-Add-v-verbose-for-per-file-messages.patch
%description
The debugedit project provides programs and scripts for creating
@@ -89,6 +90,9 @@ make check %{?_smp_mflags}
%{_mandir}/man1/find-debuginfo.1*
%changelog
+* Fri Jun 30 2023 Mark Wielaard <mjw(a)fedoraproject.org> - 5.0-9
+- Add 0001-find-debuginfo-Add-v-verbose-for-per-file-messages.patch
+
* Fri Jun 30 2023 Mark Wielaard <mjw(a)fedoraproject.org> - 5.0-8
- Add 0001-find-debuginfo-Prefix-install_dir-to-PATH.patch
https://src.fedoraproject.org/rpms/debugedit/c/dd85126482279a858caae33415...
2Â months, 3Â weeks
packagerbot pushed to rpms/dummy-test-package-gloster (rawhide).
"Bump release (..more)"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-06-30 22:11:12 UTC
From 4563d09a563bc536e8a1d0210c5cf2dead9a899d Mon Sep 17 00:00:00 2001
From: packagerbot <admin(a)fedoraproject.org>
Date: Jun 30 2023 22:11:04 +0000
Subject: Bump release
Signed-off-by: packagerbot <admin(a)fedoraproject.org>
---
diff --git a/dummy-test-package-gloster.spec b/dummy-test-package-gloster.spec
index c1c44fa..04b9bc8 100644
--- a/dummy-test-package-gloster.spec
+++ b/dummy-test-package-gloster.spec
@@ -3,7 +3,7 @@
Name: dummy-test-package-gloster
Version: 0
-Release: 10502%{?dist}
+Release: 10503%{?dist}
Summary: Dummy Test Package called Gloster
License: CC0
URL: http://fedoraproject.org/wiki/DummyTestPackages
@@ -32,6 +32,9 @@ cp -p uuid %{buildroot}%{_datadir}/%{name}
%{_datadir}/%{name}
%changelog
+* Fri Jun 30 2023 packagerbot <admin(a)fedoraproject.org> - 0-10503
+- rebuilt
+
* Fri Jun 30 2023 packagerbot <admin(a)fedoraproject.org> - 0-10502
- rebuilt
https://src.fedoraproject.org/rpms/dummy-test-package-gloster/c/4563d09a5...
2Â months, 3Â weeks
salimma pushed to rpms/python-pystemd (epel9). "Rebuilt for Python 3.12"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-06-30 21:35:19 UTC
From 7eca01657a398a4f8759ab9baa60342017956d92 Mon Sep 17 00:00:00 2001
From: Python Maint <python-maint(a)redhat.com>
Date: Jun 14 2023 18:23:15 +0000
Subject: Rebuilt for Python 3.12
---
diff --git a/python-pystemd.spec b/python-pystemd.spec
index c7aafa3..08e85b7 100644
--- a/python-pystemd.spec
+++ b/python-pystemd.spec
@@ -6,7 +6,7 @@
Name: python-%{pypi_name}
Version: 0.13.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A thin Cython-based wrapper on top of libsystemd
License: LGPL-2.1-or-later
@@ -69,6 +69,9 @@ popd
%{python3_sitearch}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
%changelog
+* Wed Jun 14 2023 Python Maint <python-maint(a)redhat.com> - 0.13.1-2
+- Rebuilt for Python 3.12
+
* Wed May 17 2023 Davide Cavalca <dcavalca(a)fedoraproject.org> - 0.13.1-1
- Update to 0.13.1; Fixes: RHBZ#2207826
- Drop some unnecessary logic from the spec
https://src.fedoraproject.org/rpms/python-pystemd/c/7eca01657a398a4f8759a...
2Â months, 3Â weeks
salimma pushed to rpms/python-pystemd (epel9). "Update to 0.13.2;
Fixes: rhbz#2210519 (..more)"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-06-30 21:35:19 UTC
From d05a4eb4e204553ea063be4b08de8fa9a31d8ffc Mon Sep 17 00:00:00 2001
From: Michel Alexandre Salim <salimma(a)fedoraproject.org>
Date: Jun 30 2023 20:44:31 +0000
Subject: Update to 0.13.2; Fixes: rhbz#2210519
Signed-off-by: Michel Alexandre Salim <salimma(a)fedoraproject.org>
---
diff --git a/.gitignore b/.gitignore
index 6438e16..db6398f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@
/pystemd-0.11.0.tar.gz
/pystemd-0.13.0.tar.gz
/pystemd-0.13.1.tar.gz
+/pystemd-0.13.2.tar.gz
diff --git a/python-pystemd.spec b/python-pystemd.spec
index 08e85b7..286d16e 100644
--- a/python-pystemd.spec
+++ b/python-pystemd.spec
@@ -5,8 +5,8 @@
%global pypi_name pystemd
Name: python-%{pypi_name}
-Version: 0.13.1
-Release: 2%{?dist}
+Version: 0.13.2
+Release: 1%{?dist}
Summary: A thin Cython-based wrapper on top of libsystemd
License: LGPL-2.1-or-later
@@ -69,6 +69,9 @@ popd
%{python3_sitearch}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
%changelog
+* Fri Jun 30 2023 Michel Alexandre Salim <salimma(a)fedoraproject.org> - 0.13.2-1
+- Update to 0.13.2; Fixes: rhbz#2210519
+
* Wed Jun 14 2023 Python Maint <python-maint(a)redhat.com> - 0.13.1-2
- Rebuilt for Python 3.12
diff --git a/sources b/sources
index 27d5d65..488306d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (pystemd-0.13.1.tar.gz) = faf168e2dfa676c5e0f1c985c79c5839b83c6e5f746e5ea1027ce09b89927fdd9cb0fd0a5b55b3601b7bfc9c8a5c3163f42b620cc5b75b14e2ec1dc964eeefe1
+SHA512 (pystemd-0.13.2.tar.gz) = 86358b1d023a0587802f327b5015947664cc0079a417dc9bd1234cae686b15efd526d6ba2374cca2463c418adedf7250e54d1e5e53e74202992cbf2eba687ba2
https://src.fedoraproject.org/rpms/python-pystemd/c/d05a4eb4e204553ea063b...
2Â months, 3Â weeks
jjames pushed to rpms/ocaml-ppx-deriving-yaml (rawhide). "Initial import"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-06-30 21:31:37 UTC
From f40723fccabaa7514ef5adfd4a4eec0a204255d2 Mon Sep 17 00:00:00 2001
From: Jerry James <loganjerry(a)gmail.com>
Date: Jun 30 2023 21:31:20 +0000
Subject: Initial import
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e8d0d06
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/ppx_deriving_yaml-*.tbz
diff --git a/ocaml-ppx-deriving-yaml.spec b/ocaml-ppx-deriving-yaml.spec
new file mode 100644
index 0000000..6cbdfb3
--- /dev/null
+++ b/ocaml-ppx-deriving-yaml.spec
@@ -0,0 +1,73 @@
+%ifnarch %{ocaml_native_compiler}
+%global debug_package %{nil}
+%endif
+
+# Fedora does not have ezjsonm
+%global run_tests 0
+
+Name: ocaml-ppx-deriving-yaml
+Version: 0.2.1
+Release: %autorelease
+Summary: Derive conversion functions between OCaml types and YAML
+
+License: ISC
+URL: https://github.com/patricoferris/ppx_deriving_yaml
+Source0: %{url}/releases/download/v%{version}/ppx_deriving_yaml-%{version}.tbz
+
+BuildRequires: ocaml >= 4.08.1
+BuildRequires: ocaml-dune >= 2.7
+BuildRequires: ocaml-ppx-deriving-devel
+BuildRequires: ocaml-ppxlib-devel >= 0.14.0
+BuildRequires: ocaml-yaml-devel
+
+# Test dependencies
+%if %{run_tests}
+BuildRequires: ocaml-alcotest-devel
+BuildRequires: ocaml-bos-devel
+BuildRequires: ocaml-mdx-devel
+BuildRequires: ocaml-ezjsonm-devel
+%endif
+
+%description
+This ppx is based on ppx_yojson [1] and ppx_deriving_yojson [2] because
+of the many similarities between JSON and yaml. In particular many of
+the ways OCaml values are encoded to yaml types are the same as those
+implemented by the Yojson ppx.
+
+References:
+[1] https://github.com/NathanReb/ppx_yojson
+[2] https://github.com/ocaml-ppx/ppx_deriving_yojson
+
+%package devel
+Summary: Development files for %{name}
+Requires: %{name}%{?_isa} = %{version}-%{release}
+Requires: ocaml-ppx-deriving-devel%{?_isa}
+Requires: ocaml-ppxlib-devel%{?_isa}
+Requires: ocaml-yaml-devel%{?_isa}
+
+%description devel
+The %{name}-devel package contains libraries and signature
+files for developing applications that use %{name}.
+
+%prep
+%autosetup -n ppx_deriving_yaml-%{version}
+
+%build
+%dune_build
+
+%install
+%dune_install
+
+%if %{run_tests}
+%check
+%dune_check
+%endif
+
+%files -f .ofiles
+%license LICENSE.md
+%doc README.md CHANGES.md
+
+%files devel -f .ofiles-devel
+
+%changelog
+%autochangelog
diff --git a/sources b/sources
new file mode 100644
index 0000000..b655283
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (ppx_deriving_yaml-0.2.1.tbz) = ddf55de0bdd420a60248ca928bfe03d1c8221188f0592faa925434a30006c7f3a9177d4813dde932ab46fadf80408ecf4d1235811a176c58cc2988cec976cede
https://src.fedoraproject.org/rpms/ocaml-ppx-deriving-yaml/c/f40723fccaba...
2Â months, 3Â weeks
jjames pushed to rpms/ocaml-yaml (rawhide). "Initial import"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-06-30 21:28:18 UTC
From 74eeff24dae63e5021c0d27f669535a9843fdc13 Mon Sep 17 00:00:00 2001
From: Jerry James <loganjerry(a)gmail.com>
Date: Jun 30 2023 21:27:13 +0000
Subject: Initial import
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9a13b26
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/yaml-*.tbz
diff --git a/ocaml-yaml-unbundle-libyaml.patch b/ocaml-yaml-unbundle-libyaml.patch
new file mode 100644
index 0000000..ea8f9fb
--- /dev/null
+++ b/ocaml-yaml-unbundle-libyaml.patch
@@ -0,0 +1,225 @@
+--- yaml-3.1.0/ffi/lib/dune.orig 2022-03-27 07:37:41.000000000 -0600
++++ yaml-3.1.0/ffi/lib/dune 2023-06-28 16:56:33.570876180 -0600
+@@ -10,8 +10,7 @@
+ (targets yaml_stubs.c)
+ (deps
+ (:stubgen ../stubgen/ffi_stubgen.exe)
+- ../../vendor/yaml.h
+- ../../vendor/yaml_private.h)
++ ../../vendor/yaml.h)
+ (action
+ (with-stdout-to
+ %{targets}
+@@ -27,6 +26,7 @@
+ (flags
+ ((:standard \ -fPIC)
+ -I../../vendor)))
++ (c_library_flags -lyaml)
+ (flags
+ (:standard -w -9-27-32-34))
+ (libraries yaml.bindings yaml.types ctypes.stubs ctypes yaml.c))
+--- yaml-3.1.0/vendor/dune.orig 2022-03-27 07:37:41.000000000 -0600
++++ yaml-3.1.0/vendor/dune 2023-06-28 15:54:28.228218784 -0600
+@@ -8,77 +8,13 @@
+
+ (rule
+ (targets libyaml_c_stubs%{ext_lib} dllyaml_c_stubs%{ext_dll})
+- (deps api%{ext_obj} emitter%{ext_obj} loader%{ext_obj} parser%{ext_obj}
+- reader%{ext_obj} scanner%{ext_obj} writer%{ext_obj})
+- (action
+- (run ocamlmklib -o yaml_c_stubs %{deps})))
+-
+-(rule
+- (targets api%{ext_obj})
+- (deps
+- (:c api.c)
+- yaml.h
+- config.h
+- yaml_private.h)
+- (action
+- (run %{cc} %{read-lines:../config/cflags} -Wall -DHAVE_CONFIG_H -I. -c %{c})))
+-
+-(rule
+- (targets emitter%{ext_obj})
+- (deps
+- (:c emitter.c)
+- yaml.h
+- config.h
+- yaml_private.h)
+- (action
+- (run %{cc} %{read-lines:../config/cflags} -Wall -DHAVE_CONFIG_H -I. -c %{c})))
+-
+-(rule
+- (targets loader%{ext_obj})
+- (deps
+- (:c loader.c)
+- yaml.h
+- config.h
+- yaml_private.h)
+- (action
+- (run %{cc} %{read-lines:../config/cflags} -Wall -DHAVE_CONFIG_H -I. -c %{c})))
+-
+-(rule
+- (targets parser%{ext_obj})
+- (deps
+- (:c parser.c)
+- yaml.h
+- config.h
+- yaml_private.h)
+- (action
+- (run %{cc} %{read-lines:../config/cflags} -Wall -DHAVE_CONFIG_H -I. -c %{c})))
+-
+-(rule
+- (targets reader%{ext_obj})
+- (deps
+- (:c reader.c)
+- yaml.h
+- config.h
+- yaml_private.h)
+- (action
+- (run %{cc} %{read-lines:../config/cflags} -Wall -DHAVE_CONFIG_H -I. -c %{c})))
+-
+-(rule
+- (targets scanner%{ext_obj})
+- (deps
+- (:c scanner.c)
+- yaml.h
+- config.h
+- yaml_private.h)
++ (deps dummy%{ext_obj})
+ (action
+- (run %{cc} %{read-lines:../config/cflags} -Wall -DHAVE_CONFIG_H -I. -c %{c})))
++ (run ocamlmklib -o yaml_c_stubs %{deps} -lyaml)))
+
+ (rule
+- (targets writer%{ext_obj})
++ (targets dummy%{ext_obj})
+ (deps
+- (:c writer.c)
+- yaml.h
+- config.h
+- yaml_private.h)
++ (:c dummy.c))
+ (action
+ (run %{cc} %{read-lines:../config/cflags} -Wall -DHAVE_CONFIG_H -I. -c %{c})))
+--- yaml-3.1.0/vendor/yaml.h.orig 2020-06-01 15:34:52.000000000 -0600
++++ yaml-3.1.0/vendor/yaml.h 2023-06-27 10:28:03.073472871 -0600
+@@ -272,28 +272,28 @@ typedef struct yaml_token_s {
+ yaml_token_type_t type;
+
+ /** The token data. */
+- union {
++ union data_u {
+
+ /** The stream start (for @c YAML_STREAM_START_TOKEN). */
+- struct {
++ struct stream_start_s {
+ /** The stream encoding. */
+ yaml_encoding_t encoding;
+ } stream_start;
+
+ /** The alias (for @c YAML_ALIAS_TOKEN). */
+- struct {
++ struct alias_s {
+ /** The alias value. */
+ yaml_char_t *value;
+ } alias;
+
+ /** The anchor (for @c YAML_ANCHOR_TOKEN). */
+- struct {
++ struct anchor_s {
+ /** The anchor value. */
+ yaml_char_t *value;
+ } anchor;
+
+ /** The tag (for @c YAML_TAG_TOKEN). */
+- struct {
++ struct tag_s {
+ /** The tag handle. */
+ yaml_char_t *handle;
+ /** The tag suffix. */
+@@ -301,7 +301,7 @@ typedef struct yaml_token_s {
+ } tag;
+
+ /** The scalar value (for @c YAML_SCALAR_TOKEN). */
+- struct {
++ struct scalar_s {
+ /** The scalar value. */
+ yaml_char_t *value;
+ /** The length of the scalar value. */
+@@ -311,7 +311,7 @@ typedef struct yaml_token_s {
+ } scalar;
+
+ /** The version directive (for @c YAML_VERSION_DIRECTIVE_TOKEN). */
+- struct {
++ struct version_directive_s {
+ /** The major version number. */
+ int major;
+ /** The minor version number. */
+@@ -389,21 +389,21 @@ typedef struct yaml_event_s {
+ yaml_event_type_t type;
+
+ /** The event data. */
+- union {
++ union event_data_u {
+
+ /** The stream parameters (for @c YAML_STREAM_START_EVENT). */
+- struct {
++ struct event_stream_start_s {
+ /** The document encoding. */
+ yaml_encoding_t encoding;
+ } stream_start;
+
+ /** The document parameters (for @c YAML_DOCUMENT_START_EVENT). */
+- struct {
++ struct event_document_start_s {
+ /** The version directive. */
+ yaml_version_directive_t *version_directive;
+
+ /** The list of tag directives. */
+- struct {
++ struct event_tag_directives_s {
+ /** The beginning of the tag directives list. */
+ yaml_tag_directive_t *start;
+ /** The end of the tag directives list. */
+@@ -415,19 +415,19 @@ typedef struct yaml_event_s {
+ } document_start;
+
+ /** The document end parameters (for @c YAML_DOCUMENT_END_EVENT). */
+- struct {
++ struct event_document_end_s {
+ /** Is the document end indicator implicit? */
+ int implicit;
+ } document_end;
+
+ /** The alias parameters (for @c YAML_ALIAS_EVENT). */
+- struct {
++ struct event_alias_s {
+ /** The anchor. */
+ yaml_char_t *anchor;
+ } alias;
+
+ /** The scalar parameters (for @c YAML_SCALAR_EVENT). */
+- struct {
++ struct event_scalar_s {
+ /** The anchor. */
+ yaml_char_t *anchor;
+ /** The tag. */
+@@ -445,7 +445,7 @@ typedef struct yaml_event_s {
+ } scalar;
+
+ /** The sequence parameters (for @c YAML_SEQUENCE_START_EVENT). */
+- struct {
++ struct event_sequence_start_s {
+ /** The anchor. */
+ yaml_char_t *anchor;
+ /** The tag. */
+@@ -457,7 +457,7 @@ typedef struct yaml_event_s {
+ } sequence_start;
+
+ /** The mapping parameters (for @c YAML_MAPPING_START_EVENT). */
+- struct {
++ struct event_mapping_start_s {
+ /** The anchor. */
+ yaml_char_t *anchor;
+ /** The tag. */
diff --git a/ocaml-yaml.spec b/ocaml-yaml.spec
new file mode 100644
index 0000000..c66c5ad
--- /dev/null
+++ b/ocaml-yaml.spec
@@ -0,0 +1,108 @@
+# Fedora does not have crowbar, ezjsonm, or junit_alcotest
+%global run_tests 0
+
+Name: ocaml-yaml
+Version: 3.1.0
+Release: %autorelease
+Summary: Parse and generate YAML 1.1/1.2 files
+
+License: ISC
+URL: https://avsm.github.io/ocaml-yaml/
+Source0: https://github.com/avsm/ocaml-yaml/releases/download/v%{version}/yaml-%{v...
+
+# Unbundle libyaml. See:
+# - https://github.com/yaml/libyaml/pull/235
+# - https://github.com/avsm/ocaml-yaml/issues/51
+Patch0: %{name}-unbundle-libyaml.patch
+
+BuildRequires: libyaml-devel
+BuildRequires: ocaml >= 4.13.0
+BuildRequires: ocaml-bos-devel
+BuildRequires: ocaml-ctypes-devel >= 0.14.0
+BuildRequires: ocaml-dune >= 2.0
+BuildRequires: ocaml-dune-configurator-devel
+BuildRequires: ocaml-ppx-sexp-conv-devel >= 0.9.0
+BuildRequires: ocaml-sexplib-devel
+
+# Test dependencies
+%if %{run_tests}
+BuildRequires: ocaml-alcotest-devel
+BuildRequires: ocaml-crowbar-devel
+BuildRequires: ocaml-ezjsonm-devel
+BuildRequires: ocaml-fmt-devel
+BuildRequires: ocaml-junit-alcotest-devel
+BuildRequires: ocaml-logs-devel
+BuildRequires: ocaml-mdx-devel >= 2.10
+%endif
+
+%description
+This is an OCaml library to parse and generate the YAML file format. It
+is intended to be interoperable with the Ezjsonm
+(https://github.com/mirage/ezjsonm) JSON handling library, if the simple
+common subset of Yaml is used. Anchors and other advanced Yaml features
+are not implemented in the JSON compatibility layer.
+
+%package devel
+Summary: Development files for %{name}
+Requires: %{name}%{?_isa} = %{version}-%{release}
+Requires: ocaml-bos-devel%{?_isa}
+Requires: ocaml-ctypes-devel%{?_isa}
+
+%description devel
+The %{name}-devel package contains libraries and signature
+files for developing applications that use %{name}.
+
+%package sexp
+Summary: Parse and generate YAML 1.1/1.2 files with sexp support
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description sexp
+This package adds sexp support to the functionality of ocaml-yaml.
+
+%package sexp-devel
+Summary: Development files for %{name}-sexp
+Requires: %{name}-devel%{?_isa} = %{version}-%{release}
+Requires: %{name}-sexp%{?_isa} = %{version}-%{release}
+Requires: ocaml-ppx-sexp-conv-devel%{?_isa}
+Requires: ocaml-sexplib-devel%{?_isa}
+
+%description sexp-devel
+The %{name}-sexp-devel package contains libraries and signature
+files for developing applications that use %{name}-sexp.
+
+%prep
+%autosetup -N -n yaml-%{version}
+
+# Unbundle the included copy of libyaml.
+# https://bugzilla.redhat.com/show_bug.cgi?id=2217729#c4
+rm vendor/{*.c,yaml.h,yaml_private.h}
+cp -p %{_includedir}/yaml.h vendor/yaml.h
+%patch -P0 -p1
+touch vendor/dummy.c
+ln -s %{_libdir}/libyaml.so ffi/lib/dllyaml.so
+
+%build
+%dune_build
+
+%install
+%dune_install -s
+
+%if %{run_tests}
+%check
+%dune_check
+%endif
+
+%files -f .ofiles-yaml
+%license LICENSE.md
+%doc README.md CHANGES.md
+
+%files devel -f .ofiles-yaml-devel
+
+%files sexp -f .ofiles-yaml-sexp
+%license LICENSE.md
+%doc README.md CHANGES.md
+
+%files sexp-devel -f .ofiles-yaml-sexp-devel
+
+%changelog
+%autochangelog
diff --git a/sources b/sources
new file mode 100644
index 0000000..8d2b964
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (yaml-3.1.0.tbz) = 69d0ff09abeac475981deefc5a2a09e8707aebe4c7e606671a5a8ffa7055d3519ee9e4823065d89c8c5eedb355015b8d9410286fac721af53d910d924a0711a3
https://src.fedoraproject.org/rpms/ocaml-yaml/c/74eeff24dae63e5021c0d27f6...
2Â months, 3Â weeks
jjames pushed to rpms/ocaml-ppx-stable-witness (rawhide). "Initial import"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-06-30 21:23:38 UTC
From d8c250c97c99ae059588e4a1ea79789bf421ff5b Mon Sep 17 00:00:00 2001
From: Jerry James <loganjerry(a)gmail.com>
Date: Jun 30 2023 21:23:24 +0000
Subject: Initial import
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..6baf5b5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/ppx_stable_witness-*.tar.gz
diff --git a/ocaml-ppx-stable-witness.spec b/ocaml-ppx-stable-witness.spec
new file mode 100644
index 0000000..fd2057f
--- /dev/null
+++ b/ocaml-ppx-stable-witness.spec
@@ -0,0 +1,54 @@
+%ifnarch %{ocaml_native_compiler}
+%global debug_package %{nil}
+%endif
+
+Name: ocaml-ppx-stable-witness
+Version: 0.16.0
+Release: 1%{?dist}
+Summary: Derive a witness that a type is intended to be stable
+
+License: MIT
+URL: https://github.com/janestreet/ppx_stable_witness
+Source0: %{url}/archive/v%{version}/ppx_stable_witness-%{version}.tar.gz
+
+BuildRequires: ocaml >= 4.14.0
+BuildRequires: ocaml-dune >= 2.0.0
+BuildRequires: ocaml-base-devel
+BuildRequires: ocaml-ppxlib-devel >= 0.28.0
+
+%description
+Ppx_stable_witnesss is a ppx extension for deriving a witness that a
+type is intended to be stable. In this context, stable means that the
+serialization format will never change. This allows programs running at
+different versions of the code to communicate safely.
+
+%package devel
+Summary: Development files for %{name}
+Requires: %{name}%{?_isa} = %{version}-%{release}
+Requires: ocaml-base-devel%{?_isa}
+Requires: ocaml-ppxlib-devel%{?_isa}
+
+%description devel
+The %{name}-devel package contains libraries and signature
+files for developing applications that use %{name}.
+
+%prep
+%autosetup -n ppx_stable_witness-%{version}
+
+%build
+%dune_build
+
+%install
+%dune_install
+
+%check
+%dune_check
+
+%files -f .ofiles
+%license LICENSE.md
+
+%files devel -f .ofiles-devel
+
+%changelog
+* Sat Jun 24 2023 Jerry James <loganjerry(a)gmail.com> - 0.16.0-1
+- Initial RPM
diff --git a/sources b/sources
new file mode 100644
index 0000000..3c6234f
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (ppx_stable_witness-0.16.0.tar.gz) = 386688f6b9bed1fa481030f881b124681c18a49c8a1933233a7cd90dff5ddb4f1739cfb2d1c5262b2e7c2c2e593c9f141af6565a5596547c1770e19e2422ea36
https://src.fedoraproject.org/rpms/ocaml-ppx-stable-witness/c/d8c250c97c9...
2Â months, 3Â weeks
salimma pushed to rpms/python-pystemd (f37). "Update to 0.13.2;
Fixes: rhbz#2210519 (..more)"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-06-30 21:21:43 UTC
From d05a4eb4e204553ea063be4b08de8fa9a31d8ffc Mon Sep 17 00:00:00 2001
From: Michel Alexandre Salim <salimma(a)fedoraproject.org>
Date: Jun 30 2023 20:44:31 +0000
Subject: Update to 0.13.2; Fixes: rhbz#2210519
Signed-off-by: Michel Alexandre Salim <salimma(a)fedoraproject.org>
---
diff --git a/.gitignore b/.gitignore
index 6438e16..db6398f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@
/pystemd-0.11.0.tar.gz
/pystemd-0.13.0.tar.gz
/pystemd-0.13.1.tar.gz
+/pystemd-0.13.2.tar.gz
diff --git a/python-pystemd.spec b/python-pystemd.spec
index 08e85b7..286d16e 100644
--- a/python-pystemd.spec
+++ b/python-pystemd.spec
@@ -5,8 +5,8 @@
%global pypi_name pystemd
Name: python-%{pypi_name}
-Version: 0.13.1
-Release: 2%{?dist}
+Version: 0.13.2
+Release: 1%{?dist}
Summary: A thin Cython-based wrapper on top of libsystemd
License: LGPL-2.1-or-later
@@ -69,6 +69,9 @@ popd
%{python3_sitearch}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
%changelog
+* Fri Jun 30 2023 Michel Alexandre Salim <salimma(a)fedoraproject.org> - 0.13.2-1
+- Update to 0.13.2; Fixes: rhbz#2210519
+
* Wed Jun 14 2023 Python Maint <python-maint(a)redhat.com> - 0.13.1-2
- Rebuilt for Python 3.12
diff --git a/sources b/sources
index 27d5d65..488306d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (pystemd-0.13.1.tar.gz) = faf168e2dfa676c5e0f1c985c79c5839b83c6e5f746e5ea1027ce09b89927fdd9cb0fd0a5b55b3601b7bfc9c8a5c3163f42b620cc5b75b14e2ec1dc964eeefe1
+SHA512 (pystemd-0.13.2.tar.gz) = 86358b1d023a0587802f327b5015947664cc0079a417dc9bd1234cae686b15efd526d6ba2374cca2463c418adedf7250e54d1e5e53e74202992cbf2eba687ba2
https://src.fedoraproject.org/rpms/python-pystemd/c/d05a4eb4e204553ea063b...
2Â months, 3Â weeks