[arch-commits] Commit in lighttpd/repos (6 files)

2020-08-21 Thread Pierre Schmitz via arch-commits
Date: Saturday, August 22, 2020 @ 04:59:30
  Author: pierre
Revision: 394546

archrelease: copy trunk to testing-x86_64

Added:
  lighttpd/repos/testing-x86_64/
  lighttpd/repos/testing-x86_64/PKGBUILD
(from rev 394545, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/testing-x86_64/lighttpd.conf
(from rev 394545, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/testing-x86_64/lighttpd.logrotate.d
(from rev 394545, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/testing-x86_64/lighttpd.service
(from rev 394545, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/testing-x86_64/lighttpd.tmpfiles
(from rev 394545, lighttpd/trunk/lighttpd.tmpfiles)

--+
 PKGBUILD |   71 +
 lighttpd.conf|   22 +++
 lighttpd.logrotate.d |9 ++
 lighttpd.service |   12 
 lighttpd.tmpfiles|2 +
 5 files changed, 116 insertions(+)

Copied: lighttpd/repos/testing-x86_64/PKGBUILD (from rev 394545, 
lighttpd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-22 04:59:30 UTC (rev 394546)
@@ -0,0 +1,71 @@
+# Maintainer: Pierre Schmitz 
+
+pkgname=lighttpd
+pkgver=1.4.55
+pkgrel=3
+pkgdesc='A secure, fast, compliant and very flexible web-server'
+license=('custom')
+arch=('x86_64')
+url="https://www.lighttpd.net/;
+depends=('pcre' 'util-linux' 'systemd')
+makedepends=('mariadb-libs' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
+optdepends=('libxml2: mod_webdav'
+'lua: mod_cml/mod_magnet'
+'mariadb-libs: mod_mysql_vhost/mod_authn_mysql'
+'sqlite: mod_webdav')
+backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
+options=('emptydirs')
+source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
+'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
+sha256sums=('6a0b50e9c9d5cc3d9e48592315c25a2d645858f863e1ccd120507a30ce21e927'
+'SKIP'
+'41f6c0042bb61021553779f861910e335834f6c15e4411756cdc6233b31076fe'
+'fece4581bebf39768571962dedce176b2b5f487c0abb5c1cfb35395de216c01f'
+'d8a185145a7c08b4fd8c8e6c12dae3e176389dd9b1c66e239757b2ba5108c871'
+'0c88403364e732c06090f6807105dedbac25aa82add0499d28007f8aaa780b78')
+validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
+  '649D0DD767FF206202A76C5158F14A786FE198C8'
+  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   ./configure --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libdir=/usr/lib/lighttpd/ \
+   --sysconfdir=/etc/lighttpd \
+   --with-mysql \
+   --with-ldap \
+   --with-attr \
+   --with-openssl \
+   --with-kerberos5 \
+   --without-fam \
+   --with-webdav-props \
+   --with-webdav-locks \
+   --with-gdbm \
+   --with-lua
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+
+   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.conf 
$pkgdir/etc/lighttpd/lighttpd.conf
+   install -d -m700 -o http -g http $pkgdir/var/{log,cache}/lighttpd/
+   install -D -m644 ${srcdir}/lighttpd.tmpfiles 
${pkgdir}/usr/lib/tmpfiles.d/lighttpd.conf
+   install -D -m644 ${srcdir}/lighttpd.service 
${pkgdir}/usr/lib/systemd/system/lighttpd.service
+
+   pushd doc/config >/dev/null
+   find . -type f ! -name 'Makefile*' -exec install -D -m644 {} 
${pkgdir}/usr/share/doc/lighttpd/config/{} \;
+   popd >/dev/null
+
+   install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: lighttpd/repos/testing-x86_64/lighttpd.conf (from rev 394545, 
lighttpd/trunk/lighttpd.conf)
===
--- testing-x86_64/lighttpd.conf(rev 0)
+++ testing-x86_64/lighttpd.conf2020-08-22 04:59:30 UTC (rev 394546)
@@ -0,0 +1,22 @@
+# This is a minimal example config
+# See /usr/share/doc/lighttpd
+# and 
http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
+
+server.port= 80
+server.username= "http"
+server.groupname   = "http"
+server.document-root   = "/srv/http"
+server.errorlog= "/var/log/lighttpd/error.log"
+dir-listing.activate   = "enable"
+index-file.names   = ( "index.html" )
+mimetype.assign= (
+   ".html" => 

[arch-commits] Commit in lighttpd/repos (6 files)

2020-06-29 Thread Evangelos Foutras via arch-commits
Date: Tuesday, June 30, 2020 @ 05:47:32
  Author: foutrelis
Revision: 390658

archrelease: copy trunk to staging-x86_64

Added:
  lighttpd/repos/staging-x86_64/
  lighttpd/repos/staging-x86_64/PKGBUILD
(from rev 390657, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/staging-x86_64/lighttpd.conf
(from rev 390657, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/staging-x86_64/lighttpd.logrotate.d
(from rev 390657, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/staging-x86_64/lighttpd.service
(from rev 390657, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/staging-x86_64/lighttpd.tmpfiles
(from rev 390657, lighttpd/trunk/lighttpd.tmpfiles)

--+
 PKGBUILD |   71 +
 lighttpd.conf|   22 +++
 lighttpd.logrotate.d |9 ++
 lighttpd.service |   12 
 lighttpd.tmpfiles|2 +
 5 files changed, 116 insertions(+)

Copied: lighttpd/repos/staging-x86_64/PKGBUILD (from rev 390657, 
lighttpd/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-06-30 05:47:32 UTC (rev 390658)
@@ -0,0 +1,71 @@
+# Maintainer: Pierre Schmitz 
+
+pkgname=lighttpd
+pkgver=1.4.55
+pkgrel=2
+pkgdesc='A secure, fast, compliant and very flexible web-server'
+license=('custom')
+arch=('x86_64')
+url="https://www.lighttpd.net/;
+depends=('pcre' 'util-linux' 'systemd')
+makedepends=('mariadb-libs' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
+optdepends=('libxml2: mod_webdav'
+'lua: mod_cml/mod_magnet'
+'mariadb-libs: mod_mysql_vhost/mod_authn_mysql'
+'sqlite: mod_webdav')
+backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
+options=('emptydirs')
+source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
+'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
+sha256sums=('6a0b50e9c9d5cc3d9e48592315c25a2d645858f863e1ccd120507a30ce21e927'
+'SKIP'
+'41f6c0042bb61021553779f861910e335834f6c15e4411756cdc6233b31076fe'
+'fece4581bebf39768571962dedce176b2b5f487c0abb5c1cfb35395de216c01f'
+'d8a185145a7c08b4fd8c8e6c12dae3e176389dd9b1c66e239757b2ba5108c871'
+'0c88403364e732c06090f6807105dedbac25aa82add0499d28007f8aaa780b78')
+validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
+  '649D0DD767FF206202A76C5158F14A786FE198C8'
+  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   ./configure --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libdir=/usr/lib/lighttpd/ \
+   --sysconfdir=/etc/lighttpd \
+   --with-mysql \
+   --with-ldap \
+   --with-attr \
+   --with-openssl \
+   --with-kerberos5 \
+   --without-fam \
+   --with-webdav-props \
+   --with-webdav-locks \
+   --with-gdbm \
+   --with-lua
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+
+   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.conf 
$pkgdir/etc/lighttpd/lighttpd.conf
+   install -d -m700 -o http -g http $pkgdir/var/{log,cache}/lighttpd/
+   install -D -m644 ${srcdir}/lighttpd.tmpfiles 
${pkgdir}/usr/lib/tmpfiles.d/lighttpd.conf
+   install -D -m644 ${srcdir}/lighttpd.service 
${pkgdir}/usr/lib/systemd/system/lighttpd.service
+
+   pushd doc/config >/dev/null
+   find . -type f ! -name 'Makefile*' -exec install -D -m644 {} 
${pkgdir}/usr/share/doc/lighttpd/config/{} \;
+   popd >/dev/null
+
+   install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: lighttpd/repos/staging-x86_64/lighttpd.conf (from rev 390657, 
lighttpd/trunk/lighttpd.conf)
===
--- staging-x86_64/lighttpd.conf(rev 0)
+++ staging-x86_64/lighttpd.conf2020-06-30 05:47:32 UTC (rev 390658)
@@ -0,0 +1,22 @@
+# This is a minimal example config
+# See /usr/share/doc/lighttpd
+# and 
http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
+
+server.port= 80
+server.username= "http"
+server.groupname   = "http"
+server.document-root   = "/srv/http"
+server.errorlog= "/var/log/lighttpd/error.log"
+dir-listing.activate   = "enable"
+index-file.names   = ( "index.html" )
+mimetype.assign= (
+   ".html" => 

[arch-commits] Commit in lighttpd/repos (6 files)

2019-01-16 Thread Felix Yan via arch-commits
Date: Wednesday, January 16, 2019 @ 15:18:42
  Author: felixonmars
Revision: 344265

archrelease: copy trunk to staging-x86_64

Added:
  lighttpd/repos/staging-x86_64/
  lighttpd/repos/staging-x86_64/PKGBUILD
(from rev 344264, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/staging-x86_64/lighttpd.conf
(from rev 344264, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/staging-x86_64/lighttpd.logrotate.d
(from rev 344264, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/staging-x86_64/lighttpd.service
(from rev 344264, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/staging-x86_64/lighttpd.tmpfiles
(from rev 344264, lighttpd/trunk/lighttpd.tmpfiles)

--+
 PKGBUILD |   71 +
 lighttpd.conf|   22 +++
 lighttpd.logrotate.d |9 ++
 lighttpd.service |   12 
 lighttpd.tmpfiles|2 +
 5 files changed, 116 insertions(+)

Copied: lighttpd/repos/staging-x86_64/PKGBUILD (from rev 344264, 
lighttpd/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-01-16 15:18:42 UTC (rev 344265)
@@ -0,0 +1,71 @@
+# Maintainer: Pierre Schmitz 
+
+pkgname=lighttpd
+pkgver=1.4.52
+pkgrel=2
+pkgdesc='A secure, fast, compliant and very flexible web-server'
+license=('custom')
+arch=('x86_64')
+url="http://www.lighttpd.net/;
+depends=('pcre' 'util-linux' 'systemd')
+makedepends=('mariadb-libs' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
+optdepends=('libxml2: mod_webdav'
+'lua: mod_cml/mod_magnet'
+'mariadb-libs: mod_mysql_vhost/mod_authn_mysql'
+'sqlite: mod_webdav')
+backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
+options=('emptydirs')
+source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
+'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
+sha512sums=('3c604f441c001641681b958012524c9a2e801314b07d9741d4b5e086e7585d676516e3fe587e0ff69f1f937c11b9a290f2173866d6b90019117b6be299972a72'
+'SKIP'
+
'b67f6683c55f4d63bf3e42878165a5f56d30bab056e6474f4652f050c8f783ceb7c1246969b7186afa2a43e22204dc8a9785bd5599f112aa61e8361b4369e064'
+
'b28f6171a96cf4d293ccf92914f1d1696007acc647c6c24cc5f309da0860356864618865afcc6f0aa7616ffb70405b8e1fefd12ccd5685effc2aa7c0b72be1a5'
+
'0079d6fd80ca42fa5384838b3df68d25000fb7a5a92ea9fb02f6a18cdfb85b23279c78b881e21270e7e450ee3ae28ea839932f3268b826b52478079e510ecd33'
+
'2caf419d96ddfc3c4d832483e0d243463632823df1b2bcde212c46a932b5fd6d9ca28aab8139aa234854e0e91f85d4245ab7c9a4c304fb36b8cd1dde7908a5bd')
+validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
+  '649D0DD767FF206202A76C5158F14A786FE198C8'
+  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   ./configure --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libdir=/usr/lib/lighttpd/ \
+   --sysconfdir=/etc/lighttpd \
+   --with-mysql \
+   --with-ldap \
+   --with-attr \
+   --with-openssl \
+   --with-kerberos5 \
+   --without-fam \
+   --with-webdav-props \
+   --with-webdav-locks \
+   --with-gdbm \
+   --with-lua
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+
+   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.conf 
$pkgdir/etc/lighttpd/lighttpd.conf
+   install -d -m700 -o http -g http $pkgdir/var/{log,cache}/lighttpd/
+   install -D -m644 ${srcdir}/lighttpd.tmpfiles 
${pkgdir}/usr/lib/tmpfiles.d/lighttpd.conf
+   install -D -m644 ${srcdir}/lighttpd.service 
${pkgdir}/usr/lib/systemd/system/lighttpd.service
+
+   pushd doc/config >/dev/null
+   find . -type f ! -name 'Makefile*' -exec install -D -m644 {} 
${pkgdir}/usr/share/doc/lighttpd/config/{} \;
+   popd >/dev/null
+
+   install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: lighttpd/repos/staging-x86_64/lighttpd.conf (from rev 344264, 
lighttpd/trunk/lighttpd.conf)
===
--- staging-x86_64/lighttpd.conf(rev 0)
+++ staging-x86_64/lighttpd.conf2019-01-16 15:18:42 UTC (rev 344265)
@@ -0,0 +1,22 @@
+# This is a minimal example config
+# See /usr/share/doc/lighttpd
+# and 
http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
+
+server.port= 80

[arch-commits] Commit in lighttpd/repos (6 files)

2018-06-24 Thread Pierre Schmitz via arch-commits
Date: Sunday, June 24, 2018 @ 09:57:52
  Author: pierre
Revision: 327521

archrelease: copy trunk to staging-x86_64

Added:
  lighttpd/repos/staging-x86_64/
  lighttpd/repos/staging-x86_64/PKGBUILD
(from rev 327520, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/staging-x86_64/lighttpd.conf
(from rev 327520, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/staging-x86_64/lighttpd.logrotate.d
(from rev 327520, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/staging-x86_64/lighttpd.service
(from rev 327520, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/staging-x86_64/lighttpd.tmpfiles
(from rev 327520, lighttpd/trunk/lighttpd.tmpfiles)

--+
 PKGBUILD |   72 +
 lighttpd.conf|   22 ++
 lighttpd.logrotate.d |9 ++
 lighttpd.service |   12 
 lighttpd.tmpfiles|2 +
 5 files changed, 117 insertions(+)

Copied: lighttpd/repos/staging-x86_64/PKGBUILD (from rev 327520, 
lighttpd/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-06-24 09:57:52 UTC (rev 327521)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=lighttpd
+pkgver=1.4.49
+pkgrel=2
+pkgdesc='A secure, fast, compliant and very flexible web-server'
+license=('custom')
+arch=('x86_64')
+url="http://www.lighttpd.net/;
+depends=('pcre' 'util-linux' 'systemd')
+makedepends=('libmariadbclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
+optdepends=('libxml2: mod_webdav'
+'lua: mod_cml/mod_magnet'
+'libmariadbclient: mod_mysql_vhost/mod_authn_mysql'
+'sqlite: mod_webdav')
+backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
+options=('emptydirs')
+source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
+'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
+sha512sums=('de766da68b4cacfb6c322210eafe819b6423334272e9fae4688c2282a66a2e55aaf580c5fdbf02676ed6f7b32d13f2f28cefd22518f77127055ec336ec5d6784'
+'SKIP'
+
'b67f6683c55f4d63bf3e42878165a5f56d30bab056e6474f4652f050c8f783ceb7c1246969b7186afa2a43e22204dc8a9785bd5599f112aa61e8361b4369e064'
+
'b28f6171a96cf4d293ccf92914f1d1696007acc647c6c24cc5f309da0860356864618865afcc6f0aa7616ffb70405b8e1fefd12ccd5685effc2aa7c0b72be1a5'
+
'0079d6fd80ca42fa5384838b3df68d25000fb7a5a92ea9fb02f6a18cdfb85b23279c78b881e21270e7e450ee3ae28ea839932f3268b826b52478079e510ecd33'
+
'2caf419d96ddfc3c4d832483e0d243463632823df1b2bcde212c46a932b5fd6d9ca28aab8139aa234854e0e91f85d4245ab7c9a4c304fb36b8cd1dde7908a5bd')
+validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
+  '649D0DD767FF206202A76C5158F14A786FE198C8'
+  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   ./configure --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libdir=/usr/lib/lighttpd/ \
+   --sysconfdir=/etc/lighttpd \
+   --with-mysql \
+   --with-ldap \
+   --with-attr \
+   --with-openssl \
+   --with-kerberos5 \
+   --without-fam \
+   --with-webdav-props \
+   --with-webdav-locks \
+   --with-gdbm \
+   --with-lua
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+
+   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.conf 
$pkgdir/etc/lighttpd/lighttpd.conf
+   install -d -m700 -o http -g http $pkgdir/var/{log,cache}/lighttpd/
+   install -D -m644 ${srcdir}/lighttpd.tmpfiles 
${pkgdir}/usr/lib/tmpfiles.d/lighttpd.conf
+   install -D -m644 ${srcdir}/lighttpd.service 
${pkgdir}/usr/lib/systemd/system/lighttpd.service
+
+   pushd doc/config >/dev/null
+   find . -type f ! -name 'Makefile*' -exec install -D -m644 {} 
${pkgdir}/usr/share/doc/lighttpd/config/{} \;
+   popd >/dev/null
+
+   install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: lighttpd/repos/staging-x86_64/lighttpd.conf (from rev 327520, 
lighttpd/trunk/lighttpd.conf)
===
--- staging-x86_64/lighttpd.conf(rev 0)
+++ staging-x86_64/lighttpd.conf2018-06-24 09:57:52 UTC (rev 327521)
@@ -0,0 +1,22 @@
+# This is a minimal example config
+# See /usr/share/doc/lighttpd
+# and 
http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
+
+server.port= 80

[arch-commits] Commit in lighttpd/repos (6 files)

2018-01-04 Thread Felix Yan via arch-commits
Date: Friday, January 5, 2018 @ 04:44:39
  Author: felixonmars
Revision: 314073

archrelease: copy trunk to staging-x86_64

Added:
  lighttpd/repos/staging-x86_64/
  lighttpd/repos/staging-x86_64/PKGBUILD
(from rev 314072, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/staging-x86_64/lighttpd.conf
(from rev 314072, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/staging-x86_64/lighttpd.logrotate.d
(from rev 314072, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/staging-x86_64/lighttpd.service
(from rev 314072, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/staging-x86_64/lighttpd.tmpfiles
(from rev 314072, lighttpd/trunk/lighttpd.tmpfiles)

--+
 PKGBUILD |   72 +
 lighttpd.conf|   22 ++
 lighttpd.logrotate.d |9 ++
 lighttpd.service |   12 
 lighttpd.tmpfiles|2 +
 5 files changed, 117 insertions(+)

Copied: lighttpd/repos/staging-x86_64/PKGBUILD (from rev 314072, 
lighttpd/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-01-05 04:44:39 UTC (rev 314073)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=lighttpd
+pkgver=1.4.48
+pkgrel=2
+pkgdesc='A secure, fast, compliant and very flexible web-server'
+license=('custom')
+arch=('x86_64')
+url="http://www.lighttpd.net/;
+depends=('pcre' 'util-linux' 'systemd')
+makedepends=('libmariadbclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
+optdepends=('libxml2: mod_webdav'
+'lua: mod_cml/mod_magnet'
+'libmariadbclient: mod_mysql_vhost/mod_authn_mysql'
+'sqlite: mod_webdav')
+backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
+options=('emptydirs')
+source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
+'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
+sha512sums=('361dbf07b280aa7345f3026cce6d12d0aeaa3bb535b5a5b2a894a568395f46a9c7ce723dfd1948225117495f3e63ec207b72d5e4b680da7cd56419e23cf8bae4'
+'SKIP'
+
'b67f6683c55f4d63bf3e42878165a5f56d30bab056e6474f4652f050c8f783ceb7c1246969b7186afa2a43e22204dc8a9785bd5599f112aa61e8361b4369e064'
+
'b28f6171a96cf4d293ccf92914f1d1696007acc647c6c24cc5f309da0860356864618865afcc6f0aa7616ffb70405b8e1fefd12ccd5685effc2aa7c0b72be1a5'
+
'0079d6fd80ca42fa5384838b3df68d25000fb7a5a92ea9fb02f6a18cdfb85b23279c78b881e21270e7e450ee3ae28ea839932f3268b826b52478079e510ecd33'
+
'2caf419d96ddfc3c4d832483e0d243463632823df1b2bcde212c46a932b5fd6d9ca28aab8139aa234854e0e91f85d4245ab7c9a4c304fb36b8cd1dde7908a5bd')
+validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
+  '649D0DD767FF206202A76C5158F14A786FE198C8'
+  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   ./configure --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libdir=/usr/lib/lighttpd/ \
+   --sysconfdir=/etc/lighttpd \
+   --with-mysql \
+   --with-ldap \
+   --with-attr \
+   --with-openssl \
+   --with-kerberos5 \
+   --without-fam \
+   --with-webdav-props \
+   --with-webdav-locks \
+   --with-gdbm \
+   --with-lua
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+
+   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.conf 
$pkgdir/etc/lighttpd/lighttpd.conf
+   install -d -m700 -o http -g http $pkgdir/var/{log,cache}/lighttpd/
+   install -D -m644 ${srcdir}/lighttpd.tmpfiles 
${pkgdir}/usr/lib/tmpfiles.d/lighttpd.conf
+   install -D -m644 ${srcdir}/lighttpd.service 
${pkgdir}/usr/lib/systemd/system/lighttpd.service
+
+   pushd doc/config >/dev/null
+   find . -type f ! -name 'Makefile*' -exec install -D -m644 {} 
${pkgdir}/usr/share/doc/lighttpd/config/{} \;
+   popd >/dev/null
+
+   install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: lighttpd/repos/staging-x86_64/lighttpd.conf (from rev 314072, 
lighttpd/trunk/lighttpd.conf)
===
--- staging-x86_64/lighttpd.conf(rev 0)
+++ staging-x86_64/lighttpd.conf2018-01-05 04:44:39 UTC (rev 314073)
@@ -0,0 +1,22 @@
+# This is a minimal example config
+# See /usr/share/doc/lighttpd
+# and 
http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
+

[arch-commits] Commit in lighttpd/repos (6 files)

2012-02-08 Thread Allan McRae
Date: Wednesday, February 8, 2012 @ 18:59:40
  Author: allan
Revision: 149668

db-move: moved lighttpd from [staging] to [testing] (i686)

Added:
  lighttpd/repos/testing-i686/
  lighttpd/repos/testing-i686/PKGBUILD
(from rev 149641, lighttpd/repos/staging-i686/PKGBUILD)
  lighttpd/repos/testing-i686/lighttpd.conf
(from rev 149641, lighttpd/repos/staging-i686/lighttpd.conf)
  lighttpd/repos/testing-i686/lighttpd.logrotate.d
(from rev 149641, lighttpd/repos/staging-i686/lighttpd.logrotate.d)
  lighttpd/repos/testing-i686/lighttpd.rc.d
(from rev 149641, lighttpd/repos/staging-i686/lighttpd.rc.d)
Deleted:
  lighttpd/repos/staging-i686/

--+
 PKGBUILD |   67 
 lighttpd.conf|   12 
 lighttpd.logrotate.d |9 +++
 lighttpd.rc.d|  132 +
 4 files changed, 220 insertions(+)

Copied: lighttpd/repos/testing-i686/PKGBUILD (from rev 149641, 
lighttpd/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-02-08 23:59:40 UTC (rev 149668)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=lighttpd
+pkgver=1.4.30
+pkgrel=3
+pkgdesc='a secure, fast, compliant and very flexible web-server'
+license=('custom')
+arch=('i686' 'x86_64')
+url=http://www.lighttpd.net/;
+depends=('pcre' 'bzip2' 'libldap' 'util-linux')
+makedepends=('fcgi' 'libmysqlclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite3' 
'gdbm' 'pkgconfig')
+optdepends=('libxml2: mod_webdav'
+'lua: mod_cml/mod_magnet'
+'libmysqlclient: mod_mysql_vhost'
+'sqlite3: mod_webdav')
+backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
+options=('!libtool' 'emptydirs')
+source=(http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz;
+
http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz.asc;
+'lighttpd.rc.d' 'lighttpd.logrotate.d' 'lighttpd.conf')
+sha256sums=('c237692366935b19ef8a6a600b2f3c9b259a9c3107271594c081a45902bd9c9b'
+'941ab747aeb97ca111fb670d21eefecdf745debc5e139bc5bd6881ee66b2742a'
+'ceff3a88e876f6104c094379d507b89bc504777d0f98a0930406a70624fcf024'
+'550aa1abaced6bc9e8d65c2b069bfc96bf4d06734b17eeb140c5d00705de1230'
+'ee56422fe48f2683ccb5ca2e3dc6bad79ea8e1cbd043b21d2ea73b87018e35aa')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   ./configure --prefix=/usr \
+   --libexecdir=/usr/lib/lighttpd/modules \
+   --sysconfdir=/etc/lighttpd \
+   --with-mysql \
+   --with-ldap \
+   --with-attr \
+   --with-openssl \
+   --with-kerberos5 \
+   --without-fam \
+   --with-webdav-props \
+   --with-webdav-locks \
+   --with-gdbm \
+   --with-memcache \
+   --with-lua
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+
+   install -D -m755 $srcdir/lighttpd.rc.d $pkgdir/etc/rc.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.conf 
$pkgdir/etc/lighttpd/lighttpd.conf
+   install -d -m755 -o http -g http $pkgdir/var/{log,cache}/lighttpd/
+
+   pushd doc/config /dev/null
+   find . -type f ! -name 'Makefile*' -exec install -D -m644 {} 
${pkgdir}/usr/share/doc/lighttpd/config/{} \;
+   popd /dev/null
+
+   install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: lighttpd/repos/testing-i686/lighttpd.conf (from rev 149641, 
lighttpd/repos/staging-i686/lighttpd.conf)
===
--- testing-i686/lighttpd.conf  (rev 0)
+++ testing-i686/lighttpd.conf  2012-02-08 23:59:40 UTC (rev 149668)
@@ -0,0 +1,12 @@
+# This is a minimal example config
+# See /usr/share/doc/lighttpd
+# and 
http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
+
+server.port= 80
+server.username= http
+server.groupname   = http
+server.document-root   = /srv/http
+server.errorlog= /var/log/lighttpd/error.log
+dir-listing.activate   = enable
+index-file.names   = ( index.html )
+mimetype.assign= ( .html = text/html, .txt = 
text/plain, .jpg = image/jpeg, .png = image/png,  = 
application/octet-stream )

Copied: lighttpd/repos/testing-i686/lighttpd.logrotate.d (from rev 149641, 
lighttpd/repos/staging-i686/lighttpd.logrotate.d)
===
--- testing-i686/lighttpd.logrotate.d   

[arch-commits] Commit in lighttpd/repos (6 files)

2012-02-08 Thread Allan McRae
Date: Wednesday, February 8, 2012 @ 18:59:41
  Author: allan
Revision: 149669

db-move: moved lighttpd from [staging] to [testing] (x86_64)

Added:
  lighttpd/repos/testing-x86_64/
  lighttpd/repos/testing-x86_64/PKGBUILD
(from rev 149641, lighttpd/repos/staging-x86_64/PKGBUILD)
  lighttpd/repos/testing-x86_64/lighttpd.conf
(from rev 149641, lighttpd/repos/staging-x86_64/lighttpd.conf)
  lighttpd/repos/testing-x86_64/lighttpd.logrotate.d
(from rev 149641, lighttpd/repos/staging-x86_64/lighttpd.logrotate.d)
  lighttpd/repos/testing-x86_64/lighttpd.rc.d
(from rev 149641, lighttpd/repos/staging-x86_64/lighttpd.rc.d)
Deleted:
  lighttpd/repos/staging-x86_64/

--+
 PKGBUILD |   67 
 lighttpd.conf|   12 
 lighttpd.logrotate.d |9 +++
 lighttpd.rc.d|  132 +
 4 files changed, 220 insertions(+)

Copied: lighttpd/repos/testing-x86_64/PKGBUILD (from rev 149641, 
lighttpd/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-02-08 23:59:41 UTC (rev 149669)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=lighttpd
+pkgver=1.4.30
+pkgrel=3
+pkgdesc='a secure, fast, compliant and very flexible web-server'
+license=('custom')
+arch=('i686' 'x86_64')
+url=http://www.lighttpd.net/;
+depends=('pcre' 'bzip2' 'libldap' 'util-linux')
+makedepends=('fcgi' 'libmysqlclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite3' 
'gdbm' 'pkgconfig')
+optdepends=('libxml2: mod_webdav'
+'lua: mod_cml/mod_magnet'
+'libmysqlclient: mod_mysql_vhost'
+'sqlite3: mod_webdav')
+backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
+options=('!libtool' 'emptydirs')
+source=(http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz;
+
http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz.asc;
+'lighttpd.rc.d' 'lighttpd.logrotate.d' 'lighttpd.conf')
+sha256sums=('c237692366935b19ef8a6a600b2f3c9b259a9c3107271594c081a45902bd9c9b'
+'941ab747aeb97ca111fb670d21eefecdf745debc5e139bc5bd6881ee66b2742a'
+'ceff3a88e876f6104c094379d507b89bc504777d0f98a0930406a70624fcf024'
+'550aa1abaced6bc9e8d65c2b069bfc96bf4d06734b17eeb140c5d00705de1230'
+'ee56422fe48f2683ccb5ca2e3dc6bad79ea8e1cbd043b21d2ea73b87018e35aa')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   ./configure --prefix=/usr \
+   --libexecdir=/usr/lib/lighttpd/modules \
+   --sysconfdir=/etc/lighttpd \
+   --with-mysql \
+   --with-ldap \
+   --with-attr \
+   --with-openssl \
+   --with-kerberos5 \
+   --without-fam \
+   --with-webdav-props \
+   --with-webdav-locks \
+   --with-gdbm \
+   --with-memcache \
+   --with-lua
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+
+   install -D -m755 $srcdir/lighttpd.rc.d $pkgdir/etc/rc.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.conf 
$pkgdir/etc/lighttpd/lighttpd.conf
+   install -d -m755 -o http -g http $pkgdir/var/{log,cache}/lighttpd/
+
+   pushd doc/config /dev/null
+   find . -type f ! -name 'Makefile*' -exec install -D -m644 {} 
${pkgdir}/usr/share/doc/lighttpd/config/{} \;
+   popd /dev/null
+
+   install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: lighttpd/repos/testing-x86_64/lighttpd.conf (from rev 149641, 
lighttpd/repos/staging-x86_64/lighttpd.conf)
===
--- testing-x86_64/lighttpd.conf(rev 0)
+++ testing-x86_64/lighttpd.conf2012-02-08 23:59:41 UTC (rev 149669)
@@ -0,0 +1,12 @@
+# This is a minimal example config
+# See /usr/share/doc/lighttpd
+# and 
http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
+
+server.port= 80
+server.username= http
+server.groupname   = http
+server.document-root   = /srv/http
+server.errorlog= /var/log/lighttpd/error.log
+dir-listing.activate   = enable
+index-file.names   = ( index.html )
+mimetype.assign= ( .html = text/html, .txt = 
text/plain, .jpg = image/jpeg, .png = image/png,  = 
application/octet-stream )

Copied: lighttpd/repos/testing-x86_64/lighttpd.logrotate.d (from rev 149641, 
lighttpd/repos/staging-x86_64/lighttpd.logrotate.d)
===
--- 

[arch-commits] Commit in lighttpd/repos (6 files)

2011-11-24 Thread Stéphane Gaudreault
Date: Thursday, November 24, 2011 @ 12:02:54
  Author: stephane
Revision: 143463

db-move: moved lighttpd from [staging] to [testing] (i686)

Added:
  lighttpd/repos/testing-i686/
  lighttpd/repos/testing-i686/PKGBUILD
(from rev 143456, lighttpd/repos/staging-i686/PKGBUILD)
  lighttpd/repos/testing-i686/lighttpd.conf
(from rev 143456, lighttpd/repos/staging-i686/lighttpd.conf)
  lighttpd/repos/testing-i686/lighttpd.logrotate.d
(from rev 143456, lighttpd/repos/staging-i686/lighttpd.logrotate.d)
  lighttpd/repos/testing-i686/lighttpd.rc.d
(from rev 143456, lighttpd/repos/staging-i686/lighttpd.rc.d)
Deleted:
  lighttpd/repos/staging-i686/

--+
 PKGBUILD |   67 
 lighttpd.conf|   12 
 lighttpd.logrotate.d |6 ++
 lighttpd.rc.d|  132 +
 4 files changed, 217 insertions(+)

Copied: lighttpd/repos/testing-i686/PKGBUILD (from rev 143456, 
lighttpd/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-24 17:02:54 UTC (rev 143463)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=lighttpd
+pkgver=1.4.29
+pkgrel=3
+pkgdesc='a secure, fast, compliant and very flexible web-server'
+license=('custom')
+arch=('i686' 'x86_64')
+url=http://www.lighttpd.net/;
+depends=('pcre' 'bzip2' 'libldap' 'util-linux')
+makedepends=('fcgi' 'libmysqlclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite3' 
'gdbm' 'pkgconfig')
+optdepends=('libxml2: mod_webdav'
+'lua: mod_cml/mod_magnet'
+'libmysqlclient: mod_mysql_vhost'
+'sqlite3: mod_webdav')
+backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
+options=('!libtool' 'emptydirs')
+source=(http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.bz2;
+
http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.bz2.asc;
+'lighttpd.rc.d' 'lighttpd.logrotate.d' 'lighttpd.conf')
+md5sums=('e6e67b09986cb504db630b5a86b2dd76'
+ 'de2afb4ed6a088fd7fa5f13c387a08f0'
+ '268386e71f5748dc1d887b9a0ab65589'
+ '913e2157fa78d990c32146f387d44c2b'
+ 'acdaa94299e6299cb5085e6d88babeca')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   ./configure --prefix=/usr \
+   --libexecdir=/usr/lib/lighttpd/modules \
+   --sysconfdir=/etc/lighttpd \
+   --with-mysql \
+   --with-ldap \
+   --with-attr \
+   --with-openssl \
+   --with-kerberos5 \
+   --without-fam \
+   --with-webdav-props \
+   --with-webdav-locks \
+   --with-gdbm \
+   --with-memcache \
+   --with-lua
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+
+   install -D -m755 $srcdir/lighttpd.rc.d $pkgdir/etc/rc.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.conf 
$pkgdir/etc/lighttpd/lighttpd.conf
+   install -d -m755 -o http -g http $pkgdir/var/{log,cache}/lighttpd/
+
+   pushd doc/config /dev/null
+   find . -type f ! -name 'Makefile*' -exec install -D -m644 {} 
${pkgdir}/usr/share/doc/lighttpd/config/{} \;
+   popd /dev/null
+
+   install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: lighttpd/repos/testing-i686/lighttpd.conf (from rev 143456, 
lighttpd/repos/staging-i686/lighttpd.conf)
===
--- testing-i686/lighttpd.conf  (rev 0)
+++ testing-i686/lighttpd.conf  2011-11-24 17:02:54 UTC (rev 143463)
@@ -0,0 +1,12 @@
+# This is a minimal example config
+# See /usr/share/doc/lighttpd
+# and 
http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
+
+server.port= 80
+server.username= http
+server.groupname   = http
+server.document-root   = /srv/http
+server.errorlog= /var/log/lighttpd/error.log
+dir-listing.activate   = enable
+index-file.names   = ( index.html )
+mimetype.assign= ( .html = text/html, .txt = 
text/plain, .jpg = image/jpeg, .png = image/png )

Copied: lighttpd/repos/testing-i686/lighttpd.logrotate.d (from rev 143456, 
lighttpd/repos/staging-i686/lighttpd.logrotate.d)
===
--- testing-i686/lighttpd.logrotate.d   (rev 0)
+++ testing-i686/lighttpd.logrotate.d   2011-11-24 17:02:54 UTC (rev 143463)
@@ -0,0 +1,6 @@
+/var/log/lighttpd/*log {
+   missingok
+   postrotate
+   /etc/rc.d/lighttpd reload 

[arch-commits] Commit in lighttpd/repos (6 files)

2011-11-24 Thread Stéphane Gaudreault
Date: Thursday, November 24, 2011 @ 12:02:56
  Author: stephane
Revision: 143464

db-move: moved lighttpd from [staging] to [testing] (x86_64)

Added:
  lighttpd/repos/testing-x86_64/
  lighttpd/repos/testing-x86_64/PKGBUILD
(from rev 143456, lighttpd/repos/staging-x86_64/PKGBUILD)
  lighttpd/repos/testing-x86_64/lighttpd.conf
(from rev 143456, lighttpd/repos/staging-x86_64/lighttpd.conf)
  lighttpd/repos/testing-x86_64/lighttpd.logrotate.d
(from rev 143456, lighttpd/repos/staging-x86_64/lighttpd.logrotate.d)
  lighttpd/repos/testing-x86_64/lighttpd.rc.d
(from rev 143456, lighttpd/repos/staging-x86_64/lighttpd.rc.d)
Deleted:
  lighttpd/repos/staging-x86_64/

--+
 PKGBUILD |   67 
 lighttpd.conf|   12 
 lighttpd.logrotate.d |6 ++
 lighttpd.rc.d|  132 +
 4 files changed, 217 insertions(+)

Copied: lighttpd/repos/testing-x86_64/PKGBUILD (from rev 143456, 
lighttpd/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-24 17:02:56 UTC (rev 143464)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=lighttpd
+pkgver=1.4.29
+pkgrel=3
+pkgdesc='a secure, fast, compliant and very flexible web-server'
+license=('custom')
+arch=('i686' 'x86_64')
+url=http://www.lighttpd.net/;
+depends=('pcre' 'bzip2' 'libldap' 'util-linux')
+makedepends=('fcgi' 'libmysqlclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite3' 
'gdbm' 'pkgconfig')
+optdepends=('libxml2: mod_webdav'
+'lua: mod_cml/mod_magnet'
+'libmysqlclient: mod_mysql_vhost'
+'sqlite3: mod_webdav')
+backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
+options=('!libtool' 'emptydirs')
+source=(http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.bz2;
+
http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.bz2.asc;
+'lighttpd.rc.d' 'lighttpd.logrotate.d' 'lighttpd.conf')
+md5sums=('e6e67b09986cb504db630b5a86b2dd76'
+ 'de2afb4ed6a088fd7fa5f13c387a08f0'
+ '268386e71f5748dc1d887b9a0ab65589'
+ '913e2157fa78d990c32146f387d44c2b'
+ 'acdaa94299e6299cb5085e6d88babeca')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   ./configure --prefix=/usr \
+   --libexecdir=/usr/lib/lighttpd/modules \
+   --sysconfdir=/etc/lighttpd \
+   --with-mysql \
+   --with-ldap \
+   --with-attr \
+   --with-openssl \
+   --with-kerberos5 \
+   --without-fam \
+   --with-webdav-props \
+   --with-webdav-locks \
+   --with-gdbm \
+   --with-memcache \
+   --with-lua
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+
+   install -D -m755 $srcdir/lighttpd.rc.d $pkgdir/etc/rc.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
+   install -D -m644 $srcdir/lighttpd.conf 
$pkgdir/etc/lighttpd/lighttpd.conf
+   install -d -m755 -o http -g http $pkgdir/var/{log,cache}/lighttpd/
+
+   pushd doc/config /dev/null
+   find . -type f ! -name 'Makefile*' -exec install -D -m644 {} 
${pkgdir}/usr/share/doc/lighttpd/config/{} \;
+   popd /dev/null
+
+   install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: lighttpd/repos/testing-x86_64/lighttpd.conf (from rev 143456, 
lighttpd/repos/staging-x86_64/lighttpd.conf)
===
--- testing-x86_64/lighttpd.conf(rev 0)
+++ testing-x86_64/lighttpd.conf2011-11-24 17:02:56 UTC (rev 143464)
@@ -0,0 +1,12 @@
+# This is a minimal example config
+# See /usr/share/doc/lighttpd
+# and 
http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
+
+server.port= 80
+server.username= http
+server.groupname   = http
+server.document-root   = /srv/http
+server.errorlog= /var/log/lighttpd/error.log
+dir-listing.activate   = enable
+index-file.names   = ( index.html )
+mimetype.assign= ( .html = text/html, .txt = 
text/plain, .jpg = image/jpeg, .png = image/png )

Copied: lighttpd/repos/testing-x86_64/lighttpd.logrotate.d (from rev 143456, 
lighttpd/repos/staging-x86_64/lighttpd.logrotate.d)
===
--- testing-x86_64/lighttpd.logrotate.d (rev 0)
+++ testing-x86_64/lighttpd.logrotate.d 2011-11-24 17:02:56 UTC (rev 143464)
@@ -0,0 +1,6 @@
+/var/log/lighttpd/*log {
+   missingok
+