-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
mailio: add version 0.24.0 #25955
base: master
Are you sure you want to change the base?
mailio: add version 0.24.0 #25955
Conversation
recipes/mailio/all/conanfile.py
Outdated
|
||
def build_requirements(self): | ||
self.tool_requires("cmake/[>=3.16.3 <4]") | ||
if Version(self.version) >= "0.24.0" and \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this needs to be in a validate()
or validate_build()
method?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
However, if the error was this:
/Users/jenkins/workspace/cci_prod_PR-25955/conan-home/p/b/maili77426e52e76ce/b/src/src/percent.cpp:37:25: error: implicit instantiation of undefined template 'std::vector<std::basic_string<char>>'
vector<string> percent::encode(const string& txt, const string& charset) const
^
/Applications/conan/xcode/13.0/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk/usr/include/c++/v1/iosfwd:216:28: note: template is declared here
class _LIBCPP_TEMPLATE_VIS vector;
^
/Users/jenkins/workspace/cci_prod_PR-25955/conan-home/p/b/maili77426e52e76ce/b/src/src/percent.cpp:39:20: error: implicit instantiation of undefined template 'std::vector<std::basic_string<char>>'
vector<string> enc_text;
^
/Applications/conan/xcode/13.0/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk/usr/include/c++/v1/iosfwd:216:28: note: template is declared here
class _LIBCPP_TEMPLATE_VIS vector;
^
there's a chance the fix is just including <vector>
in the right place
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Summary
Changes to recipe: mailio/0.24.0
Motivation
There are several improvements in 0.24.0.
Details
karastojko/mailio@0.23.0...0.24.0