Investigating the comment regarding a 'configure script bug' lead me
to a bug which manifested itself in 'm' not being added to ABIFLAGS
when PYMALLOC was enabled, not the inability to set
--without-pymalloc using PYMALLOC_CONFIGURE_WITH (options helpers).
The incorrect ABIFLAGS caused packaging failures with default options, so
I'm not sure how this wasn't picked up earlier:
Error: Orphaned: include/python3.2u/<file>
<snip>
Error: Missing: include/python3.2mu/<file>
- Backport an upstream commit [1] to correct the configure bug that never
made it to the 3.2 branch.
- Use options helpers for PYMALLOC accordingly
While I'm here, clean up after the LIBFFI option addition:
- Sort options variables: OPTIONS_* and *_DESC
- Use OPTIONS helpers
[1] https://hg.python.org/cpython/raw-rev/d158b0a78390
Approved by: python
A popup window switcher roughly based on superswitcher, requiring only xlib
and pango. This version started off as a clone of simpleswitcher, the
version from Sean Pringle. All credit for this great tool should go to him.
Rofi developed extra features, like a run-dialog, ssh-launcher and can
act as a drop-in dmenu replacement, making it a very versatile tool.
WWW: https://davedavenport.github.io/rofi/
PR: ports/195146
Submitted by: nomoo@nomoo.ru
- Fix packaging for mips64 (Reported by: sbruno)
mips64 is also not a 32-bit ${ARCH}, so add it to the list of
architectures for which imageop.so and dl.so aren't packaged:
%%32BIT_ONLY%%lib/python2.7/lib-dynload/dl.so
%%32BIT_ONLY%%lib/python2.7/lib-dynload/imageop.so
Both dl and imageop have been removed in Python 3.x [1][2][3][4]
Thanks jhibbits@ for his help testing.
- Add BROKEN for i386 without LIBFFI option, and add upstream
issue references.
While I'm here, clean up after the LIBFFI option addition:
- Sort options variables: OPTIONS_* and *_DESC
- Use OPTIONS helpers
References:
[1] The :mod:`imageop` module has been removed in Python 3.0.
[2] dl Added: https://hg.python.org/cpython/file/aac1ee966f56/setup.py
[3] dl Removed: https://hg.python.org/cpython/file/859ff5c7c60a/setup.py
[4] PEP-3108: https://www.python.org/dev/peps/pep-3108/
Approved by: python
An HTTP/1.1 pipelining implementation atop Net::HTTP. A pipelined
connection sends multiple requests to the HTTP server without waiting
for the responses. The server will respond in-order.
WWW: http://docs.seattlerb.org/net-http-pipeline/
std::abs(int64_t) for 32bit archs or std::llabs are not available in
base libstdc++ from forked GCC 4.2.1 or before 10.0-RELEASE (r255294)
for libstdc++ in lang/gcc47 and earlier (upstream PR libstdc++/54686).
To avoid the build error use mozilla::Abs which implements overloads
for all signed natural types but has unsigned return value.
This change won't be requried for Firefox 36 et al.
PR: 196772
Reported by: many
Submitted by: bar (initial version)
Obtained from: https://github.com/mozilla/gecko-dev/commit/e664fe8
Differential Revision: https://reviews.freebsd.org/D1569
Approved by: flo (mentor)
MFH: 2015Q1