├── .github └── workflows │ ├── ubuntu_20_04.yml │ └── ubuntu_22_04.yml ├── .gitmodules ├── Dockerfile ├── LICENSE ├── README.md ├── apt_install └── Dockerfile ├── debian ├── Dockerfile ├── README.md ├── VERSION └── debian │ ├── README.Debian │ ├── README.source │ ├── changelog │ ├── control │ ├── copyright │ ├── manpage.1.ex │ ├── manpage.md.ex │ ├── manpage.sgml.ex │ ├── manpage.xml.ex │ ├── postinst.ex │ ├── postrm.ex │ ├── preinst.ex │ ├── prerm.ex │ ├── rosone-docs.docs │ ├── rosone.cron.d.ex │ ├── rosone.doc-base.ex │ ├── rosone.install │ ├── rules │ ├── salsa-ci.yml.ex │ ├── source │ └── format │ ├── upstream │ └── metadata.ex │ └── watch.ex ├── dependencies.sh ├── git_clone.sh └── ubuntu_2204 ├── Dockerfile ├── README.md ├── base_repos.yaml └── ignore.sh /.github/workflows/ubuntu_20_04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/.github/workflows/ubuntu_20_04.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu_22_04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/.github/workflows/ubuntu_22_04.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/README.md -------------------------------------------------------------------------------- /apt_install/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/apt_install/Dockerfile -------------------------------------------------------------------------------- /debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/Dockerfile -------------------------------------------------------------------------------- /debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/README.md -------------------------------------------------------------------------------- /debian/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.6 2 | -------------------------------------------------------------------------------- /debian/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/README.Debian -------------------------------------------------------------------------------- /debian/debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/README.source -------------------------------------------------------------------------------- /debian/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/changelog -------------------------------------------------------------------------------- /debian/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/control -------------------------------------------------------------------------------- /debian/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/copyright -------------------------------------------------------------------------------- /debian/debian/manpage.1.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/manpage.1.ex -------------------------------------------------------------------------------- /debian/debian/manpage.md.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/manpage.md.ex -------------------------------------------------------------------------------- /debian/debian/manpage.sgml.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/manpage.sgml.ex -------------------------------------------------------------------------------- /debian/debian/manpage.xml.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/manpage.xml.ex -------------------------------------------------------------------------------- /debian/debian/postinst.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/postinst.ex -------------------------------------------------------------------------------- /debian/debian/postrm.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/postrm.ex -------------------------------------------------------------------------------- /debian/debian/preinst.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/preinst.ex -------------------------------------------------------------------------------- /debian/debian/prerm.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/prerm.ex -------------------------------------------------------------------------------- /debian/debian/rosone-docs.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/rosone-docs.docs -------------------------------------------------------------------------------- /debian/debian/rosone.cron.d.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/rosone.cron.d.ex -------------------------------------------------------------------------------- /debian/debian/rosone.doc-base.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/rosone.doc-base.ex -------------------------------------------------------------------------------- /debian/debian/rosone.install: -------------------------------------------------------------------------------- 1 | install/* /opt/ros/one 2 | -------------------------------------------------------------------------------- /debian/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/rules -------------------------------------------------------------------------------- /debian/debian/salsa-ci.yml.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/salsa-ci.yml.ex -------------------------------------------------------------------------------- /debian/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/debian/upstream/metadata.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/upstream/metadata.ex -------------------------------------------------------------------------------- /debian/debian/watch.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/debian/debian/watch.ex -------------------------------------------------------------------------------- /dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/dependencies.sh -------------------------------------------------------------------------------- /git_clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/git_clone.sh -------------------------------------------------------------------------------- /ubuntu_2204/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/ubuntu_2204/Dockerfile -------------------------------------------------------------------------------- /ubuntu_2204/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/ubuntu_2204/README.md -------------------------------------------------------------------------------- /ubuntu_2204/base_repos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/ubuntu_2204/base_repos.yaml -------------------------------------------------------------------------------- /ubuntu_2204/ignore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasw/ros_from_src/HEAD/ubuntu_2204/ignore.sh --------------------------------------------------------------------------------