summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authortadly2018-12-28 09:26:30 +0100
committertadly2018-12-28 09:26:30 +0100
commitaee046ee6fb35b8b47293a969269ddee7abc1da4 (patch)
tree65522b344fefb6738782fd14fb695cfa3e90ebeb
parentcd073600b0189987b93f1be80e5c5ec0c21f2305 (diff)
downloadaur-aee046ee6fb35b8b47293a969269ddee7abc1da4.tar.gz
update to 6.0.0.230
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD10
-rw-r--r--enpass-bin.install33
3 files changed, 12 insertions, 39 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 47676160f400..1d6a8f4d2ec0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = enpass-bin
pkgdesc = A multiplatform password manager
- pkgver = 5.6.9
- pkgrel = 3
+ pkgver = 6.0.0.230
+ pkgrel = 1
url = http://enpass.io/
install = enpass-bin.install
arch = x86_64
@@ -10,8 +10,8 @@ pkgbase = enpass-bin
depends = lsof
provides = enpass
options = !strip
- source = http://repo.sinew.in/pool/main/e/enpass/enpass_5.6.9_amd64.deb
- sha256sums = 46f13df93ac8e0637428b86fa0fa6c2809dd1ff0b29a678d991f2cf5daed9e84
+ source = http://repo.sinew.in/pool/main/e/enpass/enpass_6.0.0.230_amd64.deb
+ sha256sums = 621b427939f927672691d21b1dd0f887f3e83c36c5dca408071a8b30c9fb34ff
pkgname = enpass-bin
diff --git a/PKGBUILD b/PKGBUILD
index bab6a6d62656..597eee9def41 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
pkgname='enpass-bin'
_pkgname='enpass'
-pkgver=5.6.9
-pkgrel=3
+pkgver=6.0.0.230
+pkgrel=1
pkgdesc='A multiplatform password manager'
arch=('x86_64')
url='http://enpass.io/'
@@ -10,7 +10,7 @@ depends=('libxss' 'lsof')
provides=("${_pkgname}")
install='enpass-bin.install'
source=("http://repo.sinew.in/pool/main/e/enpass/${_pkgname}_${pkgver}_amd64.deb")
-sha256sums=('46f13df93ac8e0637428b86fa0fa6c2809dd1ff0b29a678d991f2cf5daed9e84')
+sha256sums=('621b427939f927672691d21b1dd0f887f3e83c36c5dca408071a8b30c9fb34ff')
# Disable strip as otherwise the browser extension will not work
options=('!strip')
@@ -20,7 +20,7 @@ package() {
tar xfz "${srcdir}/data.tar.gz" -C "${pkgdir}"
# Remove unnecessary files which are included in the .deb
- find "${pkgdir}" -name '*~' -delete
+ # find "${pkgdir}" -name '*~' -delete
# Update permissions to match the default system ones
chmod 755 "${pkgdir}/opt/"
@@ -28,7 +28,7 @@ package() {
# Symlink "runenpass.sh" to "/usr/bin" so it is accessible via cli
mkdir -p "${pkgdir}/usr/bin"
- ln -s '/opt/Enpass/bin/runenpass.sh' "${pkgdir}/usr/bin/enpass"
+ ln -s '/opt/enpass/Enpass' "${pkgdir}/usr/bin/enpass"
}
diff --git a/enpass-bin.install b/enpass-bin.install
index 5a15e639eb00..a5a9aa74fb63 100644
--- a/enpass-bin.install
+++ b/enpass-bin.install
@@ -1,37 +1,10 @@
post_install() {
post_upgrade
}
+
post_upgrade() {
cat << EOF
- If you encounter scaling issues try:
-
- export QT_AUTO_SCREEN_SCALE_FACTOR=0
-
- before running enpass.
- If this worked, you have 3 options:
-
- 1. Add the above line to your ".bashrc"
-
- 2. Add the above line to
- /opt/Enpass/bin/runenpass.sh
-
- BEFORE the "exec" command.
- Keep in mind that changes to runenpass.sh
- will be overwritten upon the next update.
-
- 3. Create a copy of:
-
- /usr/share/applications/enpass.desktop
-
- to
-
- ~/.local/share/applications/enpass.desktop
-
- and replace the "Exec=" line with:
-
- Exec=env QT_AUTO_SCREEN_SCALE_FACTOR=0 /opt/Enpass/bin/runenpass.sh %U
-
- This will NOT fix scaling if you run enpass from
- your commandline!
+If you encounter scaling issues, try the following:
+ $ QT_AUTO_SCREEN_SCALE_FACTOR=0 enpass
EOF
}