]> git.phdru.name Git - m_lib_full.git/commitdiff
Evil PyPI forced to rename the subproject to `m_lib_full` master
authorOleg Broytman <phd@phdru.name>
Wed, 5 Nov 2025 15:44:36 +0000 (18:44 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 5 Nov 2025 15:53:35 +0000 (18:53 +0300)
...and `m_lib.defenc` to `m_lib_defenc`.

.gitignore
INSTALL.txt
README.txt
devscripts/release
mk-distr
requirements.txt
setup.py

index 9303ae43e27a466ea12f45087d4c0d40fd0f0cc7..aa687154304666610da73f353fa853c9cc721588 100644 (file)
@@ -1,6 +1,6 @@
 /.cache/
 /.tox/
-/m_lib.full.egg-info/
+/m_lib_full.egg-info/
 /build/
 /dist/
 /MANIFEST
index e07ff86dfad4815a11e006512a9af0dc2dedd8e0..cd7f16bbc704313c5034165a2ecf5e99d8f568d3 100644 (file)
@@ -1,4 +1,4 @@
-m_lib.full requires Python 2.7 or 3.4+.
+m_lib_full requires Python 2.7 or 3.4+.
 
 Installation script setup.py requires setuptools.
 
@@ -6,15 +6,15 @@ Installation using pip:
 
     System-wide:
 
-    sudo pip install m_lib.full
+    sudo pip install m_lib_full
 
     User mode:
 
-    pip install --user m_lib.full
+    pip install --user m_lib_full
 
     Virtual environments:
 
-    pip install m_lib.full
+    pip install m_lib_full
 
 Installation from sources:
 
@@ -28,6 +28,6 @@ Installation from sources:
 
     python setup.py install --user
 
-Option '--user' installs m_lib.full into
+Option '--user' installs m_lib_full into
 $HOME/.local/lib/python$MAJOR.$MINOR/site-packages/ where python finds it
 automatically.
index 5424f0669b4e5458fae6480d6e0e3d6f91bf4f6a..231a0cc3b93482dd9198ef7c4a60c28033eee015 100644 (file)
@@ -4,8 +4,8 @@ Copyright (C) 1996-2025 PhiloSoft Design.
 License: GPL.
 
 This a full namespace meta-package that installs all parts of m_lib library
-(currently m_lib and m_lib.defenc).
+(currently m_lib and m_lib_defenc).
 
 ::
 
-    pip install m_lib.full
+    pip install m_lib_full
index 23b27dcbc61132fa04aa91342b7cad6848ec783d..26be130a162d44206021d1a0476d491b9aa6f1f7 100755 (executable)
@@ -9,15 +9,8 @@ python setup.py build_py &&
 python setup.py build &&
 python setup.py sdist &&
 
-rv=$(python setup.py --version)
-if [ -f dist/m_lib.full-$rv.tar.gz ]; then
-    cd dist &&
-    mv m_lib.full-$rv.tar.gz m_lib_full-$rv.tar.gz &&
-    cd ..
-fi &&
-
 find build -name '*.py[co]' -delete &&
 python setup.py bdist_wheel --universal &&
 
 twine upload --disable-progress-bar --skip-existing dist/* &&
-exec rm -rf build dist m_lib.full.egg-info
+exec rm -rf build dist m_lib_full.egg-info
index 4dfc4b3d56a6ba579f2976c6daa0c3f926cdec4b..08eca416e5f3fa1b3dbec5055025f71d6ba06e9e 100755 (executable)
--- a/mk-distr
+++ b/mk-distr
@@ -2,9 +2,9 @@
 
 umask 022 &&
 
-git archive --format=tar --prefix=m_lib.full/ "${1:-HEAD}" |
+git archive --format=tar --prefix=m_lib_full/ "${1:-HEAD}" |
    (cd "$HOME/tmp" && exec tar xf -) &&
 
-cd "$HOME/tmp/m_lib.full" &&
+cd "$HOME/tmp/m_lib_full" &&
 python setup.py sdist --formats=bztar &&
-cd dist && mv m_lib.full-*.tar.bz2 ../.. && cd ../.. && exec rm -rf m_lib.full
+cd dist && mv m_lib_full-*.tar.bz2 ../.. && cd ../.. && exec rm -rf m_lib_full
index 252eb0a5c7ae0daef361b9c2c8d489879f9e5575..10f4a3ecc9af3f82302916c20ffa099a71371b33 100644 (file)
@@ -1,2 +1,2 @@
-m_lib >= 3.1.0.post2
-m_lib.defenc >= 1.1.0.post1
+m_lib >= 3.1.2
+m_lib_defenc >= 1.1.1
index 3a61ecd271f829508d55e9fa41397ef34641aca9..b815b1783508cc2389a57c7d6ba88840eed816af 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
 from setuptools import setup
 
 setup(
-    name = "m_lib.full",
+    name = "m_lib_full",
     version = "1.0.2",
     description = "m_lib full meta-package",
     long_description = "Broytman Library for Python, Copyright (C) 1996-2025 PhiloSoft Design",
@@ -13,8 +13,8 @@ setup(
     url = "https://phdru.name/Software/Python/#m_lib",
     project_urls={
         'Homepage': 'https://phdru.name/Software/Python/#m_lib',
-        'Download': 'https://pypi.org/project/m_lib.full/',
-        'Git repo': 'https://git.phdru.name/m_lib.full.git/',
+        'Download': 'https://pypi.org/project/m_lib_full/',
+        'Git repo': 'https://git.phdru.name/m_lib_full.git/',
     },
     license = "GPL",
     classifiers=[
@@ -43,5 +43,5 @@ setup(
     packages = ["m_lib"],
     namespace_packages = ["m_lib"],
     python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
-    install_requires=['m_lib>=3.1.0.post1', 'm_lib.defenc>=1.1'],
+    install_requires=['m_lib>=3.1.2', 'm_lib_defenc>=1.1.1'],
 )