-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'knorth55/tweet-volume-control' into dev…
…elop/fetch-tweet-volume-control
- Loading branch information
Showing
20 changed files
with
441 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
jsk_naoqi_robot/cross/ros1_dependencies_build_scripts/1044-screen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
set -xeuf -o pipefail | ||
|
||
DEBIAN_DIR=/home/nao/ros1_dependencies_sources/src/screen/debian/debian | ||
SOURCE_DIR=/home/nao/ros1_dependencies_sources/src/screen/screen-4.6.2 | ||
|
||
cd ${DEBIAN_DIR}/patches | ||
if [ ! -e .patched ]; then | ||
for patch_file in $(cat series); do | ||
[ -e "${patch_file}" ] || continue | ||
OUT="$(patch -p1 --forward --directory ${SOURCE_DIR} < ${patch_file} | tee /dev/tty)" || echo "${OUT}" | grep "Skipping patch" -q || (echo "$OUT" && false) | ||
done | ||
touch .patched | ||
fi | ||
|
||
cd ${SOURCE_DIR} | ||
|
||
#LIBNCURSES_LIBS="-lncurses -ltinfo" LIBNCURSES_CFLAGS="-I/home/nao/System/ros1_dependencies/include/ncurses -D_GNU_SOURCE -D_DEFAULT_SOURCE" | ||
./configure \ | ||
--prefix=/home/nao/${INSTALL_ROOT}/ros1_dependencies \ | ||
--enable-static --host=i686-aldebaran-linux-gnu \ | ||
--disable-pam --disable--socket-dir --disable-doc | ||
|
||
make -j4 install | ||
# make install --list-missing -X.la -Xinfo/dir -X.pyc -Xinstall_files.txt -X__pycache__ |
24 changes: 24 additions & 0 deletions
24
jsk_naoqi_robot/cross/ros1_dependencies_build_scripts/1045-libogg-dev
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
set -xeuf -o pipefail | ||
|
||
DEBIAN_DIR=/home/nao/ros1_dependencies_sources/src/libogg-dev/debian/debian | ||
SOURCE_DIR=/home/nao/ros1_dependencies_sources/src/libogg-dev/libogg-1.3.2 | ||
|
||
# cd ${DEBIAN_DIR}/patches | ||
# if [ ! -e .patched ]; then | ||
# for patch_file in $(cat series); do | ||
# [ -e "${patch_file}" ] || continue | ||
# OUT="$(patch -p1 --forward --directory ${SOURCE_DIR} < ${patch_file} | tee /dev/tty)" || echo "${OUT}" | grep "Skipping patch" -q || (echo "$OUT" && false) | ||
# done | ||
# touch .patched | ||
# fi | ||
|
||
cd ${SOURCE_DIR} | ||
|
||
./configure \ | ||
--prefix=/home/nao/${INSTALL_ROOT}/ros1_dependencies \ | ||
--enable-static --host=i686-aldebaran-linux-gnu | ||
|
||
make clean || echo "OK" | ||
make -j4 install | ||
# make install --list-missing -X.la -Xinfo/dir -X.pyc -Xinstall_files.txt -X__pycache__ |
24 changes: 24 additions & 0 deletions
24
jsk_naoqi_robot/cross/ros1_dependencies_build_scripts/1046-libtheora-dev
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
set -xeuf -o pipefail | ||
|
||
DEBIAN_DIR=/home/nao/ros1_dependencies_sources/src/libtheora/debian/debian | ||
SOURCE_DIR=/home/nao/ros1_dependencies_sources/src/libtheora/libtheora-1.1.1 | ||
|
||
cd ${DEBIAN_DIR}/patches | ||
if [ ! -e .patched ]; then | ||
for patch_file in $(cat series); do | ||
[ -e "${patch_file}" ] || continue | ||
OUT="$(patch -p1 --forward --directory ${SOURCE_DIR} < ${patch_file} | tee /dev/tty)" || echo "${OUT}" | grep "Skipping patch" -q || (echo "$OUT" && false) | ||
done | ||
touch .patched | ||
fi | ||
|
||
cd ${SOURCE_DIR} | ||
|
||
./configure \ | ||
--prefix=/home/nao/${INSTALL_ROOT}/ros1_dependencies \ | ||
--enable-static --host=i686-aldebaran-linux-gnu | ||
|
||
make -j4 install-exec | ||
make -j4 install-pkgconfigDATA | ||
# make install --list-missing -X.la -Xinfo/dir -X.pyc -Xinstall_files.txt -X__pycache__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
escape ^Tt | ||
hardstatus alwayslastline "%H %-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%<" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
set -xef -o pipefail | ||
|
||
source User/user_setup.bash | ||
screen -c User/screenrc -dmS session bash | ||
screen -c User/screenrc -S session -p 0 -X stuff "roslaunch jsk_pepper_startup jsk_pepper_startup.launch launch_dashboard:=false network_interface:=wlan0 launch_joy:=false^M" | ||
sleep 1 # wait for screen to startup | ||
screen -c User/screenrc -r |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.