public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Packit <hello@packit.dev>
To: git-commits@fedoraproject.org
Subject: [rpms/libpkgmanifest] epel10.2: Update to 0.5.9 upstream release
Date: Thu, 11 Jun 2026 15:54:51 GMT	[thread overview]
Message-ID: <178119329118.1.16064661625413557111.rpms-libpkgmanifest-81db4ed8164a@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : rpms/libpkgmanifest
            Branch : epel10.2
            Commit : 81db4ed8164aa6c6086c98d6cb42165aa44c96c1
            Author : Packit <hello@packit.dev>
            Date   : 2025-04-03T13:55:33+00:00
            Stats  : +146/-0 in 5 file(s)
            URL    : https://src.fedoraproject.org/rpms/libpkgmanifest/c/81db4ed8164aa6c6086c98d6cb42165aa44c96c1?branch=epel10.2

            Log:
            Update to 0.5.9 upstream release

Upstream tag: v0.5.9
Upstream commit: f6e92946

Commit authored by Packit automation (https://packit.dev/)

---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..760c84f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/libpkgmanifest-0.5.9.tar.gz

diff --git a/.packit.yaml b/.packit.yaml
new file mode 100644
index 0000000..b0aa883
--- /dev/null
+++ b/.packit.yaml
@@ -0,0 +1,31 @@
+upstream_tag_template: v{version}
+
+specfile_path: libpkgmanifest.spec
+
+files_to_sync:
+  - libpkgmanifest.spec
+  - .packit.yaml
+
+upstream_package_name: libpkgmanifest
+downstream_package_name: libpkgmanifest
+
+jobs:
+- job: propose_downstream
+  trigger: release
+  dist_git_branches:
+    - fedora-rawhide
+  copy_upstream_release_description: false
+- job: koji_build
+  trigger: commit
+  dist_git_branches:
+    - fedora-all
+- job: bodhi_update
+  trigger: commit
+  dist_git_branches:
+    - fedora-all
+- job: copr_build
+  trigger: commit
+  owner: rpmsoftwaremanagement
+  project: libpkgmanifest-nightly
+  targets:
+    - fedora-all

diff --git a/README.packit b/README.packit
new file mode 100644
index 0000000..bb4a369
--- /dev/null
+++ b/README.packit
@@ -0,0 +1,3 @@
+This repository is maintained by packit.
+https://packit.dev/
+The file was generated using packit 1.4.0.post1.dev4+g043c5fde.

diff --git a/libpkgmanifest.spec b/libpkgmanifest.spec
new file mode 100644
index 0000000..48a690b
--- /dev/null
+++ b/libpkgmanifest.spec
@@ -0,0 +1,110 @@
+%global pkg_name libpkgmanifest
+
+%global forgeurl https://github.com/rpm-software-management/%{pkg_name}
+
+%global version_major 0
+%global version_minor 5
+%global version_patch 9
+
+%bcond_with    docs
+%bcond_without python
+%bcond_without tests
+
+Name:       %{pkg_name}
+Version:    %{version_major}.%{version_minor}.%{version_patch}
+Release:    %{autorelease}
+
+%forgemeta
+
+Summary:    Library for working with RPM manifests
+License:    LGPL-2.1-or-later
+URL:        %{forgeurl}
+Source:     %{forgesource}
+
+BuildRequires:  pkgconf-pkg-config
+BuildRequires:  cmake >= 3.13
+BuildRequires:  pkgconfig(yaml-cpp) >= 0.7.0
+
+%if "%{toolchain}" == "clang"
+BuildRequires:  clang
+%else
+BuildRequires:  gcc-c++ >= 10.1
+%endif
+
+%if %{with tests}
+BuildRequires:  pkgconfig(gmock)
+BuildRequires:  pkgconfig(gtest)
+%endif
+
+%if %{with python}
+BuildRequires:  python3-devel
+BuildRequires:  swig >= 4.2.0
+%endif
+
+%if %{with docs}
+BuildRequires:  doxygen
+BuildRequires:  python3dist(breathe)
+BuildRequires:  python3dist(sphinx)
+BuildRequires:  python3dist(sphinx-rtd-theme)
+%endif
+
+%description
+%{name} is a C++ library for parsing and generating RPM manifests.
+
+%files -n %{name}
+%{_libdir}/%{name}.so.0
+%license LICENSE
+%doc README.md
+
+%package -n %{name}-devel
+Summary:        Development files for %{name}
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+
+%description -n %{name}-devel
+Development files for %{name}.
+
+%files -n %{name}-devel
+%{_includedir}/%{name}/
+%{_libdir}/%{name}.so
+%{_libdir}/pkgconfig/%{name}.pc
+%doc docs/design
+
+%if %{with python}
+%package -n python3-%{name}
+%{?python_provide:%python_provide python3-%{name}}
+Summary:        Python 3 bindings for the %{name} library
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+
+%description -n python3-%{name}
+Python 3 bindings for the %{name} library.
+
+%files -n python3-%{name}
+%{python3_sitearch}/%{name}
+%{python3_sitearch}/%{name}-*.dist-info
+%endif
+
+%prep
+%autosetup -p1 -n %{name}-%{version}
+
+%build
+%cmake \
+    -DWITH_DOCS=%{?with_docs:ON}%{!?with_docs:OFF} \
+    -DWITH_PYTHON=%{?with_python:ON}%{!?with_python:OFF} \
+    -DWITH_TESTS=%{?with_tests:ON}%{!?with_tests:OFF} \
+    -DWITH_CODE_COVERAGE=OFF \
+    \
+    -DVERSION_MAJOR=%{version_major} \
+    -DVERSION_MINOR=%{version_minor} \
+    -DVERSION_PATCH=%{version_patch}
+%cmake_build
+
+%check
+%if %{with tests}
+    %ctest
+%endif
+
+%install
+%cmake_install
+
+%changelog
+%autochangelog
\ No newline at end of file

diff --git a/sources b/sources
new file mode 100644
index 0000000..66e0724
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (libpkgmanifest-0.5.9.tar.gz) = e56817e7c78fede95a83c341e3c37480e907ff07b5720442b23fc8214b5d74cee047d20a428dbe3a582acd9025eac1e58a894033b766874d6591fc6f51439025

                 reply	other threads:[~2026-06-11 15:54 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178119329118.1.16064661625413557111.rpms-libpkgmanifest-81db4ed8164a@fedoraproject.org \
    --to=hello@packit.dev \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox