aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2024-05-08 14:40:56 +0200
committerOliver Smith <osmith@sysmocom.de>2024-05-08 15:26:55 +0200
commit0f8f5deed475cf50bb1b4f38238e162a147f73fe (patch)
tree09b94e3fcbe34a0fc80ee01e64c57a1e2a0f556c /contrib
parent44c212e3dc85ac77bbbbf76d41e50320f36b4b00 (diff)
contrib: remove rpm spec fileHEADmaster
Related: https://osmocom.org/news/255 Related: OS#6446 Change-Id: Ia10ffce57cf0c067d370f0f381435cdd439e3dd9
Diffstat (limited to 'contrib')
-rw-r--r--contrib/libusrp.spec.in119
1 files changed, 0 insertions, 119 deletions
diff --git a/contrib/libusrp.spec.in b/contrib/libusrp.spec.in
deleted file mode 100644
index de4404c..0000000
--- a/contrib/libusrp.spec.in
+++ /dev/null
@@ -1,119 +0,0 @@
-#
-# spec file for package libusrp
-#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
-# Copyright (c) 2018, Martin Hauke <mardnh@gmx.de>
-#
-# All modifications and additions to the file contributed by third parties
-# remain the property of their copyright owners, unless otherwise agreed
-# upon. The license for this file, and modifications and additions to the
-# file, is the same license as for the pristine package itself (unless the
-# license for the pristine package is not an Open Source License, in which
-# case the license is the MIT License). An "Open Source License" is a
-# license that conforms to the Open Source Definition (Version 1.9)
-# published by the Open Source Initiative.
-
-%define libname libusrp1
-Name: libusrp
-Version: @VERSION@
-Release: 0
-Summary: Stand-alone libusrp for USRP1 from old gnuradio.git
-License: GPL-3.0-or-later
-Group: Development/Libraries/C and C++
-URL: https://git.osmocom.org/libusrp
-Source: %{name}-%{version}.tar.xz
-BuildRequires: autoconf
-BuildRequires: automake
-BuildRequires: fdupes
-BuildRequires: gcc-c++
-BuildRequires: libtool
-BuildRequires: pkgconfig
-BuildRequires: sdcc
-BuildRequires: python3
-BuildRequires: pkgconfig(libusb-1.0)
-%if 0%{?suse_version} > 1325
-BuildRequires: libboost_date_time-devel
-BuildRequires: libboost_filesystem-devel
-BuildRequires: libboost_program_options-devel
-BuildRequires: libboost_system-devel
-BuildRequires: libboost_thread-devel
-%else
-BuildRequires: boost-devel
-%endif
-
-%description
-Stand-alone libusrp for USRP1 from old gnuradio.git.
-
-%package -n %{libname}
-Summary: Stand-alone libusrp for USRP1 from old gnuradio.git
-Group: System/Libraries
-
-%description -n %{libname}
-Stand-alone libusrp for USRP1 from old gnuradio.git.
-
-%package devel
-Summary: Development files for libusrp
-Group: Development/Libraries/C and C++
-Requires: %{libname} = %{version}
-
-%description devel
-Stand-alone libusrp for USRP1 from old gnuradio.git.
-
-This subpackage contains libraries and header files for developing
-applications that want to make use of libusrp.
-
-%package -n usrp-tools
-Summary: Tools for the URSP1 SDR
-Group: Hardware/Other
-
-%description -n usrp-tools
-Tools for the URSP1 SDR.
-
-%package -n usrp-firmware
-Summary: Firmware files for the URSP1 SDR
-Group: Hardware/Other
-Requires: usrp-tools = %{version}
-BuildArch: noarch
-
-%description -n usrp-firmware
-Firmware files for the USRP1 SDR.
-
-%prep
-%setup -q
-
-%build
-echo "%{version}" >.tarball-version
-autoreconf -fiv
-%configure
-# parallel build is br0ken
-# -> https://osmocom.org/issues/3970#change-15556
-make V=1 # %{?_smp_mflags}
-
-%install
-%make_install
-rm -f %{buildroot}%{_libdir}/libusrp.la
-# FIXME: gnuradio swig stuff shouldn't be there
-rm -rf %{buildroot}%{_includedir}/gnuradio/
-%fdupes %{buildroot}%{_datadir}/usrp
-
-%post -n %{libname} -p /sbin/ldconfig
-%postun -n %{libname} -p /sbin/ldconfig
-
-%files -n usrp-tools
-%{_bindir}/usrp_cal_dc_offset
-%{_bindir}/usrper
-
-%files -n %{libname}
-%{_libdir}/libusrp*.so.*
-
-%files -n usrp-firmware
-%dir %{_datadir}/usrp
-%{_datadir}/usrp/rev2
-%{_datadir}/usrp/rev4
-
-%files devel
-%{_includedir}/usrp
-%{_libdir}/libusrp.so
-%{_libdir}/pkgconfig/usrp.pc
-
-%changelog