summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoffrey Darcq2018-02-22 14:25:50 +0100
committerJoffrey Darcq2018-02-22 14:25:50 +0100
commit7e023c72e93b0fa8483c7520f9eb448e2da747c6 (patch)
tree72f3a607c8108bed8b095e2493e3f1f4cc02a454
parentaeff7167bc62834f932755945dd8823d64b30e0d (diff)
downloadaur-7e023c72e93b0fa8483c7520f9eb448e2da747c6.tar.gz
Remove seahub.install
-rw-r--r--.SRCINFO3
-rw-r--r--ChangeLog5
-rw-r--r--PKGBUILD6
-rw-r--r--seahub.install6
4 files changed, 8 insertions, 12 deletions
diff --git a/.SRCINFO b/.SRCINFO
index dacce247b40a..e8badb584562 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = seahub
pkgdesc = The web frontend for seafile server
pkgver = 6.2.5
- pkgrel = 4
+ pkgrel = 5
url = https://github.com/haiwen/seahub
- install = seahub.install
changelog = ChangeLog
arch = i686
arch = x86_64
diff --git a/ChangeLog b/ChangeLog
index 5ad005514eb7..1f9880390077 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-02-22 Joffrey <j-off@live.fr>
+ * Version: 6.2.5-5
+
+ * seahub.install: File removed
+
2018-02-05 Joffrey <j-off@live.fr>
* Version: 6.2.5-4
diff --git a/PKGBUILD b/PKGBUILD
index 2124498122c7..220fac151f8b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname='seahub'
pkgver=6.2.5
-pkgrel=4
+pkgrel=5
pkgdesc='The web frontend for seafile server'
arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64')
url="https://github.com/haiwen/${pkgname}"
@@ -13,7 +13,6 @@ license=('Apache' 'PSF' 'MIT' 'BSD' 'GPL')
depends=("seafile-server=${pkgver}" 'libmemcached' 'libmariadbclient')
optdepends=('memcached' 'mariadb')
makedepends=('python2-virtualenv')
-install="${pkgname}.install"
changelog="ChangeLog"
source=("${pkgname}-${pkgver}-server.tar.gz::${url}/archive/v${pkgver}-server.tar.gz")
sha256sums=('80a7a1cadde8e8e570bdc454bc4a4902ebcace97b347f9eef701b5ab02742039')
@@ -46,8 +45,7 @@ package() {
venv="${pkgdir}/usr/lib/seahub"
virtualenv2 --no-wheel --system-site-packages "${venv}"
- # Activates the VirtualEnv
- source "${venv}/bin/activate"
+ source "${venv}/bin/activate" # Activates the VirtualEnv
# Fix subprocess exception if gunicorn is already installed
printf 'Installing gunicorn...'
diff --git a/seahub.install b/seahub.install
deleted file mode 100644
index e8dfa8184abd..000000000000
--- a/seahub.install
+++ /dev/null
@@ -1,6 +0,0 @@
-post_upgrade() {
- # Remove old virtualenv and script upgrade
- # More infos: pacman -Qc seahub
- rm -rf /usr/lib/seafile
- rm -f /usr/bin/seahub-preupgrade
-}