Date: Monday, April 17, 2023 @ 11:56:35
  Author: dvzrv
Revision: 1446721

archrelease: copy trunk to community-staging-any

Added:
  tmuxp/repos/community-staging-any/PKGBUILD
    (from rev 1446720, tmuxp/trunk/PKGBUILD)
Deleted:
  tmuxp/repos/community-staging-any/PKGBUILD

----------+
 PKGBUILD |  150 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 76 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-04-17 11:56:24 UTC (rev 1446720)
+++ PKGBUILD    2023-04-17 11:56:35 UTC (rev 1446721)
@@ -1,74 +0,0 @@
-# Maintainer: David Runge <[email protected]>
-
-pkgname=tmuxp
-pkgver=1.27.1
-pkgrel=2
-pkgdesc="Tmux session manager built on libtmux"
-arch=(any)
-url="https://tmuxp.git-pull.com/en/latest/";
-license=(MIT)
-depends=(
-  python
-  python-colorama
-  python-libtmux
-  python-pyyaml
-)
-makedepends=(
-  python-build
-  python-installer
-  python-poetry-core
-  python-shtab
-  python-wheel
-)
-checkdepends=(
-  python-pytest
-  python-pytest-mock
-  python-pytest-rerunfailures
-)
-optdepends=(
-  'python-shtab: for workspace completion and import'
-  'ipython: for alternative CLI'
-  'python-prompt_toolkit: for alternative CLI'
-  'bpython: for alternative CLI'
-  # TODO: package ptpython for additional alternative CLI
-)
-source=(https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz)
-sha512sums=('1b0402d6e754bdcf2a9e7d8aa4d3aa9a3b1f150ccf4dbfe5e68f752035602a299a8c744ec322013823fa0e2f8335e487eba58f074e25bd77673be066aecdc7c0')
-b2sums=('7a13abf89c0732d842dd3255abe691e51d2664da74a238be2844e301e13f7d95c6b0d4411a1e9d15689fdd31abfa97c5fb3a1e05e95c43d13f5eabc455c80818')
-
-build() {
-  cd $pkgname-$pkgver
-  python -m build --wheel --no-isolation
-
-  python -m installer --destdir=test_dir dist/*.whl
-  export PYTHONPATH="$PWD/test_dir/$site_packages:$PYTHONPATH"
-  mkdir completions
-  shtab --shell=bash tmuxp.cli.create_parser > completions/$pkgname
-  shtab --shell=zsh tmuxp.cli.create_parser > completions/_$pkgname
-}
-
-check() {
-  local python_options=(
-    -vv
-    # https://github.com/tmux-python/tmuxp/issues/855
-    --deselect tests/workspace/test_builder.py::test_window_shell
-  )
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-
-  cd $pkgname-$pkgver
-  export PYTHONPATH="$PWD/test_dir/$site_packages:$PYTHONPATH"
-  pytest "${python_options[@]}" tests
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-
-  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
-  install -vDm 644 {CHANGES,README.md} -t "$pkgdir/usr/share/doc/$pkgname/"
-  install -vDm 644 examples/*.{json,yaml} -t 
"$pkgdir/usr/share/doc/$pkgname/examples/"
-  install -vDm 644 completions/$pkgname -t 
"$pkgdir/usr/share/bash-completion/completions/"
-  install -vDm 644 completions/_$pkgname -t 
"$pkgdir/usr/share/zsh/site-functions/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: tmuxp/repos/community-staging-any/PKGBUILD (from rev 1446720, 
tmuxp/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-04-17 11:56:35 UTC (rev 1446721)
@@ -0,0 +1,76 @@
+# Maintainer: David Runge <[email protected]>
+
+pkgname=tmuxp
+pkgver=1.27.1
+pkgrel=4
+pkgdesc="Tmux session manager built on libtmux"
+arch=(any)
+url="https://tmuxp.git-pull.com/en/latest/";
+license=(MIT)
+depends=(
+  python
+  python-colorama
+  python-libtmux
+  python-pyyaml
+)
+makedepends=(
+  python-build
+  python-installer
+  python-poetry-core
+  python-shtab
+  python-wheel
+)
+checkdepends=(
+  python-pytest
+  python-pytest-mock
+  python-pytest-rerunfailures
+)
+optdepends=(
+  'python-shtab: for workspace completion and import'
+  'ipython: for alternative CLI'
+  'python-prompt_toolkit: for alternative CLI'
+  'bpython: for alternative CLI'
+  # TODO: package ptpython for additional alternative CLI
+)
+source=(https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz)
+sha512sums=('1b0402d6e754bdcf2a9e7d8aa4d3aa9a3b1f150ccf4dbfe5e68f752035602a299a8c744ec322013823fa0e2f8335e487eba58f074e25bd77673be066aecdc7c0')
+b2sums=('7a13abf89c0732d842dd3255abe691e51d2664da74a238be2844e301e13f7d95c6b0d4411a1e9d15689fdd31abfa97c5fb3a1e05e95c43d13f5eabc455c80818')
+
+build() {
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+
+  cd $pkgname-$pkgver
+  python -m build --wheel --no-isolation
+
+  python -m installer --destdir=test_dir dist/*.whl
+  export PYTHONPATH="$PWD/test_dir/$site_packages:$PYTHONPATH"
+  mkdir -v completions
+  shtab --shell=bash tmuxp.cli.create_parser > completions/$pkgname
+  shtab --shell=zsh tmuxp.cli.create_parser > completions/_$pkgname
+}
+
+check() {
+  local python_options=(
+    -vv
+    # https://github.com/tmux-python/tmuxp/issues/855
+    --deselect tests/workspace/test_builder.py::test_window_shell
+  )
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+
+  cd $pkgname-$pkgver
+  export PYTHONPATH="$PWD/test_dir/$site_packages:$PYTHONPATH"
+  pytest "${python_options[@]}" tests
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+  install -vDm 644 {CHANGES,README.md} -t "$pkgdir/usr/share/doc/$pkgname/"
+  install -vDm 644 examples/*.{json,yaml} -t 
"$pkgdir/usr/share/doc/$pkgname/examples/"
+  install -vDm 644 completions/$pkgname -t 
"$pkgdir/usr/share/bash-completion/completions/"
+  install -vDm 644 completions/_$pkgname -t 
"$pkgdir/usr/share/zsh/site-functions/"
+}
+
+# vim:set ts=2 sw=2 et:

Reply via email to