Disable limesdr/hackrf support on jessie, stretch, wheezy
This commit is contained in:
parent
ce521f715a
commit
84dd2dfe0e
|
|
@ -0,0 +1,30 @@
|
||||||
|
Source: dump1090-fa
|
||||||
|
Section: embedded
|
||||||
|
Priority: extra
|
||||||
|
Maintainer: Oliver Jowett <oliver@mutability.co.uk>
|
||||||
|
Build-Depends: debhelper(>=9), librtlsdr-dev, libusb-1.0-0-dev, pkg-config, dh-systemd, libncurses5-dev, libbladerf-dev
|
||||||
|
Standards-Version: 3.9.3
|
||||||
|
Homepage: http://www.flightaware.com/
|
||||||
|
Vcs-Git: https://github.com/flightaware/dump1090.git
|
||||||
|
|
||||||
|
Package: dump1090
|
||||||
|
Architecture: all
|
||||||
|
Depends: dump1090-fa, ${misc:Depends}
|
||||||
|
Priority: extra
|
||||||
|
Section: oldlibs
|
||||||
|
Description: transitional dummy package for dump1090
|
||||||
|
This is a transitional dummy package to handle upgrades from
|
||||||
|
the old package name of "dump1090" to the new package name of
|
||||||
|
"dump1090-fa". It can safely be removed.
|
||||||
|
|
||||||
|
Package: dump1090-fa
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}, libbladerf1 (>= 0.2016.06), adduser, lighttpd
|
||||||
|
Replaces: dump1090 (<< 3.0)
|
||||||
|
Breaks: dump1090 (<< 3.0)
|
||||||
|
Description: ADS-B Ground Station System for RTL-SDR
|
||||||
|
Networked Aviation Mode S / ADS-B decoder/translator with RTL-SDR software
|
||||||
|
defined radio USB device support.
|
||||||
|
.
|
||||||
|
This is FlightAware's fork of dump1090-mutability, customized for use
|
||||||
|
in the PiAware sdcard images.
|
||||||
|
|
@ -0,0 +1,32 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- makefile -*-
|
||||||
|
# Sample debian/rules that uses debhelper.
|
||||||
|
# This file was originally written by Joey Hess and Craig Small.
|
||||||
|
# As a special exception, when this file is copied by dh-make into a
|
||||||
|
# dh-make output file, you may use that output file without restriction.
|
||||||
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||||
|
|
||||||
|
# Uncomment this to turn on verbose mode.
|
||||||
|
export DH_VERBOSE=1
|
||||||
|
|
||||||
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||||
|
|
||||||
|
DPKG_EXPORT_BUILDFLAGS = 1
|
||||||
|
include /usr/share/dpkg/default.mk
|
||||||
|
|
||||||
|
ifeq ($(DEB_HOST_ARCH),armhf)
|
||||||
|
# Assume a Pi-like target, where using an 8-bit table is a fairly big win over the float path
|
||||||
|
CPPFLAGS += -DSC16Q11_TABLE_BITS=8
|
||||||
|
endif
|
||||||
|
|
||||||
|
override_dh_auto_build:
|
||||||
|
dh_auto_build -- RTLSDR=yes BLADERF=yes HACKRF=no LIMESDR=no DUMP1090_VERSION=$(DEB_VERSION)
|
||||||
|
|
||||||
|
override_dh_install:
|
||||||
|
dh_install
|
||||||
|
install -d debian/dump1090-fa/usr/bin
|
||||||
|
cp -a dump1090 debian/dump1090-fa/usr/bin/dump1090-fa
|
||||||
|
cp -a view1090 debian/dump1090-fa/usr/bin/view1090-fa
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@ --with=systemd
|
||||||
|
|
@ -0,0 +1,30 @@
|
||||||
|
Source: dump1090-fa
|
||||||
|
Section: embedded
|
||||||
|
Priority: extra
|
||||||
|
Maintainer: Oliver Jowett <oliver@mutability.co.uk>
|
||||||
|
Build-Depends: debhelper(>=9), librtlsdr-dev, libusb-1.0-0-dev, pkg-config, dh-systemd, libncurses5-dev, libbladerf-dev
|
||||||
|
Standards-Version: 3.9.3
|
||||||
|
Homepage: http://www.flightaware.com/
|
||||||
|
Vcs-Git: https://github.com/flightaware/dump1090.git
|
||||||
|
|
||||||
|
Package: dump1090
|
||||||
|
Architecture: all
|
||||||
|
Depends: dump1090-fa, ${misc:Depends}
|
||||||
|
Priority: extra
|
||||||
|
Section: oldlibs
|
||||||
|
Description: transitional dummy package for dump1090
|
||||||
|
This is a transitional dummy package to handle upgrades from
|
||||||
|
the old package name of "dump1090" to the new package name of
|
||||||
|
"dump1090-fa". It can safely be removed.
|
||||||
|
|
||||||
|
Package: dump1090-fa
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}, libbladerf1 (>= 0.2016.06), adduser, lighttpd
|
||||||
|
Replaces: dump1090 (<< 3.0)
|
||||||
|
Breaks: dump1090 (<< 3.0)
|
||||||
|
Description: ADS-B Ground Station System for RTL-SDR
|
||||||
|
Networked Aviation Mode S / ADS-B decoder/translator with RTL-SDR software
|
||||||
|
defined radio USB device support.
|
||||||
|
.
|
||||||
|
This is FlightAware's fork of dump1090-mutability, customized for use
|
||||||
|
in the PiAware sdcard images.
|
||||||
|
|
@ -0,0 +1,32 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- makefile -*-
|
||||||
|
# Sample debian/rules that uses debhelper.
|
||||||
|
# This file was originally written by Joey Hess and Craig Small.
|
||||||
|
# As a special exception, when this file is copied by dh-make into a
|
||||||
|
# dh-make output file, you may use that output file without restriction.
|
||||||
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||||
|
|
||||||
|
# Uncomment this to turn on verbose mode.
|
||||||
|
export DH_VERBOSE=1
|
||||||
|
|
||||||
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||||
|
|
||||||
|
DPKG_EXPORT_BUILDFLAGS = 1
|
||||||
|
include /usr/share/dpkg/default.mk
|
||||||
|
|
||||||
|
ifeq ($(DEB_HOST_ARCH),armhf)
|
||||||
|
# Assume a Pi-like target, where using an 8-bit table is a fairly big win over the float path
|
||||||
|
CPPFLAGS += -DSC16Q11_TABLE_BITS=8
|
||||||
|
endif
|
||||||
|
|
||||||
|
override_dh_auto_build:
|
||||||
|
dh_auto_build -- RTLSDR=yes BLADERF=yes HACKRF=no LIMESDR=no DUMP1090_VERSION=$(DEB_VERSION)
|
||||||
|
|
||||||
|
override_dh_install:
|
||||||
|
dh_install
|
||||||
|
install -d debian/dump1090-fa/usr/bin
|
||||||
|
cp -a dump1090 debian/dump1090-fa/usr/bin/dump1090-fa
|
||||||
|
cp -a view1090 debian/dump1090-fa/usr/bin/view1090-fa
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@ --with=systemd
|
||||||
|
|
@ -22,7 +22,7 @@ install_rtlsdr:
|
||||||
cd rtl-sdr-build && cmake ../rtl-sdr -DCMAKE_INSTALL_PREFIX=./install && make install
|
cd rtl-sdr-build && cmake ../rtl-sdr -DCMAKE_INSTALL_PREFIX=./install && make install
|
||||||
|
|
||||||
override_dh_auto_build: install_rtlsdr
|
override_dh_auto_build: install_rtlsdr
|
||||||
dh_auto_build -- RTLSDR=yes BLADERF=no DIALECT=-std=gnu1x DUMP1090_VERSION=$(DUMP1090_VERSION) STATIC=yes RTLSDR_PREFIX=rtl-sdr-build/install
|
dh_auto_build -- RTLSDR=yes BLADERF=no HACKRF=no LIMESDR=no DIALECT=-std=gnu1x DUMP1090_VERSION=$(DUMP1090_VERSION) STATIC=yes RTLSDR_PREFIX=rtl-sdr-build/install
|
||||||
|
|
||||||
override_dh_auto_test:
|
override_dh_auto_test:
|
||||||
dh_auto_test -- DIALECT=-std=gnu1x
|
dh_auto_test -- DIALECT=-std=gnu1x
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,7 @@ case "$DIST" in
|
||||||
;;
|
;;
|
||||||
|
|
||||||
stretch)
|
stretch)
|
||||||
|
cp -a $TOP/debian-stretch/* $OUT/debian/
|
||||||
echo "Updating changelog for stretch backport build" >&2
|
echo "Updating changelog for stretch backport build" >&2
|
||||||
dch --changelog $OUT/debian/changelog --local ~bpo9+ --force-distribution --distribution stretch-backports "Automated backport build for jessie"
|
dch --changelog $OUT/debian/changelog --local ~bpo9+ --force-distribution --distribution stretch-backports "Automated backport build for jessie"
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue