Skip to content

Commit c621be9

Browse files
committed
vendor: Remove bincrafters/stable dependencies
1 parent 40d128e commit c621be9

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

vendor/open-simulation-interface-3.0.1/conanfile.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ class OpenSimulationInterfaceConan(ConanFile):
1515
options = {
1616
"shared": [True, False],
1717
"fPIC": [True, False],
18-
"protoc_from_protobuf": [True, False],
1918
}
2019
default_options = {
2120
"shared": True,
2221
"fPIC": True,
23-
"protoc_from_protobuf": False,
2422
}
2523
generators = "cmake"
2624
build_policy = "missing"
@@ -29,7 +27,7 @@ class OpenSimulationInterfaceConan(ConanFile):
2927
"CMakeLists.txt",
3028
]
3129
requires = [
32-
"protobuf/[>=2.6.1]@bincrafters/stable",
30+
"protobuf/2.6.1@cloe/stable"
3331
]
3432

3533
_git_url = (
@@ -40,10 +38,6 @@ class OpenSimulationInterfaceConan(ConanFile):
4038

4139
_cmake = None
4240

43-
def build_requirements(self):
44-
if not self.options.protoc_from_protobuf:
45-
self.build_requires("protoc_installer/[>=2.6.1]@bincrafters/stable")
46-
4741
def source(self):
4842
git = tools.Git(folder=self._git_dir)
4943
git.clone(self._git_url, self._git_ref, shallow=True)

vendor/open-simulation-interface-3.2.0/conanfile.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,8 @@ class OpenSimulationInterfaceConan(ConanFile):
2626
exports_sources = [
2727
"CMakeLists.txt",
2828
]
29-
build_requires = [
30-
"protoc_installer/[>=2.6.1]@bincrafters/stable",
31-
]
3229
requires = [
33-
"protobuf/[>=2.6.1]@bincrafters/stable",
30+
"protobuf/2.6.1@cloe/stable"
3431
]
3532

3633
_git_url = (

0 commit comments

Comments
 (0)