diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..ddfc2ab --- /dev/null +++ b/debian/changelog @@ -0,0 +1,35 @@ +gr-satnogs (1.5.1-1) unstable; urgency=medium + + * Update to upstream version v1.5.1 + + -- Vasilis Tsiligiannis Tue, 12 Feb 2019 13:48:31 +0200 + +gr-satnogs (1.5-1) unstable; urgency=medium + + * Update to upstream version v1.5 + + -- Vasilis Tsiligiannis Fri, 30 Nov 2018 16:20:49 +0200 + +gr-satnogs (1.4-1) unstable; urgency=medium + + * Update to upstream version v1.4 + + -- Corey Shields Thu, 2 Aug 2018 17:46:00 -0400 + +gr-satnogs (1.3-1) unstable; urgency=medium + + * Update to upstream version v1.3 + + -- Vasilis Tsiligiannis Sat, 21 Apr 2018 22:54:45 +0300 + +gr-satnogs (1.2.2-1) unstable; urgency=medium + + * Update to upstream version v1.2.2 + + -- Vasilis Tsiligiannis Thu, 25 Jan 2018 23:42:39 +0200 + +gr-satnogs (1.2-1) unstable; urgency=medium + + * Update to upstream version v1.2 + + -- Vasilis Tsiligiannis Sun, 10 Dec 2017 21:50:50 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..e5d0708 --- /dev/null +++ b/debian/control @@ -0,0 +1,36 @@ +Source: gr-satnogs +Section: science +Priority: optional +Maintainer: Vasilis Tsiligiannis +Build-Depends: cmake, + debhelper (>= 9.0.0~), + dh-python, + doxygen, + git, + gnuradio-dev (>=3.7.10), + libboost-dev, + libboost-filesystem-dev, + libboost-system-dev, + liblog4cpp5-dev, + libnova-dev, + libpng++-dev, + libvorbis-dev, + pkg-config, + python-dev, + swig +X-Python-Version: >= 2.7, << 2.8 +Standards-Version: 3.9.6 +Homepage: https://gitlab.com/librespacefoundation/satnogs/gr-satnogs +Vcs-Git: https://gitlab.com/librespacefoundation/satnogs/gr-satnogs.git +Vcs-Browser: https://gitlab.com/librespacefoundation/satnogs/gr-satnogs + +Package: gr-satnogs +Architecture: any +Pre-Depends: multiarch-support +Depends: ${python:Depends}, + ${shlibs:Depends}, + ${misc:Depends} +Recommends: gnuradio +Description: SatNOGS GNU Radio Out-Of-Tree Module + gr-satnogs is an out-of-tree GNU Radio module that provides all the necessary + tools for decoding signals from various scientific and academic sattelites. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..1aee07b --- /dev/null +++ b/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f +DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) +export DEB_HOST_MULTIARCH +DEB_DEBIAN_DIR=$(dir $(firstword $(MAKEFILE_LIST))) +VER=$(shell dpkg-parsechangelog -l$(DEB_DEBIAN_DIR)/changelog \ + | sed -rne 's,^Version: ([^-]+).*,\1,p') +GITREV=$(shell echo $(VER) | sed -rne 's,^[0-9]{8}\.([0-f]{7})$$,\1,p' -e 's,^([0-9]+\.[0-9]+.*)$$,v\1,p') + +%: + dh $@ --with python2 --parallel + +override_dh_auto_configure: + dh_auto_configure -- -DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)" -DPythonLibs_FIND_VERSION:STRING="2.7" -DPYTHON_EXECUTABLE:STRING="/usr/bin/python" + +override_dh_auto_install: + dh_auto_install + +version-to-get: + echo $(VER) is $(GITREV) + +get-orig-source: version-to-get + git clone https://gitlab.com/librespacefoundation/satnogs/gr-satnogs.git .gr-satnogs + cd .gr-satnogs && git archive --format=tar --prefix=gr-satnogs-$(VER)/ $(GITREV) | xz > ../gr-satnogs_$(VER).orig.tar.xz + rm -rf .gr-satnogs diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)