summaryrefslogtreecommitdiff
path: root/imworkingon/contribs.yml
diff options
context:
space:
mode:
Diffstat (limited to 'imworkingon/contribs.yml')
-rw-r--r--imworkingon/contribs.yml29
1 files changed, 28 insertions, 1 deletions
diff --git a/imworkingon/contribs.yml b/imworkingon/contribs.yml
index 601cdf8..5b19c3b 100644
--- a/imworkingon/contribs.yml
+++ b/imworkingon/contribs.yml
@@ -1,4 +1,6 @@
-- urls: [https://github.com/flori/json/pull/567]
+- urls:
+ - https://github.com/flori/json/pull/567
+ - https://github.com/flori/json/commit/c57d33ec39344f7a6ae2786b8ac36892a51b03fe
tags: [Ruby, JSON, SoftwareFreedom]
id: ruby-json
desc: |
@@ -212,6 +214,7 @@
SIGTERM that it was sent... but it never would. This PR fixes
that.
- urls: [https://gitlab.archlinux.org/archlinux/packaging/packages/ruby/-/merge_requests/6]
+ tags: [Parabola, Ruby]
desc: |
Ruby's standard library has been going through a process of
"gemification" where it is converted into a set of Gems that are
@@ -226,12 +229,14 @@
future, it should also make it easier for downstream distros that
patch Ruby, such as applying [flori/json#567](#contrib-ruby-json).
- urls: [https://gitlab.archlinux.org/archlinux/packaging/packages/ruby/-/merge_requests/7]
+ tags: [Parabola, Ruby, docs]
desc: |
Arch Linux's `ruby-docs` package (version 3.2.5-1) is incomplete;
the `/usr/share/doc/ruby/capi/html/` directory is empty except for
`doxygen_crawl.html`. This fixes that, so that it includes the
full Doxygen output.
- urls: [https://github.com/flori/json/pull/599]
+ tags: [Ruby, JSON]
desc: |
The benchmark numbers given for the Ruby stdlib JSON
encoder/decoder are quite outdated, and the benchmark code has
@@ -241,3 +246,25 @@
[flori/json#567](#contrib-ruby-json) actually improves performance
rather than hurting it. While I believe Software Freedom would be
worth hurting performance, it doesn't have to!
+- urls: [https://github.com/python/typeshed/pull/13169]
+ tags: [GNU, GDB]
+ status: "merged, released in types-gdb 15.0.0.20241204"
+ desc: |
+ GDB has an internal Python module to support using Python to write
+ GDB extensions or using Python interactively in a GDB session.
+ Unfortunately, GDB does not provide type information for the
+ Python module; instead folks writing GDB extensions in Python must
+ rely on the Typeshed if they want to type-check their code.
+
+ This PR fixes several mistakes in the type-information.
+# - urls: ["https://sourceware.org/bugzilla/show_bug.cgi?id=32428"]
+# tags: [GNU, GDB]
+# - urls: ["https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118212"]
+# tags: [GNU, GCC]
+- urls: [https://github.com/9fans/plan9port/pull/692]
+ tags: [Plan9, 9P, docs]
+ desc: |
+ Plan 9 from Userspace's `9pserve`/lib9pclient implement a
+ non-standard `openfd` extension to the 9P2000 protocol. However,
+ the documentation for the extension is inaccurate. Fix that, as
+ no where else but the source code documents how it actually works.