Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
e42caebcba
!25 update to 0.8.1
From: @dillon_chen 
Reviewed-by: @overweight 
Signed-off-by: @overweight
2023-07-12 08:36:09 +00:00
dillon_chen
3fc71fe369 update to 0.8.1 2023-07-12 16:22:00 +08:00
openeuler-ci-bot
e4aee21c90
!19 check if the build environment supports attr before executing test
From: @zhangruifang2020 
Reviewed-by: @gaoruoshu 
Signed-off-by: @gaoruoshu
2023-07-05 07:31:26 +00:00
zhangruifang2020
a0b5aadcef check if the build environment supports attr before executing test 2023-07-05 15:01:45 +08:00
openeuler-ci-bot
ae30506002
!17 make the test check
From: @fly_fzc 
Reviewed-by: @gaoruoshu 
Signed-off-by: @gaoruoshu
2023-03-29 06:25:12 +00:00
fly_fzc
54b3e51a65 make the test check 2023-03-29 11:33:39 +08:00
openeuler-ci-bot
1f9c7bad71
!14 update version to 0.8.0
From: @fly_fzc 
Reviewed-by: @xiezhipeng1 
Signed-off-by: @xiezhipeng1
2023-02-01 06:15:31 +00:00
fly_fzc
100d081842 update version to 0.8.0 2023-02-01 11:26:24 +08:00
openeuler-ci-bot
4efe351967
!12 [sync] PR-10: 【轻量级 PR】:rebuild for next release
From: @openeuler-sync-bot 
Reviewed-by: @xiezhipeng1 
Signed-off-by: @xiezhipeng1
2022-11-03 02:28:33 +00:00
zhuofeng
b7691f40c7 update for mass rebuild and upgrade verification
Signed-off-by: zhuofeng <zhuofeng2@huawei.com>
(cherry picked from commit 251eecf8f55a38ae765e0ab46e5a816f4c07d5cd)
2022-10-28 09:45:52 +08:00
3 changed files with 30 additions and 7 deletions

Binary file not shown.

BIN
pyxattr-0.8.1.tar.gz Normal file

Binary file not shown.

View File

@ -1,12 +1,12 @@
Name: pyxattr
Summary: Extended attributes library wrapper for Python
Version: 0.7.2
Release: 2
Version: 0.8.1
Release: 1
License: LGPLv2+
URL: http://pyxattr.k1024.org/
Source: https://pyxattr.k1024.org/downloads/%{name}-%{version}.tar.gz
BuildRequires: gcc libattr-devel python3-devel python3-setuptools
BuildRequires: gcc libattr-devel python3-devel python3-setuptools python3-pytest
%description
This is the pyxattr module, a Python extension module which gives access to
@ -33,18 +33,41 @@ cp -a . %{py3dir}
%py3_install
%check
#pushd %%{py3dir}
#%%{__python3} setup.py test
#popd
touch check-xattr-support
if ! attr -s test -V test check-xattr-support >& /dev/null ;then
echo "skipping tests because BUILD_FILE seem to lack xattr support"
else
export TEST_IGNORE_XATTRS=security.selinux
export PYTHONPATH=%{buildroot}%{python3_sitearch}
%{__python3} -m pytest -v
fi
rm -rf check-xattr-support
%files -n python3-%{name}
%{python3_sitearch}/*.so
%{python3_sitearch}/pyxattr*
%{!?_licensedir:%global license %%doc}
%license COPYING
%doc NEWS README.md
%doc README.md
%changelog
* Wed Jul 12 2023 dillon chen <dillon.chen@gmail.com> - 0.8.1-1
- update version to 0.8.1
* Wed Jul 5 2023 zhangruifang <zhangruifang1@h-partners.com> - 0.8.0-3
- check if the build environment supports attr before executing test
* Wed Mar 29 2023 fuanan <fuanan3@h-partners.com> - 0.8.0-2
- make the test check
* Wed Feb 01 2023 fuanan <fuanan3@h-partners.com> - 0.8.0-1
- update version to 0.8.0
* Wed Oct 26 2022 zhuofeng <zhuofeng2@huawei.com> - 0.7.2-3
- rebuild for next release
* Tue Feb 2 2021 zhangxingliang <zhangxingliang3@huawei.com> - 0.7.2-2
- revert changes in check