Date: Tuesday, February 24, 2015 @ 23:12:06
  Author: anatolik
Revision: 128191

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

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

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

Copied: dropbear/repos/community-testing-i686/PKGBUILD (from rev 128190, 
dropbear/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD                             (rev 0)
+++ community-testing-i686/PKGBUILD     2015-02-24 22:12:06 UTC (rev 128191)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli <[email protected]>
+# Contributor: Simon Perry <aur [at] sanxion [dot] net>
+# Contributor: Bartlomiej Piotrowski <[email protected]>
+# Contributor: Jaroslav Lichtblau <[email protected]>
+# Contributor: Jason Pierce <`echo 'moc tod liamg ta nosaj tod ecreip' | rev`>
+# Contributor: Jeremy Cowgar <[email protected]>
+# Contributor: Simon Perry <aur [at] sanxion [dot] net>
+
+pkgname=dropbear
+pkgver=2015.67
+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=('7e690594645dfde5787065c78a5d2e4d15e288babfa06e140197ce05f698c8e5'
+            '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-testing-i686/dropbear.service (from rev 
128190, dropbear/trunk/dropbear.service)
===================================================================
--- community-testing-i686/dropbear.service                             (rev 0)
+++ community-testing-i686/dropbear.service     2015-02-24 22:12:06 UTC (rev 
128191)
@@ -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-testing-x86_64/PKGBUILD (from rev 128190, 
dropbear/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD                           (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-02-24 22:12:06 UTC (rev 128191)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli <[email protected]>
+# Contributor: Simon Perry <aur [at] sanxion [dot] net>
+# Contributor: Bartlomiej Piotrowski <[email protected]>
+# Contributor: Jaroslav Lichtblau <[email protected]>
+# Contributor: Jason Pierce <`echo 'moc tod liamg ta nosaj tod ecreip' | rev`>
+# Contributor: Jeremy Cowgar <[email protected]>
+# Contributor: Simon Perry <aur [at] sanxion [dot] net>
+
+pkgname=dropbear
+pkgver=2015.67
+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=('7e690594645dfde5787065c78a5d2e4d15e288babfa06e140197ce05f698c8e5'
+            '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-testing-x86_64/dropbear.service (from rev 
128190, dropbear/trunk/dropbear.service)
===================================================================
--- community-testing-x86_64/dropbear.service                           (rev 0)
+++ community-testing-x86_64/dropbear.service   2015-02-24 22:12:06 UTC (rev 
128191)
@@ -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

Reply via email to