73 lines
1.9 KiB
RPMSpec
73 lines
1.9 KiB
RPMSpec
%global _empty_manifest_terminate_build 0
|
|
%global pypi_name mkdocs-autorefs
|
|
|
|
%global _description %{expand:
|
|
Automatically link across pages in MkDocs.}
|
|
|
|
Name: python-%{pypi_name}
|
|
Version: 1.0.1
|
|
Release: 1
|
|
Summary: Automatically link across pages in MkDocs.
|
|
License: ISC
|
|
URL: https://github.com/mkdocstrings/autorefs
|
|
Source0: %{url}/archive/%{version}/mkdocs_autorefs-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-pip
|
|
BuildRequires: python3-wheel
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: python3-setuptools_scm
|
|
BuildRequires: python3-pdm-backend
|
|
|
|
# for test
|
|
BuildRequires: python3-pytest
|
|
BuildRequires: python3-pytest-cov
|
|
BuildRequires: python3-pytest-randomly
|
|
BuildRequires: python3-pytest-xdist
|
|
BuildRequires: python3-mkdocs
|
|
BuildRequires: python3-markdown
|
|
BuildRequires: python3-pygments
|
|
BuildRequires: python3-pymdown-extensions
|
|
|
|
%description %_description
|
|
|
|
%package -n python3-%{pypi_name}
|
|
Summary: Automatically link across pages in MkDocs.
|
|
%{?python_provide:%python_provide python3-%{pypi_name}}
|
|
|
|
%description -n python3-%{pypi_name} %_description
|
|
|
|
%prep
|
|
%autosetup -n mkdocs_autorefs-%{version}
|
|
|
|
%build
|
|
%pyproject_build
|
|
|
|
%install
|
|
%pyproject_install
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%files -n python3-%{pypi_name}
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{python3_sitelib}/mkdocs_autorefs-%{version}.dist-info/
|
|
%{python3_sitelib}/mkdocs_autorefs/
|
|
|
|
%changelog
|
|
* Tue Mar 5 2024 Dongxing Wang <dongxing.wang_a@thundersoft.com> - 1.0.1-1
|
|
- Update package with version 1.0.1
|
|
Don't import MkDocsConfig (does not exist on MkDocs 1.3-)
|
|
Add Markdown anchors and aliases
|
|
Preserve HTML data attributes (from spans to anchors)
|
|
Support [`identifier`][] with pymdownx.inlinehilite enabled
|
|
Recognize links with multi-line text
|
|
|
|
* Mon Sep 4 2023 li-miaomiao_zhr <mmlidc@isoftstone.com> - 0.5.0-2
|
|
- Start self-test of sofware package
|
|
|
|
* Fri Aug 25 2023 li-miaomiao_zhr <mmlidc@isoftstone.com> - 0.5.0-1
|
|
- Package init
|