[arch-commits] Commit in hdapsd/repos (8 files)

Lukas Fleischer lfleischer at archlinux.org
Wed Dec 17 13:17:48 UTC 2014


    Date: Wednesday, December 17, 2014 @ 14:17:48
  Author: lfleischer
Revision: 124014

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

Added:
  hdapsd/repos/community-i686/PKGBUILD
    (from rev 124013, hdapsd/trunk/PKGBUILD)
  hdapsd/repos/community-i686/hdapsd.systemd
    (from rev 124013, hdapsd/trunk/hdapsd.systemd)
  hdapsd/repos/community-x86_64/PKGBUILD
    (from rev 124013, hdapsd/trunk/PKGBUILD)
  hdapsd/repos/community-x86_64/hdapsd.systemd
    (from rev 124013, hdapsd/trunk/hdapsd.systemd)
Deleted:
  hdapsd/repos/community-i686/PKGBUILD
  hdapsd/repos/community-i686/hdapsd.systemd
  hdapsd/repos/community-x86_64/PKGBUILD
  hdapsd/repos/community-x86_64/hdapsd.systemd

---------------------------------+
 /PKGBUILD                       |   56 ++++++++++++++++++++++++++++++++++++++
 /hdapsd.systemd                 |   24 ++++++++++++++++
 community-i686/PKGBUILD         |   31 ---------------------
 community-i686/hdapsd.systemd   |   12 --------
 community-x86_64/PKGBUILD       |   31 ---------------------
 community-x86_64/hdapsd.systemd |   12 --------
 6 files changed, 80 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-12-17 13:17:36 UTC (rev 124013)
+++ community-i686/PKGBUILD	2014-12-17 13:17:48 UTC (rev 124014)
@@ -1,31 +0,0 @@
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Emil Renner Berthing <esmil at mailme.dk>
-# Contributor: Xiao-Long Chen <chenxiaolong at cxl.epac.to>
-
-pkgname=hdapsd
-pkgver=20141024
-pkgrel=1
-pkgdesc='HDAPS userspace hard drive protection daemon'
-arch=('i686' 'x86_64')
-url='http://sourceforge.net/projects/hdaps/'
-license=('GPL')
-depends=('glibc' 'bash')
-source=("http://downloads.sourceforge.net/hdaps/hdapsd-${pkgver}.tar.gz"
-        'hdapsd.systemd')
-md5sums=('4c08983ddfbe5d4dea56f4d40dd45e9f'
-         'f514cca78059477c4f33faf97d4aaa06')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
-  make ${MAKEFLAGS}
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}/" install
-
-  install -Dm0644 "${srcdir}/hdapsd.systemd" "${pkgdir}/usr/lib/systemd/system/hdapsd.service"
-}

Copied: hdapsd/repos/community-i686/PKGBUILD (from rev 124013, hdapsd/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-12-17 13:17:48 UTC (rev 124014)
@@ -0,0 +1,28 @@
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Emil Renner Berthing <esmil at mailme.dk>
+# Contributor: Xiao-Long Chen <chenxiaolong at cxl.epac.to>
+
+pkgname=hdapsd
+pkgver=20141203
+pkgrel=1
+pkgdesc='HDAPS userspace hard drive protection daemon'
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/hdapsd'
+license=('GPL')
+depends=('glibc' 'bash')
+source=("https://github.com/evgeni/${pkgname}/archive/${pkgver}.tar.gz")
+md5sums=('1620775e4a0988313dd75b0f1f636674')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \
+    --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make ${MAKEFLAGS}
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
+}

Deleted: community-i686/hdapsd.systemd
===================================================================
--- community-i686/hdapsd.systemd	2014-12-17 13:17:36 UTC (rev 124013)
+++ community-i686/hdapsd.systemd	2014-12-17 13:17:48 UTC (rev 124014)
@@ -1,12 +0,0 @@
-[Unit]
-Description=HDAPS userspace hard drive protection daemon
-After=syslog.target
-
-[Service]
-Type=forking
-PIDFile=/var/run/hdapsd.pid
-ExecStart=/usr/bin/hdapsd -bp
-ExecReload=/bin/kill -HUP ${MAINPID}
-
-[Install]
-WantedBy=multi-user.target

Copied: hdapsd/repos/community-i686/hdapsd.systemd (from rev 124013, hdapsd/trunk/hdapsd.systemd)
===================================================================
--- community-i686/hdapsd.systemd	                        (rev 0)
+++ community-i686/hdapsd.systemd	2014-12-17 13:17:48 UTC (rev 124014)
@@ -0,0 +1,12 @@
+[Unit]
+Description=HDAPS userspace hard drive protection daemon
+After=syslog.target
+
+[Service]
+Type=forking
+PIDFile=/var/run/hdapsd.pid
+ExecStart=/usr/bin/hdapsd -bp
+ExecReload=/bin/kill -HUP ${MAINPID}
+
+[Install]
+WantedBy=multi-user.target

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-12-17 13:17:36 UTC (rev 124013)
+++ community-x86_64/PKGBUILD	2014-12-17 13:17:48 UTC (rev 124014)
@@ -1,31 +0,0 @@
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Emil Renner Berthing <esmil at mailme.dk>
-# Contributor: Xiao-Long Chen <chenxiaolong at cxl.epac.to>
-
-pkgname=hdapsd
-pkgver=20141024
-pkgrel=1
-pkgdesc='HDAPS userspace hard drive protection daemon'
-arch=('i686' 'x86_64')
-url='http://sourceforge.net/projects/hdaps/'
-license=('GPL')
-depends=('glibc' 'bash')
-source=("http://downloads.sourceforge.net/hdaps/hdapsd-${pkgver}.tar.gz"
-        'hdapsd.systemd')
-md5sums=('4c08983ddfbe5d4dea56f4d40dd45e9f'
-         'f514cca78059477c4f33faf97d4aaa06')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
-  make ${MAKEFLAGS}
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}/" install
-
-  install -Dm0644 "${srcdir}/hdapsd.systemd" "${pkgdir}/usr/lib/systemd/system/hdapsd.service"
-}

Copied: hdapsd/repos/community-x86_64/PKGBUILD (from rev 124013, hdapsd/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-12-17 13:17:48 UTC (rev 124014)
@@ -0,0 +1,28 @@
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Emil Renner Berthing <esmil at mailme.dk>
+# Contributor: Xiao-Long Chen <chenxiaolong at cxl.epac.to>
+
+pkgname=hdapsd
+pkgver=20141203
+pkgrel=1
+pkgdesc='HDAPS userspace hard drive protection daemon'
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/hdapsd'
+license=('GPL')
+depends=('glibc' 'bash')
+source=("https://github.com/evgeni/${pkgname}/archive/${pkgver}.tar.gz")
+md5sums=('1620775e4a0988313dd75b0f1f636674')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \
+    --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make ${MAKEFLAGS}
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}/" install
+}

Deleted: community-x86_64/hdapsd.systemd
===================================================================
--- community-x86_64/hdapsd.systemd	2014-12-17 13:17:36 UTC (rev 124013)
+++ community-x86_64/hdapsd.systemd	2014-12-17 13:17:48 UTC (rev 124014)
@@ -1,12 +0,0 @@
-[Unit]
-Description=HDAPS userspace hard drive protection daemon
-After=syslog.target
-
-[Service]
-Type=forking
-PIDFile=/var/run/hdapsd.pid
-ExecStart=/usr/bin/hdapsd -bp
-ExecReload=/bin/kill -HUP ${MAINPID}
-
-[Install]
-WantedBy=multi-user.target

Copied: hdapsd/repos/community-x86_64/hdapsd.systemd (from rev 124013, hdapsd/trunk/hdapsd.systemd)
===================================================================
--- community-x86_64/hdapsd.systemd	                        (rev 0)
+++ community-x86_64/hdapsd.systemd	2014-12-17 13:17:48 UTC (rev 124014)
@@ -0,0 +1,12 @@
+[Unit]
+Description=HDAPS userspace hard drive protection daemon
+After=syslog.target
+
+[Service]
+Type=forking
+PIDFile=/var/run/hdapsd.pid
+ExecStart=/usr/bin/hdapsd -bp
+ExecReload=/bin/kill -HUP ${MAINPID}
+
+[Install]
+WantedBy=multi-user.target



More information about the arch-commits mailing list