mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-08-28 04:46:34 -04:00
port-jobs: Added script for converting between spaces and tabs
Former-commit-id: d3a1fcfcc5d9ddacfdbb3bae7726f978380e70ac Former-commit-id: ab8e4e01699bbe2e98e33d11e24cce9aedf20a9e
This commit is contained in:
@@ -38,6 +38,7 @@ _create_generic_linux() {
|
||||
cd port-jobs
|
||||
./CLIPBOARD.py LINUX
|
||||
./COMMENTS.py ALL
|
||||
./TABS.sh TABS
|
||||
cd ..
|
||||
cp -r port-jobs/working/. output/linuxtemp/usr/lib/sshyp/
|
||||
# END PORT
|
||||
@@ -145,6 +146,7 @@ urls {
|
||||
cd port-jobs
|
||||
./CLIPBOARD.py HAIKU
|
||||
./COMMENTS.py ALL
|
||||
./TABS.sh TABS
|
||||
cd ..
|
||||
cp -r port-jobs/working/. output/haikutemp/lib/sshyp/
|
||||
# END PORT
|
||||
@@ -190,6 +192,7 @@ Installed-Size: 14584
|
||||
cd port-jobs
|
||||
./CLIPBOARD.py LINUX
|
||||
./COMMENTS.py ALL
|
||||
./TABS.sh TABS
|
||||
cd ..
|
||||
cp -r port-jobs/working/. output/debiantemp/sshyp_"$version"-"$revision"_all/usr/lib/sshyp/
|
||||
# END PORT
|
||||
@@ -229,6 +232,7 @@ Installed-Size: 14584
|
||||
cd port-jobs
|
||||
./CLIPBOARD.py TERMUX
|
||||
./COMMENTS.py ALL
|
||||
./TABS.sh TABS
|
||||
cd ..
|
||||
cp -r port-jobs/working/. output/termuxtemp/sshyp_"$version"-"$revision"_all_termux/data/data/com.termux/files/usr/lib/sshyp/
|
||||
# END PORT
|
||||
@@ -327,6 +331,7 @@ printf "/usr/bin/sshyp
|
||||
cd port-jobs
|
||||
./CLIPBOARD.py TERMUX
|
||||
./COMMENTS.py ALL
|
||||
./TABS.sh TABS
|
||||
cd ..
|
||||
cp -r port-jobs/working/. output/freebsdtemp/usr/lib/sshyp/
|
||||
# END PORT
|
||||
|
||||
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
if [ "$1" = 'TABS' ]; then
|
||||
unexpand -t 4 working/sshyp.py > working/sshyp.py.new
|
||||
unexpand -t 4 working/sshync.py > working/sshync.py.new
|
||||
else
|
||||
expand -t 4 working/sshyp.py > working/sshyp.py.new
|
||||
expand -t 4 working/sshync.py > working/sshync.py.new
|
||||
fi
|
||||
mv working/sshyp.py.new working/sshyp.py
|
||||
mv working/sshync.py.new working/sshync.py
|
||||
chmod +x working/sshyp.py working/sshync.py
|
||||
Reference in New Issue
Block a user