diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-appmap.spec | 36 | ||||
| -rw-r--r-- | sources | 2 |
3 files changed, 20 insertions, 19 deletions
@@ -1 +1,2 @@ /appmap-1.15.1.tar.gz +/appmap-1.16.0.tar.gz diff --git a/python-appmap.spec b/python-appmap.spec index ab0cc42..5bd8db8 100644 --- a/python-appmap.spec +++ b/python-appmap.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-appmap -Version: 1.15.1 +Version: 1.16.0 Release: 1 Summary: Create AppMap files by recording a Python application. License: MIT URL: https://github.com/applandinc/appmap-python -Source0: https://mirrors.nju.edu.cn/pypi/web/packages/40/7b/8c8f11688c3975183af1c057eb1dc9e42ac9288dc7cf91c8c22b41cb23b3/appmap-1.15.1.tar.gz +Source0: https://mirrors.aliyun.com/pypi/web/packages/76/2f/3a9b2db522fe273515310008069e4699465282497982927e53edbd5f6e0e/appmap-1.16.0.tar.gz BuildArch: noarch Requires: python3-PyYAML @@ -17,9 +17,9 @@ Requires: python3-packaging %description Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ``` -[Note that the current configuration requires a 10.0 for the Travis build to pass. To make -this easier to achieve, convention and refactoring checks have both been disabled. They -should be reenabled as soon as possible.] +[Note that the current configuration has a threshold set which must be met for the Travis build to +pass. To make this easier to achieve, a number of checks have both been disabled. They should be +reenabled as soon as possible.] ## Testing ### pytest Note that you must install the dependencies contained in @@ -64,9 +64,9 @@ BuildRequires: python3-pip %description -n python3-appmap Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ``` -[Note that the current configuration requires a 10.0 for the Travis build to pass. To make -this easier to achieve, convention and refactoring checks have both been disabled. They -should be reenabled as soon as possible.] +[Note that the current configuration has a threshold set which must be met for the Travis build to +pass. To make this easier to achieve, a number of checks have both been disabled. They should be +reenabled as soon as possible.] ## Testing ### pytest Note that you must install the dependencies contained in @@ -108,9 +108,9 @@ Provides: python3-appmap-doc %description help Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) ``` -[Note that the current configuration requires a 10.0 for the Travis build to pass. To make -this easier to achieve, convention and refactoring checks have both been disabled. They -should be reenabled as soon as possible.] +[Note that the current configuration has a threshold set which must be met for the Travis build to +pass. To make this easier to achieve, a number of checks have both been disabled. They should be +reenabled as soon as possible.] ## Testing ### pytest Note that you must install the dependencies contained in @@ -147,7 +147,7 @@ plugin](https://github.com/momo-lab/xxenv-latest) can help get all the latest ve ``` %prep -%autosetup -n appmap-1.15.1 +%autosetup -n appmap-1.16.0 %build %py3_build @@ -161,20 +161,20 @@ if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi pushd %{buildroot} if [ -d usr/lib ]; then - find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst + find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/lib64 ]; then - find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst + find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/bin ]; then - find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst + find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/sbin ]; then - find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst + find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi touch doclist.lst if [ -d usr/share/man ]; then - find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . @@ -187,5 +187,5 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog -* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 1.15.1-1 +* Thu Jun 08 2023 Python_Bot <Python_Bot@openeuler.org> - 1.16.0-1 - Package Spec generated @@ -1 +1 @@ -f133afefb55fc7b92a816f33bdbf14e1 appmap-1.15.1.tar.gz +70e3bc3541513022f4d91d4dc50cd24c appmap-1.16.0.tar.gz |
