Package Details: gr-ieee802-11-git r352.0c0fca8-2

Git Clone URL: https://aur.archlinux.org/gr-ieee802-11-git.git (read-only, click to copy)
Package Base: gr-ieee802-11-git
Description: An IEEE 802.11 a/g/p transceiver for GNU Radio.
Upstream URL: https://github.com/bastibl/gr-ieee802-11
Licenses: GPL3
Conflicts: gr-ieee802-11
Provides: gr-ieee802-11
Submitter: fixeria
Maintainer: fixeria
Last Packager: fixeria
Votes: 2
Popularity: 0.000000
First Submitted: 2022-03-25 13:29 (UTC)
Last Updated: 2022-07-23 10:37 (UTC)

Dependencies (5)

Required by (0)

Sources (1)

Latest Comments

« First ‹ Previous 1 2

dreieck commented on 2021-10-20 12:59 (UTC) (edited on 2021-10-20 12:59 (UTC) by dreieck)

Please remove the git checkout master line.

And append #branch=maint-3.9 to the source-entry.

makepkg will then automatically check out branch maint-3.9 for gnuradio 3.9.

Thanks for maintaining!

dreieck commented on 2021-09-30 14:35 (UTC)

This package uses the latest checkout from a git repository.

According to the packaging guidelines, $pkgname should end with -git in that case.

Please rename your package accordingly (i.e. submit a new one and then submit a merge request on this one), and include appropriate provides and conflicts entries.

Thanks for maintaining!

dreieck commented on 2021-09-30 14:30 (UTC)

$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!

lbaldesi commented on 2020-10-28 15:22 (UTC) (edited on 2020-10-28 15:25 (UTC) by lbaldesi)

Hi and thank you for maintaining this pkg! The build fails as the master branch targets a version of GNU radio (3.9) which is not available either in AUR or the standard pacman repos.

Changing the git branch to "maint-3.8" fixes the bug; git patch output follows:

diff --git a/PKGBUILD b/PKGBUILD
index 382ab5d..45dfc74 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,8 @@
# Mainintainer : Lucas Rooyakkers <lucas dot rooyakkers at queensu at ca>

 pkgname='gr-ieee802-11'
-pkgver='b83d008'
-pkgrel=2
+pkgver=002df04
+pkgrel=1
 pkgdesc="An IEEE 802.11 a/g/p transceiver for GNU Radio."
 arch=('any')
 url="https://github.com/bastibl/gr-ieee802-11"
@@ -21,7 +21,7 @@ pkgver() {

 build() {
   cd "$_gitname"
-  git checkout master
+  git checkout maint-3.8
   mkdir build && cd build
   cmake -DCMAKE_INSTALL_PREFIX=/usr ../
   make