Search Criteria
Package Details: gr-op25-git 2051a96-1
Git Clone URL: | https://aur.archlinux.org/gr-op25-git.git (read-only, click to copy) |
---|---|
Package Base: | gr-op25-git |
Description: | Software-defined analyzer for APCO P25 signals |
Upstream URL: | http://op25.osmocom.org/trac/wiki/ |
Licenses: | GPL |
Provides: | gr-gsm |
Submitter: | yuvadm |
Maintainer: | None |
Last Packager: | yuvadm |
Votes: | 1 |
Popularity: | 0.000000 |
First Submitted: | 2015-04-13 23:10 (UTC) |
Last Updated: | 2015-06-30 12:50 (UTC) |
Latest Comments
dreieck commented on 2021-09-30 15:40 (UTC)
Fails to build for me with
Installed is the currently latest
gnuradio
from the community repository, version 3.9.2.0-3.Full
build()
output:Thanks for maintaining!
dreieck commented on 2021-09-30 15:39 (UTC)
provides=("${pkgname%-git}")
andconflicts=("${pkgname%-git}")
.conflicts=('gr-gsm')
.$pkgver
is not monotoneously increading, but this is required. It currently uses git commit has, which is erratic with respect to version number ordering.Please, use a strictly monotonic increasing versioning scheme.
Best, try to figure out if there is some official upstream version. Then use it as the first part of the version number.
Then, or if the former is not available only, use e.g. git commit count, optionally for information's sake latest commit date and latest git commit hash.
And don't forget to increment
$epoch
if you change the versioning scheme.Thanks for maintaining!
Thanks for maintaining!
deviousway commented on 2020-06-29 16:59 (UTC) (edited on 2020-06-29 18:49 (UTC) by deviousway)
as gnuradio 3.8|python3 standart in Archlinux need to aplly patch
masterplayer31 commented on 2020-04-25 16:16 (UTC)
Will not build again:
CMake Error at op25/gr-op25/CMakeLists.txt:99 (message): GnuRadio Runtime required to compile op25
-- Configuring incomplete, errors occurred! See also "/var/tmp/pamac-build-bobby/gr-op25-git/src/op25/build/CMakeFiles/CMakeOutput.log". See also "/var/tmp/pamac-build-bobby/gr-op25-git/src/op25/build/CMakeFiles/CMakeError.log". ==> ERROR: A failure occurred in build(). Aborting...
dlaw commented on 2019-10-27 18:05 (UTC)
I was not able to reproduce the build failure reported by masterplayer31.
The build failure reported by rmm is still present, and the provided solution works. Build succeeds after that.
dlaw commented on 2019-10-27 17:48 (UTC)
Missing build dependency "cppunit"
masterplayer31 commented on 2019-09-17 19:43 (UTC)
Will not build!
[ 30%] Building CXX object op25/gr-op25/lib/CMakeFiles/gnuradio-op25.dir/pickle.cc.o [ 31%] Linking CXX shared library libgnuradio-op25.so [ 31%] Built target gnuradio-op25 make: *** [Makefile:130: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting...
rmm commented on 2018-08-27 04:55 (UTC) (edited on 2018-08-27 04:59 (UTC) by rmm)
Stepping through the PKGBUILD steps manually, most of it works fine. However it looks like the project used to be built with an older compiler that was less strict about C++ narrowing conversions.
Changing the
make
command to the following worked for me.make -j3 CXX_FLAGS="-Wno-narrowing -fPIC"
This will tell the compiler to ignore the narrowing warning, and the package should build successfully.
The problematic line of code in the project is in
p25_frame_assembler.cc
(line 42), but changing the make command is much easier than changing this line and dealing with the ripple effect through the rest of the code.Dark-Sky commented on 2017-02-18 16:27 (UTC)
drws commented on 2017-01-24 23:16 (UTC)