[arch-commits] Commit in opendkim/repos/community-i686 (8 files)
Sergej Pupykin
spupykin at archlinux.org
Tue Feb 10 17:00:33 UTC 2015
Date: Tuesday, February 10, 2015 @ 18:00:33
Author: spupykin
Revision: 127506
archrelease: copy trunk to community-i686
Added:
opendkim/repos/community-i686/PKGBUILD
(from rev 127505, opendkim/trunk/PKGBUILD)
opendkim/repos/community-i686/opendkim.conf
(from rev 127505, opendkim/trunk/opendkim.conf)
opendkim/repos/community-i686/opendkim.install
(from rev 127505, opendkim/trunk/opendkim.install)
opendkim/repos/community-i686/opendkim.service
(from rev 127505, opendkim/trunk/opendkim.service)
Deleted:
opendkim/repos/community-i686/PKGBUILD
opendkim/repos/community-i686/opendkim.conf
opendkim/repos/community-i686/opendkim.install
opendkim/repos/community-i686/opendkim.service
------------------+
PKGBUILD | 108 ++++++++++++++++++++++++++---------------------------
opendkim.conf | 2
opendkim.install | 18 +++-----
opendkim.service | 22 +++++-----
4 files changed, 73 insertions(+), 77 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2015-02-10 17:00:22 UTC (rev 127505)
+++ PKGBUILD 2015-02-10 17:00:33 UTC (rev 127506)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Maintainer: Thomas Jost <schnouki at schnouki.net>
-
-pkgname=opendkim
-pkgver=2.9.2
-pkgrel=2
-pkgdesc="An open source implementation of the DKIM sender authentication system. Based on a fork of dkim-milter."
-arch=(i686 x86_64)
-url="http://www.opendkim.org/"
-license=('BSD' 'custom:Sendmail')
-depends=("db" "openssl" "libbsd")
-makedepends=("libmilter")
-options=(!emptydirs)
-backup=(etc/conf.d/opendkim)
-install=opendkim.install
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz
- opendkim.conf
- opendkim.service)
-md5sums=('08cc80a2aedec62b0444d8d6af24a155'
- '3e2bb1058ac0662f01e675aa6ac7ee8f'
- '85010750a21954e2d3cf5d57fe210d3f')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --sbindir=/usr/bin --with-db
- make
-}
-
-check() {
- cd "$srcdir/$pkgname-$pkgver"
- make check
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- make DESTDIR="$pkgdir/" install
-
- # Sample configuration
- mkdir -p "$pkgdir/etc/opendkim"
- mv "$pkgdir/usr/share/doc/opendkim/opendkim.conf.sample" "$pkgdir/etc/opendkim/opendkim.conf.sample"
- chmod 0700 "$pkgdir/etc/opendkim"
- chmod 0600 "$pkgdir/etc/opendkim/opendkim.conf.sample"
- install -Dm644 "$srcdir/opendkim.conf" "$pkgdir/etc/conf.d/opendkim"
-
- # License
- mkdir -p "$pkgdir/usr/share/licenses/opendkim"
- for f in LICENSE LICENSE.Sendmail; do
- ln -s ../../doc/opendkim/$f "$pkgdir/usr/share/licenses/opendkim/$f"
- done
-
- install -Dm0644 $srcdir/$pkgname.service $pkgdir/usr/lib/systemd/system/$pkgname.service
-}
Copied: opendkim/repos/community-i686/PKGBUILD (from rev 127505, opendkim/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2015-02-10 17:00:33 UTC (rev 127506)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: Thomas Jost <schnouki at schnouki.net>
+
+pkgname=opendkim
+pkgver=2.10.0
+pkgrel=1
+pkgdesc="An open source implementation of the DKIM sender authentication system. Based on a fork of dkim-milter."
+arch=(i686 x86_64)
+url="http://www.opendkim.org/"
+license=('BSD' 'custom:Sendmail')
+depends=("db" "openssl" "libbsd")
+makedepends=("libmilter")
+options=(!emptydirs)
+backup=(etc/conf.d/opendkim)
+install=opendkim.install
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz
+ opendkim.conf
+ opendkim.service)
+md5sums=('6f79ff358219c7ae7f944f44bf150391'
+ '3e2bb1058ac0662f01e675aa6ac7ee8f'
+ '85010750a21954e2d3cf5d57fe210d3f')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr --sbindir=/usr/bin --with-db
+ make
+}
+
+check() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make check
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir/" install
+
+ # Sample configuration
+ mkdir -p "$pkgdir/etc/opendkim"
+ mv "$pkgdir/usr/share/doc/opendkim/opendkim.conf.sample" "$pkgdir/etc/opendkim/opendkim.conf.sample"
+ chmod 0700 "$pkgdir/etc/opendkim"
+ chmod 0600 "$pkgdir/etc/opendkim/opendkim.conf.sample"
+ install -Dm644 "$srcdir/opendkim.conf" "$pkgdir/etc/conf.d/opendkim"
+
+ # License
+ mkdir -p "$pkgdir/usr/share/licenses/opendkim"
+ for f in LICENSE LICENSE.Sendmail; do
+ ln -s ../../doc/opendkim/$f "$pkgdir/usr/share/licenses/opendkim/$f"
+ done
+
+ install -Dm0644 $srcdir/$pkgname.service $pkgdir/usr/lib/systemd/system/$pkgname.service
+}
Deleted: opendkim.conf
===================================================================
--- opendkim.conf 2015-02-10 17:00:22 UTC (rev 127505)
+++ opendkim.conf 2015-02-10 17:00:33 UTC (rev 127506)
@@ -1 +0,0 @@
-OPENDKIM_FILTER="-x /etc/opendkim/opendkim.conf"
Copied: opendkim/repos/community-i686/opendkim.conf (from rev 127505, opendkim/trunk/opendkim.conf)
===================================================================
--- opendkim.conf (rev 0)
+++ opendkim.conf 2015-02-10 17:00:33 UTC (rev 127506)
@@ -0,0 +1 @@
+OPENDKIM_FILTER="-x /etc/opendkim/opendkim.conf"
Deleted: opendkim.install
===================================================================
--- opendkim.install 2015-02-10 17:00:22 UTC (rev 127505)
+++ opendkim.install 2015-02-10 17:00:33 UTC (rev 127506)
@@ -1,11 +0,0 @@
-post_install() {
- useradd -r -g mail -d / -s /sbin/nologin opendkim
- chown -R opendkim:mail etc/opendkim
- cat <<EOF
->>> Check and modify /etc/opendkim/opendkim.conf before starting
-EOF
-}
-
-post_remove() {
- userdel opendkim
-}
Copied: opendkim/repos/community-i686/opendkim.install (from rev 127505, opendkim/trunk/opendkim.install)
===================================================================
--- opendkim.install (rev 0)
+++ opendkim.install 2015-02-10 17:00:33 UTC (rev 127506)
@@ -0,0 +1,7 @@
+post_install() {
+ useradd -r -g mail -d / -s /sbin/nologin opendkim
+ chown -R opendkim:mail etc/opendkim
+ cat <<EOF
+>>> Check and modify /etc/opendkim/opendkim.conf before starting
+EOF
+}
Deleted: opendkim.service
===================================================================
--- opendkim.service 2015-02-10 17:00:22 UTC (rev 127505)
+++ opendkim.service 2015-02-10 17:00:33 UTC (rev 127506)
@@ -1,11 +0,0 @@
-[Unit]
-Description=OpenDKIM daemon
-After=network.target remote-fs.target nss-lookup.target
-
-[Service]
-Type=forking
-EnvironmentFile=/etc/conf.d/opendkim
-ExecStart=/usr/bin/opendkim $OPENDKIM_FILTER
-
-[Install]
-WantedBy=multi-user.target
Copied: opendkim/repos/community-i686/opendkim.service (from rev 127505, opendkim/trunk/opendkim.service)
===================================================================
--- opendkim.service (rev 0)
+++ opendkim.service 2015-02-10 17:00:33 UTC (rev 127506)
@@ -0,0 +1,11 @@
+[Unit]
+Description=OpenDKIM daemon
+After=network.target remote-fs.target nss-lookup.target
+
+[Service]
+Type=forking
+EnvironmentFile=/etc/conf.d/opendkim
+ExecStart=/usr/bin/opendkim $OPENDKIM_FILTER
+
+[Install]
+WantedBy=multi-user.target
More information about the arch-commits
mailing list