svn commit: r350129 - in head: release/packages usr.sbin/wpa/wpa_cli usr.sbin/wpa/wpa_passphrase usr.sbin/wpa/wpa_priv usr.sbin/wpa/wpa_supplicant
Emmanuel Vadot
manu at FreeBSD.org
Fri Jul 19 15:07:32 UTC 2019
Author: manu
Date: Fri Jul 19 15:07:30 2019
New Revision: 350129
URL: https://svnweb.freebsd.org/changeset/base/350129
Log:
pkgbase: Add a FreeBSD-wpa package
Move the wpa related files from FreeBSD-runtime to a new package named
FreeBSD-wpa
The FreeBSD runtime is only intended to have everything for a working
FreeBSD installation and wpa isn't needed for that.
Reviewed by: bapt, gjb
Differential Revision: https://reviews.freebsd.org/D20957
Added:
head/release/packages/wpa.ucl (contents, props changed)
Modified:
head/release/packages/Makefile.package
head/usr.sbin/wpa/wpa_cli/Makefile
head/usr.sbin/wpa/wpa_passphrase/Makefile
head/usr.sbin/wpa/wpa_priv/Makefile
head/usr.sbin/wpa/wpa_supplicant/Makefile
Modified: head/release/packages/Makefile.package
==============================================================================
--- head/release/packages/Makefile.package Fri Jul 19 14:27:18 2019 (r350128)
+++ head/release/packages/Makefile.package Fri Jul 19 15:07:30 2019 (r350129)
@@ -78,3 +78,5 @@ unbound_COMMENT= Unbound DNS Resolver
unbound_DESC= Unbound DNS Resolver
vi_COMMENT= Vi Editor
vi_DESC= Vi Editor
+wpa_COMMENT= 802.11 Supplicant
+wpa_DESC= 802.11 Supplicant
Added: head/release/packages/wpa.ucl
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/release/packages/wpa.ucl Fri Jul 19 15:07:30 2019 (r350129)
@@ -0,0 +1,24 @@
+#
+# $FreeBSD$
+#
+
+name = "FreeBSD-%PKGNAME%"
+origin = "base"
+version = "%VERSION%"
+comment = "%COMMENT%"
+categories = [ base ]
+maintainer = "re at FreeBSD.org"
+www = "https://www.FreeBSD.org"
+prefix = "/"
+licenselogic = "single"
+licenses = [ BSD2CLAUSE ]
+desc = <<EOD
+%DESC%
+EOD
+deps: {
+ FreeBSD-%PKGDEPS%: {
+ origin: "base",
+ version: "%VERSION%"
+ }
+}
+
Modified: head/usr.sbin/wpa/wpa_cli/Makefile
==============================================================================
--- head/usr.sbin/wpa/wpa_cli/Makefile Fri Jul 19 14:27:18 2019 (r350128)
+++ head/usr.sbin/wpa/wpa_cli/Makefile Fri Jul 19 15:07:30 2019 (r350129)
@@ -9,6 +9,7 @@
${WPA_DISTDIR}/src/eap_peer \
${WPA_DISTDIR}/src/drivers
+PACKAGE= wpa
PROG= wpa_cli
SRCS= base64.c bitfield.c blacklist.c bss.c cli.c common.c config.c \
config_file.c \
Modified: head/usr.sbin/wpa/wpa_passphrase/Makefile
==============================================================================
--- head/usr.sbin/wpa/wpa_passphrase/Makefile Fri Jul 19 14:27:18 2019 (r350128)
+++ head/usr.sbin/wpa/wpa_passphrase/Makefile Fri Jul 19 15:07:30 2019 (r350129)
@@ -4,6 +4,7 @@
.PATH.c:${WPA_SUPPLICANT_DISTDIR}
+PACKAGE= wpa
PROG= wpa_passphrase
SRCS= common.c md5-internal.c md5.c os_unix.c sha1-internal.c sha1-pbkdf2.c \
sha1.c wpa_passphrase.c
Modified: head/usr.sbin/wpa/wpa_priv/Makefile
==============================================================================
--- head/usr.sbin/wpa/wpa_priv/Makefile Fri Jul 19 14:27:18 2019 (r350128)
+++ head/usr.sbin/wpa/wpa_priv/Makefile Fri Jul 19 15:07:30 2019 (r350129)
@@ -5,6 +5,7 @@
.PATH.c:${WPA_SUPPLICANT_DISTDIR} \
${WPA_DISTDIR}/src/drivers
+PACKAGE= wpa
PROG= wpa_priv
SRCS= drivers.c os_unix.c eloop.c common.c wpa_debug.c wpabuf.c wpa_priv.c \
driver_common.c l2_packet_freebsd.c
Modified: head/usr.sbin/wpa/wpa_supplicant/Makefile
==============================================================================
--- head/usr.sbin/wpa/wpa_supplicant/Makefile Fri Jul 19 14:27:18 2019 (r350128)
+++ head/usr.sbin/wpa/wpa_supplicant/Makefile Fri Jul 19 15:07:30 2019 (r350129)
@@ -8,6 +8,7 @@
${WPA_DISTDIR}/src/eap_peer \
${WPA_DISTDIR}/src/drivers
+PACKAGE= wpa
PROG= wpa_supplicant
SRCS= base64.c bitfield.c blacklist.c bss.c cli.c common.c \
More information about the svn-src-all
mailing list