Skip to content

Commit 18d5698

Browse files
author
Murilo Marinho
committed
Merge branch 'main' of github.com:SmartArmStack/SmartArmStack.github.io
2 parents d4b3b85 + f71c909 commit 18d5698

File tree

3 files changed

+19
-21
lines changed

3 files changed

+19
-21
lines changed

docs/README.md

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ the University of Manchester.
3535
docker run -it murilomarinho/sas:jazzy
3636
```
3737

38-
## Installation
38+
## Ubuntu Installation
3939
[![SAS Debian Builder](https://github.com/SmartArmStack/smart_arm_stack_ROS2/actions/workflows/sas_debian_builder.yml/badge.svg?branch=jazzy)](https://github.com/SmartArmStack/smart_arm_stack_ROS2/actions/workflows/sas_debian_builder.yml)
4040

4141
### Pre-requisites
@@ -169,25 +169,6 @@ SAS and ROS2
169169

170170
Please refer to https://ros2-tutorial.readthedocs.io/en/latest/sas/index.html.
171171

172-
## Packaging
173-
174-
### LGPL
175-
176-
The PPA for the LGPL version is available at https://smartarmstack.github.io/smart_arm_stack_ROS2/. The archive is available at https://github.com/SmartArmStack/smart_arm_stack_ROS2/releases in case you need to rely on older versions.
177-
178-
### CC BY-NC 4.0
179-
180-
The PPA for the CC BY-NC 4.0 version is available at https://marinholab.github.io/sas_debian_builder_noncommercial/. The archive is currently private.
181-
182-
```{note}
183-
:class: dropdown
184-
# Older (and unsupported) versions
185-
186-
- https://github.com/SmartArmStack/smart_arm_stack
187-
- https://github.com/SmartArmStack/smart_arm_stack_lgpl
188-
- https://github.com/SmartArmStack/smart_arm_stack_researchonly
189-
```
190-
191172
## Acknowledgements
192173

193174
```{figure} img/computer_capi_open_tech.png

docs/myst.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ project:
2929
- file: submodules/sas_kuka_control_template/sas_kuka_control_template_README.md
3030
- file: submodules/sas_robot_driver_coppeliasim/sas_robot_driver_coppeliasim_README.md
3131
- file: submodules/docker-coppeliasim/docker-coppeliasim_README.md
32+
#- file: submodules/sas_unitree_b1z1_control_template/sas_unitree_b1z1_control_template_README.md
3233
- file: CHANGELOG.md
3334

3435
site:

docs/scripts/pre_build.sh

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
11
#!/bin/bash
22
set -e
33
# This script should be run in its own folder.
4+
sudo apt-get install tree
45

56
clone_and_rename_readme(){
67
# $1 must be the repository name
78
# $2 must be the branch
9+
# $3 must be the author or empty
810

911
FOLDER_NAME=$(basename "$1" .git)
1012

1113
git clone "$1" -b "$2" --single-branch --depth=1
1214
cd "$FOLDER_NAME"
13-
mv README.md "${FOLDER_NAME}"_README.md
15+
16+
FILE_NAME="${FOLDER_NAME}"_README.md
17+
mv README.md "$FILE_NAME"
18+
# Add author info if needed
19+
if [[ $3 ]]; then
20+
sed -i "$(printf "---\n author: ${3}\n ---")" "$FILE_NAME"
21+
fi
22+
1423
cd ..
1524
}
1625

@@ -24,6 +33,13 @@ clone_and_rename_readme https://github.com/MarinhoLab/sas_ur_control_template.gi
2433
clone_and_rename_readme https://github.com/MarinhoLab/sas_kuka_control_template.git main
2534
clone_and_rename_readme https://github.com/MarinhoLab/sas_robot_driver_copppeliasim.git main
2635

36+
# Content from other authors (Not working yet, but one can dream)
37+
# JJQO
38+
# clone_and_rename_readme https://github.com/Adorno-Lab/sas_unitree_b1z1_control_template main "Juan Jose Quiroz Omana"
39+
40+
# Print all contents.
41+
tree .
42+
2743
cd .. # Get out of submodules
2844
cd scripts # Go back to `scripts`
2945

0 commit comments

Comments
 (0)