File blueprint-compiler.spec of Package blueprint-compiler
#
# spec file for package blueprint-compiler
#
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%if 0%{?suse_version} < 1600
%global pythons python311
%else
%global pythons python3
%endif
Name: blueprint-compiler
Version: 0.16.0
Release: 0
Summary: A markup language for GTK user interfaces
License: LGPL-3.0-or-later
URL: https://gitlab.gnome.org/jwestman/blueprint-compiler
Source: %{url}/-/archive/v%{version}/%{name}-v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: %{python_module Sphinx}
BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module gobject}
BuildRequires: meson
BuildRequires: python-rpm-macros
BuildRequires: pkgconfig(gobject-introspection-1.0)
BuildRequires: pkgconfig(gtk4)
BuildRequires: pkgconfig(libadwaita-1)
Requires: %{python_flavor}-gobject
BuildArch: noarch
%description
A markup language for GTK user interface files.
%package devel
Summary: Development files for blueprint-compiler
Requires: blueprint-compiler = %{version}
%description devel
A markup language for GTK user interface files.
%prep
%autosetup -n %{name}-v%{version}
%if 0%{?suse_version} < 1600
sed -i -e 's|python3|python3.11|g' meson.build
sed -i -e 's|=3.9|=3.11|g' justfile
sed -i -e 's|python3|python3.11)|g' justfile
sed -i -e 's|python3|python3.11)|g' tests/fuzz.sh
sed -i -e 's|/usr/bin/env python3|/usr/bin/python3.11|g' blueprint-compiler.py
sed -i -e 's|/usr/bin/env python3|/usr/bin/python3.11|g' docs/collect-sections.py
%endif
%build
%meson \
-Ddocs=true
%meson_build
%install
%meson_install
sed -i '1s|#!/usr/bin/env |#!/usr/bin/|' %{buildroot}%{_bindir}/blueprint-compiler
#%check
#python3 -m unittest
%files
%license COPYING
%doc README.md NEWS.md
%{_bindir}/blueprint-compiler
%{python_sitelib}/blueprintcompiler
%files devel
%{_datadir}/pkgconfig/blueprint-compiler.pc
%changelog