Search Criteria
Package Details: gnuradio-maint38-git v3.8.2.0.34.gf1204e038-1
Package Actions
- View PKGBUILD / View Changes
- Download snapshot
- Search wiki
- Flag package out-of-date
- 1 pending request
- Submit Request
Git Clone URL: | https://aur.archlinux.org/gnuradio-maint38-git.git (read-only, click to copy) |
---|---|
Package Base: | gnuradio-maint38-git |
Description: | General purpose DSP and SDR toolkit, with drivers for usrp and fcd. |
Upstream URL: | https://github.com/gnuradio/gnuradio |
Licenses: | GPL |
Conflicts: | gnuradio, gnuradio-companion |
Provides: | gnuradio, gnuradio-companion |
Submitter: | nickoe |
Maintainer: | nickoe |
Last Packager: | nickoe |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2021-01-04 23:05 (UTC) |
Last Updated: | 2021-01-04 23:05 (UTC) |
Dependencies (31)
- blas (armpl, blis-git, blis, blis-cblas-openmp, blis-cblas, atlas-lapack, aocl-blis-aocc, aocl-blis, blas-aocl-gcc, blas-aocl-aocc, blas-mkl, openblas-lapack, blas-git, blas-openblas)
- boost-libs (boost-libs-git)
- cppunit
- fftw (fftw-amd)
- gsl (gsl-git)
- guile (guile-git)
- libuhd (libuhd3)
- libusb (libusb-git)
- libvolk (libvolk-git)
- log4cpp
- portaudio
- python (python36, python32, python37, python39, python38, python310, python312)
- python-click
- python-click-plugins
- python-gobject (python-gobject-git)
- python-mako
- python-numpy (python-numpy1.22, python-numpy-flame, python-numpy-mkl-bin, python-numpy-git, python-numpy-openblas, python-numpy-mkl)
- python-pyqt5 (python-pyqt5-webkit, python-pyqt5-sip4)
- sdl (sdl-openglhq, sdl-nokbgrab, sdl-openglhq-nokbgrab, sdl-git, sdl12-compat-git, sdl12-compat)
- zeromq (zeromq-draft, zeromq-git)
- Show 11 more dependencies...
Required by (58)
- beesat-sdr-git (requires gnuradio)
- digital_rf-git (requires gnuradio) (optional)
- gnss-sdr-git (requires gnuradio)
- gnuradio-fcdproplus (requires gnuradio)
- gnuradio-grnet-git (requires gnuradio)
- gnuradio-ra-blocks-git (requires gnuradio)
- gnuradio38-companion (requires gnuradio)
- gqrx-git (requires gnuradio)
- gqrx-portaudio-git (requires gnuradio)
- gr-adapt-git (requires gnuradio)
- gr-adsb-git (requires gnuradio)
- gr-ais-git (requires gnuradio)
- gr-baz (requires gnuradio)
- gr-binviz-git (requires gnuradio)
- gr-cc1111-git (requires gnuradio)
- gr-dab-git (requires gnuradio)
- gr-dect2-git (requires gnuradio)
- gr-drm-git (requires gnuradio)
- gr-dsd-git (requires gnuradio)
- gr-dvbt-git (requires gnuradio)
- Show 38 more...
Latest Comments
dreieck commented on 2021-12-19 18:40 (UTC) (edited on 2021-12-19 18:40 (UTC) by dreieck)
Sorry, I confused what I wrote; in fact I wanted a
=${pkgver}
for thegnuradio
-statement. Also with thegnuradio
conflicts statement already thereconflicts=("gnuradio-maint38")
should be obsolete.Reason for the
=${pkgver}
: There are packages that depend on specific gnuradio versions (e.g.gr-foo-git
, which requires some gnuradio 3.9.x). When you specify the version, dependency resolution can work properly.Well, you should strip away the
v
already inpkgver()
.Here I give an example of my
pkgver()
fromxfce4-taskbar-plugin-git
:Maybe you can find there what you need.
nickoe commented on 2021-10-03 18:08 (UTC) (edited on 2021-10-03 18:13 (UTC) by nickoe)
@dreieck, ok I will try that. I just had a look at it. It would be nicer to have a bash substitution to do it similar a regex like
v(.\.\d+).+
, but I am not sure how to do that right now.Why do you want both
provides=("gnuradio-maint38=${pkgver}")
andconflicts=("gnuradio-maint38")
?dreieck commented on 2021-09-30 17:51 (UTC)
Can you please add
=${pkgver}
to theprovides
-entries?There are issues that some
gr-
-packages need specificgnuradio
-versions, likegr-rds-git
which won't work with 3.8. It has that version requirement in it's dependency definitions set, but it can only be honoured if thegnuradio
-packages also provide that.Please also add to the
provides
array"gnuradio-maint38=${pkgver}"
and to theconflicts
array"gnuradio-maint38"
.Thanks for maintaining!