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

Kyle Keen kkeen at archlinux.org
Fri Feb 17 22:45:25 UTC 2017


    Date: Friday, February 17, 2017 @ 22:45:25
  Author: kkeen
Revision: 212990

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

Added:
  hackrf/repos/community-i686/PKGBUILD
    (from rev 212989, hackrf/trunk/PKGBUILD)
  hackrf/repos/community-i686/hackrf.conf
    (from rev 212989, hackrf/trunk/hackrf.conf)
  hackrf/repos/community-x86_64/PKGBUILD
    (from rev 212989, hackrf/trunk/PKGBUILD)
  hackrf/repos/community-x86_64/hackrf.conf
    (from rev 212989, hackrf/trunk/hackrf.conf)
Deleted:
  hackrf/repos/community-i686/PKGBUILD
  hackrf/repos/community-i686/hackrf.conf
  hackrf/repos/community-x86_64/PKGBUILD
  hackrf/repos/community-x86_64/hackrf.conf

------------------------------+
 /PKGBUILD                    |   96 +++++++++++++++++++++++++++++++++++++++++
 /hackrf.conf                 |    4 +
 community-i686/PKGBUILD      |   46 -------------------
 community-i686/hackrf.conf   |    2 
 community-x86_64/PKGBUILD    |   46 -------------------
 community-x86_64/hackrf.conf |    2 
 6 files changed, 100 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-02-17 22:45:04 UTC (rev 212989)
+++ community-i686/PKGBUILD	2017-02-17 22:45:25 UTC (rev 212990)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-# Contributor: Dominik Heidler <dheidler at gmail.com>
-pkgname=hackrf
-pkgver=2015.07.2
-pkgrel=2
-pkgdesc="Driver for HackRF, allowing general purpose software defined radio (SDR)."
-arch=('i686' 'x86_64')
-url="https://github.com/mossmann/hackrf"
-license=('GPL2')
-depends=('libusb')
-makedepends=('cmake')
-
-#source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz"
-source=("https://github.com/mossmann/hackrf/releases/download/v${pkgver}/hackrf-$pkgver.tar.xz"
-        'hackrf.conf')
-md5sums=('67595d2dad1c299138baf9a85ec37341'
-         '01ad1ba4a27d820e8f9abeb5fa88bfc6')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver/host"
-  # FS#41895
-  sed -i 's|MODE.*$|TAG+="uaccess"|' libhackrf/53-hackrf.rules*
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver/host"
-  mkdir -p build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr ../
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  pushd host/build
-  make DESTDIR="$pkgdir" install
-  popd
-  pushd host/libhackrf
-  install -vD -m644 53-hackrf.rules "$pkgdir/usr/lib/udev/rules.d/53-hackrf.rules"
-  popd
-  pushd firmware-bin
-  install -vD -m644 hackrf_jawbreaker_usb_rom_to_ram.bin "$pkgdir/usr/share/hackrf/hackrf_jawbreaker_usb_rom_to_ram.bin"
-  install -vD -m644 hackrf_one_usb_rom_to_ram.bin "$pkgdir/usr/share/hackrf/hackrf_usb_rom_to_ram.bin"
-  install -Dm644 "$srcdir/hackrf.conf" "$pkgdir/etc/modprobe.d/hackrf.conf"
-}

Copied: hackrf/repos/community-i686/PKGBUILD (from rev 212989, hackrf/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-02-17 22:45:25 UTC (rev 212990)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Dominik Heidler <dheidler at gmail.com>
+pkgname=hackrf
+pkgver=2017.02.1
+pkgrel=1
+pkgdesc="Driver for HackRF, allowing general purpose software defined radio (SDR)."
+arch=('i686' 'x86_64')
+url="https://github.com/mossmann/hackrf"
+license=('GPL2')
+depends=('libusb' 'fftw')
+makedepends=('cmake')
+
+#source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz"
+source=("https://github.com/mossmann/hackrf/releases/download/v${pkgver}/hackrf-$pkgver.tar.xz"
+        'hackrf.conf')
+md5sums=('7303edc2f6ea710e0e35ad196b485045'
+         '01ad1ba4a27d820e8f9abeb5fa88bfc6')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver/host"
+  # FS#41895
+  sed -i 's|MODE.*$|TAG+="uaccess"|' libhackrf/53-hackrf.rules*
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver/host"
+  mkdir -p build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  pushd host/build
+  make DESTDIR="$pkgdir" install
+  popd
+  pushd host/libhackrf
+  install -vD -m644 53-hackrf.rules "$pkgdir/usr/lib/udev/rules.d/53-hackrf.rules"
+  popd
+  pushd firmware-bin
+  for i in *.{bin,dfu,xsvf}; do
+    install -vDm644 "$i" "$pkgdir/usr/share/hackrf/$i"
+  done
+  popd
+  install -Dm644 "$srcdir/hackrf.conf" "$pkgdir/etc/modprobe.d/hackrf.conf"
+}

Deleted: community-i686/hackrf.conf
===================================================================
--- community-i686/hackrf.conf	2017-02-17 22:45:04 UTC (rev 212989)
+++ community-i686/hackrf.conf	2017-02-17 22:45:25 UTC (rev 212990)
@@ -1,2 +0,0 @@
-# disable kernel drivers
-blacklist hackrf

Copied: hackrf/repos/community-i686/hackrf.conf (from rev 212989, hackrf/trunk/hackrf.conf)
===================================================================
--- community-i686/hackrf.conf	                        (rev 0)
+++ community-i686/hackrf.conf	2017-02-17 22:45:25 UTC (rev 212990)
@@ -0,0 +1,2 @@
+# disable kernel drivers
+blacklist hackrf

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-02-17 22:45:04 UTC (rev 212989)
+++ community-x86_64/PKGBUILD	2017-02-17 22:45:25 UTC (rev 212990)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-# Contributor: Dominik Heidler <dheidler at gmail.com>
-pkgname=hackrf
-pkgver=2015.07.2
-pkgrel=2
-pkgdesc="Driver for HackRF, allowing general purpose software defined radio (SDR)."
-arch=('i686' 'x86_64')
-url="https://github.com/mossmann/hackrf"
-license=('GPL2')
-depends=('libusb')
-makedepends=('cmake')
-
-#source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz"
-source=("https://github.com/mossmann/hackrf/releases/download/v${pkgver}/hackrf-$pkgver.tar.xz"
-        'hackrf.conf')
-md5sums=('67595d2dad1c299138baf9a85ec37341'
-         '01ad1ba4a27d820e8f9abeb5fa88bfc6')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver/host"
-  # FS#41895
-  sed -i 's|MODE.*$|TAG+="uaccess"|' libhackrf/53-hackrf.rules*
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver/host"
-  mkdir -p build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr ../
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  pushd host/build
-  make DESTDIR="$pkgdir" install
-  popd
-  pushd host/libhackrf
-  install -vD -m644 53-hackrf.rules "$pkgdir/usr/lib/udev/rules.d/53-hackrf.rules"
-  popd
-  pushd firmware-bin
-  install -vD -m644 hackrf_jawbreaker_usb_rom_to_ram.bin "$pkgdir/usr/share/hackrf/hackrf_jawbreaker_usb_rom_to_ram.bin"
-  install -vD -m644 hackrf_one_usb_rom_to_ram.bin "$pkgdir/usr/share/hackrf/hackrf_usb_rom_to_ram.bin"
-  install -Dm644 "$srcdir/hackrf.conf" "$pkgdir/etc/modprobe.d/hackrf.conf"
-}

Copied: hackrf/repos/community-x86_64/PKGBUILD (from rev 212989, hackrf/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-02-17 22:45:25 UTC (rev 212990)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Dominik Heidler <dheidler at gmail.com>
+pkgname=hackrf
+pkgver=2017.02.1
+pkgrel=1
+pkgdesc="Driver for HackRF, allowing general purpose software defined radio (SDR)."
+arch=('i686' 'x86_64')
+url="https://github.com/mossmann/hackrf"
+license=('GPL2')
+depends=('libusb' 'fftw')
+makedepends=('cmake')
+
+#source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz"
+source=("https://github.com/mossmann/hackrf/releases/download/v${pkgver}/hackrf-$pkgver.tar.xz"
+        'hackrf.conf')
+md5sums=('7303edc2f6ea710e0e35ad196b485045'
+         '01ad1ba4a27d820e8f9abeb5fa88bfc6')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver/host"
+  # FS#41895
+  sed -i 's|MODE.*$|TAG+="uaccess"|' libhackrf/53-hackrf.rules*
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver/host"
+  mkdir -p build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  pushd host/build
+  make DESTDIR="$pkgdir" install
+  popd
+  pushd host/libhackrf
+  install -vD -m644 53-hackrf.rules "$pkgdir/usr/lib/udev/rules.d/53-hackrf.rules"
+  popd
+  pushd firmware-bin
+  for i in *.{bin,dfu,xsvf}; do
+    install -vDm644 "$i" "$pkgdir/usr/share/hackrf/$i"
+  done
+  popd
+  install -Dm644 "$srcdir/hackrf.conf" "$pkgdir/etc/modprobe.d/hackrf.conf"
+}

Deleted: community-x86_64/hackrf.conf
===================================================================
--- community-x86_64/hackrf.conf	2017-02-17 22:45:04 UTC (rev 212989)
+++ community-x86_64/hackrf.conf	2017-02-17 22:45:25 UTC (rev 212990)
@@ -1,2 +0,0 @@
-# disable kernel drivers
-blacklist hackrf

Copied: hackrf/repos/community-x86_64/hackrf.conf (from rev 212989, hackrf/trunk/hackrf.conf)
===================================================================
--- community-x86_64/hackrf.conf	                        (rev 0)
+++ community-x86_64/hackrf.conf	2017-02-17 22:45:25 UTC (rev 212990)
@@ -0,0 +1,2 @@
+# disable kernel drivers
+blacklist hackrf



More information about the arch-commits mailing list