[143884] users/krischik/Utilities

krischik at macports.org krischik at macports.org
Thu Dec 24 12:02:29 PST 2015


Revision: 143884
          https://trac.macports.org/changeset/143884
Author:   krischik at macports.org
Date:     2015-12-24 12:02:29 -0800 (Thu, 24 Dec 2015)
Log Message:
-----------
update Player.

Modified Paths:
--------------
    users/krischik/Utilities/Install_Minimum.command
    users/krischik/Utilities/Install_Player.command
    users/krischik/Utilities/Setup.command
    users/krischik/Utilities/Start-Terminal.command
    users/krischik/Utilities/Uninstall_Dovecot.command
    users/krischik/Utilities/Unload.command

Added Paths:
-----------
    users/krischik/Utilities/Install_Bittorrent.command

Removed Paths:
-------------
    users/krischik/Utilities/Install_BitTornado.command

Deleted: users/krischik/Utilities/Install_BitTornado.command
===================================================================
--- users/krischik/Utilities/Install_BitTornado.command	2015-12-24 19:03:09 UTC (rev 143883)
+++ users/krischik/Utilities/Install_BitTornado.command	2015-12-24 20:02:29 UTC (rev 143884)
@@ -1,33 +0,0 @@
-#!/opt/local/bin/zsh
-############################################################## {{{1 ##########
-#   $Author$
-#   $Revision$
-#   $Date$
-#   $HeadURL$
-############################################################## }}}1 ##########
-
-source ${0:h}/Setup.command
-
-setopt No_XTrace
-setopt No_Err_Exit
-
-if test "${USER}" = "root"; then
-    Deselect_System
-    ${0:h}/Install_Python.command
-
-    for I in			    \
-	"transmission-x11 +aqua"    \
-	"bittornado"
-    do
-	Install_Update ${I} ${=General_Variants}
-    done; unset I
-
-    Select_System
-else
-    setopt Multi_OS
-    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
-fi
-
-############################################################ {{{1 ###########
-# vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
-# vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Copied: users/krischik/Utilities/Install_Bittorrent.command (from rev 143883, users/krischik/Utilities/Install_BitTornado.command)
===================================================================
--- users/krischik/Utilities/Install_Bittorrent.command	                        (rev 0)
+++ users/krischik/Utilities/Install_Bittorrent.command	2015-12-24 20:02:29 UTC (rev 143884)
@@ -0,0 +1,33 @@
+#!/opt/local/bin/zsh
+############################################################## {{{1 ##########
+#   $Author$
+#   $Revision$
+#   $Date$
+#   $HeadURL$
+############################################################## }}}1 ##########
+
+source ${0:h}/Setup.command
+
+setopt No_XTrace
+setopt No_Err_Exit
+
+if test "${USER}" = "root"; then
+    Deselect_System
+    ${0:h}/Install_Python.command
+
+    for I in			    \
+	"transmission-x11 +aqua"    \
+	"bittornado"
+    do
+	Install_Update ${I} ${=General_Variants}
+    done; unset I
+
+    Select_System
+else
+    setopt Multi_OS
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
+
+############################################################ {{{1 ###########
+# vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
+# vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Install_Minimum.command
===================================================================
--- users/krischik/Utilities/Install_Minimum.command	2015-12-24 19:03:09 UTC (rev 143883)
+++ users/krischik/Utilities/Install_Minimum.command	2015-12-24 20:02:29 UTC (rev 143884)
@@ -12,18 +12,26 @@
 setopt Multi_OS
 setopt Err_Exit
 
-sudo port install								    \
-    "coreutils" ${=General_Variants}						    \
-    "zsh" "+doc" "+mp_completion" ${=General_Variants}				    \
-    1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+if test "${USER}" = "root"; then
+    xcode-select --switch /Applications/Developer/Xcode.app
 
-sudo gchmod --verbose 755    "/Applications/Developer/Xcode.app/Contents/Developer/Library/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc"
-sudo gchown --verbose root   "/Applications/Developer/Xcode.app/Contents/Developer/Library/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc"
-sudo gchgrp --verbose wheel  "/Applications/Developer/Xcode.app/Contents/Developer/Library/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc"
+    port install						    \
+	"coreutils" ${=General_Variants}			    \
+	"zsh" "+doc" "+mp_completion" ${=General_Variants}	    \
+	1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
 
-${0:h}/Install_VCS.command
-${0:h}/Install_VIM.command
+    gchmod --verbose 755    "/Applications/Developer/Xcode.app/Contents/Developer/Library/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc"
+    gchown --verbose root   "/Applications/Developer/Xcode.app/Contents/Developer/Library/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc"
+    gchgrp --verbose wheel  "/Applications/Developer/Xcode.app/Contents/Developer/Library/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc"
 
+    ${0:h}/Install_VCS.command
+    ${0:h}/Install_VIM.command
+else
+    setopt Multi_OS
+
+    sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
+fi
+
 ############################################################ {{{1 ###########
 # vim: set nowrap tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab :
 # vim: set textwidth=0 filetype=zsh foldmethod=marker nospell :

Modified: users/krischik/Utilities/Install_Player.command
===================================================================
--- users/krischik/Utilities/Install_Player.command	2015-12-24 19:03:09 UTC (rev 143883)
+++ users/krischik/Utilities/Install_Player.command	2015-12-24 20:02:29 UTC (rev 143884)
@@ -38,6 +38,12 @@
 	Install_Update ${=I} "${Qt_Variants}${General_Variants}"
     done; unset I;
 
+    # rm    ~"/Library/Preference/org.videolan.vlc.LSSharedFileList.plist"
+    # rm -r ~"/Library/Application Support/org.videolan.vlc"
+    # rm -r ~"/Library/Caches/org.videolan.vlc"
+    # rm -r ~"/Library/Preference/org.videolan.vlc"
+    # rm -r ~"/Library/Saved Application State/org.videolan.vlc.savedState"
+
     Clean
     Load_System
     Select_System

Modified: users/krischik/Utilities/Setup.command
===================================================================
--- users/krischik/Utilities/Setup.command	2015-12-24 19:03:09 UTC (rev 143883)
+++ users/krischik/Utilities/Setup.command	2015-12-24 20:02:29 UTC (rev 143884)
@@ -11,7 +11,7 @@
 # Current status (26.07.2012): build with atlas
 #
 typeset  General_Variants="+universal"
-typeset       Qt_Variants="+docs+cocoa"
+typeset       Qt_Variants="+docs"
 
 # Current status (04.12.2015) quartz compiles but crashes a lot
 # and most GNOME tools still need X11.

Modified: users/krischik/Utilities/Start-Terminal.command
===================================================================
--- users/krischik/Utilities/Start-Terminal.command	2015-12-24 19:03:09 UTC (rev 143883)
+++ users/krischik/Utilities/Start-Terminal.command	2015-12-24 20:02:29 UTC (rev 143884)
@@ -24,7 +24,7 @@
 
 tell application "Terminal"
     set |Tab| to do script "
-	cd \"/Volumes/Daten/Developer/MacPorts/krischik/Utilities\""
+	cd \"/Work/MacPorts/krischik/Utilities\""
     set background color of |Tab| to {57344, 57344, 65535}
 end tell
 

Modified: users/krischik/Utilities/Uninstall_Dovecot.command
===================================================================
--- users/krischik/Utilities/Uninstall_Dovecot.command	2015-12-24 19:03:09 UTC (rev 143883)
+++ users/krischik/Utilities/Uninstall_Dovecot.command	2015-12-24 20:02:29 UTC (rev 143884)
@@ -8,11 +8,11 @@
 
 source ${0:h}/Setup.command
 
-setopt No_X_Trace
+setopt No_XTrace
 setopt No_Err_Exit
 
 if test "${USER}" = "root"; then
-    port select --set gcc llvm-gcc42
+    Deselect_System
 
     launchctl unload -w "/Library/LaunchDaemons/com.krischik.fetchmail.plist"
     launchctl unload -w "/Library/LaunchDaemons/org.macports.dovecot.plist"
@@ -22,19 +22,16 @@
 
     for I in				    \
 	"openldap"			    \
+	"curl-ca-bundle"		    \
 	"dovecot"			    \
-	"fetchmail +fetchmailconf+ssl+ntml" \
+	"fetchmail"			    \
 	"imapfilter"			    \
-	"postfix +dovecot+sasl+pcre+tls"
+	"postfix"
     do
-	Install_Update ${I} ${=General_Variants}
+	Un_Install ${I}
     done; unset I
 
-    launchctl load -w "/Library/LaunchDaemons/org.macports.postfix.plist"
-    launchctl load -w "/Library/LaunchDaemons/org.macports.slapd.plist"
-    launchctl load -w "/Library/LaunchDaemons/com.krischik.fetchmail.plist"
-
-    port select gcc gnat-gcc42
+    Select_System
 else
     setopt Multi_OS
     sudo ${0:a} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out

Modified: users/krischik/Utilities/Unload.command
===================================================================
--- users/krischik/Utilities/Unload.command	2015-12-24 19:03:09 UTC (rev 143883)
+++ users/krischik/Utilities/Unload.command	2015-12-24 20:02:29 UTC (rev 143884)
@@ -17,6 +17,7 @@
     setopt Multi_OS
 
     Unload_User
+    sudo ${0:a} ${USER} 1>&1 2>&2 &>~/Library/Logs/${0:r:t}.out
 fi
 
 ############################################################ {{{1 ###########
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20151224/0c8ab86e/attachment.html>


More information about the macports-changes mailing list