pvectorcmodule.c: In function ‘nodeFor’:
pvectorcmodule.c:152:21: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  152 |   if((i >= 0) && (i < self->count)) {
      |                     ^
pvectorcmodule.c:153:10: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  153 |     if(i >= TAIL_OFF(self)) {
      |          ^~
pvectorcmodule.c: In function ‘PVector_toList’:
pvectorcmodule.c:247:17: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  247 |   for (i = 0; i < self->count; ++i) {
      |                 ^
pvectorcmodule.c: In function ‘PVector_hash’:
pvectorcmodule.c:281:13: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  281 |   for(i=0; i<self->count; i++) {
      |             ^
pvectorcmodule.c: In function ‘PVector_repeat’:
pvectorcmodule.c:414:44: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘Py_ssize_t’ {aka ‘int’} [-Wsign-compare]
  414 |   } else if ((self->count * n)/self->count != n) {
      |                                            ^~
pvectorcmodule.c:420:17: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  420 |       for(j=0; j<self->count; j++) {
      |                 ^
pvectorcmodule.c: In function ‘PVector_index’:
pvectorcmodule.c:464:33: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  464 |   for (i = start; i < stop && i < self->count; i++) {
      |                                 ^
pvectorcmodule.c: In function ‘PVector_count’:
pvectorcmodule.c:481:17: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  481 |   for (i = 0; i < self->count; i++) {
      |                 ^
pvectorcmodule.c: In function ‘extendWithItem’:
pvectorcmodule.c:145:52: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare]
  145 | #define ROOT_NODE_FULL(vec) ((vec->count >> SHIFT) > (Py_ssize_t)(1 << vec->shift))
      |                                                    ^
pvectorcmodule.c:753:8: note: in expansion of macro ‘ROOT_NODE_FULL’
  753 |     if(ROOT_NODE_FULL(newVec)) {
      |        ^~~~~~~~~~~~~~
pvectorcmodule.c: In function ‘PVector_subscript’:
pvectorcmodule.c:799:28: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  799 |     } else if((slicelength == self->count) && (step > 0)) {
      |                            ^~
pvectorcmodule.c: In function ‘PVector_append’:
pvectorcmodule.c:145:52: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare]
  145 | #define ROOT_NODE_FULL(vec) ((vec->count >> SHIFT) > (Py_ssize_t)(1 << vec->shift))
      |                                                    ^
pvectorcmodule.c:898:6: note: in expansion of macro ‘ROOT_NODE_FULL’
  898 |   if(ROOT_NODE_FULL(self)) {
      |      ^~~~~~~~~~~~~~
pvectorcmodule.c: In function ‘internalSet’:
pvectorcmodule.c:942:35: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  942 |   if((0 <= position) && (position < self->count)) {
      |                                   ^
pvectorcmodule.c:943:17: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  943 |     if(position >= TAIL_OFF(self)) {
      |                 ^~
pvectorcmodule.c:961:23: warning: comparison of integer expressions of different signedness: ‘Py_ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Wsign-compare]
  961 |   } else if (position == self->count) {
      |                       ^~
pvectorcmodule.c: In funcgcc -pthread -shared build/temp.linux-i686-3.9/pvectorcmodule.o -L/usr/lib -o build/lib.linux-i686-3.9/pvectorc.cpython-39-i386-linux-gnu.so
running install_lib
creating /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr
creating /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib
creating /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9
creating /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages
copying build/lib.linux-i686-3.9/_pyrsistent_version.py -> /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages
creating /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent
copying build/lib.linux-i686-3.9/pyrsistent/__init__.py -> /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent
copying build/lib.linux-i686-3.9/pyrsistent/_checked_types.py -> /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent
copying build/lib.linux-i686-3.9/pyrsistent/_field_common.py -> /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent
copying build/lib.linux-i686-3.9/pyrsistent/_helpers.py -> /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent
copying build/lib.linux-i686-3.9/pyrsistent/_immutable.py -> /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent
copying build/lib.linux-i686-3.9/pyrsistent/_pbag.py -> /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent
copying build/lib.linux-i686-3.9/pyrsistent/_pclass.py -> /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent
copying build/lib.linux-i686-3.9/pyrsistent/_pdeque.py -> /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent
copying build/lib.linux-i686-3.9/pyrsistent/_plist.py -> /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent
copying build/lib.linux-i686-3.9/pyrsistent/_pmap.py -> /usr/src/slapt-src/python/python3-pyrsistelisting git files failed - pretending there aren't any
./
install/
install/slack-desc
usr/
usr/doc/
usr/doc/python3-pyrsistent-0.18.1/
usr/doc/python3-pyrsistent-0.18.1/CHANGES.txt
usr/doc/python3-pyrsistent-0.18.1/LICENSE.mit
usr/doc/python3-pyrsistent-0.18.1/README
usr/doc/python3-pyrsistent-0.18.1/README.rst
usr/doc/python3-pyrsistent-0.18.1/python3-pyrsistent.SlackBuild
usr/lib/
usr/lib/python3.9/
usr/lib/python3.9/site-packages/
usr/lib/python3.9/site-packages/__pycache__/
usr/lib/python3.9/site-packages/__pycache__/_pyrsistent_version.cpython-39.pyc
usr/lib/python3.9/site-packages/_pyrsistent_version.py
usr/lib/python3.9/site-packages/pvectorc.cpython-39-i386-linux-gnu.so
usr/lib/python3.9/site-packages/pyrsistent/
usr/lib/python3.9/site-packages/pyrsistent-0.18.1-py3.9.egg-info/
usr/lib/python3.9/site-packages/pyrsistent-0.18.1-py3.9.egg-info/PKG-INFO
usr/lib/python3.9/site-packages/pyrsistent-0.18.1-py3.9.egg-info/SOURCES.txt
usr/lib/python3.9/site-packages/pyrsistent-0.18.1-py3.9.egg-info/dependency_links.txt
usr/lib/python3.9/site-packages/pyrsistent-0.18.1-py3.9.egg-info/top_level.txt
usr/lib/python3.9/site-packages/pyrsistent/__init__.py
usr/lib/python3.9/site-packages/pyrsistent/__init__.pyi
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/__init__.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_checked_types.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_field_common.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_helpers.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_immutable.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_pbag.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_pclass.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_pdeque.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_plist.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_pmap.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_precord.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_pset.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_pvector.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_toolz.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/_transformations.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/__pycache__/typing.cpython-39.pyc
usr/lib/python3.9/site-packages/pyrsistent/_checked_types.py
usr/lib/python3.9/site-packages/pyrsistent/_field_common.py
usr/lib/python3.9/site-packages/pyrsistent/_helpers.py
usr/lib/python3.9/site-packages/pyrsistent/_immutable.py
usr/lib/python3.9/site-packages/pyrsistent/_pbag.py
usr/lib/python3.9/site-packages/pyrsistent/_pclass.py
usr/lib/python3.9/site-packages/pyrsistent/_pdeque.py
usr/lib/python3.9/site-packages/pyrsistent/_plist.py
usr/lib/python3.9/site-packages/pyrsistent/_pmap.py
usr/lib/python3.9/site-packages/pyrsistent/_precord.py
usr/lib/python3.9/site-packages/pyrsistent/_pset.py
usr/lib/python3.9/site-packages/pyrsistent/_pvector.py
usr/lib/python3.9/site-packages/pyrsistent/_toolz.py
usr/lib/python3.9/site-packages/pyrsistent/_transformations.py
usr/lib/python3.9/site-packages/pyrsistent/py.typed
usr/lib/python3.9/site-packages/pyrsistent/typing.py
usr/lib/python3.9/site-packages/pyrsistent/typing.pyi
yrsistent/_plist.py to _plist.cpython-39.pyc
byte-compiling /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent/_pmap.py to _pmap.cpython-39.pyc
byte-compiling /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent/_precord.py to _precord.cpython-39.pyc
byte-compiling /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent/_pset.py to _pset.cpython-39.pyc
byte-compiling /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent/_pvector.py to _pvector.cpython-39.pyc
byte-compiling /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent/_toolz.py to _toolz.cpython-39.pyc
byte-compiling /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent/_transformations.py to _transformations.cpython-39.pyc
byte-compiling /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent/typing.py to typing.cpython-39.pyc
running install_egg_info
running egg_info
writing pyrsistent.egg-info/PKG-INFO
writing dependency_links to pyrsistent.egg-info/dependency_links.txt
writing top-level names to pyrsistent.egg-info/top_level.txt
reading manifest file 'pyrsistent.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE.mit'
writing manifest file 'pyrsistent.egg-info/SOURCES.txt'
Copying pyrsistent.egg-info to /usr/src/slapt-src/python/python3-pyrsistent/package-python3-pyrsistent/usr/lib/python3.9/site-packages/pyrsistent-0.18.1-py3.9.egg-info
running install_scripts

Slackware package maker, version 3.14159265.

Searching for symbolic links:

No symbolic links were found, so we won't make an installation script.
You can make your own later in ./install/doinst.sh and rebuild the
package if you like.

This next step is optional - you can set the directories in your package
to some sane permissions. If any of the directories in your package have
special permissions, then DO NOT reset them here!

Would you like to reset all directory permissions to 755 (drwxr-xr-x) and
directory ownerships to root.root ([y]es, [n]o)? n

Creating Slackware package:  /usr/src/slapt-src/python/python3-pyrsistent/python3-pyrsistent-0.18.1-i586-1salix15.0.txz

WARNING:  zero length file usr/lib/python3.9/site-packages/pyrsistent/py.typed

Slackware package /usr/src/slapt-src/python/python3-pyrsistent/python3-pyrsistent-0.18.1-i586-1salix15.0.txz created.

Installing package python3-pyrsistent-0.18.1-i586-1salix15.0...
| python3-pyrsistent (persistent collections for Python)
| 
| Pyrsistent is a number of persistent collections (by some referred to
| as functional data structures). Persistent in the sense that they are
| immutable.
| 
| 
| 
| 
| 
| 
| 
|