Skip to content

Commit

Permalink
Added acpi, libssh2, vrep, python-jinja2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Pecka committed Apr 27, 2015
1 parent 9cbdc07 commit 01ac29b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
12 changes: 12 additions & 0 deletions rosdep/base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ ace:
arch: [ace]
debian: [libace-dev]
ubuntu: [libace-dev]
acpi:
ubuntu: [acpi]
alsa-oss:
arch: [alsa-oss]
debian: [alsa-oss]
Expand Down Expand Up @@ -2044,6 +2046,10 @@ libsqlite3-dev:
libsrtp0-dev:
fedora: [libsrtp-devel]
ubuntu: [libsrtp0-dev]
libssh2:
ubuntu: [libssh2-1]
libssh2-dev:
ubuntu: [libssh2-1-dev]
libssl-dev:
arch: [openssl]
debian: [libssl-dev]
Expand Down Expand Up @@ -3142,6 +3148,12 @@ vlc:
debian: [vlc]
fedora: [vlc]
ubuntu: [vlc]
vrep:
ubuntu:
trusty:
source:
uri: 'https://raw.githubusercontent.com/peci1/vrep_ros_bridge/rdmanifest/vrep.rdmanifest'

wkhtmltopdf:
arch: [wkhtmltopdf]
debian: [wkhtmltopdf]
Expand Down
2 changes: 2 additions & 0 deletions rosdep/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,8 @@ python-impacket:
trusty: [python-impacket]
utopic: [python-impacket]
vivid: [python-impacket]
python-jinja2:
ubuntu: [python-jinja2]
python-kitchen:
arch: [python-kitchen]
debian: [python-kitchen]
Expand Down
3 changes: 2 additions & 1 deletion scripts/clean_rosdep_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import yaml
import argparse
import re
import io

dont_bracket = ['uri', 'md5sum']

Expand Down Expand Up @@ -51,5 +52,5 @@ def prn(n, nm, lvl):
for a in sorted(iny):
buf += prn(iny[a], a, 0)

with open(args.outfile, 'w') as f:
with io.open(args.outfile, 'w', encoding='utf-8') as f:
f.write(buf)

0 comments on commit 01ac29b

Please sign in to comment.