Commit graph

348506 commits

Author SHA1 Message Date
John Marino
7f7d5e0fdb Stage net/spread4
PR:		193450
Submitted by:	Chris Hutchinson
Stage fixes:	marino
2014-09-10 00:38:03 +00:00
John Marino
27887035db Stage databases/linux-oracle-instantclient-sdk
PR:		193320
Submitted by:	papowell (astart.com)
2014-09-10 00:00:54 +00:00
John Marino
a32b2f6852 Remove four unrelated staged ports 2014-09-09 23:15:30 +00:00
Jason E. Hale
a7fd113bfd - Fix possible out of memory issue during build
- Update "Created by" email address

PR:		193352
Submitted by:	Radim Kolar <hsn@sendmail.cz> (maintainer)
2014-09-09 22:59:01 +00:00
John Marino
4afa6c0abb Remove three unrelated unstaged ports 2014-09-09 22:48:40 +00:00
Sergey A. Osokin
6b13c621a1 Upgrade from 3.0.0-beta6 to 3.0.0-beta8.
<ChangeLog>

--[ Redis 3.0.0 Beta 8 (version 2.9.57) ] Release date: 29 jul 2014

This is the 8th beta of Redis 3.0.0.

>> General changes

* [FIX] Solaris compilation issues. (Matt Stancliff, Salvatore Sanfilippo)
* [FIX] Allow shared integer objects if maxmemory policy is not LRU based.
        (Salvatore Sanfilippo)
* [FIX] PFSELFTEST: less false positives. (Salvatore Sanfilippo)
* [FIX] Fail SYNC if background save child aborted due to a signal. (Yossi
        Gottlieb)

* [NEW] Latency framework backported from unstable branch. (Salvatore
        Sanfilippo)
* [NEW] AOF rewrite improved for latency. (Salvatore Sanfilippo)
* [NEW] Pub/Sub PING. (Salvatore Sanfilippo)
* [NEW] Much faster ZUNIONSTORE. (Kyle Hubert, Salvatore Sanfilippo)
* [NEW] Faster ll2string() implementation. (Salvatore Sanfilippo)

>> Cluster changes

* [FIX] CLUSTER RESET: Flush slave dataset on reset. (Salvatore Sanfilippo)
* [FIX] Replica migration: don't migrate to masters that never had slaves
        in the past, but only to masters that remained orphaned after
        failure events. (Salvatore Sanfilippo)

* [NEW] redis-trib: allow to reshard in non-interactive way. (Salvatore
        Sanfilippo)
* [NEW] Cluster test: unit 04, check consistency during resharding. (Salvatore
        Sanfilippo)
* [NEW] Cluster test: unit 05, slave selection. (Salvatore Sanfilippo)
* [NEW] Cluster test: unit 06, slaves with stale data can't failover. (Salvatore
        Sanfilippo)
* [NEW] Cluster test: unit 07, replicas migration. (Salvatore Sanfilippo)

>> Sentinel changes

* No Sentinel changes in this release.

--[ Redis 3.0.0 Beta 7 (version 2.9.56) ] Release date: 30 jun 2014

This is the 7th beta of Redis 3.0.0.

>> General changes

* [FIX] Scripting fixes backported from unstable, see Redis 2.8.12 changelog
        for more info. (Salvatore Sanfilippo)
* [FIX] Cancel SHUTDOWN if initial AOF is being written. (Matt Stancliff)

* [NEW] New command: COMMAND, for commands introspection (Matt Stancliff &
        Salvatore Sanfilippo)
* [NEW] hiredis: Update to latest version. (Matt Stancliff)
* [NEW] Jemalloc updated to 3.6.0. (Salvatore Sanfilippo)

>> Cluster changes

* [FIX] Cluster: clear NOADDR flag when updating node address.
        (Salvatore Sanfilippo)

* [NEW] New CLUSTER SLOTS command to simplify Cluster clients operations.
        (Matt Stancliff)
* [NEW] More Cluster tests. (Salvatore Sanfilippo)
* [NEW] Log when failover authorization are granted / denied.
        (Salvatore Sanfilippo)

>> Sentinel changes

* [FIX] A few Sentinel bugs fixed and improvements, see Redis 2.8.12
        changelog for more info.  (Salvatore Sanfilippo & Matt Stancliff)
* [NEW] New Sentinel-Client handshake protocol, ROLE command, CLIENT KILL,
        all backported to 3.0 branch. (Salvatore Sanfilippo)

</ChangeLog>
2014-09-09 22:38:00 +00:00
John Marino
27bb955352 Remove unstaged lang/ezm3 and three cvsup* ports as casualties 2014-09-09 22:19:46 +00:00
Sergey A. Osokin
a2e6c47b90 Upgrade from 2.8.11 to 2.8.14.
<ChangeLog>

--[ Redis 2.8.14 ] Release date: 1 Sep 2014

# UPGRADE URGENCY: HIGH for Lua scripting users, the server could crash because
                   of a bug introduced in Redis 2.8.10, otherwise LOW.
                   LOW for Redis Sentinel.

* [FIX] Don't prevent use of shared integers if maxmemory policy is non-LRU.
        (Salvatore Sanfilippo)
* [FIX] Fail SYNC if background save child aborted due to a signal.
        (Yossi Gottlieb)
* [FIX] Different small redis-cli fixes. (Dov Murik, Charsyam, cubicdaiya,
        Kashif Rasul, Jan-Erik Rediger, Matt Stancliff)
* [FIX] AIX compilation fixes. (Siah Lyimo)
* [FIX] A number of other smaller issues.
* [FIX] Improved SIGINT handling (Matt Stancliff, Salvatore Sanfilippo)
* [FIX] Use unsigned types in SDS header to raise limit to 4GB.
        (Matt Stancliff, Salvatore Sanfilippo)
* [FIX] Handle signed/unsigned comparisons with more care around the code.
        (Salvatore Sanfilippo)
* [FIX] Colorized test output fixed to don't change the background color.
        (Mariano Pérez Rodríguez)
* [FIX] More Sentinel IPv6 fixes. (Eiichi Sato)
* [FIX] Deny CLIENT command in scripts. (Matt Stancliff)
* [FIX] Allow datasets with more than 2 billion of keys, initial work.
* [FIX] Fix a Lua scripting crash by storing the length of the static
        argv when first allocated. (Paddy Byers)

* [NEW] Pub/Sub PING. (Salvatore Sanfilippo)
* [NEW] Much faster ZUNIONSTORE. (Kyle Hubert, Salvatore Sanfilippo)
* [NEW] Faster ll2string() implementation. (Salvatore Sanfilippo)
* [NEW] **WARNING, minor API change**: PUBSUB NUMSUB: return type modified
        to integer. (Matt Stancliff)
* [NEW] redis-benchmark support for AUTH. (CharSyam)

--[ Redis 2.8.13 ] Release date: 14 Jul 2014

# UPGRADE URGENCY: LOW for Redis and Sentinel, this is a features enhancement
                   release mostly. Since this release introduces the latency
                   monitoring feature, Redis 2.8 users experiencing latency
                   issues are strongly encouraged to upgrade.

* [FIX] CLIENT KILL minor backward compatibility fixes. (Salvatore Sanfilippo)
* [FIX] Enable HAVE_ATOMIC for PowerPC. (Matt Stancliff)
* [FIX] More robust PSYNC and AOF rewrites tests. (Salvatore Sanfilippo)
* [FIX] Solaris build fixed. (Matt Stancliff, Salvatore Sanfilippo)

* [NEW] The new latency monitoring feature, as documented at
        http://redis.io/topics/latency-monitor (Salvatore Sanfilippo)
* [NEW] The COMMAND command, exposing the Redis command table
        as an API. (Matt Stancliff)
* [NEW] Update used memory with C11 __atomic. (Matt Stancliff)

--[ Redis 2.8.12 ] Release date: 23 Jun 2014

# UPGRADE URGENCY: HIGH for Redis, CRITICAL for Sentinel.

# WARNING: This release contains a non backward compatible semantical change
           to Lua script that should affect an almost zero number of users.

* [FIX / BREAKS BACKWARD COMPATIBILITY] Using SELECT inside Lua scripts no
       longer makes the selected DB to be set in the calling client.
       So Lua can still use SELECT, but the client calling the script will
       remain set to the original DB. Thix fixes an issue with Redis
       replication of Lua scripts that called SELECT without reverting the
       selected DB to the original one. (Salvatore Sanfilippo)
* [FIX] Sentinel failover was instalbe if the master was detected as available
        during the failover (especially during manual failovers) because
        of an implementation error (lack of checking of
        SRI_PROMOTED flag). (Salvatore Sanfilippo)
* [FIX] Cancel SHUTDOWN if initial AOF is being written. (Matt Stancliff)
* [FIX] Sentinel: bind source address for outcoming connections. (Matt
        Stancliff).
* [FIX] Less timing sensitive Sentinel tests. (Salvatore Sanfilippo).

* [NEW] redis-cli --intrinsic-latency stopped with SIGINT still reports
        stats (Matt Stancliff)
* [NEW] Sentinels broadcast an HELLO message ASAP after a failover in order to
        reach a consistent state faster (before it relied for periodic HELLO
        messages). (Salvatore Sanfilippo).
* [NEW] Jemalloc updated to 3.6.0. (Salvatore Sanfilippo)
* [NEW] CLIENT LIST speedup. (Salvatore Sanfilippo)
* [NEW] CLIENT LIST new unique incremental ID to every client. (Salvatore
        Sanfilippo)
* [NEW] ROLE command added. (Salvatore Sanfilippo)
* [NEW] CLIENT KILL new form to kill by client type and ID (see doc at
        redis.io for more info). (Salvatore Sanfilippo)
* [NEW] Sentinel now disconnects clients when instances are reconfigured
        (see http://redis.io/topics/sentinel-clients). (Salvatore Sanfilippo)
* [NEW] Hiredis update to latest version. (Matt Stancliff)

</ChangeLog>
2014-09-09 22:18:39 +00:00
Rene Ladan
934764e569 Document new vulnerabilities in www/chromium < 37.0.2062.120
Obtained from:	http://googlechromereleases.blogspot.nl/
MFH:		2014Q3
2014-09-09 21:27:24 +00:00
Antoine Brodin
9c0c90841e Fix MOVED
Pointy hat:	marino
2014-09-09 21:12:55 +00:00
Tijl Coosemans
55c587ba08 - Add explicit build dependency on misc/shared-mime-info
- Add USES=libtool and convert to USES=python
2014-09-09 21:09:29 +00:00
John Marino
80873b3ad1 Restore devel/cross-binutils (needed for devel/mingw64-binutils) 2014-09-09 21:05:28 +00:00
Tijl Coosemans
dd1d9fd81f Add USES=libtool and INSTALL_TARGET=install-strip 2014-09-09 20:54:26 +00:00
Tijl Coosemans
76368e6b87 - Add USES=libtool and INSTALL_TARGET=install-strip
- Remove duplicate entry from pkg-plist
2014-09-09 20:33:56 +00:00
John Marino
2c0ea8e734 Remove unstaged devel/arm-eabi-gcc and cascade remove four others
Without devel/arm-eabi-gcc, unstaged cross-gcc has no purpose, nor
does either of the -binutils ports.  The sysutils/u-boot-beaglebone-eabi
was staged, but is a casualty of the arm-eabi-gcc removal.
2014-09-09 20:32:49 +00:00
Tijl Coosemans
5fc1417229 Add USES=libtool and INSTALL_TARGET=install-strip 2014-09-09 20:32:21 +00:00
Tijl Coosemans
9456c98dd1 Convert to USES=libtool and add INSTALL_TARGET=install-strip 2014-09-09 20:31:22 +00:00
Tijl Coosemans
539e3b354b - Fix MASTER_SITES
- Add USES=libtool and INSTALL_TARGET=install-strip
- Avoid including bsd.port.options.mk
2014-09-09 20:30:28 +00:00
Thierry Thomas
5ec9d3905c - Fix build when X11 option is off
- Move openal/freealut to USES

- Allow using ncurses from base system

PR:		ports/193483, ports/193485
Submitted by:	Andriy Voskoboinyk
2014-09-09 20:23:16 +00:00
Adam Weinberger
7d07f3f87b Fix build on 8 and 9. 2014-09-09 20:14:25 +00:00
Adam Weinberger
5a1a7f73eb Fix build on 8 and 9. While here, use OPTIONS helpers. 2014-09-09 19:45:14 +00:00
Tijl Coosemans
9fd838d513 - Convert to USES=libtool and add INSTALL_TARGET=install-strip
- Disable static module
- Replace pre-configure with USE_AUTOTOOLS
2014-09-09 19:43:02 +00:00
Adam Weinberger
f86ce48e86 Add USE_XORG=xaw. Not clear how this was building successfully before.
While here, include stdlib.h to quiet warnings about exit.
2014-09-09 19:31:28 +00:00
John Marino
efd0d5fc6e Remove virtualbox-*-legacy due to lack of staging
The virtualbox-ose-kmod-legacy port is staged, but it has no purpose
without the unstaged virtualbox-ose-legacy port, so both ports have
been removed at the same time.
2014-09-09 19:18:28 +00:00
Tijl Coosemans
c0dc313534 Add USES=libtool 2014-09-09 19:10:29 +00:00
Tijl Coosemans
ad5346d1c5 Add USES=libtool 2014-09-09 19:09:53 +00:00
Steve Wills
9359c5a775 net/rubygem-lita-gems: add port for rubygem-lita-gems
Lita handler for rubygems.org querying

WWW: https://github.com/marsz/lita-gems
2014-09-09 18:55:08 +00:00
Steve Wills
62fd037add devel/rubygem-gems: add port for rubygem-gems
Ruby wrapper for the RubyGems.org API

WWW: https://github.com/rubygems/gems
2014-09-09 18:51:12 +00:00
Bartek Rutkowski
2a112b4952 devel/rubygem-rufus-scheduler: update 3.0.8 -> 3.0.9
Approved by:	mentors (implicit)
2014-09-09 18:49:56 +00:00
Steve Wills
330f8a6148 irc/rubygem-lita-irc: add port for rubygem-lita-irc
An IRC adapter for Lita.

WWW: https://github.com/jimmycuadra/lita-irc
2014-09-09 18:49:25 +00:00
Steve Wills
55abcf2165 net-im/rubygem-lita: add port for Lita
A multi-service chat bot with extendable behavior.

WWW: https://lita.io/
2014-09-09 18:48:01 +00:00
Steve Wills
d6807c6ec2 www/rubygem-multipart-post: update to 2.0.0
With hat:	ruby@
2014-09-09 18:43:22 +00:00
Sunpoet Po-Chuan Hsieh
8c4b2dfb39 - Update to 1.5beta7
- Remove DEPRECATED and EXPIRATION_DATE
- Change MASTER_SITES to github
- Install tcptraceroute to PREFIX/bin
- Add DOCS options and PORTDOCS
- Use new @(user,group,perm) format in PLIST
- Reformat pkg-desc

Changes:	https://github.com/mct/tcptraceroute/blob/master/ChangeLog
2014-09-09 18:41:28 +00:00
Tijl Coosemans
8c82bff238 Add USES=libtool 2014-09-09 18:38:29 +00:00
John Marino
cc9dd71e48 Stage emulators/linx_base-gentoo-stage3
This is a slave port to the staged master port emulators/
linux_dist-gentoo-stage3, so staging has already been implemented.
2014-09-09 18:37:09 +00:00
Sunpoet Po-Chuan Hsieh
a9d6cd6b75 - Update to 1.4.26
Changes:	https://github.com/npm/npm/releases
2014-09-09 18:35:01 +00:00
Baptiste Daroussin
c255a2f29d Update to 3.5.0.27
Unbundle nxcomp
2014-09-09 17:57:21 +00:00
Baptiste Daroussin
977160571a Add nxcomp 2014-09-09 17:50:06 +00:00
Chris Rees
7668605620 Update to 0.2.1; Minor bugfix 2014-09-09 17:23:58 +00:00
TAKATSU Tomonari
155e03566e - Update to 0.7.0
- Add LICENSE section
- Pass maintainership to ruby@
2014-09-09 17:22:10 +00:00
Tijl Coosemans
b85b5b5add Add USES=libtool 2014-09-09 17:12:57 +00:00
Sunpoet Po-Chuan Hsieh
67e69ab522 - Fix unconditionally dependency on libiconv.so from converters/libiconv
- Bump PORTREVISION for package change

PR:		ports/193319
Reported by:	Harald Schmalzbauer <bugzilla.freebsd@omnilan.de>
2014-09-09 17:09:26 +00:00
Steve Wills
b53ae27b10 www/rubygem-http_router: add port for rubygem-http_router
Sort category Makefile while here.

This library allows you to recognize and build URLs in a Rack application.

WWW: http://github.com/joshbuddy/http_router
2014-09-09 17:03:14 +00:00
Adam Weinberger
e1b66c5b75 It looks like __attribute__ deprecated(msg) wasn't supported until GCC 4.5.x, and
clang has the awesome __has_extension macros.

Update the #if line to fix build against GCC 4.2.1 in base.
2014-09-09 16:54:13 +00:00
TAKATSU Tomonari
325f7e4997 - Update to 0.4.400.0 2014-09-09 16:52:37 +00:00
Tijl Coosemans
8d38241345 - Add USES=libtool
- Remove -pthread
- Add missing libs
2014-09-09 16:52:30 +00:00
TAKATSU Tomonari
1db08d38d1 - Update to 1.3-2 2014-09-09 16:34:51 +00:00
TAKATSU Tomonari
b821a871b2 - Update to 0.3 2014-09-09 16:20:37 +00:00
TAKATSU Tomonari
a335cc5a46 - Update to 0.3.0 2014-09-09 16:04:03 +00:00
Chris Rees
6e2fd8fc00 Fix detection of FreeBSD version
Submitted by:	Jordi Sanfeliu (upstream)
2014-09-09 15:42:10 +00:00