import CS python3.14-3.14.4-2.el10
This commit is contained in:
parent
7e1bc1c59c
commit
58ec66cf31
@ -1 +0,0 @@
|
|||||||
1
|
|
||||||
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,3 +1 @@
|
|||||||
/*.tar.*
|
Python-3.14.4.tar.xz
|
||||||
/*.src.rpm
|
|
||||||
/results_python3*
|
|
||||||
|
|||||||
@ -1,6 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-*
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
|
||||||
80
plan.fmf
80
plan.fmf
@ -1,80 +0,0 @@
|
|||||||
execute:
|
|
||||||
how: tmt
|
|
||||||
|
|
||||||
provision:
|
|
||||||
hardware:
|
|
||||||
memory: '>= 3 GB'
|
|
||||||
|
|
||||||
environment:
|
|
||||||
pybasever: '3.14'
|
|
||||||
|
|
||||||
discover:
|
|
||||||
- name: tests_python
|
|
||||||
how: shell
|
|
||||||
url: https://gitlab.com/redhat/centos-stream/tests/python.git
|
|
||||||
tests:
|
|
||||||
- name: smoke
|
|
||||||
path: /smoke
|
|
||||||
test: "VERSION=${pybasever} CYTHON=true ./venv.sh"
|
|
||||||
- name: smoke_virtualenv
|
|
||||||
path: /smoke
|
|
||||||
test: "VERSION=${pybasever} METHOD=virtualenv CYTHON=true ./venv.sh"
|
|
||||||
- name: debugsmoke
|
|
||||||
path: /smoke
|
|
||||||
test: "PYTHON=python${pybasever}d TOX=false VERSION=${pybasever} CYTHON=true ./venv.sh"
|
|
||||||
- name: selftest
|
|
||||||
path: /selftest
|
|
||||||
test: "VERSION=${pybasever} X='-i test_check_probes' ./parallel.sh"
|
|
||||||
- name: debugtest
|
|
||||||
path: /selftest
|
|
||||||
# test_base_interpreter: https://github.com/python/cpython/issues/131372
|
|
||||||
test: "VERSION=${pybasever} PYTHON=python${pybasever}d X='-i test_check_probes -i test_base_interpreter' ./parallel.sh"
|
|
||||||
- name: freethreadingtest
|
|
||||||
path: /selftest
|
|
||||||
test: "VERSION=${pybasever}t X='-i test_check_probes -i test_base_interpreter' ./parallel.sh"
|
|
||||||
- name: optimizedflags
|
|
||||||
path: /flags
|
|
||||||
test: "python${pybasever} ./assertflags.py -O3 CFLAGS PY_BUILTIN_MODULE_CFLAGS PY_CFLAGS PY_CORE_CFLAGS PY_CFLAGS_NODIST PY_STDMODULE_CFLAGS"
|
|
||||||
- name: debugflags
|
|
||||||
path: /flags
|
|
||||||
test: "python${pybasever}d ./assertflags.py -O0 CFLAGS PY_BUILTIN_MODULE_CFLAGS PY_CFLAGS PY_CORE_CFLAGS PY_CFLAGS_NODIST PY_STDMODULE_CFLAGS"
|
|
||||||
- name: freethreadingflags
|
|
||||||
path: /flags
|
|
||||||
test: "python${pybasever}t ./assertflags.py -O3 CFLAGS PY_BUILTIN_MODULE_CFLAGS PY_CFLAGS PY_CORE_CFLAGS PY_CFLAGS_NODIST PY_STDMODULE_CFLAGS"
|
|
||||||
- name: freethreadingdebugflags
|
|
||||||
path: /flags
|
|
||||||
test: "python${pybasever}td ./assertflags.py -O0 CFLAGS PY_BUILTIN_MODULE_CFLAGS PY_CFLAGS PY_CORE_CFLAGS PY_CFLAGS_NODIST PY_STDMODULE_CFLAGS"
|
|
||||||
- name: marshalparser
|
|
||||||
path: /marshalparser
|
|
||||||
test: "VERSION=${pybasever} SAMPLE=10 ./test_marshalparser_compatibility.sh"
|
|
||||||
|
|
||||||
prepare:
|
|
||||||
- name: Install dependencies
|
|
||||||
how: install
|
|
||||||
package:
|
|
||||||
- 'https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm'
|
|
||||||
- gcc # for extension building in venv and selftest
|
|
||||||
- gcc-c++ # for test_cppext
|
|
||||||
- gdb # for test_gdb
|
|
||||||
- "python${pybasever}" # the test subject
|
|
||||||
- "python${pybasever}-debug" # for leak testing
|
|
||||||
- "python${pybasever}-devel" # for extension building in venv and selftest
|
|
||||||
- "python${pybasever}-tkinter" # for selftest
|
|
||||||
- "python${pybasever}-test" # for selftest
|
|
||||||
- "python${pybasever}-freethreading" # for -O... flag test
|
|
||||||
- "python${pybasever}-freethreading-debug" # for -O... flag test
|
|
||||||
- "python${pybasever}-freethreading-tkinter" # for freethreadingtest
|
|
||||||
- "python${pybasever}-freethreading-test" # for freethreadingtest
|
|
||||||
- tox # for venv tests
|
|
||||||
- virtualenv # for virtualenv tests
|
|
||||||
- glibc-all-langpacks # for locale tests
|
|
||||||
- marshalparser # for testing compatibility (magic numbers) with marshalparser
|
|
||||||
- rpm # for debugging
|
|
||||||
- dnf # for upgrade
|
|
||||||
- name: Update packages
|
|
||||||
how: shell
|
|
||||||
script: dnf upgrade -y
|
|
||||||
- name: rpm_qa
|
|
||||||
order: 100
|
|
||||||
how: shell
|
|
||||||
script: rpm -qa | sort | tee $TMT_PLAN_DATA/rpmqa.txt
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
# exclude test XML data (not always valid) from XML validity check:
|
|
||||||
xml:
|
|
||||||
ignore:
|
|
||||||
- '/usr/lib*/python*/test/xmltestdata/*'
|
|
||||||
- '/usr/lib*/python*/test/xmltestdata/*/*'
|
|
||||||
|
|
||||||
# exclude _socket from ipv4 only functions check, it has both ipv4 and ipv6 only
|
|
||||||
badfuncs:
|
|
||||||
allowed:
|
|
||||||
'/usr/lib*/python*/lib-dynload/_socket.*':
|
|
||||||
- inet_aton
|
|
||||||
- inet_ntoa
|
|
||||||
|
|
||||||
# exclude the debug build from annocheck entirely
|
|
||||||
annocheck:
|
|
||||||
ignore:
|
|
||||||
- '/usr/bin/python*d'
|
|
||||||
- '/usr/lib*/libpython*d.so.1.0'
|
|
||||||
- '/usr/lib*/python*/lib-dynload/*.cpython-*d-*-*-*.so'
|
|
||||||
|
|
||||||
# don't report changed content of compiled files
|
|
||||||
# that is expected with every toolchain update and not reproducible yet
|
|
||||||
changedfiles:
|
|
||||||
# note that this is a posix regex, so no \d
|
|
||||||
exclude_path: (\.so(\.[0-9]+(\.[0-9]+)?)?$|^/usr/bin/python[0-9]+\.[0-9]+d?m?$)
|
|
||||||
|
|
||||||
# files change size all the time, we don't need to VERIFY it
|
|
||||||
# however, the INFO is useful, so we don't disable the check entirely
|
|
||||||
filesize:
|
|
||||||
# artificially large number, TODO a better way
|
|
||||||
size_threshold: 100000
|
|
||||||
|
|
||||||
|
|
||||||
# completely disabled inspections:
|
|
||||||
inspections:
|
|
||||||
# we know about our patches, no need to report anything
|
|
||||||
patches: off
|
|
||||||
106
rpmlint.toml
106
rpmlint.toml
@ -1,106 +0,0 @@
|
|||||||
Filters = [
|
|
||||||
|
|
||||||
# KNOWN BUGS:
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1489816
|
|
||||||
'crypto-policy-non-compliance-openssl',
|
|
||||||
|
|
||||||
|
|
||||||
# TESTS:
|
|
||||||
'(zero-length|pem-certificate|uncompressed-zip) /usr/lib(64)?/python3\.\d+t?/test',
|
|
||||||
|
|
||||||
|
|
||||||
# OTHER DELIBERATES:
|
|
||||||
# chroot function
|
|
||||||
'missing-call-to-chdir-with-chroot',
|
|
||||||
|
|
||||||
# gethostbyname function calls gethostbyname
|
|
||||||
'(E|W): binary-or-shlib-calls-gethostbyname /usr/lib(64)?/python3\.\d+t?/lib-dynload/_socket\.',
|
|
||||||
|
|
||||||
# intentionally unversioned and selfobsoleted
|
|
||||||
'unversioned-explicit-obsoletes python',
|
|
||||||
'unversioned Obsoletes: Obsoletes: python3\.\d+$',
|
|
||||||
'self-obsoletion python3\.\d+(-\S+)? obsoletes python3\.\d+(-\S+)?',
|
|
||||||
|
|
||||||
# intentionally hardcoded
|
|
||||||
'hardcoded-library-path in %{_prefix}/lib/(debug/%{_libdir}|python%{pybasever})',
|
|
||||||
|
|
||||||
# we have non binary stuff, python files
|
|
||||||
'only-non-binary-in-usr-lib',
|
|
||||||
|
|
||||||
# some devel files that are deliberately needed
|
|
||||||
'devel-file-in-non-devel-package /usr/include/python3\.\d+m?t?/pyconfig-(32|64)\.h',
|
|
||||||
'devel-file-in-non-devel-package /usr/lib(64)?/python3\.\d+t?/distutils/tests/xxmodule\.c',
|
|
||||||
# ...or are used as test data
|
|
||||||
'devel-file-in-non-devel-package /usr/lib(64)?/python3\.\d+t?/test',
|
|
||||||
|
|
||||||
# some bytecode is shipped without sources on purpose, as a space optimization
|
|
||||||
# if this regex needs to be relaxed in the future, make sure it **does not** match pyc files in __pycache__
|
|
||||||
'python-bytecode-without-source /usr/lib(64)?/python3\.\d+t?/(encodings|pydoc_data)/[^/]+.pyc',
|
|
||||||
|
|
||||||
# DUPLICATE FILES
|
|
||||||
# test data are often duplicated
|
|
||||||
'(E|W): files-duplicate /usr/lib(64)?/python3\.\d+t?/(test|__phello__)/',
|
|
||||||
# duplicated inits or mains are also common
|
|
||||||
'(E|W): files-duplicate .+__init__\.py.+__init__\.py',
|
|
||||||
'(E|W): files-duplicate .+__main__\.py.+__main__\.py',
|
|
||||||
# files in the debugsource package
|
|
||||||
'(E|W): files-duplicate /usr/src/debug',
|
|
||||||
# general waste report
|
|
||||||
'(E|W): files-duplicated-waste',
|
|
||||||
|
|
||||||
# SORRY, NOT SORRY:
|
|
||||||
# manual pages
|
|
||||||
'no-manual-page-for-binary (idle|pydoc|pyvenv|2to3|python3?-debug|pathfix|msgfmt|pygettext)',
|
|
||||||
'no-manual-page-for-binary python3?.*-config$',
|
|
||||||
'no-manual-page-for-binary python3\.\d+t?dm?$',
|
|
||||||
|
|
||||||
# missing documentation from subpackages
|
|
||||||
'^python3(\.\d+)?-(freethreading(-debug)?|debug|tkinter|test|idle)\.[^:]+: (E|W): no-documentation',
|
|
||||||
|
|
||||||
# platform python is obsoleted, but not provided
|
|
||||||
'obsolete-not-provided platform-python',
|
|
||||||
|
|
||||||
# we have extra tokens at the end of %endif/%else directives, we consider them useful
|
|
||||||
'extra tokens at the end of %(endif|else) directive',
|
|
||||||
|
|
||||||
|
|
||||||
# RPMLINT IMPERFECTIONS
|
|
||||||
# https://github.com/rpm-software-management/rpmlint/issues/780
|
|
||||||
'/usr/lib/debug',
|
|
||||||
|
|
||||||
# we provide python(abi) manually to be sure. createrepo will merge this with the automatic
|
|
||||||
'python3(\.\d+)?\.[^:-]+: (E|W): useless-provides python\(abi\)',
|
|
||||||
|
|
||||||
# debugsource and debuginfo have no docs
|
|
||||||
'^python3(\.\d+)?-debug(source|info)\.[^:]+: (E|W): no-documentation',
|
|
||||||
|
|
||||||
# this is OK for F28+
|
|
||||||
'library-without-ldconfig-post',
|
|
||||||
|
|
||||||
# freethreading/debug package contains devel and non-devel files
|
|
||||||
'python3(\.\d+)?-(freethreading(-debug)?|debug)\.[^:]+: (E|W): (non-)?devel-file-in-(non-)?devel-package',
|
|
||||||
|
|
||||||
# this goes to other subpackage, hence not actually dangling
|
|
||||||
'dangling-relative-symlink /usr/bin/python python3',
|
|
||||||
'dangling-relative-symlink /usr/share/man/man1/python\.1\.gz python3\.1\.gz',
|
|
||||||
'dangling-relative-symlink /usr/lib(64)?/pkgconfig/python-3\.\d+t?d?m?(-embed)?\.pc python-3\.\d+t?(-embed)?\.pc',
|
|
||||||
|
|
||||||
# the python-unversioned-command package contains dangling symlinks by design
|
|
||||||
'^python-unversioned-command\.[^:]+: (E|W): dangling-relative-symlink (/usr/bin/python \./python3|/usr/share/man/man1/python\.1\S* ./python3\.1\S*)$',
|
|
||||||
|
|
||||||
# we need this macro to evaluate, even if the line starts with #
|
|
||||||
'macro-in-comment %\{_pyconfig(32|64)_h\}',
|
|
||||||
|
|
||||||
# Python modules don't need to be linked against libc
|
|
||||||
# Since 3.8 they are no longer linked against libpython3.8.so.1.0
|
|
||||||
'(E|W): library-not-linked-against-libc /usr/lib(64)?/python3\.\d+/lib-dynload/',
|
|
||||||
'(E|W): shared-lib(rary)?-without-dependency-information /usr/lib(64)?/python3\.\d+/lib-dynload/',
|
|
||||||
|
|
||||||
# specfile-errors are listed twice, once with reason and once without
|
|
||||||
# we filter out the empty ones
|
|
||||||
'\bpython3(\.\d+)?\.(src|spec): (E|W): specfile-error\s+$',
|
|
||||||
|
|
||||||
# SPELLING ERRORS
|
|
||||||
'spelling-error .* en_US (bytecode|pyc|filename|tkinter|namespaces|pytest|unittest|gil) ',
|
|
||||||
|
|
||||||
]
|
|
||||||
Loading…
Reference in New Issue
Block a user