diff --git a/python-binary-memcached-0.31.2.tar.gz b/python-binary-memcached-0.31.2.tar.gz deleted file mode 100644 index e92659b82a9c84a4002fd40b2514edba86cb7ca5..0000000000000000000000000000000000000000 Binary files a/python-binary-memcached-0.31.2.tar.gz and /dev/null differ diff --git a/python-binary-memcached.spec b/python-binary-memcached.spec index 81dc9933d01337d810bd2032e4e0382f281052e0..75f6efdc986a9750770a60bdb6cbb78b7bbe4fbb 100644 --- a/python-binary-memcached.spec +++ b/python-binary-memcached.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-binary-memcached -Version: 0.31.2 +Version: 0.31.3 Release: 1 Summary: A pure python module to access memcached via its binary protocol with SASL auth support License: MIT URL: https://github.com/jaysonsantos/python-binary-memcached -Source0: https://files.pythonhosted.org/packages/e1/88/9a40a7c99d9085d5f5d998651ae40fdf2622513bfa3dd87ff7ce5e08bb48/python-binary-memcached-%{version}.tar.gz +Source0: https://files.pythonhosted.org/packages/cd/cb/f1a89ce69287ed049d4b7d81a7618be9b689f9f0e51a6a8fa8e22102b01c/python_binary_memcached-0.31.3.tar.gz BuildArch: noarch %description @@ -41,7 +41,7 @@ The main purpose of this module it to be able to communicate with memcached usin and support authentication, so it can work with Heroku for example. %prep -%autosetup -n python-binary-memcached-%{version} -p1 +%autosetup -n python_binary_memcached-%{version} -p1 %build %py3_build @@ -83,6 +83,9 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Fri Jun 20 2025 liudy - 0.31.3-1 +- Update version to 0.31.3 + * Fri Mar 22 2024 wangqiang - 0.31.2-1 - Update package to version 0.31.2 diff --git a/python_binary_memcached-0.31.3.tar.gz b/python_binary_memcached-0.31.3.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..6ae776fa7682f0de8b1f1d8afa027513758f6edc Binary files /dev/null and b/python_binary_memcached-0.31.3.tar.gz differ diff --git "a/\357\274\201" "b/\357\274\201" new file mode 100644 index 0000000000000000000000000000000000000000..75f6efdc986a9750770a60bdb6cbb78b7bbe4fbb --- /dev/null +++ "b/\357\274\201" @@ -0,0 +1,99 @@ +%global _empty_manifest_terminate_build 0 +Name: python-binary-memcached +Version: 0.31.3 +Release: 1 +Summary: A pure python module to access memcached via its binary protocol with SASL auth support +License: MIT +URL: https://github.com/jaysonsantos/python-binary-memcached +Source0: https://files.pythonhosted.org/packages/cd/cb/f1a89ce69287ed049d4b7d81a7618be9b689f9f0e51a6a8fa8e22102b01c/python_binary_memcached-0.31.3.tar.gz + +BuildArch: noarch +%description +A pure python module to access memcached via its binary protocol with SASL auth support. +The main purpose of this module it to be able to communicate with memcached using binary protocol +and support authentication, so it can work with Heroku for example. + +%package -n python3-binary-memcached +Summary: A pure python module to access memcached via its binary protocol with SASL auth support +Provides: python-binary-memcached + +BuildRequires: python3-m2r +# Base build requires +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pbr +BuildRequires: python3-pip +BuildRequires: python3-wheel +BuildRequires: python3-mistune + +Requires: python3-mistune +%description -n python3-binary-memcached +A pure python module to access memcached via its binary protocol with SASL auth support. +The main purpose of this module it to be able to communicate with memcached using binary protocol +and support authentication, so it can work with Heroku for example. + +%package help +Summary: A pure python module to access memcached via its binary protocol with SASL auth support +Provides: python3-binary-memcached-doc +%description help +A pure python module to access memcached via its binary protocol with SASL auth support. +The main purpose of this module it to be able to communicate with memcached using binary protocol +and support authentication, so it can work with Heroku for example. + +%prep +%autosetup -n python_binary_memcached-%{version} -p1 + +%build +%py3_build + +%install +%py3_install + +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +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 +fi +if [ -d usr/lib64 ]; then + 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 +fi +if [ -d usr/sbin ]; then + 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 +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-binary-memcached -f filelist.lst + +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri Jun 20 2025 liudy - 0.31.3-1 +- Update version to 0.31.3 + +* Fri Mar 22 2024 wangqiang - 0.31.2-1 +- Update package to version 0.31.2 + +* Sun Jul 24 2022 liksh - 0.31.1-1 +- upgrade to 0.31.1 for openstack yoga + +* Fri Jul 30 2021 chenyanpanHW - 0.30.1-2 +- DESC: delete -S git from %autosetup + +* Wed Jul 28 2021 OpenStack_SIG - 0.30.1-1 +- Package Spec generate