-
Notifications
You must be signed in to change notification settings - Fork 729
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
Upgrade testfloat to 3e version. #221
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kraj
requested changes
May 7, 2020
http://www.jhauser.us/arithmetic/TestFloat-3e.zip;name=TestFloat \ | ||
http://www.jhauser.us/arithmetic/SoftFloat-3e.zip;name=SoftFloat \ | ||
file://0001-Makefile-for-cross-compile-SoftFloat-3e.patch \ | ||
file://0002-Makefile-for-cross-compile-TestFloat-3e.patch \ |
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.
the patch names perhaps should not contain -3e
in name
we get errors like
WARNING: /mnt/b/yoe/master/sources/meta-openembedded/meta-oe/recipes-test/testfloat/testfloat_3e.bb: Unable to get checksum fo
r testfloat SRC_URI entry 0001-Makefile-for-cross-compile-SoftFloat-3e.patch: file could not be found
WARNING: /mnt/b/yoe/master/sources/meta-openembedded/meta-oe/recipes-test/testfloat/testfloat_3e.bb: Unable to get checksum fo
r testfloat SRC_URI entry 0002-Makefile-for-cross-compile-TestFloat-3e.patch: file could not be found
Khem Raj <notifications@github.com> 於 2020年5月7日 週四 下午2:19寫道:
***@***.**** requested changes on this pull request.
------------------------------
In meta-oe/recipes-test/testfloat/testfloat_3e.bb
<#221 (comment)>
:
>
SRC_URI = "\
- http://www.jhauser.us/arithmetic/TestFloat-3a.zip;name=TestFloat \
- http://www.jhauser.us/arithmetic/SoftFloat-3a.zip;name=SoftFloat \
- file://0001-Makefile-for-cross-compile-SoftFloat.patch \
- file://0002-Makefile-for-cross-compile-TestFloat.patch \
+ http://www.jhauser.us/arithmetic/TestFloat-3e.zip;name=TestFloat \
+ http://www.jhauser.us/arithmetic/SoftFloat-3e.zip;name=SoftFloat \
+ file://0001-Makefile-for-cross-compile-SoftFloat-3e.patch \
+ file://0002-Makefile-for-cross-compile-TestFloat-3e.patch \
the patch names perhaps should not contain -3e in name
we get errors like
WARNING: /mnt/b/yoe/master/sources/meta-openembedded/meta-oe/recipes-test/testfloat/testfloat_3e.bb: Unable to get checksum fo
r testfloat SRC_URI entry 0001-Makefile-for-cross-compile-SoftFloat-3e.patch: file could not be found
WARNING: /mnt/b/yoe/master/sources/meta-openembedded/meta-oe/recipes-test/testfloat/testfloat_3e.bb: Unable to get checksum fo
r testfloat SRC_URI entry 0002-Makefile-for-cross-compile-TestFloat-3e.patch: file could not be found
—
Sorry, it's embarrassing to that. The '-3e' suffix is used at beginning.
Finally, only remove the suffix of the name of patch files, but forgot
changing them in bb file. Let me send the next version patch to fix it.
… You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#221 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFOMQUWICUGJATIV4P43Q23RQJHH5ANCNFSM4M2JMLZA>
.
|
Upgrade TestFloat to 3e version. Signed-off-by: Zong Li <zong.li@sifive.com>
@kraj I had force pushed the branch zongbox:testfloat_3e. Thanks. |
merged with 630d752 |
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jul 5, 2021
0.18.0, 2021-06-28 * Fix openembedded#209 Update freeze recurse into pyrsistent data structures and thaw to recurse into lists and dicts, Thanks @phil-arh for this! NB! This is a backwards incompatible change! To keep the old behaviour pass `strict=False` to freeze and thaw. * Fix openembedded#226, stop using deprecated exception.message. Thanks @hexagonrecursion for this! * Fix openembedded#211, add union operator to persistent maps. Thanks @bowbahdoe for this! * Fix openembedded#194, declare build dependencies through pyproject.toml. Thanks @jaraco for this! * Officially drop Python 3.5 support. * Fix openembedded#223, release wheels for all major platforms. Thanks @johnthagen for helping out with this! * Fix openembedded#221, KeyError obscured by TypeError if key is a tuple. Thanks @ganwell for this! * Fix LICENSE file name spelling. Thanks @ndowens and @barentsen for this! * Fix openembedded#216, add abstractmethod decorator for CheckedType and ABCMeta for _CheckedTypeMeta. Thanks @ss18 for this! * Fix openembedded#228, rename example classes in tests to avoid name clashes with pytest. -License-Update: Copyright year updated to 2021. Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead
pushed a commit
that referenced
this pull request
Jul 6, 2021
0.18.0, 2021-06-28 * Fix #209 Update freeze recurse into pyrsistent data structures and thaw to recurse into lists and dicts, Thanks @phil-arh for this! NB! This is a backwards incompatible change! To keep the old behaviour pass `strict=False` to freeze and thaw. * Fix #226, stop using deprecated exception.message. Thanks @hexagonrecursion for this! * Fix #211, add union operator to persistent maps. Thanks @bowbahdoe for this! * Fix #194, declare build dependencies through pyproject.toml. Thanks @jaraco for this! * Officially drop Python 3.5 support. * Fix #223, release wheels for all major platforms. Thanks @johnthagen for helping out with this! * Fix #221, KeyError obscured by TypeError if key is a tuple. Thanks @ganwell for this! * Fix LICENSE file name spelling. Thanks @ndowens and @barentsen for this! * Fix #216, add abstractmethod decorator for CheckedType and ABCMeta for _CheckedTypeMeta. Thanks @ss18 for this! * Fix #228, rename example classes in tests to avoid name clashes with pytest. -License-Update: Copyright year updated to 2021. Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 6, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 7, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 7, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 7, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 8, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 9, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 9, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
jpuhlman
pushed a commit
to MontaVista-OpenSourceTechnology/meta-openembedded
that referenced
this pull request
Aug 11, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 11, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 11, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 11, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 11, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 12, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 12, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 13, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 13, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 13, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 13, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 15, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 15, 2021
Added Add Bengali langauage (openembedded#221) @wasi-master Fixed Fix Korean localization (openembedded#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead
pushed a commit
that referenced
this pull request
Aug 16, 2021
Added Add Bengali langauage (#221) @wasi-master Fixed Fix Korean localization (#219) @Craphting Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 22, 2023
Changelog ========= Added: Add hash capabilities to OUI (openembedded#225, amitmi704) Fixed: Backwards incompatible: Handle RFC 6164 IPv6 addresses (don't reserve first IP address in point-to-point subnets) ($267, Damien Claisse) Technically backwards incompatible: Fix for is_loopback behaviour – consider IPNetwork('::1/128') to be loopback (openembedded#222, openembedded#223, niels) Include tutorials in source distributions (openembedded#215, Louis Sautier) Fix a documentation typo (openembedded#242, Wouter) Fix print syntax in the documentation to be Python 3 compatible (openembedded#221, François Magimel) Fix the Sphinx syntax in the documentation (openembedded#220, François Magimel) Other: Update the databases (openembedded#266, Jakub Stasiak) Deprecate Python 3.6 (openembedded#263, Jakub Stasiak) Eliminate unnecessary evals (openembedded#228, KOLANICH) Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 23, 2023
Changelog: =========== Feature -------- Update for final cpython release (openembedded#263) (460a072) Speed up unpacking arrays (openembedded#257) (5c8bfe5) Speed up constructing Variant objects (openembedded#256) (0d7a665) Speed up unmarshalling message body (openembedded#255) (5aed075) Speed up unmarshalling Variants (openembedded#254) (dd74a84) Speed up readers in the unmarshall path (openembedded#253) (f9b61b8) Speed up first connection when using asyncio (openembedded#251) (0b6ba93) Speed up unmarshaller (openembedded#250) (e4cae13) Add cython typing for ServiceInterface.name (openembedded#248) (98c7e75) Speed up connect and disconnect (openembedded#247) (8f39ba3) Speed up unmarshalling by skipping unused unix_fds header (openembedded#246) (5f5a150) Reduce overhead to reset between messages (openembedded#245) (da30b04) Don't import backends by default (openembedded#243) (091d421) Breaking don't import backends by default (openembedded#243) (091d421) Small speed up to the unmarshaller (openembedded#238) (b8d0e9b) Build cpython 3.12 wheels (openembedded#234) (b38aa58) Improve performance of processing incoming messages (openembedded#228) (ce61aea) Reduce overhead to dispatch method handlers (openembedded#227) (b222552) Speed up to processing bluez passive data (openembedded#221) (8e7432d) Remove async_timeout dependency (openembedded#218) (7826897) Speed up Message creation and callbacks (openembedded#217) (04d6451) Optimize passive bluez message unmarshaller (openembedded#216) (e0e87ec) Initial cpython 3.12 support (openembedded#207) (c755193) Improve performance of reading from the socket during unmarshall (openembedded#200) (e5d355f) Fix ------------- Handling of None messages from notify callback (openembedded#236) (14f52f2) Clean up address parsing and tests (openembedded#244) (370791d) Handle multiple flag bits when unmarshalling (openembedded#241) (6f6f5f8) Rebuild wheels with cython 3.0.2 (openembedded#235) (e8901a8) Avoid cythonizing SendReply (openembedded#232) (d12266d) Subpath bad matching (openembedded#202) (5d6f90b) Messages could be sent out of order if they had to queue (openembedded#225) (4051cf2) Avoid checking if a message expects a reply twice (openembedded#223) (823e85f) Revert changes to _expects_reply from speed up to processing bluez passive data (openembedded#222) (dfa9053) Spelling of dbus_fast.auth.AuthAnnonymous to dbus_fast.auth.AuthAnonymous (openembedded#220) (6c2412f) More cython3 optional fixes (openembedded#219) (5b6cbc5) Exception handler failure when exception is not DBusError (openembedded#215) (d771bcf) Result typing in ServiceInterface._handle_signal (openembedded#214) (5bda04b) Avoid double buffering when using asyncio reader without negotiate_unix_fd (openembedded#213) (c933be7) Relax typing on _fn_result_to_body to allow Any (openembedded#212) (2f5fc38) Typing on _fn_result_to_body was incorrect which was caused an exception with cython3 (openembedded#210) (c40c7bc) Cython3 compat (openembedded#208) (43b3d48) Reduce size of wheels by excluding generated .c files (openembedded#262) (dca4599) Marshall multi-byte strings correctly (openembedded#261) (4de31a3) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead
pushed a commit
that referenced
this pull request
Nov 3, 2023
Changelog: =========== Feature -------- Update for final cpython release (#263) (460a072) Speed up unpacking arrays (#257) (5c8bfe5) Speed up constructing Variant objects (#256) (0d7a665) Speed up unmarshalling message body (#255) (5aed075) Speed up unmarshalling Variants (#254) (dd74a84) Speed up readers in the unmarshall path (#253) (f9b61b8) Speed up first connection when using asyncio (#251) (0b6ba93) Speed up unmarshaller (#250) (e4cae13) Add cython typing for ServiceInterface.name (#248) (98c7e75) Speed up connect and disconnect (#247) (8f39ba3) Speed up unmarshalling by skipping unused unix_fds header (#246) (5f5a150) Reduce overhead to reset between messages (#245) (da30b04) Don't import backends by default (#243) (091d421) Breaking don't import backends by default (#243) (091d421) Small speed up to the unmarshaller (#238) (b8d0e9b) Build cpython 3.12 wheels (#234) (b38aa58) Improve performance of processing incoming messages (#228) (ce61aea) Reduce overhead to dispatch method handlers (#227) (b222552) Speed up to processing bluez passive data (#221) (8e7432d) Remove async_timeout dependency (#218) (7826897) Speed up Message creation and callbacks (#217) (04d6451) Optimize passive bluez message unmarshaller (#216) (e0e87ec) Initial cpython 3.12 support (#207) (c755193) Improve performance of reading from the socket during unmarshall (#200) (e5d355f) Fix ------------- Handling of None messages from notify callback (#236) (14f52f2) Clean up address parsing and tests (#244) (370791d) Handle multiple flag bits when unmarshalling (#241) (6f6f5f8) Rebuild wheels with cython 3.0.2 (#235) (e8901a8) Avoid cythonizing SendReply (#232) (d12266d) Subpath bad matching (#202) (5d6f90b) Messages could be sent out of order if they had to queue (#225) (4051cf2) Avoid checking if a message expects a reply twice (#223) (823e85f) Revert changes to _expects_reply from speed up to processing bluez passive data (#222) (dfa9053) Spelling of dbus_fast.auth.AuthAnnonymous to dbus_fast.auth.AuthAnonymous (#220) (6c2412f) More cython3 optional fixes (#219) (5b6cbc5) Exception handler failure when exception is not DBusError (#215) (d771bcf) Result typing in ServiceInterface._handle_signal (#214) (5bda04b) Avoid double buffering when using asyncio reader without negotiate_unix_fd (#213) (c933be7) Relax typing on _fn_result_to_body to allow Any (#212) (2f5fc38) Typing on _fn_result_to_body was incorrect which was caused an exception with cython3 (#210) (c40c7bc) Cython3 compat (#208) (43b3d48) Reduce size of wheels by excluding generated .c files (#262) (dca4599) Marshall multi-byte strings correctly (#261) (4de31a3) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit f10cf13) Signed-off-by: Armin Kuster <akuster808@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Upgrade TestFloat to 3e version. It had got more test case from 3a version to 3e version.