[arch-commits] Commit in (19 files)

Daniel M. Capella polyzen at gemini.archlinux.org
Sat Feb 19 21:47:35 UTC 2022


    Date: Saturday, February 19, 2022 @ 21:47:34
  Author: polyzen
Revision: 1135059

Do not specify --compile-bytecode installer option

The defaults for --compile-bytecode (0, 1) are equivalent to the --optimize=1 used previously.

Modified:
  ansible-lint/trunk/PKGBUILD
  ipython/trunk/PKGBUILD
  jedi-language-server/trunk/PKGBUILD
  python-asttokens/trunk/PKGBUILD
  python-backcall/trunk/PKGBUILD
  python-black/trunk/PKGBUILD
  python-executing/trunk/PKGBUILD
  python-jq/trunk/PKGBUILD
  python-matrix-common/trunk/PKGBUILD
  python-nkdfu/trunk/PKGBUILD
  python-pure-eval/trunk/PKGBUILD
  python-pygls/trunk/PKGBUILD
  python-pyppeteer/trunk/PKGBUILD
  python-pytesseract/trunk/PKGBUILD
  python-pytz-deprecation-shim/trunk/PKGBUILD
  python-stack-data/trunk/PKGBUILD
  python-tzdata/trunk/PKGBUILD
  qmk/trunk/PKGBUILD
  rofimoji/trunk/PKGBUILD

---------------------------------------------+
 ansible-lint/trunk/PKGBUILD                 |    2 +-
 ipython/trunk/PKGBUILD                      |    4 ++--
 jedi-language-server/trunk/PKGBUILD         |    4 ++--
 python-asttokens/trunk/PKGBUILD             |    4 ++--
 python-backcall/trunk/PKGBUILD              |    4 ++--
 python-black/trunk/PKGBUILD                 |    4 ++--
 python-executing/trunk/PKGBUILD             |    4 ++--
 python-jq/trunk/PKGBUILD                    |    4 ++--
 python-matrix-common/trunk/PKGBUILD         |    2 +-
 python-nkdfu/trunk/PKGBUILD                 |    2 +-
 python-pure-eval/trunk/PKGBUILD             |    4 ++--
 python-pygls/trunk/PKGBUILD                 |    2 +-
 python-pyppeteer/trunk/PKGBUILD             |    2 +-
 python-pytesseract/trunk/PKGBUILD           |    4 ++--
 python-pytz-deprecation-shim/trunk/PKGBUILD |    4 ++--
 python-stack-data/trunk/PKGBUILD            |    4 ++--
 python-tzdata/trunk/PKGBUILD                |    4 ++--
 qmk/trunk/PKGBUILD                          |    2 +-
 rofimoji/trunk/PKGBUILD                     |    2 +-
 19 files changed, 31 insertions(+), 31 deletions(-)

Modified: ansible-lint/trunk/PKGBUILD
===================================================================
--- ansible-lint/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ ansible-lint/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -33,6 +33,6 @@
 
 package() {
   cd ${pkgname}-${pkgver}
-  python -m installer --destdir="${pkgdir}" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="${pkgdir}" dist/*.whl
   install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
 }

Modified: ipython/trunk/PKGBUILD
===================================================================
--- ipython/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ ipython/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -38,13 +38,13 @@
 check() {
   cd $pkgname-$pkgver
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   test-env/bin/python -m pytest
 }
 
 package() {
   cd $pkgname-$pkgver
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   cd "examples/IPython Kernel"
   # FS#45120

Modified: jedi-language-server/trunk/PKGBUILD
===================================================================
--- jedi-language-server/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ jedi-language-server/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -28,13 +28,13 @@
   cd $pkgname-$pkgver
   mkdir -p temp
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
-  python -m installer --destdir=temp --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir=temp dist/*.whl
   PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$site_packages" pytest tests
 }
 
 package() {
   cd $pkgname-$pkgver
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-asttokens/trunk/PKGBUILD
===================================================================
--- python-asttokens/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-asttokens/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -24,13 +24,13 @@
 check() {
   cd "$_name-$pkgver"
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   test-env/bin/python -m pytest
 }
 
 package() {
   cd "$_name-$pkgver"
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-backcall/trunk/PKGBUILD
===================================================================
--- python-backcall/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-backcall/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -22,13 +22,13 @@
 check() {
   cd $_name-$pkgver
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   test-env/bin/python tests/test_callback_prototypes.py
 }
 
 package() {
   cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-black/trunk/PKGBUILD
===================================================================
--- python-black/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-black/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -31,13 +31,13 @@
 check() {
   cd "black-$pkgver"
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   PATH="$PWD/test-env/bin:$PATH" test-env/bin/python -m pytest
 }
 
 package() {
   cd "black-$pkgver"
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-executing/trunk/PKGBUILD
===================================================================
--- python-executing/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-executing/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -24,7 +24,7 @@
 check() {
   cd "$_name-$pkgver"
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   test-env/bin/python tests/test_main.py
   test-env/bin/python -m pytest tests/test_pytest.py
 }
@@ -31,7 +31,7 @@
 
 package() {
   cd "$_name-$pkgver"
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-jq/trunk/PKGBUILD
===================================================================
--- python-jq/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-jq/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -34,13 +34,13 @@
 check() {
   cd $_name-$pkgver
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   test-env/bin/python -m pytest
 }
 
 package() {
   cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-matrix-common/trunk/PKGBUILD
===================================================================
--- python-matrix-common/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-matrix-common/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -25,5 +25,5 @@
 
 package() {
 	cd "matrix-python-common-$pkgver"
-	python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+	python -m installer --destdir="$pkgdir" dist/*.whl
 }

Modified: python-nkdfu/trunk/PKGBUILD
===================================================================
--- python-nkdfu/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-nkdfu/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -25,6 +25,6 @@
 
 package() {
   cd "$pkgname-$pkgver"
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
   install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
 }

Modified: python-pure-eval/trunk/PKGBUILD
===================================================================
--- python-pure-eval/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-pure-eval/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -24,13 +24,13 @@
 check() {
   cd "$_name-$pkgver"
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   test-env/bin/python -m pytest
 }
 
 package() {
   cd "$_name-$pkgver"
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-pygls/trunk/PKGBUILD
===================================================================
--- python-pygls/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-pygls/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -29,7 +29,7 @@
 
 package() {
   cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-pyppeteer/trunk/PKGBUILD
===================================================================
--- python-pyppeteer/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-pyppeteer/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -29,7 +29,7 @@
 
 package() {
   cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-pytesseract/trunk/PKGBUILD
===================================================================
--- python-pytesseract/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-pytesseract/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -23,13 +23,13 @@
 check() {
   cd $_name-$pkgver
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   test-env/bin/python -m pytest
 }
 
 package() {
   cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 }
 
 # vim:set ts=2 sw=2 et:

Modified: python-pytz-deprecation-shim/trunk/PKGBUILD
===================================================================
--- python-pytz-deprecation-shim/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-pytz-deprecation-shim/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -23,13 +23,13 @@
 check() {
   cd $_name-$pkgver
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   test-env/bin/python -m pytest
 }
 
 package() {
   cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-stack-data/trunk/PKGBUILD
===================================================================
--- python-stack-data/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-stack-data/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -25,13 +25,13 @@
 check() {
   cd "$_name-$pkgver"
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   test-env/bin/python -m pytest
 }
 
 package() {
   cd "$_name-$pkgver"
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: python-tzdata/trunk/PKGBUILD
===================================================================
--- python-tzdata/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ python-tzdata/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -23,13 +23,13 @@
 check() {
   cd $_name-$pkgver
   python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer --compile-bytecode=1 dist/*.whl
+  test-env/bin/python -m installer dist/*.whl
   test-env/bin/python -m pytest
 }
 
 package() {
   cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   # Symlink license file
   local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")

Modified: qmk/trunk/PKGBUILD
===================================================================
--- qmk/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ qmk/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -38,6 +38,6 @@
 package() {
   make -C qmk_udev-${_qmk_udev_pkgver} DESTDIR="$pkgdir" PREFIX=/usr install
   cd "${pkgname}-${pkgver}"
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
   install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }

Modified: rofimoji/trunk/PKGBUILD
===================================================================
--- rofimoji/trunk/PKGBUILD	2022-02-19 21:31:21 UTC (rev 1135058)
+++ rofimoji/trunk/PKGBUILD	2022-02-19 21:47:34 UTC (rev 1135059)
@@ -36,7 +36,7 @@
 
 package() {
   cd $pkgname-$pkgver
-  python -m installer --destdir="$pkgdir" --compile-bytecode=1 dist/*.whl
+  python -m installer --destdir="$pkgdir" dist/*.whl
   install -Dm644 -t "$pkgdir"/usr/share/man/man1 src/picker/docs/$pkgname.1
 
   # Symlink license file



More information about the arch-commits mailing list