[arch-commits] Commit in proftpd/repos (12 files)

Andrea Scarpino andrea at archlinux.org
Tue Aug 14 16:09:40 UTC 2012


    Date: Tuesday, August 14, 2012 @ 12:09:40
  Author: andrea
Revision: 165249

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  proftpd/repos/testing-i686/
  proftpd/repos/testing-i686/PKGBUILD
    (from rev 165248, proftpd/trunk/PKGBUILD)
  proftpd/repos/testing-i686/proftpd
    (from rev 165248, proftpd/trunk/proftpd)
  proftpd/repos/testing-i686/proftpd.conf.d
    (from rev 165248, proftpd/trunk/proftpd.conf.d)
  proftpd/repos/testing-i686/proftpd.logrotate
    (from rev 165248, proftpd/trunk/proftpd.logrotate)
  proftpd/repos/testing-i686/proftpd.service
    (from rev 165248, proftpd/trunk/proftpd.service)
  proftpd/repos/testing-x86_64/
  proftpd/repos/testing-x86_64/PKGBUILD
    (from rev 165248, proftpd/trunk/PKGBUILD)
  proftpd/repos/testing-x86_64/proftpd
    (from rev 165248, proftpd/trunk/proftpd)
  proftpd/repos/testing-x86_64/proftpd.conf.d
    (from rev 165248, proftpd/trunk/proftpd.conf.d)
  proftpd/repos/testing-x86_64/proftpd.logrotate
    (from rev 165248, proftpd/trunk/proftpd.logrotate)
  proftpd/repos/testing-x86_64/proftpd.service
    (from rev 165248, proftpd/trunk/proftpd.service)

----------------------------------+
 testing-i686/PKGBUILD            |   56 +++++++++++++++++++++++++++++++++++++
 testing-i686/proftpd             |   41 +++++++++++++++++++++++++++
 testing-i686/proftpd.conf.d      |    4 ++
 testing-i686/proftpd.logrotate   |    5 +++
 testing-i686/proftpd.service     |   14 +++++++++
 testing-x86_64/PKGBUILD          |   56 +++++++++++++++++++++++++++++++++++++
 testing-x86_64/proftpd           |   41 +++++++++++++++++++++++++++
 testing-x86_64/proftpd.conf.d    |    4 ++
 testing-x86_64/proftpd.logrotate |    5 +++
 testing-x86_64/proftpd.service   |   14 +++++++++
 10 files changed, 240 insertions(+)

Copied: proftpd/repos/testing-i686/PKGBUILD (from rev 165248, proftpd/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2012-08-14 16:09:40 UTC (rev 165249)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer:
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=proftpd
+pkgver=1.3.4b
+pkgrel=2
+epoch=1
+pkgdesc="A high-performance, scalable FTP server"
+arch=('i686' 'x86_64')
+url="http://www.proftpd.org"
+license=('GPL')
+depends=('libmysqlclient' 'postgresql-libs')
+backup=('etc/proftpd.conf' 'etc/conf.d/proftpd')
+source=(ftp://ftp.proftpd.org/distrib/source/${pkgname}-${pkgver}.tar.gz{,.asc}
+        'proftpd' 'proftpd.logrotate' 'proftpd.conf.d' 'proftpd.service')
+md5sums=('0871e0b93c9c3c88ca950b6d9a04aed2'
+         'e5b9bd78029a15f82994efcb7ed2e9fb'
+         'c439a0a1dbc21b604d8382da87aa021b'
+         'ddb09eb13131becdf0e081eef413116b'
+         '71d5932b0461c318ed68c2c0c2660736'
+         '2c446f531948c8cc0a1e0fae28f8dfda')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+    --libexecdir=/usr/lib \
+    --disable-pam \
+    --with-modules=mod_quotatab:mod_quotatab_sql:mod_quotatab_file:mod_tls:mod_ldap:mod_sql:mod_sql_mysql:mod_sql_postgres \
+    --sysconfdir=/etc \
+    --localstatedir=/run/proftpd \
+    --enable-ctrls \
+    --enable-ipv6 \
+    --with-includes=/usr/include/mysql:/usr/include/postgresql \
+    --with-libraries=/usr/lib/mysql:/usr/lib/postgresql \
+    --enable-nls \
+    --with-systemd
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+  sed -i 's|nogroup|nobody|g' "${pkgdir}/etc/proftpd.conf"
+
+  install -Dm644 ../proftpd.logrotate "${pkgdir}/etc/logrotate.d/proftpd"
+  install -Dm644 ../proftpd.conf.d "${pkgdir}/etc/conf.d/proftpd"
+  install -Dm755 ../proftpd "${pkgdir}/etc/rc.d/proftpd"
+  install -Dm755 contrib/xferstats.holger-preiss "${pkgdir}/usr/bin/ftpstats"
+
+  install -d "${pkgdir}/usr/lib/systemd/system/"
+  install -m644 "${srcdir}"/proftpd.service "${pkgdir}/usr/lib/systemd/system/"
+}

Copied: proftpd/repos/testing-i686/proftpd (from rev 165248, proftpd/trunk/proftpd)
===================================================================
--- testing-i686/proftpd	                        (rev 0)
+++ testing-i686/proftpd	2012-08-14 16:09:40 UTC (rev 165249)
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+# source application-specific settings
+PROFTPD_ARGS=
+[ -f /etc/conf.d/proftpd ] && . /etc/conf.d/proftpd
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+case "$1" in
+  start)
+    stat_busy "Starting ProFTPd Server"
+    /usr/sbin/proftpd ${PROFTPD_ARGS}
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      add_daemon proftpd
+      stat_done
+    fi
+    ;;
+  stop)
+    stat_busy "Stopping ProFTPd Server"
+    [ -f /run/proftpd/proftpd.pid ] && kill $(cat /run/proftpd/proftpd.pid) &> /dev/null
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      rm -f /run/proftpd/proftpd.pid
+      rm_daemon proftpd
+      stat_done
+    fi
+    ;;
+  restart)
+    $0 stop
+    sleep 1
+    $0 start
+    ;;
+  *)
+    echo "usage: $0 {start|stop|restart}"
+esac
+exit 0
+

Copied: proftpd/repos/testing-i686/proftpd.conf.d (from rev 165248, proftpd/trunk/proftpd.conf.d)
===================================================================
--- testing-i686/proftpd.conf.d	                        (rev 0)
+++ testing-i686/proftpd.conf.d	2012-08-14 16:09:40 UTC (rev 165249)
@@ -0,0 +1,4 @@
+#
+# Parameters to be passed to proftpd
+#
+PROFTPD_ARGS=""

Copied: proftpd/repos/testing-i686/proftpd.logrotate (from rev 165248, proftpd/trunk/proftpd.logrotate)
===================================================================
--- testing-i686/proftpd.logrotate	                        (rev 0)
+++ testing-i686/proftpd.logrotate	2012-08-14 16:09:40 UTC (rev 165249)
@@ -0,0 +1,5 @@
+/var/log/xferlog {
+   postrotate
+      /bin/kill -HUP `cat /var/run/proftpd.pid 2>/dev/null` 2>/dev/null || true
+   endscript
+}

Copied: proftpd/repos/testing-i686/proftpd.service (from rev 165248, proftpd/trunk/proftpd.service)
===================================================================
--- testing-i686/proftpd.service	                        (rev 0)
+++ testing-i686/proftpd.service	2012-08-14 16:09:40 UTC (rev 165249)
@@ -0,0 +1,14 @@
+[Unit]
+Description = ProFTPD FTP Server
+After = network.target nss-lookup.target local-fs.target remote-fs.target
+
+[Service]
+Type = forking
+PIDFile = /run/proftpd/proftpd.pid
+Environment = PROFTPD_ARGS=
+EnvironmentFile = -/etc/conf.d/proftpd
+ExecStart = /usr/sbin/proftpd $PROFTPD_ARGS
+ExecReload = /bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy = multi-user.target

Copied: proftpd/repos/testing-x86_64/PKGBUILD (from rev 165248, proftpd/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2012-08-14 16:09:40 UTC (rev 165249)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer:
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=proftpd
+pkgver=1.3.4b
+pkgrel=2
+epoch=1
+pkgdesc="A high-performance, scalable FTP server"
+arch=('i686' 'x86_64')
+url="http://www.proftpd.org"
+license=('GPL')
+depends=('libmysqlclient' 'postgresql-libs')
+backup=('etc/proftpd.conf' 'etc/conf.d/proftpd')
+source=(ftp://ftp.proftpd.org/distrib/source/${pkgname}-${pkgver}.tar.gz{,.asc}
+        'proftpd' 'proftpd.logrotate' 'proftpd.conf.d' 'proftpd.service')
+md5sums=('0871e0b93c9c3c88ca950b6d9a04aed2'
+         'e5b9bd78029a15f82994efcb7ed2e9fb'
+         'c439a0a1dbc21b604d8382da87aa021b'
+         'ddb09eb13131becdf0e081eef413116b'
+         '71d5932b0461c318ed68c2c0c2660736'
+         '2c446f531948c8cc0a1e0fae28f8dfda')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+    --libexecdir=/usr/lib \
+    --disable-pam \
+    --with-modules=mod_quotatab:mod_quotatab_sql:mod_quotatab_file:mod_tls:mod_ldap:mod_sql:mod_sql_mysql:mod_sql_postgres \
+    --sysconfdir=/etc \
+    --localstatedir=/run/proftpd \
+    --enable-ctrls \
+    --enable-ipv6 \
+    --with-includes=/usr/include/mysql:/usr/include/postgresql \
+    --with-libraries=/usr/lib/mysql:/usr/lib/postgresql \
+    --enable-nls \
+    --with-systemd
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+  sed -i 's|nogroup|nobody|g' "${pkgdir}/etc/proftpd.conf"
+
+  install -Dm644 ../proftpd.logrotate "${pkgdir}/etc/logrotate.d/proftpd"
+  install -Dm644 ../proftpd.conf.d "${pkgdir}/etc/conf.d/proftpd"
+  install -Dm755 ../proftpd "${pkgdir}/etc/rc.d/proftpd"
+  install -Dm755 contrib/xferstats.holger-preiss "${pkgdir}/usr/bin/ftpstats"
+
+  install -d "${pkgdir}/usr/lib/systemd/system/"
+  install -m644 "${srcdir}"/proftpd.service "${pkgdir}/usr/lib/systemd/system/"
+}

Copied: proftpd/repos/testing-x86_64/proftpd (from rev 165248, proftpd/trunk/proftpd)
===================================================================
--- testing-x86_64/proftpd	                        (rev 0)
+++ testing-x86_64/proftpd	2012-08-14 16:09:40 UTC (rev 165249)
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+# source application-specific settings
+PROFTPD_ARGS=
+[ -f /etc/conf.d/proftpd ] && . /etc/conf.d/proftpd
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+case "$1" in
+  start)
+    stat_busy "Starting ProFTPd Server"
+    /usr/sbin/proftpd ${PROFTPD_ARGS}
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      add_daemon proftpd
+      stat_done
+    fi
+    ;;
+  stop)
+    stat_busy "Stopping ProFTPd Server"
+    [ -f /run/proftpd/proftpd.pid ] && kill $(cat /run/proftpd/proftpd.pid) &> /dev/null
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      rm -f /run/proftpd/proftpd.pid
+      rm_daemon proftpd
+      stat_done
+    fi
+    ;;
+  restart)
+    $0 stop
+    sleep 1
+    $0 start
+    ;;
+  *)
+    echo "usage: $0 {start|stop|restart}"
+esac
+exit 0
+

Copied: proftpd/repos/testing-x86_64/proftpd.conf.d (from rev 165248, proftpd/trunk/proftpd.conf.d)
===================================================================
--- testing-x86_64/proftpd.conf.d	                        (rev 0)
+++ testing-x86_64/proftpd.conf.d	2012-08-14 16:09:40 UTC (rev 165249)
@@ -0,0 +1,4 @@
+#
+# Parameters to be passed to proftpd
+#
+PROFTPD_ARGS=""

Copied: proftpd/repos/testing-x86_64/proftpd.logrotate (from rev 165248, proftpd/trunk/proftpd.logrotate)
===================================================================
--- testing-x86_64/proftpd.logrotate	                        (rev 0)
+++ testing-x86_64/proftpd.logrotate	2012-08-14 16:09:40 UTC (rev 165249)
@@ -0,0 +1,5 @@
+/var/log/xferlog {
+   postrotate
+      /bin/kill -HUP `cat /var/run/proftpd.pid 2>/dev/null` 2>/dev/null || true
+   endscript
+}

Copied: proftpd/repos/testing-x86_64/proftpd.service (from rev 165248, proftpd/trunk/proftpd.service)
===================================================================
--- testing-x86_64/proftpd.service	                        (rev 0)
+++ testing-x86_64/proftpd.service	2012-08-14 16:09:40 UTC (rev 165249)
@@ -0,0 +1,14 @@
+[Unit]
+Description = ProFTPD FTP Server
+After = network.target nss-lookup.target local-fs.target remote-fs.target
+
+[Service]
+Type = forking
+PIDFile = /run/proftpd/proftpd.pid
+Environment = PROFTPD_ARGS=
+EnvironmentFile = -/etc/conf.d/proftpd
+ExecStart = /usr/sbin/proftpd $PROFTPD_ARGS
+ExecReload = /bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy = multi-user.target




More information about the arch-commits mailing list