]> kaliko git repositories - mpd-sima.git/commitdiff
Remove vinstall.py
authorkaliko <kaliko@azylum.org>
Fri, 9 Feb 2024 16:00:08 +0000 (17:00 +0100)
committerkaliko <kaliko@azylum.org>
Fri, 9 Feb 2024 16:05:06 +0000 (17:05 +0100)
.gitlab-ci.yml
INSTALL [deleted file]
MANIFEST.in
doc/Changelog
doc/source/user/00_install.rst
vinstall.py [deleted file]

index fde280f64201aa9d061443ba756bacdc0250137f..ad63ee2b930e8adb55be3d3727d41d721c203e19 100644 (file)
@@ -58,16 +58,6 @@ unittests:
     reports:
       junit: report.xml
 
-vinstall:
-  stage: test
-  script:
-  # test virtualenv install
-  - python3 ./vinstall.py
-  # smoke test
-  - ./vmpd-sima --help
-  artifacts:
-    expire_in: 1 hour
-
 tag_release:
   stage: build
   dependencies:
diff --git a/INSTALL b/INSTALL
deleted file mode 100644 (file)
index bdd3f84..0000000
--- a/INSTALL
+++ /dev/null
@@ -1,24 +0,0 @@
-Designed for python3 >= 3.6
-
-Requires: python-musicpd [0],
-          requests [1]
-
-       [0] https://pypi.org/project/python-musicpd/
-       [1] http://docs.python-requests.org/
-
-
-Virtualenv installation from source:
-
-       Run "python3 ./vinstall.py" from the source to generate the python virtualenv and install
-       requirements.
-
-       It will setup a virtualenv within a "venv" directory (same level as vinstall.py file).
-       It should also write a shell wrapper to run mpd-sima within the virtualenv.
-
-               ./vmpd-sima --help
-
-Virtualenv installation with pip:
-
-       python3 -m venv mpd-sima
-       ./mpd-sima/bin/pip install MPD-sima
-       ./mpd-sima/bin/mpd-sima --help
index 7f4b5f8ad0fab46e4a476aeceb7628b29db37895..bb94c01c9871c607d89bb42073085ad55613b585 100644 (file)
@@ -2,4 +2,3 @@ recursive-include data *
 recursive-include doc *
 include README
 include INSTALL
-include vinstall.py
index 8bba3b166b1396affb35ecf2b5c14191ee6a02a4..7b9cf8bff8a264a84fdb3fbac1b64686d3c6a0f4 100644 (file)
@@ -1,3 +1,9 @@
+MPD_sima v0.19.0
+
+  * Remove vinstall.py
+
+  -- kaliko <kaliko@azylum.org>
+
 MPD_sima v0.18.2
 
   * Add positional argument:
index 703b8dba1acc7f6baabe0297de679f39d68d85c6..202f1a68bcfc7da6368f3a3d789695062b82a6b2 100644 (file)
@@ -21,37 +21,4 @@ Python virtualenv
     # Print help message
     mpd-sima --help
 
-From Source
------------
-
-Virtualenv installation from source:
-
-Run ``python ./vinstall.py`` from the source to generate the python virtualenv and install requirements.
-
-It will setup a virtualenv within a "venv" directory (same level as vinstall.py file). It should also write a shell wrapper to run mpd-sima within the virtualenv.
-
-
-.. code:: bash
-
-    # Clone master branch
-    git clone -b master git@gitlab.com:kaliko/sima.git
-    # setup virtualenv
-    python ./vinstall.py
-    ./vmpd-sima --help
-
-To restart from scratch or pull latest changes
-
-.. code:: bash
-
-    # Get into the local git repo (here sima directory)
-    cd sima
-    # Remove virtualenv
-    rm -rf ./venv
-    # Fetch and merge latest changes
-    git pull
-    # setup virtualenv
-    python ./vinstall.py
-    ./vmpd-sima --help
-
-
 .. vim: spell spelllang=en
diff --git a/vinstall.py b/vinstall.py
deleted file mode 100755 (executable)
index afbb0e3..0000000
+++ /dev/null
@@ -1,118 +0,0 @@
-#!/usr/bin/env python3
-# Copyright (C) 2013 Vinay Sajip. New BSD License.
-# Copyright (C) 2014, 2021 kaliko <kaliko@azylum.org>
-#
-
-REQ_VER = (3,6)
-import sys
-if sys.version_info < REQ_VER:
-    print('Need at least python {0}.{1} to run this script'.format(*REQ_VER), file=sys.stderr)
-    sys.exit(1)
-
-import os
-import os.path
-import venv
-
-from subprocess import Popen, PIPE
-from threading import Thread
-from urllib.parse import urlparse
-from urllib.request import urlretrieve
-from shutil import rmtree
-
-class ExtendedEnvBuilder(venv.EnvBuilder):
-    """
-    This builder installs setuptools and pip so that you can pip or
-    easy_install other packages into the created environment.
-    """
-
-    def __init__(self, *args, **kwargs):
-        self.verbose = kwargs.pop('verbose', False)
-        super().__init__(*args, **kwargs)
-
-    def post_setup(self, context):
-        """
-        Set up any packages which need to be pre-installed into the
-        environment being created.
-
-        :param context: The information for the environment creation request
-                        being processed.
-        """
-        os.environ['VIRTUAL_ENV'] = context.env_dir
-        setup = os.path.abspath(os.path.join(context.env_dir, '../setup.py'))
-        self.install_script(context, 'sima', setup=setup)
-
-    def reader(self, stream, context):
-        """
-        Read lines from a subprocess' output stream and write progress
-        information to sys.stderr.
-        """
-        while True:
-            s = stream.readline()
-            if not s:
-                break
-            if not self.verbose:
-                sys.stderr.write('.')
-            else:
-                sys.stderr.write(s.decode('utf-8'))
-            sys.stderr.flush()
-        stream.close()
-
-    def install_script(self, context, name, url=None, setup=None):
-        if url:
-            binpath = context.bin_path
-            _, _, path, _, _, _ = urlparse(url)
-            fn = os.path.split(path)[-1]
-            distpath = os.path.join(binpath, fn)
-            # Download script into the env's binaries folder
-            urlretrieve(url, distpath)
-        if url:
-            args = [context.env_exe, fn]
-        else:
-            args = [context.env_exe, setup, 'install']
-            binpath = os.path.dirname(setup)
-        if self.verbose:
-            term = '\n'
-        else:
-            term = ''
-        sys.stderr.write('Installing %s ...%s' % (name, term))
-        sys.stderr.flush()
-        # Install in the env
-        p = Popen(args, stdout=PIPE, stderr=PIPE, cwd=binpath)
-        t1 = Thread(target=self.reader, args=(p.stdout, 'stdout'))
-        t1.start()
-        t2 = Thread(target=self.reader, args=(p.stderr, 'stderr'))
-        t2.start()
-        p.wait()
-        t1.join()
-        t2.join()
-        sys.stderr.write('done.\n')
-        if url:
-            # Clean up - no longer needed
-            os.unlink(distpath)
-
-
-def main():
-    root = os.path.dirname(os.path.abspath(__file__))
-    vdir = os.path.join(root, 'venv')
-    builder = ExtendedEnvBuilder(clear=True, verbose=False, with_pip=True)
-    builder.create(vdir)
-    # clean up
-    for residu in ['MPD_sima.egg-info', 'dist', 'build']:
-        if os.path.exists(os.path.join(root, residu)):
-            rmtree(os.path.join(root, residu))
-    # Write wrapper
-    with open(os.path.join(root, 'vmpd-sima'),'w') as fd:
-        fd.write('#!/bin/sh\n')
-        fd.write(f'. "{root}/venv/bin/activate"\n')
-        fd.write(f'"{root}/venv/bin/mpd-sima" "$@"')
-    os.chmod(os.path.join(root, 'vmpd-sima'), 0o744)
-
-
-if __name__ == '__main__':
-    rc = 1
-    try:
-        main()
-        rc = 0
-    except ImportError as e:
-        print(f'Error: {e}')
-    sys.exit(rc)