- Update devel/gettext to 0.18.3
- Fix known-broken (from exp-runs) ports
- Clean up a lot of cruft in the devel/gettext port itself,
based on work from tijl@
PR: 178883
Submitted by: ade
Sponsored by: Wadsworth 6X
- Run 2to3 command on lib, doc and examples dirs,
when Python ver. >= 3.0
- Switch off MYSQL and PGSQL options (suggested by
koobs@, via private email)
- Remove patch/patch-setup.py (pass --always-unzip
to PYDISTUTILS_INSTALLARGS instead)
- Add a post-patch target to fix tests (see http://goo.gl/iu8IB )
Build log: http://goo.gl/JkFG2
The makefile already had USES defined in it. After replacing USE_MOTIF with
"USES= motif", USES was overwritten losing its "readline" value. Change the
previous commit to "USES+= motif" to restore the build on platforms that
need the ports readline.
Approved by: bapt (mentor)
- Remove leading indefinite article from COMMENT
- Run 2to3 command on lib, doc and examples dirs,
when Python ver. >= 3.0
- Remove files/patch-setup.py (pass --always-unzip
to PYDISTUTILS_INSTALLARGS instead)
- Switch off MYSQL and PGSQL options (wanted by
koobs@, via private email)
- Add devel/py-mock to TEST_DEPENDS, when Python
ver. < 3.3
- Fix path to py3k-fix-pkg-plist.inc
Build log: http://goo.gl/kF8pT
Release notes: http://goo.gl/CKfHc
2013-07-11 databases/embedded_innodb: The Embedded InnoDB project was terminated a few years ago
2013-07-11 print/lyx16: Unmaintained upstream, upgrading to the 2.x series is advised
2013-07-11 security/py-crack: Superseded by security/py-cracklib
Changelog (since 1.9.2):
- Memory optimizations.
- Fix a runtime error on Windows.
- Update item access time less often.
- Don't try to start akonadiserver if mysqld is not installed.
- Allow to fetch available items even if there are errors in some of the
items.
- Properly restrict the external part removal to the deleted collection.
- Support checking the cache for payloads in the FETCH command.
- Add infrastructure to track client capabilities.
- Allow to disable the cache verification on retrieval.
- fsck: move orphaned pim items to lost+found, delete orphaned pim item
flags.
- Introduce NotificationMessageV2 that supports batch operations on set of
entities.
- Fix build with Boost >= 1.53.
- Fix a runtime issue with MySQL >= 5.6 (MySQL >= 5.1.3 is now the minimum
version).
Note from maintainer:
This is the last release for 1.1. Port will be updated to 1.2.x
once twitter/netflix approve it for production usage.
PR: ports/179822
Submitted by: Radim Kolar <hsn@sendmail.cz>
PR: 179745
<ChangeLog>
UPGRADE URGENCY: HIGH because of the following two issues:
* Lua scripting + Replication + AOF in slaves problem (see Issue #1164).
* AOF + expires possible race condition (see Issue #1079).
* [FIX] AOF bug: expire could be removed from key on AOF rewrite.
* [FIX] Allow writes from scripts called by AOF loading in read-only slaves.
* [FIX] Sentinel: parse new verison of INFO replication output correctly.
* [NEW] Reset masterauth if an empty string is configured.
</ChangeLog>
- Drop the article from COMMENT line
- Define LICENSE (GPLv3)
- Remove pre-everything target: OPTIONS framework is vocal enough
- Improve and move OPTIONS knobs lower in the Makefile
- Fix bad indentation in post-patch commands as appropriate
- Correct a typo and reformat port description, and point WWW to a more
up-to-date page version while I'm at it
Approved by: gabor (maintainer)
- Update to 2.7.6
- Update setup.py patch
Changes:
* 2.7.6
* Added CONFIG RESETSTAT command. Thanks Yossi Gottlieb.
* Fixed a bug introduced in 2.7.3 that caused issues with script objects
and pipelines. Thanks Carpentier Pierre-Francois.
* Converted redis-py's test suite to use the awesome py.test library.
* Fixed a bug introduced in 2.7.5 that prevented a ConnectionError from
being raised when the Redis server is LOADING data.
* Added a BusyLoadingError exception that's raised when the Redis server
is starting up and not accepting commands yet. BusyLoadingError
subclasses ConnectionError, which this state previously returned.
Thanks Yossi Gottlieb.
* 2.7.5
* DEL, HDEL and ZREM commands now return the numbers of keys deleted
instead of just True/False.
* from_url now supports URIs with a port number. Thanks Aaron Westendorf.
. trim Makefile headers;
. remove the indefinite article from COMMENT;
. use PLIST_FILES;
. remove pkg-list (two lines for PLIST_FILES, two lines useless anyway);
. do not mute install.
- add the patch that fixes posix_fadvise64 linuxism: swift tries to call
posix_fadvise64, which does not exists on FreeBSD and does not needed
because off_t is 8 bytes on both 32 and 64-bit platforms, so posix_fadvise
should be called instead. This has been reported upstream (#1179268) but
there is no reaction so far.
- bump PORTREVISION
PR: 178738
Submitted by: trociny
Approved by: maintainer timeout (3 weeks)
gnats/gnats.h contains its own prototypes of asprintf() and vasprintf()
which conflict with the system ones:
In file included from edit.c:21:
./gnats.h:140:12: error: conflicting types for 'asprintf'
extern int asprintf (char **buf, const char *fmt, ...);
^
/usr/include/stdio.h:396:6: note: previous declaration is here
int asprintf(char **, const char *, ...) __printflike(2, 3);
Just remove the prototypes from gnats.h.
Reported by: miwi@