diff --git a/programming/language/python/python-requests/actions.py b/programming/language/python/python-requests/actions.py
index 5daac7d9..0fcf9775 100755
--- a/programming/language/python/python-requests/actions.py
+++ b/programming/language/python/python-requests/actions.py
@@ -5,10 +5,9 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pythonmodules
-from pisi.actionsapi import pisitools
def build():
pythonmodules.compile()
def install():
- pythonmodules.install()
+ pythonmodules.install()
\ No newline at end of file
diff --git a/programming/language/python/python-requests/pspec.xml b/programming/language/python/python-requests/pspec.xml
index 0d43d95d..c30fc753 100755
--- a/programming/language/python/python-requests/pspec.xml
+++ b/programming/language/python/python-requests/pspec.xml
@@ -9,17 +9,16 @@
ergunsalman@hotmail.comprogramming.language.python
+ MIT
+ libraryRequests is an Apache2 Licensed HTTP library, written in Python, for human beings.Python’s standard urllib2 module provides most of the HTTP capabilities you need
- MIT
- https://files.pythonhosted.org/packages/01/62/ddcf76d1d19885e8579acb1b1df26a852b03472c0e46d2b959a714c90608/requests-2.22.0.tar.gz
+ https://github.com/psf/requests/archive/v2.23.0.tar.gz
- python-develpython-setuptools
+ python-devel
-
-
certs.patch
@@ -33,12 +32,19 @@
python-idna
- /usr/lib/usr/share/doc
+ /usr/lib
+
+ 2020-02-21
+ 2.23.0
+ Version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+ 2020-01-232.22.0
diff --git a/programming/language/python/python-requests/translations.xml b/programming/language/python/python-requests/translations.xml
new file mode 100755
index 00000000..5f500b71
--- /dev/null
+++ b/programming/language/python/python-requests/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ python-requests
+ Requests insanlar için yapılmış basit bir HTTP kitaplığıdır.
+ Requests HTTP/1.1 isteklerini çok basit bir şekilde göndermenize olanak tanıyan bir python kitaplığıdır.
+
+
\ No newline at end of file
diff --git a/programming/language/python3/python3-setuptools/actions.py b/programming/language/python3/python3-setuptools/actions.py
index 12fb89d8..08a6068e 100644
--- a/programming/language/python3/python3-setuptools/actions.py
+++ b/programming/language/python3/python3-setuptools/actions.py
@@ -4,9 +4,9 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pythonmodules
+from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
-from pisi.actionsapi import shelltools
WorkDir="setuptools-%s" % get.srcVERSION()
@@ -16,7 +16,6 @@ def install():
pythonmodules.run("bootstrap.py", pyVer="3")
pythonmodules.install(pyVer = "3")
- pisitools.rename("/usr/bin/easy_install", "py3easy-install")
#avoid python-setuptools conflict
#pisitools.removeDir("/usr/share")
\ No newline at end of file
diff --git a/programming/language/python3/python3-setuptools/pspec.xml b/programming/language/python3/python3-setuptools/pspec.xml
index d2813627..d17d2dfc 100644
--- a/programming/language/python3/python3-setuptools/pspec.xml
+++ b/programming/language/python3/python3-setuptools/pspec.xml
@@ -8,11 +8,12 @@
PisiLinux Communityadmins@pisilinux.org
+ programming.language.python3PSF-2.2libraryPython setuptoolspython-setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages.
- https://github.com/pypa/setuptools/archive/v45.1.0.tar.gz
+ https://github.com/pypa/setuptools/archive/v45.2.0.tar.gzpython3-devel
@@ -34,6 +35,13 @@
+
+ 2020-02-21
+ 45.2.0
+ Version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+ 2020-01-2945.1.0
diff --git a/programming/language/python3/python3-setuptools/translations.xml b/programming/language/python3/python3-setuptools/translations.xml
index 9443a8a4..9013d4c3 100644
--- a/programming/language/python3/python3-setuptools/translations.xml
+++ b/programming/language/python3/python3-setuptools/translations.xml
@@ -3,6 +3,6 @@
python3-setuptoolsPython kurulum araçları
- python-setuptools, Python distutils'e yapılan, özellikle başka paketlere bağımlılığı olan Python paketlerini daha kolay oluşturmaya ve dağıtmaya yarayan iyileştirmeler koleksiyonudur.
+ python3-setuptools, Python distutils'e yapılan, özellikle başka paketlere bağımlılığı olan Python paketlerini daha kolay oluşturmaya ve dağıtmaya yarayan iyileştirmeler koleksiyonudur.
\ No newline at end of file
diff --git a/system/base/python-psutil/actions.py b/system/base/python-psutil/actions.py
index 46897e82..00e68f6b 100644
--- a/system/base/python-psutil/actions.py
+++ b/system/base/python-psutil/actions.py
@@ -5,12 +5,15 @@
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import pythonmodules
+from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
def build():
+ # suppress compiler warnings
+ pisitools.cflags.add("-Wno-stringop-truncation")
+ # fix unused direct dependency analysis
+ shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lbz2 -lpthread -ldl")
pythonmodules.compile()
def install():
- pythonmodules.install()
-
- pisitools.dodoc("LICENSE", "README.rst", "INSTALL.rst")
+ pythonmodules.install()
\ No newline at end of file
diff --git a/system/base/python-psutil/pspec.xml b/system/base/python-psutil/pspec.xml
index 4fa24cc5..aa6faa85 100644
--- a/system/base/python-psutil/pspec.xml
+++ b/system/base/python-psutil/pspec.xml
@@ -1,5 +1,5 @@
-
+
python-psutil
@@ -8,11 +8,12 @@
PisiLinux Communityadmins@pisilinux.org
+ programming.language.python3BSDlibraryA cross-platform process utilities module for Pythonpython-psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by command line tools like ps, top, kill, lsof and netstat.
- https://github.com/giampaolo/psutil/archive/release-5.6.7.tar.gz
+ https://github.com/giampaolo/psutil/archive/release-5.7.0.tar.gzpython-devel
@@ -20,6 +21,7 @@
python-psutil
+ A cross-platform process utilities module for Pythonpython
@@ -30,6 +32,13 @@
+
+ 2020-02-21
+ 5.7.0
+ Version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+ 2020-01-155.6.7
@@ -66,4 +75,4 @@
ertugrulerata@gmail.com
-
+
\ No newline at end of file
diff --git a/system/base/python-psutil/translations.xml b/system/base/python-psutil/translations.xml
index 95d95c82..31cad566 100644
--- a/system/base/python-psutil/translations.xml
+++ b/system/base/python-psutil/translations.xml
@@ -5,4 +5,4 @@
Platform bağımsız, süreçler hakkında bilgi sağlayan bir Python modülüpython-psutil, bütün çalışan süreçler ve sistem kullanımı (MİB - Merkezi İşlem Birim(CPU) ve hafıza gibi) hakkında bilgilere erişimek için arayüz sunan bir Python modülüdür. ps, top, kill, lsof, netstat gibi bir çok komut satırı araçlarının sunduğu işlevselliği sağlamaktadır.
-
+
\ No newline at end of file
diff --git a/system/devel/python-setuptools/actions.py b/system/devel/python-setuptools/actions.py
index 5cbc2e15..bccd13a1 100644
--- a/system/devel/python-setuptools/actions.py
+++ b/system/devel/python-setuptools/actions.py
@@ -15,4 +15,5 @@ def build():
def install():
pythonmodules.install()
- pisitools.remove("/usr/lib/%s/site-packages/setuptools/*.exe" % get.curPYTHON())
+ pisitools.rename("/usr/bin/easy_install", "py2easy-install")
+ pisitools.remove("/usr/lib/%s/site-packages/setuptools/*.exe" % get.curPYTHON())
\ No newline at end of file
diff --git a/system/devel/python-setuptools/pspec.xml b/system/devel/python-setuptools/pspec.xml
index 5a85d8c3..53217539 100644
--- a/system/devel/python-setuptools/pspec.xml
+++ b/system/devel/python-setuptools/pspec.xml
@@ -1,5 +1,5 @@
-
+
python-setuptools
@@ -12,19 +12,28 @@
libraryPython setuptoolspython-setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages.
- https://github.com/pypa/setuptools/archive/v42.0.2.tar.gz
+ https://github.com/pypa/setuptools/archive/v45.2.0.tar.gzpython-setuptools
+ Python setuptools
- /usr/bin
+ /usr/bin/py2easy-install
+ /usr/bin/easy_install-2.7/usr/lib/python*/usr/share/doc
+
+ 2020-02-21
+ 45.2.0
+ Version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+ 2019-12-1042.0.2
@@ -68,4 +77,4 @@
ertugrulerata@gmail.com
-
+
\ No newline at end of file
diff --git a/system/devel/python-setuptools/translations.xml b/system/devel/python-setuptools/translations.xml
index c6ed4100..c9da1bf9 100644
--- a/system/devel/python-setuptools/translations.xml
+++ b/system/devel/python-setuptools/translations.xml
@@ -5,4 +5,4 @@
Python kurulum araçlarıpython-setuptools, Python distutils'e yapılan, özellikle başka paketlere bağımlılığı olan Python paketlerini daha kolay oluşturmaya ve dağıtmaya yarayan iyileştirmeler koleksiyonudur.
-
+
\ No newline at end of file