Skip to content

Commit 8b3d4c4

Browse files
authored
Fix links after org rename from robotology to gbionics (#225)
Co-authored-by: traversaro <traversaro@users.noreply.github.com>
1 parent 19e1d8d commit 8b3d4c4

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/test-pixi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
rm pixi.lock
4949
5050
# To use valgrind even with conda/pixi we still need to install libc6-dbg via apt on Debian-based distros
51-
# See https://github.com/robotology/osqp-eigen/pull/171#issuecomment-2458149581
51+
# See https://github.com/gbionics/osqp-eigen/pull/171#issuecomment-2458149581
5252
- name: Install libc6-dbg
5353
if: contains(matrix.os, 'ubuntu')
5454
run: |

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# osqp-eigen
22

3-
| General | [![c++14](https://img.shields.io/badge/standard-C++14-blue.svg?style=flat&logo=c%2B%2B)](https://isocpp.org) [![License](https://img.shields.io/badge/License-BSD_3--Clause-orange.svg)](https://github.com/robotology/osqp-eigen/blob/master/LICENSE) |
3+
| General | [![c++14](https://img.shields.io/badge/standard-C++14-blue.svg?style=flat&logo=c%2B%2B)](https://isocpp.org) [![License](https://img.shields.io/badge/License-BSD_3--Clause-orange.svg)](https://github.com/gbionics/osqp-eigen/blob/master/LICENSE) |
44
| :-------: | :----------------------------------------------------------: |
5-
| **CI/CD** | [![Codacy Badge](https://app.codacy.com/project/badge/Grade/a18710c10f1c4df19bc2759fd50e9cf5)](https://www.codacy.com/gh/robotology/osqp-eigen/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=robotology/osqp-eigen&amp;utm_campaign=Badge_Grade) [![CI](https://github.com/robotology/osqp-eigen/workflows/C++%20CI%20Workflow/badge.svg)](https://github.com/robotology/osqp-eigen/workflows/C++%20CI%20Workflow/badge.svg) [![Azure](https://dev.azure.com/conda-forge/feedstock-builds/_apis/build/status/osqp-eigen-feedstock?branchName=master)](https://dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=341091&view=results) |
5+
| **CI/CD** | [![Codacy Badge](https://app.codacy.com/project/badge/Grade/a18710c10f1c4df19bc2759fd50e9cf5)](https://www.codacy.com/gh/gbionics/osqp-eigen/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=gbionics/osqp-eigen&amp;utm_campaign=Badge_Grade) [![CI](https://github.com/gbionics/osqp-eigen/workflows/C++%20CI%20Workflow/badge.svg)](https://github.com/gbionics/osqp-eigen/workflows/C++%20CI%20Workflow/badge.svg) [![Azure](https://dev.azure.com/conda-forge/feedstock-builds/_apis/build/status/osqp-eigen-feedstock?branchName=master)](https://dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=341091&view=results) |
66
| **conda** | [![Conda Recipe](https://img.shields.io/badge/recipe-osqp--eigen-green.svg)](https://anaconda.org/conda-forge/osqp-eigen) [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/osqp-eigen.svg)](https://anaconda.org/conda-forge/osqp-eigen) [![Conda Version](https://img.shields.io/conda/vn/conda-forge/osqp-eigen.svg)](https://anaconda.org/conda-forge/osqp-eigen) [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/osqp-eigen.svg)](https://anaconda.org/conda-forge/osqp-eigen) |
77

88

99

1010
Simple C++ wrapper for [osqp](http://osqp.readthedocs.io/en/latest/index.html) library.
1111

1212
## 📚 Documentation
13-
The documentation is available online at the accompanying [website](https://robotology.github.io/osqp-eigen).
13+
The documentation is available online at the accompanying [website](https://gbionics.github.io/osqp-eigen).
1414

1515

1616
## 📄 Dependences
@@ -29,7 +29,7 @@ conda install -c conda-forge osqp-eigen
2929

3030
1. Clone the repository
3131
```
32-
git clone https://github.com/robotology/osqp-eigen.git
32+
git clone https://github.com/gbionics/osqp-eigen.git
3333
```
3434
2. Build it
3535
```
@@ -61,7 +61,7 @@ target_link_libraries(example OsqpEigen::OsqpEigen)
6161
If you prefer to use the [`bazel`](https://bazel.build/) build system, **osqp-eigen** is available in the Bazel Central Registry, so you can use it following the docs available at [`https://registry.bazel.build/modules/osqp-eigen`](https://registry.bazel.build/modules/osqp-eigen).
6262

6363
## 🐛 Bug reports and support
64-
All types of [issues](https://github.com/robotology/osqp-eigen/issues/new) are welcome.
64+
All types of [issues](https://github.com/gbionics/osqp-eigen/issues/new) are welcome.
6565

6666

6767
## 🧩 Compatibility Policy
@@ -71,4 +71,4 @@ This project tries to avoid removing functionalities in minor releases, while fu
7171
## 📝 License
7272
Materials in this repository are distributed under the following license:
7373

74-
> All software is licensed under the BSD 3-Clause License. See [LICENSE](https://github.com/robotology/osqp-eigen/blob/master/LICENSE) file for details.
74+
> All software is licensed under the BSD 3-Clause License. See [LICENSE](https://github.com/gbionics/osqp-eigen/blob/master/LICENSE) file for details.

cmake/OsqpEigenDependencies.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ include(OsqpEigenFindOptionalDependencies)
99
## Required Dependencies
1010
## osqp-eigen does not have any option to call FetchContent for its dependencies,
1111
## but we support manually calling FetchContent for Eigen3 or osqp before FetchContent
12-
## is called for OsqpEigen, see https://github.com/robotology/osqp-eigen/issues/210
12+
## is called for OsqpEigen, see https://github.com/gbionics/osqp-eigen/issues/210
1313
if(NOT TARGET Eigen3::Eigen)
1414
find_package(Eigen3 REQUIRED)
1515
endif()
1616
if(NOT TARGET osqp::osqp AND NOT TARGET osqp::osqpstatic)
1717
find_package(osqp REQUIRED)
1818
endif()
1919

20-
# Select the osqp target to link, see https://github.com/robotology/osqp-eigen/issues/196
20+
# Select the osqp target to link, see https://github.com/gbionics/osqp-eigen/issues/196
2121
# Advanced users can directly (for example package manager mantainers) can set the
2222
# OSQP_EIGEN_OSQP_TARGET_TO_LINK variable to explicitly select the osqp cmake imported target to link
2323
if(NOT DEFINED OSQP_EIGEN_OSQP_TARGET_TO_LINK)

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<license>BSD</license>
99

10-
<url type="website">https://github.com/robotology/osqp-eigen</url>
10+
<url type="website">https://github.com/gbionics/osqp-eigen</url>
1111

1212
<build_depend>git</build_depend>
1313
<!-- The following tags are recommended by REP-136 -->

0 commit comments

Comments
 (0)