[arch-commits] Commit in dokuwiki/repos (5 files)

Sébastien Luttringer seblu at nymeria.archlinux.org
Thu Dec 12 20:04:09 UTC 2013


    Date: Thursday, December 12, 2013 @ 21:04:09
  Author: seblu
Revision: 102515

db-move: moved dokuwiki from [community-testing] to [community] (any)

Added:
  dokuwiki/repos/community-any/PKGBUILD
    (from rev 102514, dokuwiki/repos/community-testing-any/PKGBUILD)
  dokuwiki/repos/community-any/apache.example.conf
    (from rev 102514, dokuwiki/repos/community-testing-any/apache.example.conf)
Deleted:
  dokuwiki/repos/community-any/PKGBUILD
  dokuwiki/repos/community-any/apache.example.conf
  dokuwiki/repos/community-testing-any/

-----------------------------------+
 /PKGBUILD                         |   61 ++++++++++++++++++++++++++++++++++++
 /apache.example.conf              |    8 ++++
 community-any/PKGBUILD            |   53 -------------------------------
 community-any/apache.example.conf |    8 ----
 4 files changed, 69 insertions(+), 61 deletions(-)

Deleted: community-any/PKGBUILD
===================================================================
--- community-any/PKGBUILD	2013-12-12 19:08:21 UTC (rev 102514)
+++ community-any/PKGBUILD	2013-12-12 20:04:09 UTC (rev 102515)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Sébastien Luttringer
-
-pkgname=dokuwiki
-pkgver=20131028.rc
-[ "x${pkgver:9:2}" == "xrc" ] && \
-  _pkgver=rc${pkgver:0:4}-${pkgver:4:2}-${pkgver:6:2} || \
-  _pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6:2}${pkgver:9:1}
-pkgrel=1
-pkgdesc='Simple to use and highly versatile Open Source wiki software'
-arch=('any')
-url='http://www.splitbrain.org/projects/dokuwiki'
-license=('GPL')
-depends=('php')
-backup=('etc/webapps/dokuwiki/.htaccess')
-options=('!strip')
-source=("http://download.dokuwiki.org/src/dokuwiki/dokuwiki-${_pkgver}.tgz"
-	"apache.example.conf")
-md5sums=('f476b54a3679d35cdd8746db57c9c6a3'
-         'c5bed40abf5bb737bad8df29bb7020dc')
-
-package() {
-  cd "$pkgdir"
-  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
-  cp -a "$srcdir"/$pkgname-${_pkgver} usr/share/webapps/dokuwiki
-
-  # move data in var
-  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
-  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
-
-  # move config in /etc
-  mv usr/share/webapps/dokuwiki/conf etc/webapps/dokuwiki
-  chmod g=rwx etc/webapps/dokuwiki
-  ln -s ../../../../../etc/webapps/dokuwiki usr/share/webapps/dokuwiki/conf
-
-  # inform update on changes.log
-  touch var/lib/dokuwiki/data/changes.log
-  chmod 0644 var/lib/dokuwiki/data/changes.log
-
-  # use default htaccess
-  cp usr/share/webapps/dokuwiki/.htaccess.dist etc/webapps/dokuwiki/.htaccess
-  ln -s /etc/webapps/dokuwiki/.htaccess usr/share/webapps/dokuwiki/.htaccess
-
-  # fix rights and ownership
-  chown -R http:http var/lib/dokuwiki/data
-  chown -R http:http etc/webapps/dokuwiki
-
-  # apache config
-  install -Dm0644 $srcdir/apache.example.conf $pkgdir/etc/webapps/dokuwiki/apache.example.conf
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dokuwiki/repos/community-any/PKGBUILD (from rev 102514, dokuwiki/repos/community-testing-any/PKGBUILD)
===================================================================
--- community-any/PKGBUILD	                        (rev 0)
+++ community-any/PKGBUILD	2013-12-12 20:04:09 UTC (rev 102515)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Sébastien Luttringer
+
+pkgname=dokuwiki
+pkgver=20131208
+_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6:2}
+pkgrel=1
+pkgdesc='Simple to use and highly versatile Open Source wiki software'
+arch=('any')
+url='https://www.dokuwiki.org/'
+license=('GPL')
+depends=('php')
+backup=('etc/webapps/dokuwiki/.htaccess'
+        'etc/httpd/conf/extra/dokuwiki.conf')
+options=('!strip')
+source=("http://download.dokuwiki.org/src/dokuwiki/dokuwiki-$_pkgver.tgz"
+        'apache.example.conf')
+md5sums=('620b7fed511e643ad05ad13207baa502'
+         'c5bed40abf5bb737bad8df29bb7020dc')
+
+package() {
+  cd "$pkgdir"
+  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
+  cp -a "$srcdir"/$pkgname-${_pkgver} usr/share/webapps/dokuwiki
+
+  # move data in var
+  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
+  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
+
+  # move plugins in var
+  mv usr/share/webapps/dokuwiki/lib/plugins var/lib/dokuwiki
+  ln -s {../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/plugins
+
+  # move templates in var
+  mv usr/share/webapps/dokuwiki/lib/tpl var/lib/dokuwiki
+  ln -s {../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/tpl
+
+  # move config in /etc
+  mv usr/share/webapps/dokuwiki/conf etc/webapps/dokuwiki
+  chmod g=rwx etc/webapps/dokuwiki
+  ln -s ../../../../../etc/webapps/dokuwiki usr/share/webapps/dokuwiki/conf
+
+  # inform update on changes.log
+  touch var/lib/dokuwiki/data/changes.log
+  chmod 0644 var/lib/dokuwiki/data/changes.log
+
+  # use default htaccess
+  cp usr/share/webapps/dokuwiki/.htaccess.dist etc/webapps/dokuwiki/.htaccess
+  ln -s /etc/webapps/dokuwiki/.htaccess usr/share/webapps/dokuwiki/.htaccess
+
+  # fix rights and ownership
+  chown http:http var/lib/dokuwiki/plugins
+  chown -R http:http var/lib/dokuwiki/data
+  chown -R http:http etc/webapps/dokuwiki
+
+  # apache config
+  install -Dm0644 "$srcdir"/apache.example.conf etc/httpd/conf/extra/dokuwiki.conf
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-any/apache.example.conf
===================================================================
--- community-any/apache.example.conf	2013-12-12 19:08:21 UTC (rev 102514)
+++ community-any/apache.example.conf	2013-12-12 20:04:09 UTC (rev 102515)
@@ -1,8 +0,0 @@
-Alias /dokuwiki /usr/share/webapps/dokuwiki
-<Directory /usr/share/webapps/dokuwiki/>
-    Options +FollowSymLinks
-    AllowOverride All
-    order allow,deny
-    allow from all
-    php_admin_value open_basedir "/tmp/:/usr/share/webapps/dokuwiki/:/etc/webapps/dokuwiki/:/var/lib/dokuwiki/"
-</Directory>

Copied: dokuwiki/repos/community-any/apache.example.conf (from rev 102514, dokuwiki/repos/community-testing-any/apache.example.conf)
===================================================================
--- community-any/apache.example.conf	                        (rev 0)
+++ community-any/apache.example.conf	2013-12-12 20:04:09 UTC (rev 102515)
@@ -0,0 +1,8 @@
+Alias /dokuwiki /usr/share/webapps/dokuwiki
+<Directory /usr/share/webapps/dokuwiki/>
+    Options +FollowSymLinks
+    AllowOverride All
+    order allow,deny
+    allow from all
+    php_admin_value open_basedir "/tmp/:/usr/share/webapps/dokuwiki/:/etc/webapps/dokuwiki/:/var/lib/dokuwiki/"
+</Directory>




More information about the arch-commits mailing list