diff options
author | CoprDistGit <infra@openeuler.org> | 2025-03-08 11:05:34 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2025-03-08 11:05:34 +0000 |
commit | 4df3777266510ea480a385718fff6f8827167b03 (patch) | |
tree | d46473d0a703a3cc61f3a31a1b27096a506e880f | |
parent | 203223bcfe3ad7d2eb6d3f038f87881e69a2938d (diff) |
automatic import of ros-humble-fogros2openeuler24.03_LTS
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | fogros2.spec | 89 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 91 insertions, 0 deletions
@@ -0,0 +1 @@ +/ros-humble-fogros2_0.1.7.orig.tar.gz diff --git a/fogros2.spec b/fogros2.spec new file mode 100644 index 0000000..61345cd --- /dev/null +++ b/fogros2.spec @@ -0,0 +1,89 @@ +%bcond_without tests +%bcond_without weak_deps + +%global debug_package %{nil} +%global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g') +%global __provides_exclude_from ^/opt/ros/%{ros_distro}/.*$ +%global __requires_exclude_from ^/opt/ros/%{ros_distro}/.*$ + +%define RosPkgName fogros2 +%define ros_distro humble + +Name: ros-%{ros_distro}-%{RosPkgName} +Version: 0.1.7 +Release: 1%{?dist}%{?release_suffix} +Summary: ROS fogros2 package + +License: Apache License 2.0 +Source0: %{name}_%{version}.orig.tar.gz + +Requires: python3-boto3 +Requires: python3-scp +Requires: python3-paramiko +Requires: ros-%{ros_distro}-ros2cli +Requires: ros-%{ros_distro}-rmw-cyclonedds-cpp +Requires: wireguard-tools +Requires: ros-%{ros_distro}-ros-workspace + +BuildRequires: python3-boto3 +BuildRequires: python3-scp +BuildRequires: python3-paramiko +BuildRequires: ros-%{ros_distro}-ros2cli +BuildRequires: ros-%{ros_distro}-rmw-cyclonedds-cpp +BuildRequires: wireguard-tools +BuildRequires: ros-%{ros_distro}-ros-workspace + +%if 0%{?with_tests} +BuildRequires: ros-%{ros_distro}-ament-copyright +BuildRequires: ros-%{ros_distro}-ament-flake8 +BuildRequires: ros-%{ros_distro}-ament-pep257 +BuildRequires: python3-pytest +%endif + +Provides: %{name}-devel = %{version}-%{release} +Provides: %{name}-doc = %{version}-%{release} +Provides: %{name}-runtime = %{version}-%{release} + +%description + + A ROS 2 extension for the cloud deployment of computational graphs in a cloud-provider + agnostic and security-conscious manner. + + +%prep +%autosetup -p1 + +%build + +# In case we're installing to a non-standard location, look for a setup.sh +# in the install tree and source it. It will set things like +# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. +if [ -f "/opt/ros/%{ros_distro}/setup.sh" ]; then . "/opt/ros/%{ros_distro}/setup.sh"; fi +%py3_build + +%install +# In case we're installing to a non-standard location, look for a setup.sh +# in the install tree and source it. It will set things like +# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. +if [ -f "/opt/ros/%{ros_distro}/setup.sh" ]; then . "/opt/ros/%{ros_distro}/setup.sh"; fi +%py3_install -- --prefix "/opt/ros/%{ros_distro}" + +%if 0%{?with_tests} +%check +# Look for a directory with a name indicating that it contains tests +TEST_TARGET=$(ls -d * | grep -m1 "\(test\|tests\)" ||:) +if [ -n "$TEST_TARGET" ] && %__python3 -m pytest --version; then +# In case we're installing to a non-standard location, look for a setup.sh +# in the install tree and source it. It will set things like +# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. +if [ -f "/opt/ros/%{ros_distro}/setup.sh" ]; then . "/opt/ros/%{ros_distro}/setup.sh"; fi +%__python3 -m pytest $TEST_TARGET || echo "RPM TESTS FAILED" +else echo "RPM TESTS SKIPPED"; fi +%endif + +%files +/opt/ros/%{ros_distro} + +%changelog +* Thu May 04 2023 Jeff Ichnowski jeffi@berkeley.edu - 0.1.7-1 +- Autogenerated by ros-porting-tools @@ -0,0 +1 @@ +03abf30f240d31632562a5d5c96180cd ros-humble-fogros2_0.1.7.orig.tar.gz |