New commits:
commit b7c47f1f4b0036c3ec6fd239f442f4a4a01d8503
Author: David C. Haley <khoralin AT gmail.com>
Commit: Vlad Glagolev <stealth AT sourcemage.org>
Spell Update: bind security_patch++
In my previous commit (f8a51b5148f37a4179ea0fe2c055f1154b99f580),
I failed to update the SECURITY_PATCH field in the DETAILS file.
This patch is to resolve that oversight. Additionally, below you will
find all CVEs that have been resolved in the versions subsequent to
where we were (9.10.1-P1) prior to my version bump to 9.10.3-P4.
diff --git a/gnome2-libs/dconf/HISTORY b/gnome2-libs/dconf/HISTORY
index 7c0fa3f..9fcf465 100644
--- a/gnome2-libs/dconf/HISTORY
+++ b/gnome2-libs/dconf/HISTORY
@@ -1,3 +1,6 @@
+2016-07-13 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: dropped vala -- not required for build
+
2014-11-23 Ismael Luceno <ismael AT sourcemage.org>
* BUILD: Use disable_pic function to fix CFLAGS
diff --git a/net/bind/DETAILS b/net/bind/DETAILS
index ac999f7..dd68f10 100755
--- a/net/bind/DETAILS
+++ b/net/bind/DETAILS
@@ -1,5 +1,5 @@
SPELL=bind
- VERSION=9.10.1-P1
+ VERSION=9.10.3-P4
SOURCE=$SPELL-${VERSION}.tar.gz
SOURCE2=root.zone.gz
SOURCE2_IGNORE=unversioned
@@ -10,7 +10,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-${VERSION}
SOURCE2_URL[0]=ftp://ftp.internic.net/domain/$SOURCE2
SOURCE3_URL[0]=ftp://ftp.isc.org/isc/bind9/$VERSION/$SOURCE3
SOURCE3_IGNORE=signature
- SECURITY_PATCH=8
+ SECURITY_PATCH=9
SOURCE_GPG="isc.gpg:$SOURCE3:UPSTREAM_KEY"
FORCE_DOWNLOAD[2]=true
LICENSE[0]=ISC
diff --git a/net/bind/HISTORY b/net/bind/HISTORY
index c768518..7ca6cd7 100644
--- a/net/bind/HISTORY
+++ b/net/bind/HISTORY
@@ -1,3 +1,10 @@
+2016-07-14 David C. Haley <khoralin AT gmail.com>
+ * DETAILS: security_patch++, CVEs noted in commit msg
+ Failed to mark security_patch in prior commit
+
+2016-05-24 David C. Haley <khoralin AT gmail.com>
+ * DETAILS: updated version to 9.10.3-P4
+
2015-01-30 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 9.10.1-P1
diff --git a/net/wpa_supplicant/DEPENDS b/net/wpa_supplicant/DEPENDS
index ec633d7..1584677 100755
--- a/net/wpa_supplicant/DEPENDS
+++ b/net/wpa_supplicant/DEPENDS
@@ -29,6 +29,6 @@ if [[ $CONFIG_CTRL_IFACE != n ]]; then
fi &&
optional_depends dbus \
- CONFIG_CTRL_IFACE_DBUS \
+ "CONFIG_CTRL_IFACE_DBUS CONFIG_CTRL_IFACE_DBUS_NEW" \
"" \
"to enable D-Bus control interface"
diff --git a/net/wpa_supplicant/HISTORY b/net/wpa_supplicant/HISTORY
index 1d23725..9573556 100644
--- a/net/wpa_supplicant/HISTORY
+++ b/net/wpa_supplicant/HISTORY
@@ -1,3 +1,6 @@
+2016-07-13 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS, INSTALL: corrected dbus build flags and configs
+
2016-07-01 Vlad Glagolev <stealth AT sourcemage.org>
* PRE_BUILD: apply libressl.patch
* libressl.patch: added, backported from OpenBSD to fix build against
diff --git a/net/wpa_supplicant/INSTALL b/net/wpa_supplicant/INSTALL
index 6a0db9a..562f52f 100755
--- a/net/wpa_supplicant/INSTALL
+++ b/net/wpa_supplicant/INSTALL
@@ -13,14 +13,27 @@ if is_depends_enabled $SPELL qt4; then
fi &&
if is_depends_enabled $SPELL dbus; then
- install -vm 755 -d "$INSTALL_ROOT/usr/share/dbus-1/system-services" &&
+ local DBUS_CONFIG_DIR="$INSTALL_ROOT/etc/dbus-1/system.d" &&
+ local DBUS_SYSTEM_DIR="$INSTALL_ROOT/usr/share/dbus-1/system-services" &&
-
DBUS_FILE="$INSTALL_ROOT/usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service"
&&
+ if [ ! -d "$DBUS_SYSTEM_DIR" ]; then
+ install -vm 755 -d "$DBUS_SYSTEM_DIR"
+ fi &&
+
+ if [ ! -d "$DBUS_CONFIG_DIR" ]; then
+ install -vm 755 -d "$DBUS_CONFIG_DIR"
+ fi &&
+
+ DBUS_FILE="$DBUS_SYSTEM_DIR/fi.epitest.hostap.WPASupplicant.service" &&
+ DBUS_FILE2="$DBUS_SYSTEM_DIR/fi.w1.wpa_supplicant1.service" &&