]> git.phdru.name Git - cookiecutter.git/commitdiff
Add script `add-remote` master
authorOleg Broytman <phd@phdru.name>
Tue, 28 Jan 2025 11:32:46 +0000 (14:32 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 28 Jan 2025 11:32:46 +0000 (14:32 +0300)
21 files changed:
add-remote [new file with mode: 0755]
admin2prog [new file with mode: 0755]
clone2current
mk-project
move-project
project_template/.github/workflows/test-publish.yaml [new file with mode: 0644]
project_template/.gitignore
project_template/.travis.yml [deleted file]
project_template/ChangeLog
project_template/README.rst
project_template/appveyor.yml [deleted file]
project_template/devscripts/requirements/requirements.txt
project_template/devscripts/requirements/requirements_docs.txt
project_template/devscripts/requirements/requirements_tests.txt
project_template/devscripts/requirements/requirements_tox.txt
project_template/devscripts/run_with_env.cmd [moved from project_template/run_with_env.cmd with 100% similarity]
project_template/docs/install.rst
project_template/docs/news.rst
project_template/setup.py
project_template/tox.ini
publish2web

diff --git a/add-remote b/add-remote
new file mode 100755 (executable)
index 0000000..c6f96e2
--- /dev/null
@@ -0,0 +1,10 @@
+#! /bin/sh
+
+if [ -z "$1" -o -z "$2" ]; then
+    echo "Usage: $0 remote_name URL " >&2
+    echo "Example: $0 gh https://github.com/phdru/cookiecutter.git"
+    exit 1
+fi
+
+git remote add "$1" "$2" &&
+exec git config --add update-remotes.remotes "$1"
diff --git a/admin2prog b/admin2prog
new file mode 100755 (executable)
index 0000000..2e7dba1
--- /dev/null
@@ -0,0 +1,27 @@
+#! /bin/sh
+
+if [ $# -ne 1 ]; then
+   echo "Usage: $0 project_name" >&2
+   exit 1
+fi
+
+project_name="$1"
+old_dir="$HOME/admin/prog/$1"
+new_dir="$HOME/prog/Python/$1"
+
+fix_path() {
+   config_option="$1"
+   path="`git config --get $config_option`"
+   new_path="`echo \"$path\" | sed \"s@$old_dir@$new_dir@\"`"
+   git config "$config_option" "$new_path"
+}
+
+mv "$old_dir" "$new_dir" &&
+
+for project_dir in "$new_dir" "$HOME"/current/projects/"$project_name" \
+      "$HOME"/Internet/WWW/htdocs/git.phdru.name/"$project_name".git; do
+   cd "$project_dir" &&
+   for remote in `git remote`; do
+      fix_path "remote.$remote.url"
+   done
+done
index a769ad064fcc22d8cb21a8ea4afcab315c0e36d0..8ffff7cab183afd48e72c724816e363ed3ed5f24 100755 (executable)
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 if [ ! -d ".git" -a -z "$1" ]; then
-   echo "Usage: $0 repoistory [directories]" >&2
+   echo "Usage: $0 repository [directories]" >&2
    exit 1
 fi
 
@@ -11,7 +11,7 @@ fi &&
 source_dir="`pwd`" &&
 
 if [ ! -d ".git" ]; then
-   echo "$source_dir is not a repoistory (.git isn't found)" >&2
+   echo "$source_dir is not a repository (.git isn't found)" >&2
    exit 1
 fi &&
 
@@ -33,9 +33,18 @@ then
 else
    cp -p "$source_dir"/.git/description .git
 fi &&
+"$HOME"/prog/git-scripts/set-commit-date-recursive &&
+
+echo /publish-docs >>.git/info/exclude &&
+echo /update-remotes >>.git/info/exclude &&
+git config update-remotes.files publish-docs &&
+cp -p "$HOME"/current/projects/m_lib/update-remotes . &&
 
 cd "$source_dir" &&
 if [ -n "$directories" ]; then
    dest_dir="$directories/$dest_dir"
 fi &&
-exec git remote add current "$HOME"/current/projects/"$dest_dir"
+{
+    git remote add current "$HOME"/current/projects/"$dest_dir" ||
+    exec git remote set-url current "$HOME"/current/projects/"$dest_dir"
+}
index 4674ef0c67d40ab65612eff12d08965bc813203a..3e6921ee9336f0fbe729bc6684061a464d89aeba 100755 (executable)
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-if [ -z "$1" -o -n "$2" ]; then
+if [ $# -ne 1 ]; then
    echo "Usage: $0 project_name" >&2
    exit 1
 fi
@@ -14,7 +14,7 @@ cp -ap project_template "$HOME/tmp/$project_name" &&
 cd "$HOME/tmp/$project_name" &&
 mv project "$project_name" &&
 
-sed -i /'{project}'/"$project_name"/g .gitignore README.rst \
+sed -i s/'{project}'/"$project_name"/g .gitignore README.rst \
    devscripts/README.html  docs/genapidocs docs/install.rst \
    mk-distr publish-docs setup.py tox.ini &&
 
@@ -28,5 +28,6 @@ echo /update-remotes >>.git/info/exclude &&
 git add . &&
 git commit --message "Initial commit - created the project" &&
 git config htdocs.path "$HOME"/Internet/WWW/htdocs/phdru.name/Software/Python/"$project_name"/docs &&
+git config update-remotes.files publish-docs &&
 cp -p "$HOME"/current/projects/m_lib/update-remotes . &&
 exec devscripts/mk-git-aliases
index 72f747570a02b446c9d0a5649a84a56167d8615d..d932b07f7da03dfa1f5ba7b55d8ab18518bcc8f8 100755 (executable)
@@ -1,27 +1,60 @@
 #! /bin/sh
 
-if [ -z "$1" -o -n "$2" ]; then
-   echo "Usage: $0 project_name" >&2
-   exit 1
+if [ $# -ne 2 ]; then
+    echo "Usage: $0 project_name dir" >&2
+    exit 1
 fi
 
 project_name="$1"
-old_dir="$HOME/admin/prog/$1"
-new_dir="$HOME/prog/Python/$1"
+dir="$2"
+
+if [ "$project_name" = "$dir" ]; then
+    echo "Error: The script $0 cannot yet move a project into a subdirectory of the same name" >&2
+    exit 1
+fi
 
 fix_path() {
-   config_option="$1"
-   path="`git config --get $config_option`"
-   new_path="`echo \"$path\" | sed \"s@$old_dir@$new_dir@\"`"
-   git config "$config_option" "$new_path"
+    config_option="$1"
+    path="`git config --get $config_option`"
+    new_path="`echo \"$path\" | sed \"s@$project_name@$dir/$project_name@\"`"
+    git config "$config_option" "$new_path"
 }
 
-mv "$old_dir" "$new_dir" &&
+for project_dir in "$HOME"/current/projects "$HOME"/prog/Python \
+        "$HOME"/Internet/WWW/htdocs/git.phdru.name; do
+    if [ "$project_dir" = "$HOME"/Internet/WWW/htdocs/git.phdru.name ]; then
+        pname="$project_name".git
+    else
+        pname="$project_name"
+    fi
+
+    if [ ! -d "$project_dir/$pname" ]; then
+        echo "Error: $project_dir/$pname does not exist" >&2
+        exit 1
+    fi
+
+    if [ -d "$project_dir/$dir" ]; then
+        echo "Error: $project_dir/$dir already exists" >&2
+        exit 1
+    fi
+done
+
+for project_dir in "$HOME"/current/projects "$HOME"/prog/Python \
+        "$HOME"/Internet/WWW/htdocs/git.phdru.name; do
+    if [ "$project_dir" = "$HOME"/Internet/WWW/htdocs/git.phdru.name ]; then
+        pname="$project_name".git
+    else
+        pname="$project_name"
+    fi
 
-for project_dir in "$new_dir" "$HOME"/current/projects/"$project_name" \
-      "$HOME"/Internet/WWW/htdocs/git.phdru.name/"$project_name".git; do
-   cd "$project_dir" &&
-   for remote in `git remote`; do
-      fix_path "remote.$remote.url"
-   done
+    cd "$project_dir" &&
+    mkdir -p "$dir" &&
+    if [ "$project_dir" = "$HOME"/Internet/WWW/htdocs/git.phdru.name ]; then
+        chmod u=rwX,go=rX "$dir"
+    fi &&
+    mv "$pname" "$dir" &&
+    cd "$dir/$pname" &&
+    for remote in `git remote`; do
+        fix_path "remote.$remote.url"
+    done
 done
diff --git a/project_template/.github/workflows/test-publish.yaml b/project_template/.github/workflows/test-publish.yaml
new file mode 100644 (file)
index 0000000..2772576
--- /dev/null
@@ -0,0 +1,146 @@
+name: Test, build, publish
+
+# Run tests (all branches),
+# for tags build wheels, publish wheels to PyPI and Github Releases.
+
+on: [push, pull_request]
+
+jobs:
+  run-tests:
+    env:
+      not_in_conda: "[]"
+
+    strategy:
+      matrix:
+        os: [ubuntu-latest, macos-latest, windows-latest]
+        python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "=3.9[build=*_pypy]"]
+        exclude:
+        - os: windows-latest
+          python-version: "2.7"
+        - os: macos-latest
+          python-version: "2.7"
+        - os: macos-latest
+          python-version: "3.5"
+        - os: macos-latest
+          python-version: "3.6"
+        - os: macos-latest
+          python-version: "3.7"
+        - os: macos-latest
+          python-version: "=3.9[build=*_pypy]"
+        - os: windows-latest
+          python-version: "=3.9[build=*_pypy]"
+        include:
+        - os: ubuntu-latest
+          os-name: Linux
+          pip-cache-path: ~/.cache/pip
+        - os: macos-latest
+          os-name: MacOS
+          pip-cache-path: ~/Library/Caches/pip
+        - os: windows-latest
+          os-name: w32
+          pip-cache-path: ~\AppData\Local\pip\Cache
+
+    name: Python ${{ matrix.python-version }} @ ${{ matrix.os-name }}
+    runs-on: ${{ matrix.os }}
+
+    steps:
+      # Setup Python/pip
+      - uses: actions/checkout@v4
+      - uses: conda-incubator/setup-miniconda@v3
+        with:
+          miniforge-version: latest
+          python-version: ${{ matrix.python-version }}
+        if: ${{ !contains(fromJSON(env.not_in_conda), matrix.python-version) }}
+      # Python 3.7 is needed for ghactions-release script
+      - name: Install additional Python 3.7
+        run: |
+          conda create -n py37 --yes python=3.7
+          py37_prefix="`echo $CONDA_PREFIX | sed 's/__setup_conda/py37/'`"
+          ln -s "$py37_prefix/bin/python" "$CONDA_PREFIX/bin/python3.7"
+          ln -s "$py37_prefix/bin/pip" "$CONDA_PREFIX/bin/pip3.7"
+          python3.7 --version
+          pip3.7 --version
+        shell: bash
+        if: ${{ matrix.python-version == '2.7' && runner.os != 'Windows' && startsWith(github.ref, 'refs/tags/') }}
+      - uses: actions/setup-python@v5
+        with:
+          python-version: ${{ matrix.python-version }}
+        if: ${{ contains(fromJSON(env.not_in_conda), matrix.python-version) }}
+      - uses: actions/cache@v4
+        with:
+          path: ~/conda_pkgs_dir
+          key: ${{ runner.os }}-conda
+      - name: Cache pip
+        uses: actions/cache@v4
+        with:
+          path: ${{ matrix.pip-cache-path }}
+          key: ${{ runner.os }}-pip
+      # Setup tox
+      - name: Install dependencies
+        run: |
+          python --version
+          python -m pip || python -m ensurepip --default-pip --upgrade
+          python -m pip install --upgrade pip setuptools wheel
+          pip --version
+          pip install --upgrade virtualenv "tox >= 3.15, < 4"
+        shell: bash -el {0}
+      - name: Set TOXENV
+        run: |
+          python -c "
+          import os, sys
+          ld_library_path = None
+          if hasattr(sys, 'pypy_version_info'):
+              toxenv = 'pypy3'
+          else:
+              pyver = '%d%d' % tuple(sys.version_info[:2])
+              if (pyver == '27') and (os.name == 'posix'):  # Python 2.7 on Linux requires `$LD_LIBRARY_PATH`
+                  ld_library_path = os.path.join(
+                      os.path.dirname(os.path.dirname(sys.executable)), 'lib')
+              toxenv = 'py%s' % pyver
+              if os.name == 'posix':
+                  toxenv += ',py%s-flake8' % pyver
+          with open(os.environ['GITHUB_ENV'], 'a') as f:
+              if ld_library_path:
+                  f.write('LD_LIBRARY_PATH=' + ld_library_path + '\n')
+              f.write('TOXENV=' + toxenv + '\n')
+          "
+        shell: bash -el {0}
+
+      - name: Run tox
+        run: |
+          python -c "import os; print(os.environ['TOXENV'])"
+          tox --version
+          tox
+        shell: bash -el {0}
+
+      - name: Build and publish sdist and wheel on Unix
+        run: |
+          pip install -U --ignore-installed certifi # Replace conda-installed
+          devscripts/CI/ghactions-release
+        env:
+          TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
+          TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
+        if: ${{ !startsWith(matrix.python-version, 'pypy') && runner.os != 'Windows' && startsWith(github.ref, 'refs/tags/') }}
+      - name: Build and publish wheel on w32
+        run: |
+          pip install -U pip setuptools twine wheel
+          python setup.py bdist_wheel
+          twine upload --disable-progress-bar --skip-existing dist\*
+        if: ${{ !startsWith(matrix.python-version, 'pypy') && runner.os == 'Windows' && startsWith(github.ref, 'refs/tags/') }}
+        env:
+          TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
+          TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
+      - name: Publish wheel to Releases
+        uses: ncipollo/release-action@v1
+        with:
+          artifacts: "dist/*"
+          allowUpdates: true
+          bodyFile: "LATEST-CHANGES.rst"
+          omitBodyDuringUpdate: true
+          omitNameDuringUpdate: true
+          omitPrereleaseDuringUpdate: true
+          prerelease: true
+          replacesArtifacts: false
+          skipIfReleaseExists: false
+          updateOnlyUnreleased: false
+        if: ${{ !startsWith(matrix.python-version, 'pypy') && startsWith(github.ref, 'refs/tags/') }}
index 5af0001b4eeb02e82e8001a50da2d412e1ddc669..902ce3bdb93c303b27e6dc15099d902e95fd4c03 100644 (file)
@@ -4,8 +4,6 @@
 /build/
 /data/
 /dist/
-/htmlcov/
-/.coverage
 /MANIFEST
 *.py[co]
 *.tmp
diff --git a/project_template/.travis.yml b/project_template/.travis.yml
deleted file mode 100644 (file)
index c3d76aa..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-language: python
-
-python:
-  - "2.7"
-
-cache: pip
-
-matrix:
-  include:
-  - python: "2.7"
-    env: TOXENV=py27
-  - python: "3.4"
-    env: TOXENV=py34
-  - python: "3.5"
-    env: TOXENV=py35
-  - python: "3.6"
-    env: TOXENV=py36
-  - python: "3.7"
-    dist: xenial
-    env: TOXENV=py37
-  - python: "2.7"
-    env: TOXENV=py27-flake8
-  - python: "3.7"
-    dist: xenial
-    env: TOXENV=py37-flake8
-  - python: "pypy"
-    env: TOXENV=pypy
-
-  allow_failures:
-    - env: TOXENV=pypy
-
-install:
-  - travis_retry pip install --upgrade "pip < 19.1" setuptools tox ppu
-
-script:
-  - tox
-
-before_cache:
-  - remove-old-files.py -o 180 ~/.cache/pip
index e45d3d1285704a077fd22fab7b137e082a8967a3..d0c23da53c4e40de4bcc103753bb996d7d8bc018 100644 (file)
@@ -1 +1 @@
-Version 0.0.1 (2018-04-01)
+Version 0.0.1 (2025-01-01)
index 749389f6b71206c727378d168a69c9864ae1df95..007361007db39a68998cd67441d4a3574743b877 100644 (file)
@@ -4,7 +4,7 @@
 
 Author: Oleg Broytman <phd@phdru.name>.
 
-Copyright (C) 2018 PhiloSoft Design.
+Copyright (C) 2025 PhiloSoft Design.
 
 License: GPL.
 
diff --git a/project_template/appveyor.yml b/project_template/appveyor.yml
deleted file mode 100644 (file)
index 4452853..0000000
+++ /dev/null
@@ -1,90 +0,0 @@
-# Test on windows
-# Heavily inspired by Oliver Grisel's appveyor-demo (https://github.com/ogrisel/python-appveyor-demo)
-version: '{branch}-{build}'
-
-cache:
-  - '%LOCALAPPDATA%\pip\Cache'
-
-# Match travis
-clone_depth: 50
-
-environment:
-  global:
-    # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
-    # /E:ON and /V:ON options are not enabled in the batch script intepreter
-    # See: http://stackoverflow.com/a/13751649/163740
-    CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\run_with_env.cmd"
-
-  matrix:
-    - TOXENV: "py27"
-      PYTHON_VERSION: "2.7"
-      PYTHON_ARCH: "32"
-      PYTHON_HOME: "C:\\Python27"
-    - TOXENV: "py27"
-      PYTHON_VERSION: "2.7"
-      PYTHON_ARCH: "64"
-      PYTHON_HOME: "C:\\Python27-x64"
-    - TOXENV: "py34"
-      PYTHON_VERSION: "3.4"
-      PYTHON_ARCH: "32"
-      PYTHON_HOME: "C:\\Python34"
-    - TOXENV: "py34"
-      PYTHON_VERSION: "3.4"
-      PYTHON_ARCH: "64"
-      PYTHON_HOME: "C:\\Python34-x64"
-    - TOXENV: "py35"
-      PYTHON_VERSION: "3.5"
-      PYTHON_ARCH: "32"
-      PYTHON_HOME: "C:\\Python35"
-    - TOXENV: "py35"
-      PYTHON_VERSION: "3.5"
-      PYTHON_ARCH: "64"
-      PYTHON_HOME: "C:\\Python35-x64"
-    - TOXENV: "py36"
-      PYTHON_VERSION: "3.6"
-      PYTHON_ARCH: "32"
-      PYTHON_HOME: "C:\\Python36"
-    - TOXENV: "py36"
-      PYTHON_VERSION: "3.6"
-      PYTHON_ARCH: "64"
-      PYTHON_HOME: "C:\\Python36-x64"
-    - TOXENV: "py37"
-      PYTHON_VERSION: "3.7"
-      PYTHON_ARCH: "32"
-      PYTHON_HOME: "C:\\Python37"
-    - TOXENV: "py37"
-      PYTHON_VERSION: "3.7"
-      PYTHON_ARCH: "64"
-      PYTHON_HOME: "C:\\Python37-x64"
-
-install:
-  # Ensure we use the right python version
-  - "SET PATH=%PYTHON_HOME%;%PYTHON_HOME%\\Scripts;%PATH%"
-  - "SET TOXPYTHON=%PYTHON_HOME%\\python.exe"
-  - "python --version"
-  - "python -c \"import struct; print(struct.calcsize('P') * 8)\""
-  - "python -m pip install --upgrade \"pip < 19.1\" setuptools"
-  - "pip install --upgrade \"tox < 3.1\" ppu"
-  - "pip --version"
-
-# No build step - we don't have C extensions
-build: false
-
-test_script:
-  - "%CMD_IN_ENV% tox"
-
-#after_test:
-#  # If tests are successful and we've tested a tag, create binary package
-#  - if "%APPVEYOR_REPO_TAG%" == "true" (
-#      pip install --upgrade wheel &&
-#      %CMD_IN_ENV% python setup.py bdist_wheel &&
-#      ls dist
-#    )
-#  - remove-old-files.py -o 180 %LOCALAPPDATA%\\pip\\Cache
-#
-#artifacts:
-#  # Archive the generated packages in the ci.appveyor.com build report
-#  - path: dist\*
-
-after_test:
-  - "remove-old-files.py -o 180 %LOCALAPPDATA%\\pip\\Cache"
index 06736f72fe6dc0fd01f840195fe4ab0634139f68..627fa17f23087351db27c0c10a68748756b0f9c3 100644 (file)
@@ -1,6 +1,5 @@
 --trusted-host phdru.name
 --find-links=https://phdru.name/Software/Python/
---install-option=-O2
 
 m_lib.defenc >= 1.0
 m_lib >= 2.0; python_version >= '2.7' and python_version < '3.0'
index 94d38eb803060de7380f72db1df4f12c5d7023af..e36ba63464e46eed787633e1aa61d3fd75f278bb 100644 (file)
@@ -1,3 +1,4 @@
 -r requirements.txt
 
-Sphinx
+Sphinx < 2.0; python_version == '2.7' or python_version == '3.4'
+Sphinx; python_version >= '3.5'
index ae7bbd9aa620dc94cf79faad149343e0b7d86568..68c6b861cd2e25b28368f6aa016414c31b95a77a 100644 (file)
@@ -1,4 +1,4 @@
 -r requirements.txt
 
-pytest < 5.0
-pytest-cov
+pytest < 5.0; python_version == '2.7' or python_version == '3.4'
+pytest < 7.0; python_version >= '3.5'
index 2978a0b78a93c2eda0e2b06ac89f66532301680f..8b5960b93a5d9ca54cf13a5426e9939b32c17780 100644 (file)
@@ -1 +1 @@
-tox >= 2.0, <= 2.9.1
+tox >= 3.15
index cfaf935bd9c5bdeb48e5574111ced6ab551a0b22..e52a39042e09c202f1f23d7289ee1b83534961dc 100644 (file)
@@ -6,14 +6,14 @@ System-wide
 
 ::
 
-    sudo pip install --find-links=https://phdru.name/Software/Python/ --no-index --install-option='-O2' {project}
+    sudo pip install --find-links=https://phdru.name/Software/Python/ --no-index {project}
 
 User mode
 ---------
 
 ::
 
-    pip install --find-links=https://phdru.name/Software/Python/ --no-index --install-option='-O2' --user {project}
+    pip install --find-links=https://phdru.name/Software/Python/ --no-index --user {project}
 
 Installation from sources
 =========================
index 40563541addebd730bb1c432e2e1373b17e32d6f..3ff807b8f23658da0af4c1b9b974242d9d3e38eb 100644 (file)
@@ -1,7 +1,7 @@
 News
 ====
 
-Version 0.0.1 (2018-04-??)
+Version 0.0.1 (2025-01-01)
 ---------------------------
 
 * 
index 8297efa6656c7c47a32c9c8d2f7051cf30a50c83..7066def4b2b538deaf456703237a5df087db57a8 100755 (executable)
@@ -27,7 +27,7 @@ setup(
     name='{project}',
     version={project}_version.__version__,
     description='Broytman {project}',
-    long_description=open('README.rst', 'rU').read(),
+    long_description=open('README.rst', 'r').read(),
     long_description_content_type="text/x-rst",
     author='Oleg Broytman',
     author_email='phd@phdru.name',
@@ -61,6 +61,12 @@ setup(
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
+        'Programming Language :: Python :: 3.8',
+        'Programming Language :: Python :: 3.9',
+        'Programming Language :: Python :: 3.10',
+        'Programming Language :: Python :: 3.11',
+        'Programming Language :: Python :: 3.12',
+        'Programming Language :: Python :: 3.13',
     ],
     packages=['{project}'],
     package_data={'{project}': []},
index f3eceaaf2ae278c6998c635539d38ce63bdf599b..2c88fcd27aa90d0394ebfb1bcf793fe952a2a642 100644 (file)
@@ -1,63 +1,25 @@
 [tox]
-minversion = 2.0
-toxworkdir={homedir}/.tox/{project}
-envlist = py27,py3{4,5,6,7},py{27,37}-flake8
+minversion = 3.15
+envlist = py{27,34,35,36,37,38,39,310,311,312,313,py,py3},py{27,37,312}-flake8
 
-# Base test environment settings
 [testenv]
-basepython =
-    py27: {env:TOXPYTHON:python2.7}
-    py34: {env:TOXPYTHON:python3.4}
-    py35: {env:TOXPYTHON:python3.5}
-    py36: {env:TOXPYTHON:python3.6}
-    py37: {env:TOXPYTHON:python3.7}
-    pypy: {env:TOXPYTHON:pypy}
 commands =
     {envpython} --version
     {envpython} -c "import struct; print(struct.calcsize('P') * 8)"
+    {envpython} -m pytest --version
+passenv = CI DISTUTILS_USE_SDK MSSdk INCLUDE LIB WINDIR
 deps =
     -rdevscripts/requirements/requirements_tests.txt
-platform = linux
-sitepackages = True
-# Don't fail or warn on uninstalled commands
-whitelist_externals =
-    flake8
-
-[general]
-commands =
-    {[testenv]commands}
-    python -m pytest --cov={project}
-
-[testenv:py27]
-commands =
-    {[general]commands}
-
-[testenv:py34]
-commands =
-    {[general]commands}
-
-[testenv:py35]
-commands =
-    {[general]commands}
-
-[testenv:py36]
-commands =
-    {[general]commands}
 
-[testenv:py37]
-commands =
-    {[general]commands}
-
-[testenv:py27-flake8]
-deps =
-    flake8
+[testenv:py{27,34,35,36,37,38,39,310,311,312,313,py,py3}]
 commands =
     {[testenv]commands}
-    flake8
+    {envpython} -m pytest
 
-[testenv:py37-flake8]
+[testenv:py{27,34,35,36,37,38,39,310,311,312,313,py,py3}-flake8]
 deps =
     flake8
+    pytest < 7.0
 commands =
     {[testenv]commands}
-    flake8
+    flake8 .
index 1b7a6f9c3b00c79ec27e7cde93573772f49eac31..1590b82196dbe8a0a3f10ef80c199587dc7d54e3 100755 (executable)
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 if [ ! -d ".git" -a -z "$1" ]; then
-   echo "Usage: $0 repoistory [directories]" >&2
+   echo "Usage: $0 repository [directories]" >&2
    exit 1
 fi
 
@@ -12,7 +12,7 @@ fi &&
 source_dir="`pwd`" &&
 
 if [ ! -d ".git" ]; then
-   echo "$source_dir is not a repoistory (.git isn't found)" >&2
+   echo "$source_dir is not a repository (.git isn't found)" >&2
    exit 1
 fi &&
 
@@ -24,7 +24,7 @@ cd "$dest_dir" &&
 git gc --aggressive &&
 git repack -a -d -f --depth=20 --window=250 &&
 git fsck --strict &&
-git config receive.updateserverinfo true && git update-server-info &&
+git config receive.updateServerInfo true && git update-server-info &&
 cp -p "$HOME"/Internet/WWW/htdocs/git.phdru.name/phdru.name/phdru.name.git/git-daemon-export-ok . &&
 if [ "`cat \"$source_dir\"/.git/description`" = \
    "Unnamed repository; edit this file 'description' to name the repository." ]
@@ -52,5 +52,8 @@ cd "$source_dir" &&
 if [ -n "$directories" ]; then
    dest_dir="$directories/$dest_dir"
 fi &&
-git remote add web "$HOME"/Internet/WWW/htdocs/git.phdru.name/"$dest_dir" &&
+{
+    git remote add web "$HOME"/Internet/WWW/htdocs/git.phdru.name/"$dest_dir" ||
+    git remote set-url web "$HOME"/Internet/WWW/htdocs/git.phdru.name/"$dest_dir"
+} &&
 exec git push --set-upstream web master