123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- %global pypi_name PySocks
- %global modname pysocks
- %global sum A Python SOCKS client module
- Summary: %{sum}
- Name: python-%{modname}
- Version: 1.7.1
- Release: 1%{?_dist_release}
- Group: programming
- Vendor: Project Vine
- Distribution: Vine Linux
- License: BSD
- URL: https://github.com/Anorov/%{pypi_name}
- Source0: https://files.pythonhosted.org/packages/source/P/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
- BuildArch: noarch
- BuildRequires: python-devel
- BuildRequires: python-setuptools
- BuildRequires: python-rpm-macros
- BuildRequires: python2-rpm-macros
- %{?python_provide:%python_provide python2-%{modname}}
- %global _description \
- A fork of SocksiPy with bug fixes and extra features.\
- \
- Acts as a drop-in replacement to the socket module. Featuring:\
- \
- - SOCKS proxy client for Python 2.6 - 3.x\
- - TCP and UDP both supported\
- - HTTP proxy client included but not supported or recommended (you should use\
- urllib2's or requests' own HTTP proxy interface)\
- - urllib2 handler included.
- %description
- %_description
- %package -n python3-%{modname}
- Summary: %{sum}
- Group: programming
- BuildRequires: python3-devel
- BuildRequires: python3-setuptools
- BuildRequires: python3-rpm-macros
- %{?python_provide:%python_provide python3-%{modname}}
- %description -n python3-%{modname}
- %_description
- This package is for Python3 version %{python3_version} only.
- %prep
- %autosetup -n %{pypi_name}-%{version}
- rm -rfv test/bin
- %build
- %py2_build
- %py3_build
- %install
- %py2_install
- %py3_install
- %check
- %files
- %doc README.md
- %license LICENSE
- %{python_sitelib}/socks.py*
- %{python_sitelib}/sockshandler.py*
- %{python_sitelib}/%{pypi_name}-%{version}*
- %files -n python3-%{modname}
- %doc README.md
- %license LICENSE
- %{python3_sitelib}/socks.py*
- %{python3_sitelib}/sockshandler.py*
- %{python3_sitelib}/__pycache__/*socks*
- %{python3_sitelib}/%{pypi_name}-%{version}-*
- %changelog
- * Sat Aug 15 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.7.1-1
- - new upstream release.
- * Wed Nov 28 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.6.8-7
- - initial build for Vine Linux.
- * Sun Nov 11 2018 Kevin Fenzi <kevin@scrye.com> - 1.6.8-6
- - Add upstream patch to avoid DeprecationWarning. Fixes bug
- * Wed Oct 03 2018 Raphael Groner <projects.rg@smart.ms> - 1.6.8-5
- - add python3_other subpackage for epel7
- - prepare removal of python2 subpackage in Fedora
- - use pypi macros
- - try to enable tests provided actually from tarball
- * Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.8-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
- * Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 1.6.8-3
- - Rebuilt for Python 3.7
- * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.8-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
- * Fri Dec 22 2017 Kevin Fenzi <kevin@scrye.com> - 1.6.8-1
- - Update to 1.6.8. Fixes bug
- * Mon Sep 11 2017 Carl George <carl@george.computer> - 1.6.7-1
- - Latest upstream
- - Add setuptools dependency
- * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.7-5
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
- * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.7-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
- * Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.5.7-3
- - Rebuild for Python 3.6
- * Mon Nov 28 2016 Tim Orling <ticotimo@gmail.com> - 1.5.7-2
- - Ship python34-pysocks in EL6
- * Sat Sep 17 2016 Kevin Fenzi <kevin@scrye.com> - 1.5.7-1
- - Update to 1.5.7
- * Fri Sep 16 2016 Orion Poplawski <orion@cora.nwra.com> - 1.5.6-6
- - Ship python34-pysocks in EPEL7
- * Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-5
- - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
- * Fri Jul 15 2016 Ralph Bean <rbean@redhat.com> - 1.5.6-4
- - Change our conflicts on python-SocksiPy to an obsoletes/provides.
- https://bugzilla.redhat.com/show_bug.cgi?id=1334407
- * Mon May 09 2016 Ralph Bean <rbean@redhat.com> - 1.5.6-3
- - Fix typo in explicit conflicts.
- * Tue May 03 2016 Ralph Bean <rbean@redhat.com> - 1.5.6-2
- - We don't actually need setuptools here.
- * Mon May 02 2016 Ralph Bean <rbean@redhat.com> - 1.5.6-1
- - Initial package for Fedora
|