Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gstreamer: Support Conan V2 #13400

Merged
merged 34 commits into from
May 22, 2023
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
ee1a122
gstreamer: Support Conan V2
jwillikers Oct 10, 2022
afbfb61
Fix licenses installation
jwillikers Oct 13, 2022
642883f
Check for pkgconf conf setting
jwillikers Oct 20, 2022
67188ab
Fix Apple shared install name
jwillikers Oct 20, 2022
d584aed
Fix Python F-string
jwillikers Oct 25, 2022
e23e83b
Organize versions in descending order
jwillikers Oct 25, 2022
c7e5951
Update dependencies and use rm_safe
jwillikers Dec 3, 2022
1c80bbe
Fix license
jwillikers Dec 3, 2022
bc7a730
Don't use fix_apple_shared_install_name
jwillikers Dec 28, 2022
b87853b
Bump glib to 2.75.1
jwillikers Jan 6, 2023
b3b58b3
Place MesonToolchain last in generate method
jwillikers Jan 7, 2023
4a30e1e
Add glib as a tool_requires for the glib-mkenums tool
jwillikers Jan 7, 2023
648a40a
Bump Meson and glib versions
jwillikers Jan 9, 2023
751943e
Remove package_id method
jwillikers Jan 20, 2023
950098f
Update other glib version
jwillikers Jan 20, 2023
9fc624d
Remove package_id method?
jwillikers Jan 20, 2023
30e06f2
Update test v1 package
jwillikers Jan 30, 2023
8f1a43d
Add package type
jwillikers Mar 22, 2023
f03e094
Update glib to 2.76.0
jwillikers Mar 22, 2023
3c32e91
Bump glib to version 2.76.1
jwillikers Mar 29, 2023
733b1af
Bump CMake version
jwillikers May 5, 2023
320c233
Bump glib
jwillikers May 5, 2023
82ba75b
Change CMake project name of test v1 package
jwillikers May 5, 2023
1541e9b
Fix package name
jwillikers May 6, 2023
67120a1
gstreamer: add timeout when calling test_package and add GST_DEBUG to…
jcar87 May 16, 2023
722bfea
gstreamer test package: generate virtualrunenv
jcar87 May 16, 2023
dba4014
gstreamer: undo debugging and fix conan2
jcar87 May 16, 2023
8d82798
gstreamer: fix removal of pdb files on Windows/msvc
jcar87 May 17, 2023
9160b97
Update recipes/gstreamer/all/conanfile.py
jcar87 May 17, 2023
7f16f82
Update recipes/gstreamer/all/conanfile.py
jcar87 May 17, 2023
0fd0c3e
Update recipes/gstreamer/all/conanfile.py
jcar87 May 19, 2023
5119f86
gstreamer test_package: add GST_DEBUG env var
jcar87 May 19, 2023
4a8f1b4
gstreamer: use newer runenv info
jcar87 May 19, 2023
c8d8ee3
transitive_libs might be needed after all
AbrilRBS May 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove package_id method
  • Loading branch information
jwillikers committed May 5, 2023
commit 751943ef472b3f143efd587b65804238ffce541e
6 changes: 1 addition & 5 deletions recipes/gstreamer/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ def build_requirements(self):
self.tool_requires("flex/2.6.4")

def source(self):
get(self, **self.conan_data["sources"][self.version],
destination=self.source_folder, strip_root=True)
get(self, **self.conan_data["sources"][self.version], strip_root=True)

def generate(self):
virtual_build_env = VirtualBuildEnv(self)
Expand Down Expand Up @@ -112,9 +111,6 @@ def package(self):
rmdir(self, os.path.join(self.package_folder, "share"))
rm(self, "*.pdb", os.path.join(self.package_folder, "lib"))
jcar87 marked this conversation as resolved.
Show resolved Hide resolved

def package_id(self):
self.info.requires["glib"].full_package_mode()

def package_info(self):
gst_plugin_path = os.path.join(self.package_folder, "lib", "gstreamer-1.0")

Expand Down