Compare commits
No commits in common. "c8" and "c9s" have entirely different histories.
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
||||||
8
.gitignore
vendored
8
.gitignore
vendored
@ -1 +1,7 @@
|
|||||||
SOURCES/py3c-1.2.tar.gz
|
/py3c-0.6.tar.gz
|
||||||
|
/py3c-0.7.tar.gz
|
||||||
|
/py3c-0.8.tar.gz
|
||||||
|
/py3c-1.0.tar.gz
|
||||||
|
/py3c-1.1.tar.gz
|
||||||
|
/py3c-1.2.tar.gz
|
||||||
|
/py3c-1.3.tar.gz
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
34968631850de8307fedac41041cdc0bcfea5976 SOURCES/py3c-1.2.tar.gz
|
|
||||||
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-9
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
||||||
11
plans.fmf
Normal file
11
plans.fmf
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
discover:
|
||||||
|
how: shell
|
||||||
|
tests:
|
||||||
|
- name: pkgconf lists py3c
|
||||||
|
test: pkgconf py3c --exists
|
||||||
|
require:
|
||||||
|
- pkgconf
|
||||||
|
|
||||||
|
execute:
|
||||||
|
how: tmt
|
||||||
|
|
||||||
@ -2,8 +2,8 @@
|
|||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
|
|
||||||
Name: py3c
|
Name: py3c
|
||||||
Version: 1.2
|
Version: 1.3
|
||||||
Release: 4%{?dist}
|
Release: 5%{?dist}
|
||||||
Summary: Guide and compatibility macros for porting extensions to Python 3
|
Summary: Guide and compatibility macros for porting extensions to Python 3
|
||||||
|
|
||||||
# Licences differ for subpackages
|
# Licences differ for subpackages
|
||||||
@ -13,11 +13,12 @@ URL: http://py3c.readthedocs.io/
|
|||||||
|
|
||||||
Source0: https://github.com/encukou/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
Source0: https://github.com/encukou/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: make
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
BuildRequires: python3-sphinx
|
BuildRequires: python3-sphinx
|
||||||
BuildRequires: python3-sphinx_rtd_theme
|
BuildRequires: python3-sphinx_rtd_theme >= 0.4.3
|
||||||
|
|
||||||
%description
|
%description
|
||||||
py3c helps you port C extensions to Python 3.
|
py3c helps you port C extensions to Python 3.
|
||||||
@ -44,8 +45,6 @@ BuildArch: noarch
|
|||||||
License: CC-BY-SA
|
License: CC-BY-SA
|
||||||
Summary: Guide for porting C extensions to Python 3
|
Summary: Guide for porting C extensions to Python 3
|
||||||
|
|
||||||
Requires: python3-sphinx_rtd_theme
|
|
||||||
|
|
||||||
%description doc
|
%description doc
|
||||||
Guide for porting CPython extensions from Python 2 to Python 3, using the
|
Guide for porting CPython extensions from Python 2 to Python 3, using the
|
||||||
py3c macros.
|
py3c macros.
|
||||||
@ -58,13 +57,6 @@ make %{?_smp_mflags} py3c.pc includedir=%{_includedir}
|
|||||||
|
|
||||||
make %{?_smp_mflags} doc SPHINXBUILD=sphinx-build-3
|
make %{?_smp_mflags} doc SPHINXBUILD=sphinx-build-3
|
||||||
|
|
||||||
# unbundle fonts provided by the theme package
|
|
||||||
bundledfonts=doc/build/html/_static/fonts
|
|
||||||
themefonts=%{python3_sitelib}/sphinx_rtd_theme/static/fonts
|
|
||||||
diff -r $bundledfonts $themefonts
|
|
||||||
rm -rv $bundledfonts
|
|
||||||
ln -s $themefonts $bundledfonts
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
export CFLAGS="%{optflags}"
|
export CFLAGS="%{optflags}"
|
||||||
make %{?_smp_mflags} test-python3
|
make %{?_smp_mflags} test-python3
|
||||||
@ -89,13 +81,21 @@ sed --in-place -e's!%{buildroot}!!' %{buildroot}%{_datadir}/pkgconfig/py3c.pc
|
|||||||
%doc %{_pkgdocdir}/
|
%doc %{_pkgdocdir}/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Oct 30 2020 Tomas Orsava <torsava@redhat.com> - 1.2-4
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.3-5
|
||||||
- Rebuild with gating
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
- Resolves: rhbz#1841060
|
Related: rhbz#1991688
|
||||||
|
|
||||||
* Mon Sep 07 2020 Tomas Orsava <torsava@redhat.com> - 1.2-3
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.3-4
|
||||||
- Including in RHEL8
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
- Resolves: rhbz#1841060
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 07 2021 Petr Viktorin <pviktori@redhat.com> - 1.3-2
|
||||||
|
- No longer unbundle fonts
|
||||||
|
|
||||||
|
* Sun Nov 29 2020 Petr Viktorin <pviktori@redhat.com> - 1.3-1
|
||||||
|
- Update to 1.3
|
||||||
|
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-2
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
Loading…
Reference in New Issue
Block a user