[arch-commits] Commit in weechat-matrix/repos (3 files)

2020-03-31 Thread Jonas Witschel via arch-commits
Date: Tuesday, March 31, 2020 @ 20:15:50
  Author: diabonas
Revision: 608347

archrelease: copy trunk to community-testing-any

Added:
  weechat-matrix/repos/community-testing-any/
  weechat-matrix/repos/community-testing-any/PKGBUILD
(from rev 608346, weechat-matrix/trunk/PKGBUILD)
  weechat-matrix/repos/community-testing-any/weechat-matrix.install
(from rev 608346, weechat-matrix/trunk/weechat-matrix.install)

+
 PKGBUILD   |   59 +++
 weechat-matrix.install |   13 ++
 2 files changed, 72 insertions(+)

Copied: weechat-matrix/repos/community-testing-any/PKGBUILD (from rev 608346, 
weechat-matrix/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-03-31 20:15:50 UTC (rev 608347)
@@ -0,0 +1,59 @@
+# Maintainer: Jonas Witschel 
+pkgname=weechat-matrix
+pkgver=0.1.0
+_tag=f0249bd923607220508386aefb2cb2507e11669e # git show-ref "$pkgver"
+pkgrel=2
+pkgdesc='Weechat Matrix protocol script written in Python'
+arch=('any')
+url='https://github.com/poljar/weechat-matrix'
+license=('ISC')
+depends=('python-atomicwrites' 'python-attrs' 'python-future' 'python-logbook' 
'python-matrix-nio'
+ 'python-pygments' 'python-pyopenssl' 'python-webcolors')
+makedepends=('git' 'python-dephell')
+checkdepends=('python-hypothesis' 'python-pytest')
+optdepends=('python-aiohttp: matrix_sso_helper support'
+'python-magic: matrix_upload support'
+'python-requests: matrix_decrypt and matrix_upload support'
+'ranger: default plumber for matrix_decrypt')
+install='weechat-matrix.install'
+source=("git+$url.git?signed#tag=$_tag"
+"weechat-matrix_fix-pyproject.patch::$url/pull/170.patch")
+sha512sums=('SKIP'
+
'64a7b3a9db4b2414e2cdcf8e4a3af3c5336136518066473dfe4cc7cc07351d0a4b37460fa20c8fb26a011295808da16dc9bb94ccf6e944c3391c7ed7569fc4ef')
+validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
+
+pkgver() {
+   cd "$pkgname"
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+prepare() {
+   cd "$pkgname"
+   sed -ri 's|#!/usr/bin/env( -S)? python3|#!/usr/bin/python3|' 
contrib/*.py
+
+   # https://github.com/poljar/weechat-matrix/pull/170
+   # https://github.com/poljar/weechat-matrix/issues/166
+   patch --strip=1 --input="$srcdir/weechat-matrix_fix-pyproject.patch"
+   dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+   cd "$pkgname"
+   python setup.py build
+}
+
+check() {
+   cd "$pkgname"
+   python -m pytest
+}
+
+package() {
+   cd "$pkgname"
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm755 main.py 
"$pkgdir/usr/share/weechat/python/weechat-matrix.py"
+   for _script in matrix_decrypt matrix_sso_helper matrix_upload
+   do
+   install -Dm755 "contrib/$_script.py" "$pkgdir/usr/bin/$_script"
+   done
+   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}

Copied: weechat-matrix/repos/community-testing-any/weechat-matrix.install (from 
rev 608346, weechat-matrix/trunk/weechat-matrix.install)
===
--- community-testing-any/weechat-matrix.install
(rev 0)
+++ community-testing-any/weechat-matrix.install2020-03-31 20:15:50 UTC 
(rev 608347)
@@ -0,0 +1,13 @@
+post_install() {
+   echo "To add this script to your WeeChat installation, please execute 
the following command:"
+   echo "ln -s /usr/share/weechat/python/weechat-matrix.py -t 
~/.weechat/python"
+}
+
+post_upgrade() {
+   if [ "$2" = "0.1.0-1" ]
+   then
+   echo "The location of the script has changed, please update 
your symbolic links:"
+   echo "rm ~/.weechat/python/{matrix,matrix.py}"
+   echo "ln -s /usr/share/weechat/python/weechat-matrix.py -t 
~/.weechat/python"
+   fi
+}


[arch-commits] Commit in weechat-matrix/repos (3 files)

2020-03-29 Thread Jonas Witschel via arch-commits
Date: Sunday, March 29, 2020 @ 23:27:53
  Author: diabonas
Revision: 606649

archrelease: copy trunk to community-any

Added:
  weechat-matrix/repos/community-any/
  weechat-matrix/repos/community-any/PKGBUILD
(from rev 606648, weechat-matrix/trunk/PKGBUILD)
  weechat-matrix/repos/community-any/weechat-matrix.install
(from rev 606648, weechat-matrix/trunk/weechat-matrix.install)

+
 PKGBUILD   |   46 ++
 weechat-matrix.install |4 
 2 files changed, 50 insertions(+)

Copied: weechat-matrix/repos/community-any/PKGBUILD (from rev 606648, 
weechat-matrix/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-03-29 23:27:53 UTC (rev 606649)
@@ -0,0 +1,46 @@
+# Maintainer: Jonas Witschel 
+pkgname=weechat-matrix
+pkgver=0.1.0
+_tag=f0249bd923607220508386aefb2cb2507e11669e # git show-ref "$pkgver"
+pkgrel=1
+pkgdesc='Weechat Matrix protocol script written in Python'
+arch=('any')
+url='https://github.com/poljar/weechat-matrix'
+license=('ISC')
+depends=('python-atomicwrites' 'python-attrs' 'python-future' 'python-logbook' 
'python-matrix-nio'
+ 'python-pygments' 'python-pyopenssl' 'python-webcolors')
+makedepends=('git')
+checkdepends=('python-hypothesis' 'python-pytest')
+optdepends=('python-aiohttp: matrix_sso_helper support'
+'python-magic: matrix_upload support'
+'python-requests: matrix_decrypt and matrix_upload support'
+'ranger: default plumber for matrix_decrypt')
+install='weechat-matrix.install'
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
+
+pkgver() {
+   cd "$pkgname"
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+prepare() {
+   cd "$pkgname"
+   sed -ri 's|#!/usr/bin/env( -S)? python3|#!/usr/bin/python3|' 
contrib/*.py
+}
+
+check() {
+   cd "$pkgname"
+   python -m pytest
+}
+
+package() {
+   cd "$pkgname"
+   make DESTDIR="$pkgdir" PREFIX=/usr/share/weechat install
+   for _script in matrix_decrypt matrix_sso_helper matrix_upload
+   do
+   install -Dm755 "contrib/$_script.py" "$pkgdir/usr/bin/$_script"
+   done
+   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}

Copied: weechat-matrix/repos/community-any/weechat-matrix.install (from rev 
606648, weechat-matrix/trunk/weechat-matrix.install)
===
--- community-any/weechat-matrix.install(rev 0)
+++ community-any/weechat-matrix.install2020-03-29 23:27:53 UTC (rev 
606649)
@@ -0,0 +1,4 @@
+post_install() {
+   echo "To add this script to your WeeChat installation, please execute 
the following command:"
+   echo "ln -s /usr/share/weechat/python/{matrix,matrix.py} -t 
~/.weechat/python"
+}