Levente Polyak pushed to branch main at Arch Linux / Packaging / Packages /
lorcon
Commits:
0d4b4ef8 by Levente Polyak at 2026-02-07T17:14:41+01:00
upgpkg: 2:2020.06.06-8: rebuild with PEP517 and SPDX license
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,14 +1,14 @@
pkgbase = lorcon
pkgdesc = Generic library for injecting 802.11 frames
pkgver = 2020.06.06
- pkgrel = 7
+ pkgrel = 8
epoch = 2
url = https://github.com/kismetwireless/lorcon
arch = x86_64
license = GPL-2.0-or-later
makedepends = glibc
- makedepends = python
makedepends = libpcap
+ makedepends = python
makedepends = python-build
makedepends = python-installer
makedepends = python-setuptools
@@ -23,5 +23,5 @@ pkgname = lorcon
pkgname = python-pylorcon2
depends = glibc
- depends = python
depends = lorcon
+ depends = python
=====================================
PKGBUILD
=====================================
@@ -6,15 +6,26 @@
# Contributor: Jon Gjengset <[email protected]>
pkgbase=lorcon
-pkgname=(lorcon python-pylorcon2)
+pkgname=(
+ lorcon
+ python-pylorcon2
+)
pkgver=2020.06.06
-pkgrel=7
+pkgrel=8
epoch=2
pkgdesc='Generic library for injecting 802.11 frames'
url='https://github.com/kismetwireless/lorcon'
-license=('GPL-2.0-or-later')
-arch=('x86_64')
-makedepends=('glibc' 'python' 'libpcap' 'python-build' 'python-installer'
'python-setuptools' 'python-wheel')
+license=(GPL-2.0-or-later)
+arch=(x86_64)
+makedepends=(
+ glibc
+ libpcap
+ python
+ python-build
+ python-installer
+ python-setuptools
+ python-wheel
+)
source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha512sums=('1f51dc221d01356b59fd615ebccabb6d00f1999fd9450f6f092f6234635e162f0407e203df9dde4f0f942691cd9395df30377478ec677c910c2d1603228cef30')
b2sums=('6fe0d3578b8f91ed9ed0ea12ce110afc6764b694c78c57935b835e4fb8e4c4c81e07f7a8b069583382e91ef760a07bdcf3f9aa51167add052ac1f3f8c0758155')
@@ -39,14 +50,21 @@ build() {
}
package_lorcon() {
- depends=('glibc' 'libpcap')
+ depends=(
+ glibc
+ libpcap
+ )
cd ${pkgbase}-${pkgver}
make DESTDIR="${pkgdir}" install
}
package_python-pylorcon2() {
- depends=('glibc' 'python' 'lorcon')
+ depends=(
+ glibc
+ lorcon
+ python
+ )
cd ${pkgbase}-${pkgver}/pylorcon2
python -m installer --destdir="$pkgdir" dist/*.whl
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/lorcon/-/commit/0d4b4ef89b50889dfcb0c0fb8861acc553f278ef
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/lorcon/-/commit/0d4b4ef89b50889dfcb0c0fb8861acc553f278ef
You're receiving this email because of your account on gitlab.archlinux.org.