[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2020-10-01 Thread Sergej Pupykin via arch-commits
Date: Thursday, October 1, 2020 @ 21:18:29
  Author: spupykin
Revision: 714334

archrelease: copy trunk to community-any

Added:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
(from rev 714333, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
  roundcubemail/repos/community-any/PKGBUILD
(from rev 714333, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 714333, roundcubemail/trunk/apache.conf)
Deleted:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf

--+
 0001-plugins-password-make-Python-3-compatible.patch |   66 +-
 PKGBUILD |  110 -
 apache.conf  |   14 +-
 3 files changed, 95 insertions(+), 95 deletions(-)

Deleted: 0001-plugins-password-make-Python-3-compatible.patch
===
--- 0001-plugins-password-make-Python-3-compatible.patch2020-10-01 
21:18:22 UTC (rev 714333)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-10-01 
21:18:29 UTC (rev 714334)
@@ -1,33 +0,0 @@
-From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Wed, 1 Jan 2020 18:30:49 +0100
-Subject: [PATCH] plugins: password: make Python 3 compatible
-
-Remove the ", e" as the exception is never printed and this makes it
-Python 3 compatible as well

- plugins/password/helpers/chpass-wrapper.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
-index 61bba849e..e56811561 100644
 a/plugins/password/helpers/chpass-wrapper.py
-+++ b/plugins/password/helpers/chpass-wrapper.py
-@@ -11,12 +11,12 @@ BLACKLIST = (
- 
- try:
- username, password = sys.stdin.readline().split(':', 1)
--except ValueError, e:
-+except ValueError:
- sys.exit('Malformed input')
- 
- try:
- user = pwd.getpwnam(username)
--except KeyError, e:
-+except KeyError:
- sys.exit('No such user: %s' % username)
- 
- if user.pw_uid < 1000:
--- 
-2.24.1
-

Copied: 
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
 (from rev 714333, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
===
--- 0001-plugins-password-make-Python-3-compatible.patch
(rev 0)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-10-01 
21:18:29 UTC (rev 714334)
@@ -0,0 +1,33 @@
+From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Wed, 1 Jan 2020 18:30:49 +0100
+Subject: [PATCH] plugins: password: make Python 3 compatible
+
+Remove the ", e" as the exception is never printed and this makes it
+Python 3 compatible as well
+---
+ plugins/password/helpers/chpass-wrapper.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
+index 61bba849e..e56811561 100644
+--- a/plugins/password/helpers/chpass-wrapper.py
 b/plugins/password/helpers/chpass-wrapper.py
+@@ -11,12 +11,12 @@ BLACKLIST = (
+ 
+ try:
+ username, password = sys.stdin.readline().split(':', 1)
+-except ValueError, e:
++except ValueError:
+ sys.exit('Malformed input')
+ 
+ try:
+ user = pwd.getpwnam(username)
+-except KeyError, e:
++except KeyError:
+ sys.exit('No such user: %s' % username)
+ 
+ if user.pw_uid < 1000:
+-- 
+2.24.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-01 21:18:22 UTC (rev 714333)
+++ PKGBUILD2020-10-01 21:18:29 UTC (rev 714334)
@@ -1,55 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.4.8
-pkgrel=2
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php')
-options=('emptydirs')
-makedepends=('php-composer' 'git')
-optdepends=('python: password change script'
-'perl: for change_ldap_pass.pl helper'
-   'php-gd')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf")
-sha512sums=('8b7734cdec95954b7e18a0e44957da6ef74b5b0c3d28a1449e8634faa230844f5e0c28954245641758f8b2d9102aa32f279765ed3dfa20fa7b00dee4e5347362'
-'SKIP'
-

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2020-09-26 Thread Jelle van der Waa via arch-commits
Date: Saturday, September 26, 2020 @ 18:35:43
  Author: jelle
Revision: 712510

archrelease: copy trunk to community-any

Added:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
(from rev 712509, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
  roundcubemail/repos/community-any/PKGBUILD
(from rev 712509, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 712509, roundcubemail/trunk/apache.conf)
Deleted:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf

--+
 0001-plugins-password-make-Python-3-compatible.patch |   66 +-
 PKGBUILD |  109 -
 apache.conf  |   14 +-
 3 files changed, 95 insertions(+), 94 deletions(-)

Deleted: 0001-plugins-password-make-Python-3-compatible.patch
===
--- 0001-plugins-password-make-Python-3-compatible.patch2020-09-26 
18:35:36 UTC (rev 712509)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-09-26 
18:35:43 UTC (rev 712510)
@@ -1,33 +0,0 @@
-From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Wed, 1 Jan 2020 18:30:49 +0100
-Subject: [PATCH] plugins: password: make Python 3 compatible
-
-Remove the ", e" as the exception is never printed and this makes it
-Python 3 compatible as well

- plugins/password/helpers/chpass-wrapper.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
-index 61bba849e..e56811561 100644
 a/plugins/password/helpers/chpass-wrapper.py
-+++ b/plugins/password/helpers/chpass-wrapper.py
-@@ -11,12 +11,12 @@ BLACKLIST = (
- 
- try:
- username, password = sys.stdin.readline().split(':', 1)
--except ValueError, e:
-+except ValueError:
- sys.exit('Malformed input')
- 
- try:
- user = pwd.getpwnam(username)
--except KeyError, e:
-+except KeyError:
- sys.exit('No such user: %s' % username)
- 
- if user.pw_uid < 1000:
--- 
-2.24.1
-

Copied: 
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
 (from rev 712509, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
===
--- 0001-plugins-password-make-Python-3-compatible.patch
(rev 0)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-09-26 
18:35:43 UTC (rev 712510)
@@ -0,0 +1,33 @@
+From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Wed, 1 Jan 2020 18:30:49 +0100
+Subject: [PATCH] plugins: password: make Python 3 compatible
+
+Remove the ", e" as the exception is never printed and this makes it
+Python 3 compatible as well
+---
+ plugins/password/helpers/chpass-wrapper.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
+index 61bba849e..e56811561 100644
+--- a/plugins/password/helpers/chpass-wrapper.py
 b/plugins/password/helpers/chpass-wrapper.py
+@@ -11,12 +11,12 @@ BLACKLIST = (
+ 
+ try:
+ username, password = sys.stdin.readline().split(':', 1)
+-except ValueError, e:
++except ValueError:
+ sys.exit('Malformed input')
+ 
+ try:
+ user = pwd.getpwnam(username)
+-except KeyError, e:
++except KeyError:
+ sys.exit('No such user: %s' % username)
+ 
+ if user.pw_uid < 1000:
+-- 
+2.24.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-26 18:35:36 UTC (rev 712509)
+++ PKGBUILD2020-09-26 18:35:43 UTC (rev 712510)
@@ -1,54 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.4.8
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php')
-options=('emptydirs')
-makedepends=('php-composer' 'git')
-optdepends=('python: password change script'
-   'php-gd')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf")
-sha512sums=('8b7734cdec95954b7e18a0e44957da6ef74b5b0c3d28a1449e8634faa230844f5e0c28954245641758f8b2d9102aa32f279765ed3dfa20fa7b00dee4e5347362'
-'SKIP'
-

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2020-08-11 Thread Sergej Pupykin via arch-commits
Date: Tuesday, August 11, 2020 @ 22:26:51
  Author: spupykin
Revision: 675054

archrelease: copy trunk to community-any

Added:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
(from rev 675051, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
  roundcubemail/repos/community-any/PKGBUILD
(from rev 675052, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 675052, roundcubemail/trunk/apache.conf)
Deleted:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf

--+
 0001-plugins-password-make-Python-3-compatible.patch |   66 +-
 PKGBUILD |  108 -
 apache.conf  |   14 +-
 3 files changed, 94 insertions(+), 94 deletions(-)

Deleted: 0001-plugins-password-make-Python-3-compatible.patch
===
--- 0001-plugins-password-make-Python-3-compatible.patch2020-08-11 
22:26:36 UTC (rev 675053)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-08-11 
22:26:51 UTC (rev 675054)
@@ -1,33 +0,0 @@
-From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Wed, 1 Jan 2020 18:30:49 +0100
-Subject: [PATCH] plugins: password: make Python 3 compatible
-
-Remove the ", e" as the exception is never printed and this makes it
-Python 3 compatible as well

- plugins/password/helpers/chpass-wrapper.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
-index 61bba849e..e56811561 100644
 a/plugins/password/helpers/chpass-wrapper.py
-+++ b/plugins/password/helpers/chpass-wrapper.py
-@@ -11,12 +11,12 @@ BLACKLIST = (
- 
- try:
- username, password = sys.stdin.readline().split(':', 1)
--except ValueError, e:
-+except ValueError:
- sys.exit('Malformed input')
- 
- try:
- user = pwd.getpwnam(username)
--except KeyError, e:
-+except KeyError:
- sys.exit('No such user: %s' % username)
- 
- if user.pw_uid < 1000:
--- 
-2.24.1
-

Copied: 
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
 (from rev 675051, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
===
--- 0001-plugins-password-make-Python-3-compatible.patch
(rev 0)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-08-11 
22:26:51 UTC (rev 675054)
@@ -0,0 +1,33 @@
+From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Wed, 1 Jan 2020 18:30:49 +0100
+Subject: [PATCH] plugins: password: make Python 3 compatible
+
+Remove the ", e" as the exception is never printed and this makes it
+Python 3 compatible as well
+---
+ plugins/password/helpers/chpass-wrapper.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
+index 61bba849e..e56811561 100644
+--- a/plugins/password/helpers/chpass-wrapper.py
 b/plugins/password/helpers/chpass-wrapper.py
+@@ -11,12 +11,12 @@ BLACKLIST = (
+ 
+ try:
+ username, password = sys.stdin.readline().split(':', 1)
+-except ValueError, e:
++except ValueError:
+ sys.exit('Malformed input')
+ 
+ try:
+ user = pwd.getpwnam(username)
+-except KeyError, e:
++except KeyError:
+ sys.exit('No such user: %s' % username)
+ 
+ if user.pw_uid < 1000:
+-- 
+2.24.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-11 22:26:36 UTC (rev 675053)
+++ PKGBUILD2020-08-11 22:26:51 UTC (rev 675054)
@@ -1,54 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.4.7
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php')
-options=('emptydirs')
-makedepends=('php-composer' 'git')
-optdepends=('python: password change script'
-   'php-gd')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf")
-sha512sums=('d668075c1fb1ac48931a82ca67b4ebeed6f1d1e82a336901f79967cb2eb91979fc7bb46d4895558f8e64f89f963002efc7c1ad23b93c52a252ce1a7aa04b678a'
-'SKIP'
-

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2020-07-19 Thread Sergej Pupykin via arch-commits
Date: Sunday, July 19, 2020 @ 10:50:15
  Author: spupykin
Revision: 664544

archrelease: copy trunk to community-any

Added:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
(from rev 664543, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
  roundcubemail/repos/community-any/PKGBUILD
(from rev 664543, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 664543, roundcubemail/trunk/apache.conf)
Deleted:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf

--+
 0001-plugins-password-make-Python-3-compatible.patch |   66 +-
 PKGBUILD |  108 -
 apache.conf  |   14 +-
 3 files changed, 94 insertions(+), 94 deletions(-)

Deleted: 0001-plugins-password-make-Python-3-compatible.patch
===
--- 0001-plugins-password-make-Python-3-compatible.patch2020-07-19 
10:50:05 UTC (rev 664543)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-07-19 
10:50:15 UTC (rev 664544)
@@ -1,33 +0,0 @@
-From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Wed, 1 Jan 2020 18:30:49 +0100
-Subject: [PATCH] plugins: password: make Python 3 compatible
-
-Remove the ", e" as the exception is never printed and this makes it
-Python 3 compatible as well

- plugins/password/helpers/chpass-wrapper.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
-index 61bba849e..e56811561 100644
 a/plugins/password/helpers/chpass-wrapper.py
-+++ b/plugins/password/helpers/chpass-wrapper.py
-@@ -11,12 +11,12 @@ BLACKLIST = (
- 
- try:
- username, password = sys.stdin.readline().split(':', 1)
--except ValueError, e:
-+except ValueError:
- sys.exit('Malformed input')
- 
- try:
- user = pwd.getpwnam(username)
--except KeyError, e:
-+except KeyError:
- sys.exit('No such user: %s' % username)
- 
- if user.pw_uid < 1000:
--- 
-2.24.1
-

Copied: 
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
 (from rev 664543, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
===
--- 0001-plugins-password-make-Python-3-compatible.patch
(rev 0)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-07-19 
10:50:15 UTC (rev 664544)
@@ -0,0 +1,33 @@
+From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Wed, 1 Jan 2020 18:30:49 +0100
+Subject: [PATCH] plugins: password: make Python 3 compatible
+
+Remove the ", e" as the exception is never printed and this makes it
+Python 3 compatible as well
+---
+ plugins/password/helpers/chpass-wrapper.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
+index 61bba849e..e56811561 100644
+--- a/plugins/password/helpers/chpass-wrapper.py
 b/plugins/password/helpers/chpass-wrapper.py
+@@ -11,12 +11,12 @@ BLACKLIST = (
+ 
+ try:
+ username, password = sys.stdin.readline().split(':', 1)
+-except ValueError, e:
++except ValueError:
+ sys.exit('Malformed input')
+ 
+ try:
+ user = pwd.getpwnam(username)
+-except KeyError, e:
++except KeyError:
+ sys.exit('No such user: %s' % username)
+ 
+ if user.pw_uid < 1000:
+-- 
+2.24.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-19 10:50:05 UTC (rev 664543)
+++ PKGBUILD2020-07-19 10:50:15 UTC (rev 664544)
@@ -1,54 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.4.6
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php')
-options=('emptydirs')
-makedepends=('php-composer' 'git')
-optdepends=('python: password change script'
-   'php-gd')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf")
-sha512sums=('e86763ced58cfa8174f71d33ae45cd62f26a58853b9361b83fa5bf883a4106c957f66b6b17b03172a3ee595ca74d7c19ac38e449a23377defd77cf555742'
-'SKIP'
-

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2020-06-08 Thread Sergej Pupykin via arch-commits
Date: Monday, June 8, 2020 @ 23:07:20
  Author: spupykin
Revision: 640632

archrelease: copy trunk to community-any

Added:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
(from rev 640631, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
  roundcubemail/repos/community-any/PKGBUILD
(from rev 640631, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 640631, roundcubemail/trunk/apache.conf)
Deleted:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf

--+
 0001-plugins-password-make-Python-3-compatible.patch |   66 +-
 PKGBUILD |  108 -
 apache.conf  |   14 +-
 3 files changed, 94 insertions(+), 94 deletions(-)

Deleted: 0001-plugins-password-make-Python-3-compatible.patch
===
--- 0001-plugins-password-make-Python-3-compatible.patch2020-06-08 
23:07:06 UTC (rev 640631)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-06-08 
23:07:20 UTC (rev 640632)
@@ -1,33 +0,0 @@
-From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Wed, 1 Jan 2020 18:30:49 +0100
-Subject: [PATCH] plugins: password: make Python 3 compatible
-
-Remove the ", e" as the exception is never printed and this makes it
-Python 3 compatible as well

- plugins/password/helpers/chpass-wrapper.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
-index 61bba849e..e56811561 100644
 a/plugins/password/helpers/chpass-wrapper.py
-+++ b/plugins/password/helpers/chpass-wrapper.py
-@@ -11,12 +11,12 @@ BLACKLIST = (
- 
- try:
- username, password = sys.stdin.readline().split(':', 1)
--except ValueError, e:
-+except ValueError:
- sys.exit('Malformed input')
- 
- try:
- user = pwd.getpwnam(username)
--except KeyError, e:
-+except KeyError:
- sys.exit('No such user: %s' % username)
- 
- if user.pw_uid < 1000:
--- 
-2.24.1
-

Copied: 
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
 (from rev 640631, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
===
--- 0001-plugins-password-make-Python-3-compatible.patch
(rev 0)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-06-08 
23:07:20 UTC (rev 640632)
@@ -0,0 +1,33 @@
+From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Wed, 1 Jan 2020 18:30:49 +0100
+Subject: [PATCH] plugins: password: make Python 3 compatible
+
+Remove the ", e" as the exception is never printed and this makes it
+Python 3 compatible as well
+---
+ plugins/password/helpers/chpass-wrapper.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
+index 61bba849e..e56811561 100644
+--- a/plugins/password/helpers/chpass-wrapper.py
 b/plugins/password/helpers/chpass-wrapper.py
+@@ -11,12 +11,12 @@ BLACKLIST = (
+ 
+ try:
+ username, password = sys.stdin.readline().split(':', 1)
+-except ValueError, e:
++except ValueError:
+ sys.exit('Malformed input')
+ 
+ try:
+ user = pwd.getpwnam(username)
+-except KeyError, e:
++except KeyError:
+ sys.exit('No such user: %s' % username)
+ 
+ if user.pw_uid < 1000:
+-- 
+2.24.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-08 23:07:06 UTC (rev 640631)
+++ PKGBUILD2020-06-08 23:07:20 UTC (rev 640632)
@@ -1,54 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.4.5
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php')
-options=('emptydirs')
-makedepends=('php-composer' 'git')
-optdepends=('python: password change script'
-   'php-gd')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf")
-sha512sums=('031a4669249efa67050212fc6b19429751fabb8204ffe1ea0088810f2efe30de9b7bf986c21c3091b6037628a0527550e33e96ad67cd0f16c85dc5398f67b761'
-'SKIP'
-

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2020-06-05 Thread Sergej Pupykin via arch-commits
Date: Friday, June 5, 2020 @ 12:18:29
  Author: spupykin
Revision: 639150

archrelease: copy trunk to community-any

Added:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
(from rev 639149, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
  roundcubemail/repos/community-any/PKGBUILD
(from rev 639149, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 639149, roundcubemail/trunk/apache.conf)
Deleted:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf

--+
 0001-plugins-password-make-Python-3-compatible.patch |   66 +-
 PKGBUILD |  108 -
 apache.conf  |   14 +-
 3 files changed, 94 insertions(+), 94 deletions(-)

Deleted: 0001-plugins-password-make-Python-3-compatible.patch
===
--- 0001-plugins-password-make-Python-3-compatible.patch2020-06-05 
12:18:18 UTC (rev 639149)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-06-05 
12:18:29 UTC (rev 639150)
@@ -1,33 +0,0 @@
-From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Wed, 1 Jan 2020 18:30:49 +0100
-Subject: [PATCH] plugins: password: make Python 3 compatible
-
-Remove the ", e" as the exception is never printed and this makes it
-Python 3 compatible as well

- plugins/password/helpers/chpass-wrapper.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
-index 61bba849e..e56811561 100644
 a/plugins/password/helpers/chpass-wrapper.py
-+++ b/plugins/password/helpers/chpass-wrapper.py
-@@ -11,12 +11,12 @@ BLACKLIST = (
- 
- try:
- username, password = sys.stdin.readline().split(':', 1)
--except ValueError, e:
-+except ValueError:
- sys.exit('Malformed input')
- 
- try:
- user = pwd.getpwnam(username)
--except KeyError, e:
-+except KeyError:
- sys.exit('No such user: %s' % username)
- 
- if user.pw_uid < 1000:
--- 
-2.24.1
-

Copied: 
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
 (from rev 639149, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
===
--- 0001-plugins-password-make-Python-3-compatible.patch
(rev 0)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-06-05 
12:18:29 UTC (rev 639150)
@@ -0,0 +1,33 @@
+From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Wed, 1 Jan 2020 18:30:49 +0100
+Subject: [PATCH] plugins: password: make Python 3 compatible
+
+Remove the ", e" as the exception is never printed and this makes it
+Python 3 compatible as well
+---
+ plugins/password/helpers/chpass-wrapper.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
+index 61bba849e..e56811561 100644
+--- a/plugins/password/helpers/chpass-wrapper.py
 b/plugins/password/helpers/chpass-wrapper.py
+@@ -11,12 +11,12 @@ BLACKLIST = (
+ 
+ try:
+ username, password = sys.stdin.readline().split(':', 1)
+-except ValueError, e:
++except ValueError:
+ sys.exit('Malformed input')
+ 
+ try:
+ user = pwd.getpwnam(username)
+-except KeyError, e:
++except KeyError:
+ sys.exit('No such user: %s' % username)
+ 
+ if user.pw_uid < 1000:
+-- 
+2.24.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-05 12:18:18 UTC (rev 639149)
+++ PKGBUILD2020-06-05 12:18:29 UTC (rev 639150)
@@ -1,54 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.4.4
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php')
-options=('emptydirs')
-makedepends=('php-composer' 'git')
-optdepends=('python: password change script'
-   'php-gd')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf")
-sha512sums=('ddea321b5266c547f67c010147e9aa1457bea4802bec37f9e9d87e691bdc8df27f5c90cff8770de2458822160b85f7359f62742072ae1d642a040b9d88651519'
-'SKIP'
-

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2020-04-29 Thread Sergej Pupykin via arch-commits
Date: Wednesday, April 29, 2020 @ 22:19:05
  Author: spupykin
Revision: 622334

archrelease: copy trunk to community-any

Added:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
(from rev 622333, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
  roundcubemail/repos/community-any/PKGBUILD
(from rev 622333, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 622333, roundcubemail/trunk/apache.conf)
Deleted:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf

--+
 0001-plugins-password-make-Python-3-compatible.patch |   66 +-
 PKGBUILD |  108 -
 apache.conf  |   14 +-
 3 files changed, 94 insertions(+), 94 deletions(-)

Deleted: 0001-plugins-password-make-Python-3-compatible.patch
===
--- 0001-plugins-password-make-Python-3-compatible.patch2020-04-29 
22:18:54 UTC (rev 622333)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-04-29 
22:19:05 UTC (rev 622334)
@@ -1,33 +0,0 @@
-From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Wed, 1 Jan 2020 18:30:49 +0100
-Subject: [PATCH] plugins: password: make Python 3 compatible
-
-Remove the ", e" as the exception is never printed and this makes it
-Python 3 compatible as well

- plugins/password/helpers/chpass-wrapper.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
-index 61bba849e..e56811561 100644
 a/plugins/password/helpers/chpass-wrapper.py
-+++ b/plugins/password/helpers/chpass-wrapper.py
-@@ -11,12 +11,12 @@ BLACKLIST = (
- 
- try:
- username, password = sys.stdin.readline().split(':', 1)
--except ValueError, e:
-+except ValueError:
- sys.exit('Malformed input')
- 
- try:
- user = pwd.getpwnam(username)
--except KeyError, e:
-+except KeyError:
- sys.exit('No such user: %s' % username)
- 
- if user.pw_uid < 1000:
--- 
-2.24.1
-

Copied: 
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
 (from rev 622333, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
===
--- 0001-plugins-password-make-Python-3-compatible.patch
(rev 0)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-04-29 
22:19:05 UTC (rev 622334)
@@ -0,0 +1,33 @@
+From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Wed, 1 Jan 2020 18:30:49 +0100
+Subject: [PATCH] plugins: password: make Python 3 compatible
+
+Remove the ", e" as the exception is never printed and this makes it
+Python 3 compatible as well
+---
+ plugins/password/helpers/chpass-wrapper.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
+index 61bba849e..e56811561 100644
+--- a/plugins/password/helpers/chpass-wrapper.py
 b/plugins/password/helpers/chpass-wrapper.py
+@@ -11,12 +11,12 @@ BLACKLIST = (
+ 
+ try:
+ username, password = sys.stdin.readline().split(':', 1)
+-except ValueError, e:
++except ValueError:
+ sys.exit('Malformed input')
+ 
+ try:
+ user = pwd.getpwnam(username)
+-except KeyError, e:
++except KeyError:
+ sys.exit('No such user: %s' % username)
+ 
+ if user.pw_uid < 1000:
+-- 
+2.24.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-29 22:18:54 UTC (rev 622333)
+++ PKGBUILD2020-04-29 22:19:05 UTC (rev 622334)
@@ -1,54 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.4.3
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php')
-options=('emptydirs')
-makedepends=('php-composer' 'git')
-optdepends=('python: password change script'
-   'php-gd')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf")
-sha512sums=('c65359473d08a46dbd42894c2758a46209491fc421ee58ab5b1c0d0d56e3fec8b2f43d01b18cb8934589cbee7e7abfda2c8efbf02b3521790d7b45ed6dc88a1e'
-'SKIP'
-

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2020-02-25 Thread Sergej Pupykin via arch-commits
Date: Tuesday, February 25, 2020 @ 13:08:06
  Author: spupykin
Revision: 581253

archrelease: copy trunk to community-any

Added:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
(from rev 581252, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
  roundcubemail/repos/community-any/PKGBUILD
(from rev 581252, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 581252, roundcubemail/trunk/apache.conf)
Deleted:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf

--+
 0001-plugins-password-make-Python-3-compatible.patch |   66 +-
 PKGBUILD |  110 -
 apache.conf  |   14 +-
 3 files changed, 94 insertions(+), 96 deletions(-)

Deleted: 0001-plugins-password-make-Python-3-compatible.patch
===
--- 0001-plugins-password-make-Python-3-compatible.patch2020-02-25 
13:07:56 UTC (rev 581252)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-02-25 
13:08:06 UTC (rev 581253)
@@ -1,33 +0,0 @@
-From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Wed, 1 Jan 2020 18:30:49 +0100
-Subject: [PATCH] plugins: password: make Python 3 compatible
-
-Remove the ", e" as the exception is never printed and this makes it
-Python 3 compatible as well

- plugins/password/helpers/chpass-wrapper.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
-index 61bba849e..e56811561 100644
 a/plugins/password/helpers/chpass-wrapper.py
-+++ b/plugins/password/helpers/chpass-wrapper.py
-@@ -11,12 +11,12 @@ BLACKLIST = (
- 
- try:
- username, password = sys.stdin.readline().split(':', 1)
--except ValueError, e:
-+except ValueError:
- sys.exit('Malformed input')
- 
- try:
- user = pwd.getpwnam(username)
--except KeyError, e:
-+except KeyError:
- sys.exit('No such user: %s' % username)
- 
- if user.pw_uid < 1000:
--- 
-2.24.1
-

Copied: 
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
 (from rev 581252, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
===
--- 0001-plugins-password-make-Python-3-compatible.patch
(rev 0)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-02-25 
13:08:06 UTC (rev 581253)
@@ -0,0 +1,33 @@
+From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Wed, 1 Jan 2020 18:30:49 +0100
+Subject: [PATCH] plugins: password: make Python 3 compatible
+
+Remove the ", e" as the exception is never printed and this makes it
+Python 3 compatible as well
+---
+ plugins/password/helpers/chpass-wrapper.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
+index 61bba849e..e56811561 100644
+--- a/plugins/password/helpers/chpass-wrapper.py
 b/plugins/password/helpers/chpass-wrapper.py
+@@ -11,12 +11,12 @@ BLACKLIST = (
+ 
+ try:
+ username, password = sys.stdin.readline().split(':', 1)
+-except ValueError, e:
++except ValueError:
+ sys.exit('Malformed input')
+ 
+ try:
+ user = pwd.getpwnam(username)
+-except KeyError, e:
++except KeyError:
+ sys.exit('No such user: %s' % username)
+ 
+ if user.pw_uid < 1000:
+-- 
+2.24.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-25 13:07:56 UTC (rev 581252)
+++ PKGBUILD2020-02-25 13:08:06 UTC (rev 581253)
@@ -1,56 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php' 'php-gd')
-options=('emptydirs')
-makedepends=('php-composer' 'git')
-optdepends=('python: password change script')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf" 0001-plugins-password-make-Python-3-compatible.patch)
-sha512sums=('3f705bc38b44a0b7ea3241b0222f607b040ec01c8ea400b6b6222fbe346570c5f3450e5a188bab99ea171481453eb3f5b1e7457070ace1144558ec662a4273bb'
-'SKIP'
-

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2020-01-09 Thread Felix Yan via arch-commits
Date: Thursday, January 9, 2020 @ 13:36:08
  Author: felixonmars
Revision: 551166

archrelease: copy trunk to community-any

Added:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
(from rev 551164, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
  roundcubemail/repos/community-any/PKGBUILD
(from rev 551164, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 551164, roundcubemail/trunk/apache.conf)
Deleted:
  
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf

--+
 0001-plugins-password-make-Python-3-compatible.patch |   66 +-
 PKGBUILD |  112 -
 apache.conf  |   14 +-
 3 files changed, 96 insertions(+), 96 deletions(-)

Deleted: 0001-plugins-password-make-Python-3-compatible.patch
===
--- 0001-plugins-password-make-Python-3-compatible.patch2020-01-09 
13:36:05 UTC (rev 551165)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-01-09 
13:36:08 UTC (rev 551166)
@@ -1,33 +0,0 @@
-From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
-From: Jelle van der Waa 
-Date: Wed, 1 Jan 2020 18:30:49 +0100
-Subject: [PATCH] plugins: password: make Python 3 compatible
-
-Remove the ", e" as the exception is never printed and this makes it
-Python 3 compatible as well

- plugins/password/helpers/chpass-wrapper.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
-index 61bba849e..e56811561 100644
 a/plugins/password/helpers/chpass-wrapper.py
-+++ b/plugins/password/helpers/chpass-wrapper.py
-@@ -11,12 +11,12 @@ BLACKLIST = (
- 
- try:
- username, password = sys.stdin.readline().split(':', 1)
--except ValueError, e:
-+except ValueError:
- sys.exit('Malformed input')
- 
- try:
- user = pwd.getpwnam(username)
--except KeyError, e:
-+except KeyError:
- sys.exit('No such user: %s' % username)
- 
- if user.pw_uid < 1000:
--- 
-2.24.1
-

Copied: 
roundcubemail/repos/community-any/0001-plugins-password-make-Python-3-compatible.patch
 (from rev 551164, 
roundcubemail/trunk/0001-plugins-password-make-Python-3-compatible.patch)
===
--- 0001-plugins-password-make-Python-3-compatible.patch
(rev 0)
+++ 0001-plugins-password-make-Python-3-compatible.patch2020-01-09 
13:36:08 UTC (rev 551166)
@@ -0,0 +1,33 @@
+From d1163b12a1da183d9e8a8df4180b03afe4ef775d Mon Sep 17 00:00:00 2001
+From: Jelle van der Waa 
+Date: Wed, 1 Jan 2020 18:30:49 +0100
+Subject: [PATCH] plugins: password: make Python 3 compatible
+
+Remove the ", e" as the exception is never printed and this makes it
+Python 3 compatible as well
+---
+ plugins/password/helpers/chpass-wrapper.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/password/helpers/chpass-wrapper.py 
b/plugins/password/helpers/chpass-wrapper.py
+index 61bba849e..e56811561 100644
+--- a/plugins/password/helpers/chpass-wrapper.py
 b/plugins/password/helpers/chpass-wrapper.py
+@@ -11,12 +11,12 @@ BLACKLIST = (
+ 
+ try:
+ username, password = sys.stdin.readline().split(':', 1)
+-except ValueError, e:
++except ValueError:
+ sys.exit('Malformed input')
+ 
+ try:
+ user = pwd.getpwnam(username)
+-except KeyError, e:
++except KeyError:
+ sys.exit('No such user: %s' % username)
+ 
+ if user.pw_uid < 1000:
+-- 
+2.24.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-09 13:36:05 UTC (rev 551165)
+++ PKGBUILD2020-01-09 13:36:08 UTC (rev 551166)
@@ -1,56 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.4.1
-pkgrel=2
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php' 'php-gd')
-options=('emptydirs')
-makedepends=('php-composer' 'git')
-optdepends=('python: password change script')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf" 0001-plugins-password-make-Python-3-compatible.patch)
-sha256sums=('640423d21e1aa733ddea7462f156e194b051f086a3f2a70430e0aa2c9b09b44a'
-'SKIP'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0'
-

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2018-04-16 Thread Sergej Pupykin via arch-commits
Date: Monday, April 16, 2018 @ 12:01:32
  Author: spupykin
Revision: 316497

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 316496, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 316496, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.tmpfiles
(from rev 316496, roundcubemail/trunk/roundcubemail.tmpfiles)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.tmpfiles

+
 PKGBUILD   |  122 +++
 apache.conf|   14 ++---
 roundcubemail.tmpfiles |4 -
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-16 12:01:17 UTC (rev 316496)
+++ PKGBUILD2018-04-16 12:01:32 UTC (rev 316497)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.3.5
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php' 'php-gd')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf"
-"roundcubemail.tmpfiles")
-sha256sums=('634e98b3e422208d25aba0a0e5adf603833b4b9d32b5db6c1162a122f31b686b'
-'SKIP'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0'
-'b0baf067cd6c09938991890ab8c87ba4bad06987781c5accbed86b95e35c2a56')
-
-prepare() {
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-#  mv composer.json-dist composer.json
-#  php -d extension=gd.so ../composer.phar install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  find "$pkgdir" -name .git -exec rm -rf {} \; || true
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-#
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-#vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 316496, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-16 12:01:32 UTC (rev 316497)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.3.6
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="https://roundcube.net/;
+license=('GPL')
+depends=('php' 'php-gd')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+'etc/webapps/roundcubemail/apache.conf')
+validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
+source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
+"apache.conf"
+"roundcubemail.tmpfiles")
+sha256sums=('f1b86e97cc8fd69bb1957d4115762af6ea2d6957ea17b33dd3ec2995662670d9'
+'SKIP'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0'
+'b0baf067cd6c09938991890ab8c87ba4bad06987781c5accbed86b95e35c2a56')
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+#  mv 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2018-03-20 Thread Sergej Pupykin via arch-commits
Date: Tuesday, March 20, 2018 @ 12:17:53
  Author: spupykin
Revision: 309606

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 309605, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 309605, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.tmpfiles
(from rev 309605, roundcubemail/trunk/roundcubemail.tmpfiles)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.tmpfiles

+
 PKGBUILD   |  122 +++
 apache.conf|   14 ++---
 roundcubemail.tmpfiles |4 -
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-20 12:17:37 UTC (rev 309605)
+++ PKGBUILD2018-03-20 12:17:53 UTC (rev 309606)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.3.4
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php' 'php-gd')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf"
-"roundcubemail.tmpfiles")
-sha256sums=('bde95a620f0f5670450d3b94e093c30a4bdf2717183fcc92c8018019ad66c556'
-'SKIP'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0'
-'b0baf067cd6c09938991890ab8c87ba4bad06987781c5accbed86b95e35c2a56')
-
-prepare() {
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-#  mv composer.json-dist composer.json
-#  php -d extension=gd.so ../composer.phar install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  find "$pkgdir" -name .git -exec rm -rf {} \; || true
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-#
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-#vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 309605, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-20 12:17:53 UTC (rev 309606)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.3.5
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="https://roundcube.net/;
+license=('GPL')
+depends=('php' 'php-gd')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+'etc/webapps/roundcubemail/apache.conf')
+validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
+source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
+"apache.conf"
+"roundcubemail.tmpfiles")
+sha256sums=('634e98b3e422208d25aba0a0e5adf603833b4b9d32b5db6c1162a122f31b686b'
+'SKIP'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0'
+'b0baf067cd6c09938991890ab8c87ba4bad06987781c5accbed86b95e35c2a56')
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+#  mv 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2018-01-16 Thread Sergej Pupykin via arch-commits
Date: Tuesday, January 16, 2018 @ 08:26:18
  Author: spupykin
Revision: 283068

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 283067, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 283067, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.tmpfiles
(from rev 283067, roundcubemail/trunk/roundcubemail.tmpfiles)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.tmpfiles

+
 PKGBUILD   |  122 +++
 apache.conf|   14 ++---
 roundcubemail.tmpfiles |4 -
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-16 08:26:03 UTC (rev 283067)
+++ PKGBUILD2018-01-16 08:26:18 UTC (rev 283068)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.3.3
-pkgrel=2
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="https://roundcube.net/;
-license=('GPL')
-depends=('php' 'php-gd')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-'etc/webapps/roundcubemail/apache.conf')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
-"apache.conf"
-"roundcubemail.tmpfiles")
-sha256sums=('05d9856c966c0d93accabf724e7ff2fd493bba1a57c44247ed0a2aacd617c879'
-'SKIP'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0'
-'b0baf067cd6c09938991890ab8c87ba4bad06987781c5accbed86b95e35c2a56')
-validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5') # Roundcube 
Developers 
-
-prepare() {
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-#  mv composer.json-dist composer.json
-#  php -d extension=gd.so ../composer.phar install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  find "$pkgdir" -name .git -exec rm -rf {} \; || true
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-#
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-#vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 283067, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-16 08:26:18 UTC (rev 283068)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.3.4
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="https://roundcube.net/;
+license=('GPL')
+depends=('php' 'php-gd')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+'etc/webapps/roundcubemail/apache.conf')
+validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5')
+source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
+"apache.conf"
+"roundcubemail.tmpfiles")
+sha256sums=('bde95a620f0f5670450d3b94e093c30a4bdf2717183fcc92c8018019ad66c556'
+'SKIP'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0'
+'b0baf067cd6c09938991890ab8c87ba4bad06987781c5accbed86b95e35c2a56')
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2018-01-07 Thread Eli Schwartz via arch-commits
Date: Monday, January 8, 2018 @ 05:58:40
  Author: eschwartz
Revision: 280354

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 280353, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 280353, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.tmpfiles
(from rev 280353, roundcubemail/trunk/roundcubemail.tmpfiles)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

+
 PKGBUILD   |  122 +++
 apache.conf|   14 ++---
 roundcubemail.install  |7 --
 roundcubemail.tmpfiles |2 
 4 files changed, 70 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-08 05:58:20 UTC (rev 280353)
+++ PKGBUILD2018-01-08 05:58:40 UTC (rev 280354)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.3.3
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-gd')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz;
-   apache.conf)
-sha256sums=('05d9856c966c0d93accabf724e7ff2fd493bba1a57c44247ed0a2aacd617c879'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
-
-prepare() {
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-#  mv composer.json-dist composer.json
-#  php -d extension=gd.so ../composer.phar install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  mkdir -p "$pkgdir"/var/log
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 "$pkgdir"/var/{log,cache}/roundcubemail
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  find "$pkgdir" -name .git -exec rm -rf {} \; || true
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-#
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-#vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 280353, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-08 05:58:40 UTC (rev 280354)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.3.3
+pkgrel=2
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="https://roundcube.net/;
+license=('GPL')
+depends=('php' 'php-gd')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+'etc/webapps/roundcubemail/apache.conf')
+source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz"{,.asc}
+"apache.conf"
+"roundcubemail.tmpfiles")
+sha256sums=('05d9856c966c0d93accabf724e7ff2fd493bba1a57c44247ed0a2aacd617c879'
+'SKIP'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0'
+'b0baf067cd6c09938991890ab8c87ba4bad06987781c5accbed86b95e35c2a56')
+validpgpkeys=('F3E4C04BB3DB5D4215C45F7F5AB2BAA141C4F7D5') # Roundcube 
Developers 
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2017-11-09 Thread Sergej Pupykin
Date: Thursday, November 9, 2017 @ 13:29:24
  Author: spupykin
Revision: 266009

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 266008, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 266008, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 266008, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  122 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-09 13:29:05 UTC (rev 266008)
+++ PKGBUILD2017-11-09 13:29:24 UTC (rev 266009)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.3.2
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-gd')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz;
-   apache.conf)
-sha256sums=('83e4505df8f14a94313f4a8ccc88a0550e85d7798336b680f1040097fe93c50a'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
-
-prepare() {
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-#  mv composer.json-dist composer.json
-#  php -d extension=gd.so ../composer.phar install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  mkdir -p "$pkgdir"/var/log
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 "$pkgdir"/var/{log,cache}/roundcubemail
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  find "$pkgdir" -name .git -exec rm -rf {} \; || true
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-#
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-#vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 266008, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-09 13:29:24 UTC (rev 266009)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.3.3
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-gd')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz;
+   apache.conf)
+sha256sums=('05d9856c966c0d93accabf724e7ff2fd493bba1a57c44247ed0a2aacd617c879'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+#  mv composer.json-dist composer.json
+#  php -d extension=gd.so ../composer.phar install --no-dev
+}
+
+package() {
+  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
+  mkdir -p 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2017-11-01 Thread Sergej Pupykin
Date: Wednesday, November 1, 2017 @ 14:05:21
  Author: spupykin
Revision: 265003

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 265002, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 265002, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 265002, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  122 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-01 14:05:05 UTC (rev 265002)
+++ PKGBUILD2017-11-01 14:05:21 UTC (rev 265003)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.3.1
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-gd')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz;
-   apache.conf)
-sha256sums=('f071bbe84f90ba55582289dcef7b70198b81e0aedd4de8422945658bbee3da0b'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
-
-prepare() {
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-#  mv composer.json-dist composer.json
-#  php -d extension=gd.so ../composer.phar install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  mkdir -p "$pkgdir"/var/log
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 "$pkgdir"/var/{log,cache}/roundcubemail
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  find "$pkgdir" -name .git -exec rm -rf {} \; || true
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-#
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-#vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 265002, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-01 14:05:21 UTC (rev 265003)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-gd')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz;
+   apache.conf)
+sha256sums=('83e4505df8f14a94313f4a8ccc88a0550e85d7798336b680f1040097fe93c50a'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+#  mv composer.json-dist composer.json
+#  php -d extension=gd.so ../composer.phar install --no-dev
+}
+
+package() {
+  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
+  mkdir -p 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2017-09-05 Thread Sergej Pupykin
Date: Tuesday, September 5, 2017 @ 10:44:22
  Author: spupykin
Revision: 255723

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 255722, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 255722, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 255722, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  122 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-05 10:44:03 UTC (rev 255722)
+++ PKGBUILD2017-09-05 10:44:22 UTC (rev 255723)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.3.0
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-gd')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz;
-   apache.conf)
-sha256sums=('a9c4d084716482171b23216d57ad9dafd85bd34f1eee73824c62327fc22b995a'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
-
-prepare() {
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-#  mv composer.json-dist composer.json
-#  php -d extension=gd.so ../composer.phar install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  mkdir -p "$pkgdir"/var/log
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 "$pkgdir"/var/{log,cache}/roundcubemail
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  find "$pkgdir" -name .git -exec rm -rf {} \; || true
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-#
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-#  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-#vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-#vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 255722, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-05 10:44:22 UTC (rev 255723)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-gd')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz;
+   apache.conf)
+sha256sums=('f071bbe84f90ba55582289dcef7b70198b81e0aedd4de8422945658bbee3da0b'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+#  mv composer.json-dist composer.json
+#  php -d extension=gd.so ../composer.phar install --no-dev
+}
+
+package() {
+  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
+  mkdir -p 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2017-06-27 Thread Sergej Pupykin
Date: Tuesday, June 27, 2017 @ 15:06:18
  Author: spupykin
Revision: 241214

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 241213, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 241213, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 241213, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  124 +++-
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 75 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-27 15:06:05 UTC (rev 241213)
+++ PKGBUILD2017-06-27 15:06:18 UTC (rev 241214)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2.5
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   "https://getcomposer.org/download/1.4.1/composer.phar;
-   apache.conf)
-sha256sums=('cf20b48f95827c44abcebc40ef64a025fbcd947518849f25de6bb6c8883c5672'
-'abd277cc3453be980bb48cbffe9d1f7422ca1ef4bc0b7d035fda87cea4d55cbc'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
-
-prepare() {
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  php ../composer.phar install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  mkdir -p "$pkgdir"/var/log
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 "$pkgdir"/var/{log,cache}/roundcubemail
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  find "$pkgdir" -name .git -exec rm -rf {} \; || true
-
-  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 241213, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-27 15:06:18 UTC (rev 241214)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-gd')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("https://github.com/roundcube/roundcubemail/releases/download/$pkgver/roundcubemail-$pkgver-complete.tar.gz;
+   apache.conf)
+sha256sums=('a9c4d084716482171b23216d57ad9dafd85bd34f1eee73824c62327fc22b995a'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+#  mv composer.json-dist composer.json
+#  php -d extension=gd.so ../composer.phar install --no-dev
+}
+

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:46:17
  Author: spupykin
Revision: 226553

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 226552, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 226552, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 226552, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  126 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-02 09:46:05 UTC (rev 226552)
+++ PKGBUILD2017-05-02 09:46:17 UTC (rev 226553)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2.4
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   "https://getcomposer.org/download/1.4.1/composer.phar;
-   apache.conf)
-sha256sums=('91d6c8c8a4ecd5c3c78926c080720733f413640950578efe440b5c769fba59a3'
-'abd277cc3453be980bb48cbffe9d1f7422ca1ef4bc0b7d035fda87cea4d55cbc'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
-
-prepare() {
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  php ../composer.phar install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  mkdir -p "$pkgdir"/var/log
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 "$pkgdir"/var/{log,cache}/roundcubemail
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  find "$pkgdir" -name .git -exec rm -rf {} \; || true
-
-  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 226552, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-02 09:46:17 UTC (rev 226553)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2.5
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   "https://getcomposer.org/download/1.4.1/composer.phar;
+   apache.conf)
+sha256sums=('cf20b48f95827c44abcebc40ef64a025fbcd947518849f25de6bb6c8883c5672'
+'abd277cc3453be980bb48cbffe9d1f7422ca1ef4bc0b7d035fda87cea4d55cbc'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2017-03-14 Thread Sergej Pupykin
Date: Tuesday, March 14, 2017 @ 13:06:07
  Author: spupykin
Revision: 216246

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 216245, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 216245, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 216245, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  129 +++-
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 77 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-14 13:05:53 UTC (rev 216245)
+++ PKGBUILD2017-03-14 13:06:07 UTC (rev 216246)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2.3
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   apache.conf)
-sha256sums=('461f958818cd294dcc40a97d0bf30091fe0762906b18653fa9739e16eeba3a5c'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
-
-prepare() {
-#  mv "$srcdir"/roundcubemail-${_commit} 
"$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  composer install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  mkdir -p "$pkgdir"/var/log
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 "$pkgdir"/var/{log,cache}/roundcubemail
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 "$pkgdir"/etc/php/conf.d/
-#  cat <<'EOF' >"$pkgdir"/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-
-  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 216245, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-14 13:06:07 UTC (rev 216246)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2.4
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   "https://getcomposer.org/download/1.4.1/composer.phar;
+   apache.conf)
+sha256sums=('91d6c8c8a4ecd5c3c78926c080720733f413640950578efe440b5c769fba59a3'
+'abd277cc3453be980bb48cbffe9d1f7422ca1ef4bc0b7d035fda87cea4d55cbc'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-12-01 Thread Sergej Pupykin
Date: Thursday, December 1, 2016 @ 13:14:55
  Author: spupykin
Revision: 197611

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 197610, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 197610, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 197610, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  132 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-01 13:14:45 UTC (rev 197610)
+++ PKGBUILD2016-12-01 13:14:55 UTC (rev 197611)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2.2
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   apache.conf)
-md5sums=('92e4ba3dd9e00dece7c8114764781602'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  composer install --no-dev
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-
-  sed -i 
"s|$srcdir/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-  sed -i 
"s|$srcdir/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" \
-vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 197610, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-01 13:14:55 UTC (rev 197611)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2.3
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   apache.conf)
+sha256sums=('461f958818cd294dcc40a97d0bf30091fe0762906b18653fa9739e16eeba3a5c'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
+
+prepare() {
+#  mv "$srcdir"/roundcubemail-${_commit} 
"$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-09-30 Thread Sergej Pupykin
Date: Friday, September 30, 2016 @ 09:13:38
  Author: spupykin
Revision: 191061

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 191060, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 191060, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 191060, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  132 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-30 09:13:27 UTC (rev 191060)
+++ PKGBUILD2016-09-30 09:13:38 UTC (rev 191061)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   apache.conf)
-md5sums=('656349f1001ffbcf74066db2f5ebde05'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  composer install --no-dev
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-
-  sed -i 
"s|$srcdir/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-  sed -i 
"s|$srcdir/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" \
-vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 191060, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-30 09:13:38 UTC (rev 191061)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2.2
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   apache.conf)
+md5sums=('92e4ba3dd9e00dece7c8114764781602'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+  mv composer.json-dist composer.json
+  composer install --no-dev

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-07-29 Thread Sergej Pupykin
Date: Friday, July 29, 2016 @ 16:32:54
  Author: spupykin
Revision: 184630

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 184629, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 184629, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 184629, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  132 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-29 16:32:45 UTC (rev 184629)
+++ PKGBUILD2016-07-29 16:32:54 UTC (rev 184630)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2.0
-pkgrel=3
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   apache.conf)
-md5sums=('ed3ce2c09f6e6a4221f4b99f5249da66'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  composer install --no-dev
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-
-  sed -i 
"s|$srcdir/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-  sed -i 
"s|$srcdir/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" \
-vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 184629, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-29 16:32:54 UTC (rev 184630)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   apache.conf)
+md5sums=('656349f1001ffbcf74066db2f5ebde05'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+  mv composer.json-dist composer.json
+  composer install --no-dev
+}
+

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-06-07 Thread Sergej Pupykin
Date: Tuesday, June 7, 2016 @ 13:58:12
  Author: spupykin
Revision: 178139

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 178138, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 178138, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 178138, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  132 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-07 11:57:43 UTC (rev 178138)
+++ PKGBUILD2016-06-07 11:58:12 UTC (rev 178139)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2.0
-pkgrel=2
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   apache.conf)
-md5sums=('ed3ce2c09f6e6a4221f4b99f5249da66'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  composer install --no-dev
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-
-  sed -i 
"s|$srcdir/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-  sed -i 
"s|$srcdir/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" \
-vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 178138, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-07 11:58:12 UTC (rev 178139)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2.0
+pkgrel=3
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   apache.conf)
+md5sums=('ed3ce2c09f6e6a4221f4b99f5249da66'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+  mv composer.json-dist composer.json
+  composer install --no-dev
+}
+

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-06-07 Thread Sergej Pupykin
Date: Tuesday, June 7, 2016 @ 13:32:51
  Author: spupykin
Revision: 178137

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 178136, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 178136, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 178136, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  132 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-07 11:32:24 UTC (rev 178136)
+++ PKGBUILD2016-06-07 11:32:51 UTC (rev 178137)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2.0
-pkgrel=2
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   apache.conf)
-md5sums=('ed3ce2c09f6e6a4221f4b99f5249da66'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  composer install --no-dev
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-
-  sed -i 
"s|$srcdir/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" \
-
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php \
-
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php \
-vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 178136, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-07 11:32:51 UTC (rev 178137)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   apache.conf)
+md5sums=('ed3ce2c09f6e6a4221f4b99f5249da66'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+  mv composer.json-dist composer.json
+  composer install --no-dev
+}
+
+package() {
+  

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-06-06 Thread Sergej Pupykin
Date: Monday, June 6, 2016 @ 15:28:56
  Author: spupykin
Revision: 178022

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 178021, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 178021, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 178021, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  124 +---
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 80 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-06 13:28:44 UTC (rev 178021)
+++ PKGBUILD2016-06-06 13:28:56 UTC (rev 178022)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   apache.conf)
-md5sums=('ed3ce2c09f6e6a4221f4b99f5249da66'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  composer install --no-dev
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 178021, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-06 13:28:56 UTC (rev 178022)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   apache.conf)
+md5sums=('ed3ce2c09f6e6a4221f4b99f5249da66'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+  mv composer.json-dist composer.json
+  composer install --no-dev
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-05-23 Thread Sergej Pupykin
Date: Monday, May 23, 2016 @ 12:43:53
  Author: spupykin
Revision: 176131

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 176130, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 176130, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 176130, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  116 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-23 10:43:42 UTC (rev 176130)
+++ PKGBUILD2016-05-23 10:43:53 UTC (rev 176131)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2rc
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   apache.conf)
-md5sums=('b12e98b2f3cf19419793e477516c8bba'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  composer install --no-dev
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 176130, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-23 10:43:53 UTC (rev 176131)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   apache.conf)
+md5sums=('ed3ce2c09f6e6a4221f4b99f5249da66'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+  mv composer.json-dist composer.json
+  composer install --no-dev
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-04-21 Thread Sergej Pupykin
Date: Thursday, April 21, 2016 @ 12:42:55
  Author: spupykin
Revision: 171493

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 171492, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 171492, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 171492, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  117 +++-
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 72 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 10:42:40 UTC (rev 171492)
+++ PKGBUILD2016-04-21 10:42:55 UTC (rev 171493)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2beta
-_commit=332ffef199745f1ddb3f3ad3e5618a4675b929bb
-pkgrel=3
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver-${_commit}.tar.gz::https://github.com/roundcube/roundcubemail/archive/${_commit}.tar.gz;
-   apache.conf)
-md5sums=('391339848be6432a976e0af60989c298'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/beta/-beta}
-  cd ${srcdir}/roundcubemail-${pkgver/beta/-beta}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  composer install --no-dev
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/beta/-beta} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 171492, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 10:42:55 UTC (rev 171493)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2rc
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   apache.conf)
+md5sums=('b12e98b2f3cf19419793e477516c8bba'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+#  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+  mv composer.json-dist composer.json
+  composer install --no-dev
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-02-03 Thread Sergej Pupykin
Date: Wednesday, February 3, 2016 @ 12:01:08
  Author: spupykin
Revision: 160066

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 160065, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 160065, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 160065, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  115 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 73 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-03 11:00:58 UTC (rev 160065)
+++ PKGBUILD2016-02-03 11:01:08 UTC (rev 160066)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2beta
-pkgrel=2
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-#source=(https://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}-complete.tar.gz
-#source=(https://downloads.sourceforge.net/project/roundcubemail/roundcubemail-beta/${pkgver/beta/-beta}/roundcubemail-${pkgver/beta/-beta}-complete.tar.gz
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/55a02bcf56f05697786e20c4659ab279d4df4e05.tar.gz;
-   apache.conf)
-md5sums=('63f4558ea7776c669f9db00d487e637a'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/beta/-beta}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/beta/-beta} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 160065, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-03 11:01:08 UTC (rev 160066)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2beta
+_commit=332ffef199745f1ddb3f3ad3e5618a4675b929bb
+pkgrel=3
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver-${_commit}.tar.gz::https://github.com/roundcube/roundcubemail/archive/${_commit}.tar.gz;
+   apache.conf)
+md5sums=('391339848be6432a976e0af60989c298'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  mv ${srcdir}/roundcubemail-${_commit} 
${srcdir}/roundcubemail-${pkgver/beta/-beta}
+  cd ${srcdir}/roundcubemail-${pkgver/beta/-beta}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+  mv composer.json-dist composer.json
+  composer install --no-dev
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/beta/-beta} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-01-15 Thread Sergej Pupykin
Date: Friday, January 15, 2016 @ 17:26:17
  Author: spupykin
Revision: 156741

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 156740, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 156740, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 156740, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  111 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 70 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-15 16:26:08 UTC (rev 156740)
+++ PKGBUILD2016-01-15 16:26:17 UTC (rev 156741)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2beta
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-#source=(https://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}-complete.tar.gz
-source=(https://downloads.sourceforge.net/project/roundcubemail/roundcubemail-beta/${pkgver/beta/-beta}/roundcubemail-${pkgver/beta/-beta}-complete.tar.gz
-   apache.conf)
-md5sums=('855011200946e253ab491125b60c0576'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/beta/-beta}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/beta/-beta} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 156740, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-15 16:26:17 UTC (rev 156741)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2beta
+pkgrel=2
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+#source=(https://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}-complete.tar.gz
+#source=(https://downloads.sourceforge.net/project/roundcubemail/roundcubemail-beta/${pkgver/beta/-beta}/roundcubemail-${pkgver/beta/-beta}-complete.tar.gz
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/55a02bcf56f05697786e20c4659ab279d4df4e05.tar.gz;
+   apache.conf)
+md5sums=('63f4558ea7776c669f9db00d487e637a'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/beta/-beta}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/beta/-beta} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2016-01-04 Thread Sergej Pupykin
Date: Monday, January 4, 2016 @ 15:38:01
  Author: spupykin
Revision: 155424

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 155423, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 155423, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 155423, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  109 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 69 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-04 14:37:51 UTC (rev 155423)
+++ PKGBUILD2016-01-04 14:38:01 UTC (rev 155424)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.1.3
-pkgrel=2
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}-complete.tar.gz
-   apache.conf)
-md5sums=('b607296dd6ddfb35f00c2ce3d7a08b6d'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 155423, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-04 14:38:01 UTC (rev 155424)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2beta
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+#source=(https://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}-complete.tar.gz
+source=(https://downloads.sourceforge.net/project/roundcubemail/roundcubemail-beta/${pkgver/beta/-beta}/roundcubemail-${pkgver/beta/-beta}-complete.tar.gz
+   apache.conf)
+md5sums=('855011200946e253ab491125b60c0576'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/beta/-beta}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/beta/-beta} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
+#open_basedir = 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-12-22 Thread Sergej Pupykin
Date: Tuesday, December 22, 2015 @ 11:17:31
  Author: spupykin
Revision: 154175

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 154174, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 154174, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 154174, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  109 +++-
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 68 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-12-22 10:17:22 UTC (rev 154174)
+++ PKGBUILD2015-12-22 10:17:31 UTC (rev 154175)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.1.3
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
-'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('3b07c65c2eb5ac8d248f8f311609afa8'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 154174, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-12-22 10:17:31 UTC (rev 154175)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.1.3
+pkgrel=2
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}-complete.tar.gz
+   apache.conf)
+md5sums=('b607296dd6ddfb35f00c2ce3d7a08b6d'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
+#open_basedir = 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-10-01 Thread Sergej Pupykin
Date: Thursday, October 1, 2015 @ 16:55:16
  Author: spupykin
Revision: 142328

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 142327, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 142327, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 142327, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  110 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-01 14:55:02 UTC (rev 142327)
+++ PKGBUILD2015-10-01 14:55:16 UTC (rev 142328)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.1.2
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
-'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('c899c9a0d61a4171b771fde4959b7ed5'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 142327, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-01 14:55:16 UTC (rev 142328)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
+'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('3b07c65c2eb5ac8d248f8f311609afa8'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-06-08 Thread Sergej Pupykin
Date: Monday, June 8, 2015 @ 14:30:03
  Author: spupykin
Revision: 134967

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 134966, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 134966, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 134966, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  110 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-08 12:29:53 UTC (rev 134966)
+++ PKGBUILD2015-06-08 12:30:03 UTC (rev 134967)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.1.1
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
-'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('5809a8068355a21abc7762739220adc8'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat 'EOF' $pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 134966, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-08 12:30:03 UTC (rev 134967)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.1.2
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
+'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('c899c9a0d61a4171b771fde4959b7ed5'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat 'EOF' 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-03-20 Thread Sergej Pupykin
Date: Friday, March 20, 2015 @ 12:01:05
  Author: spupykin
Revision: 129619

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 129618, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 129618, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 129618, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  110 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-20 11:00:56 UTC (rev 129618)
+++ PKGBUILD2015-03-20 11:01:05 UTC (rev 129619)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.1.0
-pkgrel=7
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
-'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('784b001753cebb9d0db59142f22e1764'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat 'EOF' $pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 129618, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-20 11:01:05 UTC (rev 129619)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.1.1
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
+'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('5809a8068355a21abc7762739220adc8'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat 'EOF' 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-03-02 Thread Sergej Pupykin
Date: Monday, March 2, 2015 @ 16:09:46
  Author: spupykin
Revision: 128548

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 128547, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 128547, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 128547, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  110 
 apache.conf   |   13 +++--
 roundcubemail.install |   14 +++---
 3 files changed, 69 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-02 15:09:30 UTC (rev 128547)
+++ PKGBUILD2015-03-02 15:09:46 UTC (rev 128548)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.1.0
-pkgrel=6
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
-'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('784b001753cebb9d0db59142f22e1764'
- 'afa5113b40709550573f32d032b388b8')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-  install -dm0755 $pkgdir/etc/php/conf.d/
-  cat 'EOF' $pkgdir/etc/php/conf.d/$pkgname.ini
-open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 128547, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-02 15:09:46 UTC (rev 128548)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.1.0
+pkgrel=7
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
+'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('784b001753cebb9d0db59142f22e1764'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat 'EOF' 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-02-27 Thread Sergej Pupykin
Date: Friday, February 27, 2015 @ 16:35:09
  Author: spupykin
Revision: 128383

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 128382, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 128382, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 128382, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  110 
 apache.conf   |   12 ++---
 roundcubemail.install |   14 +++---
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-27 15:34:32 UTC (rev 128382)
+++ PKGBUILD2015-02-27 15:35:09 UTC (rev 128383)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.1.0
-pkgrel=5
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
-'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('784b001753cebb9d0db59142f22e1764'
- 'afa5113b40709550573f32d032b388b8')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-  install -dm0755 $pkgdir/etc/php/conf.d/
-  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
-open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 128382, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-27 15:35:09 UTC (rev 128383)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.1.0
+pkgrel=6
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
+'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('784b001753cebb9d0db59142f22e1764'
+ 'afa5113b40709550573f32d032b388b8')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  install -dm0755 $pkgdir/etc/php/conf.d/
+  cat 'EOF' 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-02-26 Thread Sergej Pupykin
Date: Thursday, February 26, 2015 @ 18:27:22
  Author: spupykin
Revision: 128302

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 128301, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 128301, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 128301, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  110 
 apache.conf   |   13 ++---
 roundcubemail.install |   14 +++---
 3 files changed, 68 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-26 17:27:01 UTC (rev 128301)
+++ PKGBUILD2015-02-26 17:27:22 UTC (rev 128302)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.1.0
-pkgrel=4
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
-'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('784b001753cebb9d0db59142f22e1764'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 128301, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-26 17:27:22 UTC (rev 128302)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.1.0
+pkgrel=5
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
+'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('784b001753cebb9d0db59142f22e1764'
+ 'afa5113b40709550573f32d032b388b8')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  install -dm0755 $pkgdir/etc/php/conf.d/
+  cat EOF 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-02-11 Thread Sergej Pupykin
Date: Wednesday, February 11, 2015 @ 17:40:55
  Author: spupykin
Revision: 127574

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 127573, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 127573, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 127573, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  109 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 69 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-11 16:40:46 UTC (rev 127573)
+++ PKGBUILD2015-02-11 16:40:55 UTC (rev 127574)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.1.0
-pkgrel=3
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('784b001753cebb9d0db59142f22e1764'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 127573, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-11 16:40:55 UTC (rev 127574)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.1.0
+pkgrel=4
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp'
+'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('784b001753cebb9d0db59142f22e1764'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+#open_basedir = 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-02-11 Thread Sergej Pupykin
Date: Wednesday, February 11, 2015 @ 14:27:55
  Author: spupykin
Revision: 127564

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 127563, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 127563, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 127563, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  108 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-11 13:27:45 UTC (rev 127563)
+++ PKGBUILD2015-02-11 13:27:55 UTC (rev 127564)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.1.0
-pkgrel=2
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php' 'php-pear' 'pear-net-idna2')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('784b001753cebb9d0db59142f22e1764'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 127563, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-11 13:27:55 UTC (rev 127564)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.1.0
+pkgrel=3
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('784b001753cebb9d0db59142f22e1764'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
+#EOF
+
+ 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-02-10 Thread Sergej Pupykin
Date: Tuesday, February 10, 2015 @ 16:44:07
  Author: spupykin
Revision: 127476

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 127475, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 127475, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 127475, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  108 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-10 15:43:58 UTC (rev 127475)
+++ PKGBUILD2015-02-10 15:44:07 UTC (rev 127476)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.1.0
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('784b001753cebb9d0db59142f22e1764'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 127475, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-10 15:44:07 UTC (rev 127476)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.1.0
+pkgrel=2
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php' 'php-pear' 'pear-net-idna2')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('784b001753cebb9d0db59142f22e1764'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
+#EOF
+
+  rm -rf temp logs
+}

Deleted: apache.conf

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-02-10 Thread Sergej Pupykin
Date: Tuesday, February 10, 2015 @ 12:14:51
  Author: spupykin
Revision: 127462

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 127461, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 127461, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 127461, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  108 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-10 11:14:41 UTC (rev 127461)
+++ PKGBUILD2015-02-10 11:14:51 UTC (rev 127462)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.5
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('b982b0ba2bad01039337ca280faa86b6'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 127461, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-10 11:14:51 UTC (rev 127462)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.1.0
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('784b001753cebb9d0db59142f22e1764'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
+#EOF
+
+  rm -rf temp logs
+}

Deleted: apache.conf

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2015-01-26 Thread Sergej Pupykin
Date: Monday, January 26, 2015 @ 10:41:10
  Author: spupykin
Revision: 126596

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 126595, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 126595, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 126595, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  108 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-26 09:41:00 UTC (rev 126595)
+++ PKGBUILD2015-01-26 09:41:10 UTC (rev 126596)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.4
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('c59476d62e24dec484be69bbb2412d84'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 126595, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-26 09:41:10 UTC (rev 126596)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.5
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('b982b0ba2bad01039337ca280faa86b6'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
+#EOF
+
+  rm -rf temp logs
+}

Deleted: apache.conf

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-12-23 Thread Sergej Pupykin
Date: Tuesday, December 23, 2014 @ 23:24:25
  Author: spupykin
Revision: 124474

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 124473, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 124473, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 124473, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  108 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-23 22:24:16 UTC (rev 124473)
+++ PKGBUILD2014-12-23 22:24:25 UTC (rev 124474)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.3
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('e35652adea5cd4069fcaa1410ae58864'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 124473, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-23 22:24:25 UTC (rev 124474)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.4
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('c59476d62e24dec484be69bbb2412d84'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
+#EOF
+
+  rm -rf temp logs
+}

Deleted: apache.conf

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-09-29 Thread Sergej Pupykin
Date: Monday, September 29, 2014 @ 21:51:37
  Author: spupykin
Revision: 119833

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 119832, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 119832, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 119832, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  108 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-29 19:51:25 UTC (rev 119832)
+++ PKGBUILD2014-09-29 19:51:37 UTC (rev 119833)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.2
-pkgrel=3
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('5028c6f9fa88d0c84b0fde0b84355203'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-#  install -dm0755 $pkgdir/etc/php/conf.d/
-#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
-#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-#EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 119832, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-29 19:51:37 UTC (rev 119833)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.3
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('e35652adea5cd4069fcaa1410ae58864'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
+#EOF
+
+  rm -rf temp logs
+}

Deleted: apache.conf

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-07-24 Thread Sergej Pupykin
Date: Thursday, July 24, 2014 @ 14:02:36
  Author: spupykin
Revision: 116306

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 116305, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 116305, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 116305, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  108 
 apache.conf   |   13 +++--
 roundcubemail.install |   14 +++---
 3 files changed, 68 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-24 12:02:09 UTC (rev 116305)
+++ PKGBUILD2014-07-24 12:02:36 UTC (rev 116306)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.2
-pkgrel=2
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('5028c6f9fa88d0c84b0fde0b84355203'
- 'afa5113b40709550573f32d032b388b8')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-  install -dm0755 $pkgdir/etc/php/conf.d/
-  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
-open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
-EOF
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 116305, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-24 12:02:36 UTC (rev 116306)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.2
+pkgrel=3
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('5028c6f9fa88d0c84b0fde0b84355203'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+#  install -dm0755 $pkgdir/etc/php/conf.d/
+#  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+#open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
+#EOF
+
+  rm -rf temp logs
+}

Deleted: apache.conf

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-07-23 Thread Sergej Pupykin
Date: Wednesday, July 23, 2014 @ 14:16:30
  Author: spupykin
Revision: 116163

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 116162, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 116162, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 116162, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  103 +---
 apache.conf   |   13 ++
 roundcubemail.install |   14 +++---
 3 files changed, 67 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-23 12:16:20 UTC (rev 116162)
+++ PKGBUILD2014-07-23 12:16:30 UTC (rev 116163)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.2
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('5028c6f9fa88d0c84b0fde0b84355203'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 116162, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-23 12:16:30 UTC (rev 116163)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.2
+pkgrel=2
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('5028c6f9fa88d0c84b0fde0b84355203'
+ 'afa5113b40709550573f32d032b388b8')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  install -dm0755 $pkgdir/etc/php/conf.d/
+  cat EOF $pkgdir/etc/php/conf.d/$pkgname.ini
+open_basedir = 
${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
+EOF
+
+  rm -rf temp logs
+}

Deleted: apache.conf
===
--- apache.conf 2014-07-23 12:16:20 UTC (rev 116162)
+++ apache.conf 2014-07-23 12:16:30 UTC (rev 116163)
@@ -1,7 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-07-22 Thread Sergej Pupykin
Date: Tuesday, July 22, 2014 @ 10:44:49
  Author: spupykin
Revision: 116090

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 116089, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 116089, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 116089, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   98 
 apache.conf   |   14 +++---
 roundcubemail.install |   14 +++---
 3 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-22 08:44:37 UTC (rev 116089)
+++ PKGBUILD2014-07-22 08:44:49 UTC (rev 116090)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.1
-pkgrel=5
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('2e1629ea21615005b0a991e591f36363'
- 'f11b17e2a80b383cde4af963fb307541')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 116089, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-22 08:44:49 UTC (rev 116090)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.2
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('5028c6f9fa88d0c84b0fde0b84355203'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  rm -rf temp logs
+}

Deleted: apache.conf
===
--- apache.conf 2014-07-22 08:44:37 UTC (rev 116089)
+++ apache.conf 2014-07-22 08:44:49 UTC (rev 116090)
@@ -1,7 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Require all granted
-php_admin_value open_basedir 
/tmp/:/var/cache/roundcubemail:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-06-26 Thread Sergej Pupykin
Date: Thursday, June 26, 2014 @ 11:26:54
  Author: spupykin
Revision: 113597

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 113596, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 113596, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 113596, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  102 
 apache.conf   |   14 +++---
 roundcubemail.install |   16 +++
 3 files changed, 67 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-06-26 09:26:45 UTC (rev 113596)
+++ PKGBUILD2014-06-26 09:26:54 UTC (rev 113597)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.1
-pkgrel=3
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('2e1629ea21615005b0a991e591f36363'
- '9ef887b19632239911b287ce0e270ae8')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/tmp/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  install -dm0755 $pkgdir/usr/lib/tmpfiles.d
-  echo d /tmp/roundcubemail 0770 http http - 
$pkgdir/usr/lib/tmpfiles.d/roundcube.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 113596, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-06-26 09:26:54 UTC (rev 113597)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.1
+pkgrel=4
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('2e1629ea21615005b0a991e591f36363'
+ '9ef887b19632239911b287ce0e270ae8')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/tmp/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/log/roundcubemail
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  rm -rf temp logs
+  install -dm0755 $pkgdir/usr/lib/tmpfiles.d
+  echo d /tmp/roundcubemail 0770 http http - 
$pkgdir/usr/lib/tmpfiles.d/roundcube.conf
+}

Deleted: apache.conf
===
--- apache.conf 2014-06-26 09:26:45 UTC (rev 113596)
+++ apache.conf 2014-06-26 09:26:54 UTC (rev 113597)
@@ -1,7 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Require all granted
- 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-06-26 Thread Sergej Pupykin
Date: Thursday, June 26, 2014 @ 12:58:17
  Author: spupykin
Revision: 113603

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 113602, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 113602, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 113602, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  101 +++-
 apache.conf   |   14 +++---
 roundcubemail.install |   15 +++
 3 files changed, 63 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-06-26 10:58:09 UTC (rev 113602)
+++ PKGBUILD2014-06-26 10:58:17 UTC (rev 113603)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.1
-pkgrel=4
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('2e1629ea21615005b0a991e591f36363'
- '9ef887b19632239911b287ce0e270ae8')
-
-prepare() {
-  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e s|RCUBE_INSTALL_PATH . 'temp.*|'/tmp/roundcubemail';| \
--e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-}
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 $pkgdir/var/log/roundcubemail
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  install -dm0755 $pkgdir/usr/lib/tmpfiles.d
-  echo d /tmp/roundcubemail 0770 http http - 
$pkgdir/usr/lib/tmpfiles.d/roundcube.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 113602, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-06-26 10:58:17 UTC (rev 113603)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.1
+pkgrel=5
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('2e1629ea21615005b0a991e591f36363'
+ 'f11b17e2a80b383cde4af963fb307541')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  rm -rf temp logs
+}

Deleted: apache.conf
===
--- apache.conf 2014-06-26 10:58:09 UTC (rev 113602)
+++ apache.conf 2014-06-26 10:58:17 UTC (rev 113603)
@@ -1,7 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Require all granted
-php_admin_value open_basedir 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-06-25 Thread Sergej Pupykin
Date: Wednesday, June 25, 2014 @ 19:06:54
  Author: spupykin
Revision: 113564

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 113563, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 113563, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 113563, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   96 +---
 apache.conf   |   14 +++
 roundcubemail.install |   16 
 3 files changed, 65 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-06-25 17:06:46 UTC (rev 113563)
+++ PKGBUILD2014-06-25 17:06:54 UTC (rev 113564)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.1
-pkgrel=2
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('2e1629ea21615005b0a991e591f36363'
- '9ef887b19632239911b287ce0e270ae8')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp
-  ln -s /tmp/roundcube temp
-
-  install -dm0755 $pkgdir/usr/lib/tmpfiles.d
-  echo d /tmp/roundcube 0770 http http - 
$pkgdir/usr/lib/tmpfiles.d/roundcube.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 113563, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-06-25 17:06:54 UTC (rev 113564)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.1
+pkgrel=3
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('2e1629ea21615005b0a991e591f36363'
+ '9ef887b19632239911b287ce0e270ae8')
+
+prepare() {
+  cd ${srcdir}/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e s|RCUBE_INSTALL_PATH . 'temp.*|'/tmp/roundcubemail';| \
+-e s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';| \
+config/defaults.inc.php \
+program/lib/Roundcube/rcube_config.php
+}
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  rm -rf temp logs
+  install -dm0755 $pkgdir/usr/lib/tmpfiles.d
+  echo d /tmp/roundcubemail 0770 http http - 
$pkgdir/usr/lib/tmpfiles.d/roundcube.conf
+}

Deleted: apache.conf
===
--- apache.conf 2014-06-25 17:06:46 UTC (rev 113563)
+++ apache.conf 2014-06-25 17:06:54 UTC (rev 113564)
@@ -1,7 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Require all granted
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 113563, 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-05-26 Thread Sergej Pupykin
Date: Monday, May 26, 2014 @ 11:29:56
  Author: spupykin
Revision: 111881

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 111880, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 111880, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 111880, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   86 +---
 apache.conf   |   14 +++
 roundcubemail.install |   15 
 3 files changed, 61 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-26 09:29:47 UTC (rev 111880)
+++ PKGBUILD2014-05-26 09:29:56 UTC (rev 111881)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.1
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('2e1629ea21615005b0a991e591f36363'
- '9ef887b19632239911b287ce0e270ae8')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 111880, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-26 09:29:56 UTC (rev 111881)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.1
+pkgrel=2
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('2e1629ea21615005b0a991e591f36363'
+ '9ef887b19632239911b287ce0e270ae8')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+
+  rm -rf temp
+  ln -s /tmp/roundcube temp
+
+  install -dm0755 $pkgdir/usr/lib/tmpfiles.d
+  echo d /tmp/roundcube 0770 http http - 
$pkgdir/usr/lib/tmpfiles.d/roundcube.conf
+}

Deleted: apache.conf
===
--- apache.conf 2014-05-26 09:29:47 UTC (rev 111880)
+++ apache.conf 2014-05-26 09:29:56 UTC (rev 111881)
@@ -1,7 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Require all granted
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 111880, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2014-05-26 09:29:56 UTC (rev 111881)
@@ -0,0 +1,7 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-05-15 Thread Sergej Pupykin
Date: Thursday, May 15, 2014 @ 16:18:14
  Author: spupykin
Revision: 111213

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 111212, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 111212, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 111212, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   80 
 apache.conf   |   14 
 roundcubemail.install |   14 
 3 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-15 14:18:05 UTC (rev 111212)
+++ PKGBUILD2014-05-15 14:18:14 UTC (rev 111213)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=1.0.0
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('325f79deeadb8993ca8a20f0077f2535'
- '9ef887b19632239911b287ce0e270ae8')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 111212, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-15 14:18:14 UTC (rev 111213)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('2e1629ea21615005b0a991e591f36363'
+ '9ef887b19632239911b287ce0e270ae8')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2014-05-15 14:18:05 UTC (rev 111212)
+++ apache.conf 2014-05-15 14:18:14 UTC (rev 111213)
@@ -1,7 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Require all granted
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 111212, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2014-05-15 14:18:14 UTC (rev 111213)
@@ -0,0 +1,7 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+Require all granted
+php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
+/Directory


[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2014-04-08 Thread Sergej Pupykin
Date: Tuesday, April 8, 2014 @ 15:24:11
  Author: spupykin
Revision: 108975

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 108974, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 108974, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 108974, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   80 
 apache.conf   |   15 -
 roundcubemail.install |   14 
 3 files changed, 54 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-08 13:24:00 UTC (rev 108974)
+++ PKGBUILD2014-04-08 13:24:11 UTC (rev 108975)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=0.9.5
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('757f6ab3306d4abf8da6664ae65138d7'
- '88d8ef3ae01ec84cc09b35bcb100dccb')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 108974, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-08 13:24:11 UTC (rev 108975)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('325f79deeadb8993ca8a20f0077f2535'
+ '9ef887b19632239911b287ce0e270ae8')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2014-04-08 13:24:00 UTC (rev 108974)
+++ apache.conf 2014-04-08 13:24:11 UTC (rev 108975)
@@ -1,8 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 108974, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2014-04-08 13:24:11 UTC (rev 108975)
@@ -0,0 +1,7 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+Require all granted
+php_admin_value open_basedir 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2013-10-22 Thread Sergej Pupykin
Date: Tuesday, October 22, 2013 @ 11:14:23
  Author: spupykin
Revision: 99015

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 99014, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 99014, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 99014, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   80 
 apache.conf   |   16 -
 roundcubemail.install |   14 
 3 files changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-10-22 09:14:10 UTC (rev 99014)
+++ PKGBUILD2013-10-22 09:14:23 UTC (rev 99015)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=0.9.4
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('c8197f2b5b7e7a9dfa52c1d019a2d74d'
- '88d8ef3ae01ec84cc09b35bcb100dccb')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 99014, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-10-22 09:14:23 UTC (rev 99015)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=0.9.5
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('757f6ab3306d4abf8da6664ae65138d7'
+ '88d8ef3ae01ec84cc09b35bcb100dccb')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2013-10-22 09:14:10 UTC (rev 99014)
+++ apache.conf 2013-10-22 09:14:23 UTC (rev 99015)
@@ -1,8 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 99014, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2013-10-22 09:14:23 UTC (rev 99015)
@@ -0,0 +1,8 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+Order allow,deny
+Allow from all
+php_admin_value open_basedir 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2013-09-07 Thread Sergej Pupykin
Date: Saturday, September 7, 2013 @ 15:11:35
  Author: spupykin
Revision: 96896

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 96895, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 96895, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 96895, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   80 
 apache.conf   |   16 -
 roundcubemail.install |   14 
 3 files changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-07 13:11:21 UTC (rev 96895)
+++ PKGBUILD2013-09-07 13:11:35 UTC (rev 96896)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=0.9.3
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('bdd838e4d1c4f2009fb3557b945fa879'
- '88d8ef3ae01ec84cc09b35bcb100dccb')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 96895, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-07 13:11:35 UTC (rev 96896)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=0.9.4
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('c8197f2b5b7e7a9dfa52c1d019a2d74d'
+ '88d8ef3ae01ec84cc09b35bcb100dccb')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2013-09-07 13:11:21 UTC (rev 96895)
+++ apache.conf 2013-09-07 13:11:35 UTC (rev 96896)
@@ -1,8 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 96895, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2013-09-07 13:11:35 UTC (rev 96896)
@@ -0,0 +1,8 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+Order allow,deny
+Allow from all
+php_admin_value open_basedir 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2013-08-22 Thread Sergej Pupykin
Date: Thursday, August 22, 2013 @ 10:31:28
  Author: spupykin
Revision: 96232

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 96231, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 96231, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 96231, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   80 
 apache.conf   |   16 -
 roundcubemail.install |   14 
 3 files changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-22 08:31:15 UTC (rev 96231)
+++ PKGBUILD2013-08-22 08:31:28 UTC (rev 96232)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=0.9.2
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('e60d5fc120517062ea388c47739742b3'
- '88d8ef3ae01ec84cc09b35bcb100dccb')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 96231, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-22 08:31:28 UTC (rev 96232)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=0.9.3
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('bdd838e4d1c4f2009fb3557b945fa879'
+ '88d8ef3ae01ec84cc09b35bcb100dccb')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2013-08-22 08:31:15 UTC (rev 96231)
+++ apache.conf 2013-08-22 08:31:28 UTC (rev 96232)
@@ -1,8 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 96231, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2013-08-22 08:31:28 UTC (rev 96232)
@@ -0,0 +1,8 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+Order allow,deny
+Allow from all
+php_admin_value open_basedir 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2013-06-17 Thread Sergej Pupykin
Date: Monday, June 17, 2013 @ 19:31:30
  Author: spupykin
Revision: 92879

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 92878, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 92878, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 92878, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   80 
 apache.conf   |   16 -
 roundcubemail.install |   14 
 3 files changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-06-17 17:31:09 UTC (rev 92878)
+++ PKGBUILD2013-06-17 17:31:30 UTC (rev 92879)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=0.9.1
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('3465596f0b143469833f86dfc790b270'
- '88d8ef3ae01ec84cc09b35bcb100dccb')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 92878, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-06-17 17:31:30 UTC (rev 92879)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=0.9.2
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('e60d5fc120517062ea388c47739742b3'
+ '88d8ef3ae01ec84cc09b35bcb100dccb')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2013-06-17 17:31:09 UTC (rev 92878)
+++ apache.conf 2013-06-17 17:31:30 UTC (rev 92879)
@@ -1,8 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 92878, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2013-06-17 17:31:30 UTC (rev 92879)
@@ -0,0 +1,8 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+Order allow,deny
+Allow from all
+php_admin_value open_basedir 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2013-05-20 Thread Sergej Pupykin
Date: Monday, May 20, 2013 @ 11:56:12
  Author: spupykin
Revision: 91149

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 91148, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 91148, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 91148, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   80 
 apache.conf   |   16 -
 roundcubemail.install |   14 
 3 files changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-05-20 09:55:55 UTC (rev 91148)
+++ PKGBUILD2013-05-20 09:56:12 UTC (rev 91149)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('843de3439886c2dddb0f09e9bb6a4d04'
- '88d8ef3ae01ec84cc09b35bcb100dccb')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 91148, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-05-20 09:56:12 UTC (rev 91149)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=0.9.1
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('3465596f0b143469833f86dfc790b270'
+ '88d8ef3ae01ec84cc09b35bcb100dccb')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2013-05-20 09:55:55 UTC (rev 91148)
+++ apache.conf 2013-05-20 09:56:12 UTC (rev 91149)
@@ -1,8 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 91148, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2013-05-20 09:56:12 UTC (rev 91149)
@@ -0,0 +1,8 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+Order allow,deny
+Allow from all
+php_admin_value open_basedir 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2013-04-16 Thread Sergej Pupykin
Date: Tuesday, April 16, 2013 @ 15:31:01
  Author: spupykin
Revision: 88331

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 88330, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 88330, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 88330, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   82 +++-
 apache.conf   |   16 -
 roundcubemail.install |   18 --
 3 files changed, 55 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-16 13:30:50 UTC (rev 88330)
+++ PKGBUILD2013-04-16 13:31:01 UTC (rev 88331)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=0.9rc2
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
-   apache.conf)
-md5sums=('71b4d81da7d9bfd74210775022f0f2a0'
- '88d8ef3ae01ec84cc09b35bcb100dccb')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv installer xinstallerx
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 88330, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-04-16 13:31:01 UTC (rev 88331)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=0.9.0
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('843de3439886c2dddb0f09e9bb6a4d04'
+ '88d8ef3ae01ec84cc09b35bcb100dccb')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2013-04-16 13:30:50 UTC (rev 88330)
+++ apache.conf 2013-04-16 13:31:01 UTC (rev 88331)
@@ -1,8 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 88330, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2013-04-16 13:31:01 UTC (rev 88331)
@@ -0,0 +1,8 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+Order allow,deny
+Allow from all
+php_admin_value open_basedir 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2013-03-28 Thread Sergej Pupykin
Date: Thursday, March 28, 2013 @ 11:52:15
  Author: spupykin
Revision: 87160

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 87159, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 87159, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 87159, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   87 +++-
 apache.conf   |   16 
 roundcubemail.install |   22 ++--
 3 files changed, 62 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-28 10:51:59 UTC (rev 87159)
+++ PKGBUILD2013-03-28 10:52:15 UTC (rev 87160)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=0.8.5
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf'
-   
'usr/share/webapps/roundcubemail/skins/default/images/roundcube_logo.png')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver}.tar.gz
-   apache.conf)
-md5sums=('10bbe9bbf5e4ff50109d200c0484728b'
- '88d8ef3ae01ec84cc09b35bcb100dccb')
-
-build() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver} roundcubemail
-  cd roundcubemail
-
-  mv installer xinstallerx
-
-  sed -i 1,1ideny from all .htaccess
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 87159, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-28 10:52:15 UTC (rev 87160)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=0.8.6
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf'
+   
'usr/share/webapps/roundcubemail/skins/default/images/roundcube_logo.png')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver}.tar.gz
+   apache.conf)
+md5sums=('d8fc9958e45dccea0b016e84fde288aa'
+ '88d8ef3ae01ec84cc09b35bcb100dccb')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver} roundcubemail
+  cd roundcubemail
+
+  mv installer xinstallerx
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2013-03-28 10:51:59 UTC (rev 87159)
+++ apache.conf 2013-03-28 10:52:15 UTC (rev 87160)
@@ -1,8 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 87159, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2013-03-28 10:52:15 UTC (rev 87160)
@@ -0,0 +1,8 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2013-03-28 Thread Sergej Pupykin
Date: Thursday, March 28, 2013 @ 13:31:44
  Author: spupykin
Revision: 87168

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 87167, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 87167, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 87167, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   85 +++-
 apache.conf   |   16 -
 roundcubemail.install |   22 ++--
 3 files changed, 61 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-28 12:31:31 UTC (rev 87167)
+++ PKGBUILD2013-03-28 12:31:44 UTC (rev 87168)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=0.8.6
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf'
-   
'usr/share/webapps/roundcubemail/skins/default/images/roundcube_logo.png')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver}.tar.gz
-   apache.conf)
-md5sums=('d8fc9958e45dccea0b016e84fde288aa'
- '88d8ef3ae01ec84cc09b35bcb100dccb')
-
-package() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${pkgver} roundcubemail
-  cd roundcubemail
-
-  mv installer xinstallerx
-
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 87167, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-28 12:31:44 UTC (rev 87168)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=0.9rc2
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz
+   apache.conf)
+md5sums=('71b4d81da7d9bfd74210775022f0f2a0'
+ '88d8ef3ae01ec84cc09b35bcb100dccb')
+
+package() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail
+  cd roundcubemail
+
+  mv installer xinstallerx
+
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2013-03-28 12:31:31 UTC (rev 87167)
+++ apache.conf 2013-03-28 12:31:44 UTC (rev 87168)
@@ -1,8 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 87167, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2013-03-28 12:31:44 UTC (rev 87168)
@@ -0,0 +1,8 @@
+Alias /roundcube /usr/share/webapps/roundcubemail
+Directory /usr/share/webapps/roundcubemail
+AllowOverride All
+Options FollowSymlinks
+Order allow,deny
+Allow from 

[arch-commits] Commit in roundcubemail/repos/community-any (6 files)

2013-02-01 Thread Sergej Pupykin
Date: Friday, February 1, 2013 @ 10:35:14
  Author: spupykin
Revision: 83442

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 83441, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 83441, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 83441, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |   89 +++-
 apache.conf   |   16 
 roundcubemail.install |   22 +--
 3 files changed, 63 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-01 09:35:00 UTC (rev 83441)
+++ PKGBUILD2013-02-01 09:35:14 UTC (rev 83442)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=roundcubemail
-pkgver=0.8.4
-_pkgver=0.8.4
-pkgrel=1
-pkgdesc=A PHP web-based mail client
-arch=('any')
-url=http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf'
-   
'usr/share/webapps/roundcubemail/skins/default/images/roundcube_logo.png')
-install=roundcubemail.install
-options=('!strip')
-source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${_pkgver}.tar.gz
-   apache.conf)
-md5sums=('2f578c8c4741bfc43d9188923c06b638'
- '88d8ef3ae01ec84cc09b35bcb100dccb')
-
-build() {
-  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
-  mkdir -p ${pkgdir}/usr/share/webapps
-  mkdir -p ${pkgdir}/var/log
-  cd ${pkgdir}/usr/share/webapps
-  cp -ra ${srcdir}/roundcubemail-${_pkgver} roundcubemail
-  cd roundcubemail
-
-  mv installer xinstallerx
-
-  sed -i 1,1ideny from all .htaccess
-  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config $pkgdir/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  mv logs $pkgdir/var/log/roundcubemail
-  ln -s /var/log/roundcubemail logs
-
-  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 83441, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-01 09:35:14 UTC (rev 83442)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=roundcubemail
+pkgver=0.8.5
+pkgrel=1
+pkgdesc=A PHP web-based mail client
+arch=('any')
+url=http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf'
+   
'usr/share/webapps/roundcubemail/skins/default/images/roundcube_logo.png')
+install=roundcubemail.install
+options=('!strip')
+source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver}.tar.gz
+   apache.conf)
+md5sums=('10bbe9bbf5e4ff50109d200c0484728b'
+ '88d8ef3ae01ec84cc09b35bcb100dccb')
+
+build() {
+  mkdir -p ${pkgdir}/etc/webapps/roundcubemail
+  mkdir -p ${pkgdir}/usr/share/webapps
+  mkdir -p ${pkgdir}/var/log
+  cd ${pkgdir}/usr/share/webapps
+  cp -ra ${srcdir}/roundcubemail-${pkgver} roundcubemail
+  cd roundcubemail
+
+  mv installer xinstallerx
+
+  sed -i 1,1ideny from all .htaccess
+  mv .htaccess $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
+
+  mv config $pkgdir/etc/webapps/roundcubemail/
+  ln -s /etc/webapps/roundcubemail/config config
+
+  mv logs $pkgdir/var/log/roundcubemail
+  ln -s /var/log/roundcubemail logs
+
+  install -Dm0644 $srcdir/apache.conf 
$pkgdir/etc/webapps/roundcubemail/apache.conf
+}

Deleted: apache.conf
===
--- apache.conf 2013-02-01 09:35:00 UTC (rev 83441)
+++ apache.conf 2013-02-01 09:35:14 UTC (rev 83442)
@@ -1,8 +0,0 @@
-Alias /roundcube /usr/share/webapps/roundcubemail
-Directory /usr/share/webapps/roundcubemail
-AllowOverride All
-Options FollowSymlinks
-Order allow,deny
-Allow from all
-php_admin_value open_basedir 
/tmp/:/usr/share/webapps/roundcubemail:/etc/webapps/roundcubemail:/usr/share/pear/:/var/log/roundcubemail
-/Directory

Copied: roundcubemail/repos/community-any/apache.conf (from rev 83441, 
roundcubemail/trunk/apache.conf)
===
--- apache.conf (rev 0)
+++ apache.conf 2013-02-01 09:35:14 UTC (rev 83442)
@@ -0,0 +1,8 @@
+Alias /roundcube