Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (1c7daa2392912ed2416199dc12d4478ca44c0bb4)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (1c7daa2392912ed2416199dc12d4478ca44c0bb4)
  • Date: Sat, 28 Oct 2017 20:31:19 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

net/ifupdown-wpa/DETAILS | 2 +-
net/ifupdown-wpa/HISTORY | 4 ++++
net/ifupdown-wpa/INSTALL | 21 ++++++++++++++-------
3 files changed, 19 insertions(+), 8 deletions(-)

New commits:
commit 1c7daa2392912ed2416199dc12d4478ca44c0bb4
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

ifupdown-wpa: Fix ifupdown scripts symlink names

diff --git a/net/ifupdown-wpa/DETAILS b/net/ifupdown-wpa/DETAILS
index 5a2dd60..4771e50 100755
--- a/net/ifupdown-wpa/DETAILS
+++ b/net/ifupdown-wpa/DETAILS
@@ -1,6 +1,6 @@
SPELL=ifupdown-wpa
VERSION=2.5-2+v2.4-2
- PATCHLEVEL=1
+ PATCHLEVEL=2
SOURCE="wpa_$VERSION.debian.tar.xz"
SOURCE_URL[0]=http://http.debian.net/debian/pool/main/w/wpa/$SOURCE

SOURCE_HASH=sha512:2f8666d9b4ec285cefe52b89fa22b41f68b795623954fd7617d82afacfe4c5cbbd5322f73023ddc2d546d3362d1a3073d3f3ce9ea82e79750098f6b6dac88e6f
diff --git a/net/ifupdown-wpa/HISTORY b/net/ifupdown-wpa/HISTORY
index cbc7176..3058bb8 100644
--- a/net/ifupdown-wpa/HISTORY
+++ b/net/ifupdown-wpa/HISTORY
@@ -1,3 +1,7 @@
+2017-10-28 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: PATCHLEVEL++
+ * INSTALL: Fixed ifupdown scripts symlink names
+
2016-08-18 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: PATCHLEVEL++
* DEPENDS: Suggest wpa_supplicant and hostapd
diff --git a/net/ifupdown-wpa/INSTALL b/net/ifupdown-wpa/INSTALL
index 0204f90..5dc3db7 100755
--- a/net/ifupdown-wpa/INSTALL
+++ b/net/ifupdown-wpa/INSTALL
@@ -1,9 +1,9 @@
mklinks() {
- local f="$1" dst="$INSTALL_ROOT/etc/network"
- shift
+ local f="$1" dst="$2"
+ shift 2
for i in "$@"; do
mkdir -p "$dst/$i" &&
- ln -sft "$dst/$i" "../../wpa_supplicant/$f" || return
+ ln -sf "../../wpa_supplicant/$f" "$dst/$i/${f%.sh}" || return
done
}

@@ -19,7 +19,14 @@ install -m644 -D -t "$INSTALL_ROOT"/usr/share/man/man8/ \
install -m755 -D -t "$INSTALL_ROOT"/usr/sbin/ \
wpa_action &&

-mklinks hostapd.sh if-pre-up.d if-post-down.d &&
-mklinks wpasupplicant.sh if-pre-up.d if-up.d if-down.d if-post-down.d &&
-mkdir -p "$INSTALL_ROOT"/etc/ifplugd/action.d &&
-ln -sft "$INSTALL_ROOT"/etc/ifplugd/action.d action_wpa.sh
+mklinks hostapd.sh \
+ "$INSTALL_ROOT/etc/network" \
+ if-pre-up.d if-post-down.d &&
+
+mklinks wpasupplicant.sh \
+ "$INSTALL_ROOT/etc/network" \
+ if-pre-up.d if-up.d if-down.d if-post-down.d &&
+
+mklinks action_wpa.sh \
+ "$INSTALL_ROOT"/etc/ifplugd \
+ action.d



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (1c7daa2392912ed2416199dc12d4478ca44c0bb4), Ismael Luceno, 10/28/2017

Archive powered by MHonArc 2.6.24.

Top of Page