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

Timothy Redaelli tredaelli at archlinux.org
Wed Sep 17 09:45:01 UTC 2014


    Date: Wednesday, September 17, 2014 @ 11:45:01
  Author: tredaelli
Revision: 119087

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

Added:
  dropbear/repos/community-i686/
  dropbear/repos/community-i686/PKGBUILD
    (from rev 119086, dropbear/trunk/PKGBUILD)
  dropbear/repos/community-i686/dropbear.service
    (from rev 119086, dropbear/trunk/dropbear.service)
  dropbear/repos/community-x86_64/
  dropbear/repos/community-x86_64/PKGBUILD
    (from rev 119086, dropbear/trunk/PKGBUILD)
  dropbear/repos/community-x86_64/dropbear.service
    (from rev 119086, dropbear/trunk/dropbear.service)

-----------------------------------+
 community-i686/PKGBUILD           |   46 ++++++++++++++++++++++++++++++++++++
 community-i686/dropbear.service   |   10 +++++++
 community-x86_64/PKGBUILD         |   46 ++++++++++++++++++++++++++++++++++++
 community-x86_64/dropbear.service |   10 +++++++
 4 files changed, 112 insertions(+)

Copied: dropbear/repos/community-i686/PKGBUILD (from rev 119086, dropbear/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-09-17 09:45:01 UTC (rev 119087)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: Simon Perry <aur [at] sanxion [dot] net>
+# Contributor: Bartlomiej Piotrowski <nospam at bpiotrowski.pl>
+# Contributor: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+# Contributor: Jason Pierce <`echo 'moc tod liamg ta nosaj tod ecreip' | rev`>
+# Contributor: Jeremy Cowgar <jeremy at cowgar.com>
+# Contributor: Simon Perry <aur [at] sanxion [dot] net>
+
+pkgname=dropbear
+pkgver=2014.65
+pkgrel=1
+pkgdesc="Lightweight replacement for sshd"
+arch=('i686' 'x86_64')
+url="http://matt.ucc.asn.au/dropbear/dropbear.html"
+license=('MIT')
+depends=('zlib')
+source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2
+        $pkgname.service)
+sha256sums=('e20057aa7db0f9ea4efdcbfc6fc6b73a648b47b6ab6a01659472142b06f5f56c'
+            '1920dc2d9a1dd86b3137ae4348196f9b95142d6eee484ee536bc7dfed7f0def0')
+
+prepare() {
+  sed -i 's|usr/libexec/sftp|usr/lib/ssh/sftp|' $pkgname-$pkgver/options.h
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install DESTDIR="${pkgdir}/"
+
+  # Configuration files
+  install -d "${pkgdir}/etc/$pkgname"
+  install -D -m644 "${srcdir}/$pkgname.service" "${pkgdir}/usr/lib/systemd/system/$pkgname.service"
+
+  # License file
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}
+

Copied: dropbear/repos/community-i686/dropbear.service (from rev 119086, dropbear/trunk/dropbear.service)
===================================================================
--- community-i686/dropbear.service	                        (rev 0)
+++ community-i686/dropbear.service	2014-09-17 09:45:01 UTC (rev 119087)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Dropbear SSH Daemon
+After=network.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/dropbear -F -P /run/dropbear.pid
+
+[Install]
+WantedBy=multi-user.target

Copied: dropbear/repos/community-x86_64/PKGBUILD (from rev 119086, dropbear/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-09-17 09:45:01 UTC (rev 119087)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: Simon Perry <aur [at] sanxion [dot] net>
+# Contributor: Bartlomiej Piotrowski <nospam at bpiotrowski.pl>
+# Contributor: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+# Contributor: Jason Pierce <`echo 'moc tod liamg ta nosaj tod ecreip' | rev`>
+# Contributor: Jeremy Cowgar <jeremy at cowgar.com>
+# Contributor: Simon Perry <aur [at] sanxion [dot] net>
+
+pkgname=dropbear
+pkgver=2014.65
+pkgrel=1
+pkgdesc="Lightweight replacement for sshd"
+arch=('i686' 'x86_64')
+url="http://matt.ucc.asn.au/dropbear/dropbear.html"
+license=('MIT')
+depends=('zlib')
+source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2
+        $pkgname.service)
+sha256sums=('e20057aa7db0f9ea4efdcbfc6fc6b73a648b47b6ab6a01659472142b06f5f56c'
+            '1920dc2d9a1dd86b3137ae4348196f9b95142d6eee484ee536bc7dfed7f0def0')
+
+prepare() {
+  sed -i 's|usr/libexec/sftp|usr/lib/ssh/sftp|' $pkgname-$pkgver/options.h
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install DESTDIR="${pkgdir}/"
+
+  # Configuration files
+  install -d "${pkgdir}/etc/$pkgname"
+  install -D -m644 "${srcdir}/$pkgname.service" "${pkgdir}/usr/lib/systemd/system/$pkgname.service"
+
+  # License file
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}
+

Copied: dropbear/repos/community-x86_64/dropbear.service (from rev 119086, dropbear/trunk/dropbear.service)
===================================================================
--- community-x86_64/dropbear.service	                        (rev 0)
+++ community-x86_64/dropbear.service	2014-09-17 09:45:01 UTC (rev 119087)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Dropbear SSH Daemon
+After=network.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/dropbear -F -P /run/dropbear.pid
+
+[Install]
+WantedBy=multi-user.target




More information about the arch-commits mailing list