[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2020-12-14 Thread Levente Polyak via arch-commits
Date: Monday, December 14, 2020 @ 23:19:38
  Author: anthraxx
Revision: 775790

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 775789, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 775789, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 775789, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 775789, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 775789, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  272 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++---
 4 files changed, 182 insertions(+), 182 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 23:19:31 UTC (rev 775789)
+++ PKGBUILD2020-12-14 23:19:38 UTC (rev 775790)
@@ -1,136 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.28
-pkgrel=2
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'libxcrypt' 'libcrypt.so' 'glibc' 'gcc-libs'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2' 'python-bcrypt'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-sshtunnel' 'python-flask-security-too'
- 'python-werkzeug' 'python-flask-compress' 'python-ldap3' 
'python-cryptography')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('b9e8946e8133b382b9d69126c1ec6fc07a4b2051316c2151c339f15652900fa2bdf0a07811e052548c3f8699e382d8c16d187e89409b194e491148123558522e'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'a8c1a3762469b02b745da4e3b30f7534ad6bb94e91d43f7e63604fef24f638e09575e2c9336e753e5b6dbe167c55bb49fb6247a16431415318479eb3a3712adc')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e 

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2020-11-15 Thread Levente Polyak via arch-commits
Date: Sunday, November 15, 2020 @ 16:39:55
  Author: anthraxx
Revision: 754593

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 754592, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 754592, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 754592, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 754592, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 754592, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  272 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++---
 4 files changed, 182 insertions(+), 182 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-15 16:39:48 UTC (rev 754592)
+++ PKGBUILD2020-11-15 16:39:55 UTC (rev 754593)
@@ -1,136 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.27
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'libxcrypt' 'libcrypt.so' 'glibc' 'gcc-libs'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2' 'python-bcrypt'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-sshtunnel' 'python-flask-security-too'
- 'python-werkzeug' 'python-flask-compress' 'python-ldap3' 
'python-cryptography')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('131269f947459b4721ebd83ebb513777d301ff7c9fdb118cd0358fca708f6812ca539f42f2d73dec9078309663f2c186ab474205ffc913ac2a068262be05e9f1'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'a8c1a3762469b02b745da4e3b30f7534ad6bb94e91d43f7e63604fef24f638e09575e2c9336e753e5b6dbe167c55bb49fb6247a16431415318479eb3a3712adc')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e 

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2020-10-16 Thread Levente Polyak via arch-commits
Date: Friday, October 16, 2020 @ 20:56:37
  Author: anthraxx
Revision: 724997

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 724996, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 724996, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 724996, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 724996, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 724996, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  272 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++---
 4 files changed, 182 insertions(+), 182 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-16 20:56:31 UTC (rev 724996)
+++ PKGBUILD2020-10-16 20:56:37 UTC (rev 724997)
@@ -1,136 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.26
-pkgrel=2
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'libxcrypt' 'libcrypt.so' 'glibc' 'gcc-libs'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2' 'python-bcrypt'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-sshtunnel' 'python-flask-security-too'
- 'python-werkzeug' 'python-flask-compress' 'python-ldap3' 
'python-cryptography')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('952a4771f80541c54234fcaa9c870283fdf4887246d0d9751a77c28340b7e39ba871141f230086efda9a274d5e6bd567305047cdc7edf766ccd41112281fdf94'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'a8c1a3762469b02b745da4e3b30f7534ad6bb94e91d43f7e63604fef24f638e09575e2c9336e753e5b6dbe167c55bb49fb6247a16431415318479eb3a3712adc')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e 

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2020-09-24 Thread Levente Polyak via arch-commits
Date: Thursday, September 24, 2020 @ 21:10:13
  Author: anthraxx
Revision: 711910

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 711909, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 711909, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 711909, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 711909, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 711909, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  269 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++---
 4 files changed, 181 insertions(+), 180 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-24 21:10:07 UTC (rev 711909)
+++ PKGBUILD2020-09-24 21:10:13 UTC (rev 711910)
@@ -1,134 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.25
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2' 'python-bcrypt'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-sshtunnel' 'python-flask-security-too'
- 'python-werkzeug' 'python-flask-compress' 'python-ldap3')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('a1944f9c65b8aa7ec5bd83ef75702293d869ae341ea73f81fb4358bfbc7f91a6981237eb9f1b20055c5f3fa182428afe19dc170963265789c34d73f2e240c268'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'a8c1a3762469b02b745da4e3b30f7534ad6bb94e91d43f7e63604fef24f638e09575e2c9336e753e5b6dbe167c55bb49fb6247a16431415318479eb3a3712adc')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' 

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2020-09-05 Thread Levente Polyak via arch-commits
Date: Saturday, September 5, 2020 @ 21:58:38
  Author: anthraxx
Revision: 699200

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 699199, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 699199, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 699199, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 699199, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 699199, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  266 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++---
 4 files changed, 180 insertions(+), 178 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-05 21:58:32 UTC (rev 699199)
+++ PKGBUILD2020-09-05 21:58:38 UTC (rev 699200)
@@ -1,132 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.23
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-sshtunnel' 'python-flask-security-too'
- 'python-werkzeug' 'python-flask-compress' 'python-ldap3')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('7327cd7dc5b2c25bf092427ac8196aff067f5b8f4526e5170e7c731ac12c4cc451855111cf86bb35e568acf543e4a35e2dcf981f389af662f2604e0361967e43'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'a8c1a3762469b02b745da4e3b30f7534ad6bb94e91d43f7e63604fef24f638e09575e2c9336e753e5b6dbe167c55bb49fb6247a16431415318479eb3a3712adc')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e 

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2020-07-16 Thread Levente Polyak via arch-commits
Date: Thursday, July 16, 2020 @ 20:02:04
  Author: anthraxx
Revision: 664171

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 664170, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 664170, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 664170, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 664170, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 664170, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  264 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++---
 4 files changed, 178 insertions(+), 178 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-16 20:01:44 UTC (rev 664170)
+++ PKGBUILD2020-07-16 20:02:04 UTC (rev 664171)
@@ -1,132 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.22
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-sshtunnel' 'python-flask-security-too'
- 'python-werkzeug' 'python-flask-compress' 'python-ldap3')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('87ca94924bdfdac6307795acfb9218a667eea12ec0727a97aad90f4278567ae41bbfa85901efa372aa6a21701742ab59cda24efc0398e4222d04033ca111a18b'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'a8c1a3762469b02b745da4e3b30f7534ad6bb94e91d43f7e63604fef24f638e09575e2c9336e753e5b6dbe167c55bb49fb6247a16431415318479eb3a3712adc')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e 

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2019-09-29 Thread Levente Polyak via arch-commits
Date: Sunday, September 29, 2019 @ 19:23:27
  Author: anthraxx
Revision: 512110

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 512109, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 512109, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 512109, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 512109, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 512109, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  240 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++
 4 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-29 19:23:19 UTC (rev 512109)
+++ PKGBUILD2019-09-29 19:23:27 UTC (rev 512110)
@@ -1,120 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.12
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-htmlmin' 'python-flask-htmlmin'
- 'python-sshtunnel' 'python-flask-security')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('fdf2aeeeaad7a51527a3048ba1021205116627b53b76757ec0ee4a4e8572faa90fe4c7ce484bbcebe6fe48f5531a0144301e51ccca135faf6cc5ca630bdff61f'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'70c8e589421ab50cf81753fbcfb5df65669b0feeefa3a57ee574b3785424fd107af720fc7007e52876798a46fae88f2c02dbf156aa096397afa0f85ac04fdb76')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e '/Flask-Paranoid>?=/d' \
-  

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2019-09-03 Thread Levente Polyak via arch-commits
Date: Tuesday, September 3, 2019 @ 20:34:54
  Author: anthraxx
Revision: 507948

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 507947, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 507947, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 507947, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 507947, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 507947, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  240 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++
 4 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-03 20:34:47 UTC (rev 507947)
+++ PKGBUILD2019-09-03 20:34:54 UTC (rev 507948)
@@ -1,120 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.11
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-htmlmin' 'python-flask-htmlmin'
- 'python-sshtunnel' 'python-flask-security')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('9f10dae4ec35920df889c52b098eb687d49b15f4108a071b72285ba0cdc174c8610800ee29ce8d37b1f22fd65393417c8dbd27ecaf1a242faf75e30b68a8e2a3'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'70c8e589421ab50cf81753fbcfb5df65669b0feeefa3a57ee574b3785424fd107af720fc7007e52876798a46fae88f2c02dbf156aa096397afa0f85ac04fdb76')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e '/Flask-Paranoid>?=/d' \
-  

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2019-07-29 Thread Levente Polyak via arch-commits
Date: Monday, July 29, 2019 @ 20:30:44
  Author: anthraxx
Revision: 494679

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 494678, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 494678, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 494678, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 494678, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 494678, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  240 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++
 4 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-29 20:30:37 UTC (rev 494678)
+++ PKGBUILD2019-07-29 20:30:44 UTC (rev 494679)
@@ -1,120 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.10
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-htmlmin' 'python-flask-htmlmin'
- 'python-sshtunnel' 'python-flask-security')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('b7f91d85fdc39766a294d9b66e8539f709b99f971726551d013345595161ff017e03505f05a41352575892be9d9622e86f4ccdbac76bcea435e2fb88a690b565'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'70c8e589421ab50cf81753fbcfb5df65669b0feeefa3a57ee574b3785424fd107af720fc7007e52876798a46fae88f2c02dbf156aa096397afa0f85ac04fdb76')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e '/Flask-Paranoid>?=/d' \
--e 

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2019-07-04 Thread Levente Polyak via arch-commits
Date: Thursday, July 4, 2019 @ 23:03:00
  Author: anthraxx
Revision: 487458

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 487457, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 487457, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 487457, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 487457, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 487457, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  240 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++
 4 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-04 23:02:53 UTC (rev 487457)
+++ PKGBUILD2019-07-04 23:03:00 UTC (rev 487458)
@@ -1,120 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.9
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-htmlmin' 'python-flask-htmlmin'
- 'python-sshtunnel' 'python-flask-security')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('1922378061d706f43a47c806ccd0b67d5c0830353a5931ac8d4d929b9a3dc87cfd7a5b75cfb2e12d6564ba457471c22c7c6065278143cacf434c8919c5dabba4'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'70c8e589421ab50cf81753fbcfb5df65669b0feeefa3a57ee574b3785424fd107af720fc7007e52876798a46fae88f2c02dbf156aa096397afa0f85ac04fdb76')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e '/Flask-Paranoid>?=/d' \
--e 

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2019-07-01 Thread Levente Polyak via arch-commits
Date: Monday, July 1, 2019 @ 20:38:30
  Author: anthraxx
Revision: 487193

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 487192, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 487192, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 487192, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 487192, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 487192, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  240 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++
 4 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-01 20:38:24 UTC (rev 487192)
+++ PKGBUILD2019-07-01 20:38:30 UTC (rev 487193)
@@ -1,120 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.8
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-htmlmin' 'python-flask-htmlmin'
- 'python-sshtunnel' 'python-flask-security')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('68b35c1091435fbeb39e67c7f93038fcba95cd5ae7098434b5d3afee10595f875ef9fd997934f2bbd93c914bcd5c3c71bd43f032f788e55c5795f5ad63b57cd7'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'70c8e589421ab50cf81753fbcfb5df65669b0feeefa3a57ee574b3785424fd107af720fc7007e52876798a46fae88f2c02dbf156aa096397afa0f85ac04fdb76')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e '/Flask-Paranoid>?=/d' \
--e 

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2019-06-05 Thread Levente Polyak via arch-commits
Date: Wednesday, June 5, 2019 @ 22:22:37
  Author: anthraxx
Revision: 477377

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 477376, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 477376, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 477376, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 477376, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 477376, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  240 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++
 4 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-05 22:22:30 UTC (rev 477376)
+++ PKGBUILD2019-06-05 22:22:37 UTC (rev 477377)
@@ -1,120 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.7
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-htmlmin' 'python-flask-htmlmin'
- 'python-sshtunnel' 'python-flask-security')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('21d88086c3efdf946867836107a185fcf9a4e86bf36ed8b70e058010027fc31eb9672dd2b2e837e9b717ac141040e4da1f1bafffa3c54374d8095ebd0f3bcd05'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'70c8e589421ab50cf81753fbcfb5df65669b0feeefa3a57ee574b3785424fd107af720fc7007e52876798a46fae88f2c02dbf156aa096397afa0f85ac04fdb76')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e '/Flask-Paranoid>?=/d' \
-

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2019-06-02 Thread Levente Polyak via arch-commits
Date: Sunday, June 2, 2019 @ 18:31:18
  Author: anthraxx
Revision: 476647

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 476646, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 476646, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 476646, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 476646, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 476646, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  240 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++
 4 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-02 18:31:11 UTC (rev 476646)
+++ PKGBUILD2019-06-02 18:31:18 UTC (rev 476647)
@@ -1,120 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.6
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-htmlmin' 'python-flask-htmlmin'
- 'python-sshtunnel' 'python-flask-security')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('36e26ecead563eea015c12003727406b67b03c3b08d0773f07709746adc7b761fd3fb70bc628ff6d5aa2fe1c8df66780f0c34d977a042e528b8fdcb5917eceb3'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'70c8e589421ab50cf81753fbcfb5df65669b0feeefa3a57ee574b3785424fd107af720fc7007e52876798a46fae88f2c02dbf156aa096397afa0f85ac04fdb76')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e '/Flask-Paranoid>?=/d' \
--e 

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 13:40:28
  Author: anthraxx
Revision: 468435

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 468434, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 468434, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 468434, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 468434, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 468434, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  240 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++
 4 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 13:40:22 UTC (rev 468434)
+++ PKGBUILD2019-05-22 13:40:28 UTC (rev 468435)
@@ -1,120 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.4
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-htmlmin' 'python-flask-htmlmin'
- 'python-sshtunnel' 'python-flask-security')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('ea96d8d65b8983ab53d0e2e850142ea9865b88c74ba12166de4d8b9a968ff9047947174f034e0b73f22a3390d7793320cd2238676b736974999e489db774fb6b'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'70c8e589421ab50cf81753fbcfb5df65669b0feeefa3a57ee574b3785424fd107af720fc7007e52876798a46fae88f2c02dbf156aa096397afa0f85ac04fdb76')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e '/Flask-Paranoid>?=/d' \
-

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2019-04-04 Thread Levente Polyak via arch-commits
Date: Thursday, April 4, 2019 @ 13:27:15
  Author: anthraxx
Revision: 449198

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 449197, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 449197, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 449197, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 449197, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 449197, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  240 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++
 4 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-04 13:27:05 UTC (rev 449197)
+++ PKGBUILD2019-04-04 13:27:15 UTC (rev 449198)
@@ -1,120 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.3
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme' 'python'
- 'python-blinker' 'python-flask' 'python-flask-login'
- 'python-flask-migrate' 'python-flask-sqlalchemy' 'python-flask-wtf'
- 'python-passlib' 'python-pytz' 'python-simplejson' 'python-six'
- 'python-speaklater' 'python-sqlparse' 'python-wtforms' 'python-psutil'
- 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-flask-gravatar' 'python-flask-mail' 'python-flask-principal'
- 'python-flask-paranoid' 'python-htmlmin' 'python-flask-htmlmin'
- 'python-sshtunnel' 'python-flask-security')
-makedepends=('python-setuptools' 'python-sphinx' 'python-extras' 
'python-fixtures'
- 'python-html5lib' 'python-pbr' 'python-mimeparse' 
'python-pyrsistent'
- 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('db072bab1dcd0a18b9c423b95847c7873b9f458168ebaaf6473a9de5b44b3134e39f5b84aeba0a6ada42b1e867e359e44bda84bf55377cb0abc169c7455852b6'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'70c8e589421ab50cf81753fbcfb5df65669b0feeefa3a57ee574b3785424fd107af720fc7007e52876798a46fae88f2c02dbf156aa096397afa0f85ac04fdb76')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/Flask-Gravatar>?=/d' \
--e '/Flask-Mail>?=/d' \
--e '/Flask-Principal>?=/d' \
--e '/Flask-Paranoid>?=/d' \
-

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2019-03-19 Thread Levente Polyak via arch-commits
Date: Tuesday, March 19, 2019 @ 21:03:47
  Author: anthraxx
Revision: 442826

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 442825, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 442825, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 442825, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 442825, pgadmin4/trunk/pgAdmin4.desktop)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 442825, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch

+
 PKGBUILD   |  246 +--
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 +-
 pgadmin4-python-de-vendor-venv-paths.patch |   66 +++
 4 files changed, 166 insertions(+), 172 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-03-19 21:03:39 UTC (rev 442825)
+++ PKGBUILD2019-03-19 21:03:47 UTC (rev 442826)
@@ -1,126 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=4.2
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'postgresql-libs' 'hicolor-icon-theme'
- 'python' 'python-blinker' 'python-extras' 'python-fixtures'
- 'python-flask' 'python-flask-login' 'python-flask-migrate'
- 'python-flask-sqlalchemy' 'python-flask-wtf' 'python-html5lib'
- 'python-passlib' 'python-mimeparse' 'python-pytz' 'python-simplejson'
- 'python-six' 'python-speaklater' 'python-sqlparse' 'python-wtforms'
- 'python-psutil' 'python-jinja' 'python-paramiko' 'python-psycopg2'
- 'python-cryptography' 'python-sqlalchemy' 'python-testtools'
- 'python-webencodings' 'python-werkzeug' 'python-dateutil'
- 'python-pyrsistent' 'python-pbr' 'python-flask-gravatar'
- 'python-flask-mail' 'python-flask-principal' 'python-flask-paranoid'
- 'python-htmlmin' 'python-flask-htmlmin' 'python-sshtunnel'
- 'python-flask-security')
-makedepends=('python-setuptools' 'python-sphinx' 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py
-pgadmin4-python-de-vendor-venv-paths.patch)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('d3d242904c65f0af871890954c24005b4849b88599cde9a7cb82e077ff5db5a8c5f015c4af0b135d68f02daad42492af71373831c2212a36672af8d7621c3b2a'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e'
-
'70c8e589421ab50cf81753fbcfb5df65669b0feeefa3a57ee574b3785424fd107af720fc7007e52876798a46fae88f2c02dbf156aa096397afa0f85ac04fdb76')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 < ../pgadmin4-python-de-vendor-venv-paths.patch
-
-  local PYTHONVERSION="$(python -c 'import sys; 
print(f"{sys.version_info.major}.{sys.version_info.minor}")')"
-  sed -E "s|/usr/pgadmin4/web|/usr/lib/pgadmin4/web|g;
-  
s|/usr/pgadmin4/lib/python[0-9\\.]+|/usr/lib/python${PYTHONVERSION}|g" \
-  -i runtime/ConfigWindow.ui
-  sed "s|##PYTHONVERSION##|${PYTHONVERSION}|g" -i runtime/Server.cpp
-
-  sed -E -i requirements.txt \
--e '/blinker>?=/d' \
--e '/extras>?=/d' \
--e '/fixtures>?=/d' \
--e '/Flask>?=/d' \
--e '/Flask-Login>?=/d' \
--e '/Flask-Migrate>?=/d' \
--e '/Flask-SQLAlchemy>?=/d' \
--e '/Flask-WTF>?=/d' \
--e '/html5lib>?=/d' \
--e '/pycrypto>?=/d' \
--e '/passlib>?=/d' \
--e '/python-mimeparse>?=/d' \
--e '/pytz>?=/d' \
--e '/simplejson>?=/d' \
--e '/six>?=/d' \
--e '/speaklater>?=/d' \
--e '/sqlparse>?=/d' \
--e '/WTForms>?=/d' \
--e '/psutil>?=/d' \
--e '/psycopg2>?=/d' \
--e '/python-dateutil>?=/d' \
--e '/SQLAlchemy>?=/d' \
--e '/pyrsistent>?=/d' \
--e '/pbr>?=/d' \
-

[arch-commits] Commit in pgadmin4/repos/community-x86_64 (10 files)

2018-12-19 Thread Levente Polyak via arch-commits
Date: Wednesday, December 19, 2018 @ 21:29:11
  Author: anthraxx
Revision: 416787

archrelease: copy trunk to community-x86_64

Added:
  pgadmin4/repos/community-x86_64/PKGBUILD
(from rev 416786, pgadmin4/trunk/PKGBUILD)
  pgadmin4/repos/community-x86_64/config_distro.py
(from rev 416786, pgadmin4/trunk/config_distro.py)
  pgadmin4/repos/community-x86_64/config_local.py
(from rev 416786, pgadmin4/trunk/config_local.py)
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop
(from rev 416786, pgadmin4/trunk/pgAdmin4.desktop)
  
pgadmin4/repos/community-x86_64/pgadmin4-compatibility-with-python3-pycryptodome.patch
(from rev 416786, 
pgadmin4/trunk/pgadmin4-compatibility-with-python3-pycryptodome.patch)
  pgadmin4/repos/community-x86_64/pgadmin4-python-de-vendor-venv-paths.patch
(from rev 416786, pgadmin4/trunk/pgadmin4-python-de-vendor-venv-paths.patch)
Deleted:
  pgadmin4/repos/community-x86_64/PKGBUILD
  pgadmin4/repos/community-x86_64/config_distro.py
  pgadmin4/repos/community-x86_64/config_local.py
  pgadmin4/repos/community-x86_64/pgAdmin4.desktop

+
 PKGBUILD   |  219 ---
 config_distro.py   |4 
 pgAdmin4.desktop   |   22 -
 pgadmin4-compatibility-with-python3-pycryptodome.patch |   45 +++
 pgadmin4-python-de-vendor-venv-paths.patch |   33 ++
 5 files changed, 220 insertions(+), 103 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-19 21:29:03 UTC (rev 416786)
+++ PKGBUILD2018-12-19 21:29:11 UTC (rev 416787)
@@ -1,90 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jerome Leclanche 
-
-pkgname=pgadmin4
-pkgver=3.5
-pkgrel=1
-pkgdesc='Comprehensive design and management interface for PostgreSQL'
-url='https://www.pgadmin.org/'
-arch=('x86_64')
-license=('custom')
-depends=('qt5-base' 'python' 'python-psycopg2' 'postgresql-libs' 
'hicolor-icon-theme')
-makedepends=('python-setuptools' 'imagemagick')
-source=(https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${pkgver}/source/${pkgname}-${pkgver}.tar.gz{,.asc}
-pgAdmin4.desktop
-config_distro.py
-config_local.py)
-validpgpkeys=('E8697E2EEF76C02D3A6332778881B2A8210976F2') # Package Manager 
(Package Signing Key) 
-sha512sums=('6971c003a39fdd2f279fa7a652a32e1554d17d1794fa0b84c4aa3394ab128efbb44299890bd69b07a0ca926d918668fba124f99f3d7271c60ee70616eedd6d1c'
-'SKIP'
-
'b19dda3331585010c759099eb09f4db288ce4cd3d36882b56748e1e3756dc7bee2899d7438d496280498ec6a60f6e1ba90309d49fc599403f1fdc7e8817b6645'
-
'16d00dc2095904a6b12da7039458f632873829ad98d4d7653eac5804032ba92097ccae4488d56467d0ea9bd64e2654a3dead73eb7924c947ff1737ff6e3b4745'
-
'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
-  sed 's|value("PythonPath")|value("PythonPath", 
"/usr/lib/pgadmin4/venv/lib/python'${PYTHONVERSION}'/site-packages:/usr/lib/python'${PYTHONVERSION}'/site-packages:/usr/lib/python'${PYTHONVERSION}'")|g'
 -i runtime/{pgAdmin4.cpp,Server.cpp,TrayIcon.cpp}
-  sed -r 's|(venv/lib/python)|\1'${PYTHONVERSION}'|g' -i runtime/Server.cpp
-}
-
-
-build() {
-  export LANG=en_US.UTF-8
-  export LC_ALL=en_US.UTF-8
-
-  cd ${pkgname}-${pkgver}
-  convert +set date:create +set date:modify runtime/pgAdmin4.{ico,png}
-
-  python -m venv ./venv
-  venv/bin/python -m pip install -r requirements.txt
-
-  python -m venv ./venv-docs
-  venv-docs/bin/python -m pip install -r requirements.txt
-  venv-docs/bin/python -m pip install sphinx
-
-  PATH="${srcdir}/${pkgname}-${pkgver}/venv-docs/bin:${PATH}" make docs
-
-  cd runtime
-  qmake CONFIG+=release
-  make
-}
-
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  install -Dm 755 runtime/pgAdmin4 
"${pkgdir}/usr/lib/pgadmin4/runtime/pgAdmin4"
-
-  cp -a docs web "${pkgdir}/usr/lib/pgadmin4"
-  cp -a venv "${pkgdir}/usr/lib/pgadmin4/venv"
-
-  install -Dm 644 "${srcdir}"/config_{distro,local}.py -t 
"${pkgdir}/usr/lib/pgadmin4/web"
-
-  ### fixup some python wonkyness
-  local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
-  rm -r 
"${pkgdir}/usr/lib/pgadmin4/venv/lib/python${PYTHONVERSION}/site-packages/psycopg2"
-  ln -s /usr/lib/python${PYTHONVERSION}/lib-dynload 
"${pkgdir}/usr/lib/pgadmin4/venv/lib/python${PYTHONVERSION}/lib-dynload"
-
-  ### Launcher
-  install -Dm 644 runtime/pgAdmin4-0.png 
"${pkgdir}/usr/share/icons/hicolor/256x256/apps/pgAdmin4.png"
-  install -Dm 644 runtime/pgAdmin4-1.png 
"${pkgdir}/usr/share/icons/hicolor/48x48/apps/pgAdmin4.png"
-  install -Dm 644