[arch-commits] Commit in rtl-sdr/repos/community-x86_64 (6 files)
Kyle Keen
kkeen at archlinux.org
Sun Aug 5 00:16:15 UTC 2018
Date: Sunday, August 5, 2018 @ 00:16:15
Author: kkeen
Revision: 368140
archrelease: copy trunk to community-x86_64
Added:
rtl-sdr/repos/community-x86_64/PKGBUILD
(from rev 368139, rtl-sdr/trunk/PKGBUILD)
rtl-sdr/repos/community-x86_64/rtl-sdr.install
(from rev 368139, rtl-sdr/trunk/rtl-sdr.install)
rtl-sdr/repos/community-x86_64/rtlsdr.conf
(from rev 368139, rtl-sdr/trunk/rtlsdr.conf)
Deleted:
rtl-sdr/repos/community-x86_64/PKGBUILD
rtl-sdr/repos/community-x86_64/rtl-sdr.install
rtl-sdr/repos/community-x86_64/rtlsdr.conf
-----------------+
PKGBUILD | 100 +++++++++++++++++++++++++++---------------------------
rtl-sdr.install | 16 ++++----
rtlsdr.conf | 8 ++--
3 files changed, 62 insertions(+), 62 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-08-05 00:16:00 UTC (rev 368139)
+++ PKGBUILD 2018-08-05 00:16:15 UTC (rev 368140)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-# Contributor: Michael Düll <mail at akurei.me>
-
-pkgname=rtl-sdr
-# they are just starting to play with tags
-# consider using tags for the pkgver in the future
-pkgver=20140210
-_commit=6ee55736064
-pkgrel=3
-pkgdesc="Driver for Realtek RTL2832U, allowing general purpose software defined radio (SDR)."
-arch=('i686' 'x86_64')
-url="http://sdr.osmocom.org/trac/wiki/rtl-sdr"
-license=('GPL')
-depends=('libusb>=1.0')
-makedepends=('git' 'cmake')
-conflicts=('rtl-sdr-git')
-options=('staticlibs')
-install=rtl-sdr.install
-source=("git://git.osmocom.org/rtl-sdr.git#commit=$_commit"
- 'rtlsdr.conf')
-md5sums=('SKIP'
- '9c65be40f8916a220e3f55b819897331')
-
-_gitname="rtl-sdr"
-
-# todo: fix upstream's udev rule location and group
-
-pkgver() {
- cd "$srcdir/$_gitname"
- git show -s --format="%ci" HEAD | sed -e 's/-//g' -e 's/ .*//'
-}
-
-build() {
- cd "$srcdir/$_gitname"
- mkdir -p build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr \
- -DDETACH_KERNEL_DRIVER=ON -Wno-dev ../
- make
-}
-
-package() {
- cd "$srcdir/$_gitname/build"
- make DESTDIR="$pkgdir" install
- install -Dm644 "$srcdir/$_gitname/rtl-sdr.rules" "$pkgdir/usr/lib/udev/rules.d/10-rtl-sdr.rules"
- install -Dm644 "$srcdir/rtlsdr.conf" "$pkgdir/etc/modprobe.d/rtlsdr.conf"
-}
-
-# vim:set ts=2 sw=2 et:
Copied: rtl-sdr/repos/community-x86_64/PKGBUILD (from rev 368139, rtl-sdr/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-08-05 00:16:15 UTC (rev 368140)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Michael Düll <mail at akurei.me>
+
+pkgname=rtl-sdr
+# they are just starting to play with tags
+# consider using tags for the pkgver in the future
+pkgver=20180429
+_commit=9ca8780df71
+pkgrel=1
+pkgdesc="Driver for Realtek RTL2832U, allowing general purpose software defined radio (SDR)."
+arch=('x86_64')
+url="http://sdr.osmocom.org/trac/wiki/rtl-sdr"
+license=('GPL')
+depends=('libusb>=1.0')
+makedepends=('git' 'cmake')
+conflicts=('rtl-sdr-git')
+options=('staticlibs')
+install=rtl-sdr.install
+source=("git://git.osmocom.org/rtl-sdr.git#commit=$_commit"
+ 'rtlsdr.conf')
+md5sums=('SKIP'
+ '9c65be40f8916a220e3f55b819897331')
+
+_gitname="rtl-sdr"
+
+# todo: fix upstream's udev rule location and group
+
+pkgver() {
+ cd "$srcdir/$_gitname"
+ git show -s --format="%ci" HEAD | sed -e 's/-//g' -e 's/ .*//'
+}
+
+build() {
+ cd "$srcdir/$_gitname"
+ mkdir -p build
+ cd build
+ cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr \
+ -DDETACH_KERNEL_DRIVER=ON -Wno-dev ../
+ make
+}
+
+package() {
+ cd "$srcdir/$_gitname/build"
+ make DESTDIR="$pkgdir" install
+ install -Dm644 "$srcdir/$_gitname/rtl-sdr.rules" "$pkgdir/usr/lib/udev/rules.d/10-rtl-sdr.rules"
+ install -Dm644 "$srcdir/rtlsdr.conf" "$pkgdir/etc/modprobe.d/rtlsdr.conf"
+}
+
+# vim:set ts=2 sw=2 et:
Deleted: rtl-sdr.install
===================================================================
--- rtl-sdr.install 2018-08-05 00:16:00 UTC (rev 368139)
+++ rtl-sdr.install 2018-08-05 00:16:15 UTC (rev 368140)
@@ -1,8 +0,0 @@
-post_install() {
- echo ">>> You can not use a DVB stick for both DVB and SDR. There is a driver conflict. /etc/modprobe.d/rtlsdr.conf blacklists the DVB drivers."
-}
-
-post_upgrade() {
- post_install
-}
-
Copied: rtl-sdr/repos/community-x86_64/rtl-sdr.install (from rev 368139, rtl-sdr/trunk/rtl-sdr.install)
===================================================================
--- rtl-sdr.install (rev 0)
+++ rtl-sdr.install 2018-08-05 00:16:15 UTC (rev 368140)
@@ -0,0 +1,8 @@
+post_install() {
+ echo ">>> You can not use a DVB stick for both DVB and SDR. There is a driver conflict. /etc/modprobe.d/rtlsdr.conf blacklists the DVB drivers."
+}
+
+post_upgrade() {
+ post_install
+}
+
Deleted: rtlsdr.conf
===================================================================
--- rtlsdr.conf 2018-08-05 00:16:00 UTC (rev 368139)
+++ rtlsdr.conf 2018-08-05 00:16:15 UTC (rev 368140)
@@ -1,4 +0,0 @@
-# disable DVB drivers
-blacklist rtl2830
-blacklist rtl2832
-blacklist dvb_usb_rtl28xxu
Copied: rtl-sdr/repos/community-x86_64/rtlsdr.conf (from rev 368139, rtl-sdr/trunk/rtlsdr.conf)
===================================================================
--- rtlsdr.conf (rev 0)
+++ rtlsdr.conf 2018-08-05 00:16:15 UTC (rev 368140)
@@ -0,0 +1,4 @@
+# disable DVB drivers
+blacklist rtl2830
+blacklist rtl2832
+blacklist dvb_usb_rtl28xxu
More information about the arch-commits
mailing list