1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00
Commit Graph

11137 Commits

Author SHA1 Message Date
Sunpoet Po-Chuan Hsieh
e9d6d130e9 - Update to 1.51
- Add http:// to MASTER_SITES
- Cleanup Makefile header

Changes:	http://bazaar.launchpad.net/~python-memcached-team/python-memcached/trunk/view/head:/ChangeLog
- Bug #974632: _ConnectionDeadError sometimes was escaping the get/set code.
  This should return to readline() not raising an exception, except in the case
  that it's called from the get/set(). Report from Gary Poster, proposed patch
  by Brad Crittenden.
- Misc fixes by Brad Crittenden: fixing a docstring, if "port" is set to any
  false-like value it will default to 11211.
- Bug #887765: Interrupted connection to memcache server can cause
  inconsistencies. Added "flush_on_reconnect" (defaults to off) to Client()
  which will cause a client that has lost connection to a server and then
  reconnects to flush the cache on the reconnect so that it doesn't get old
  values from that server. Patch by Daniel Benamy.
2013-05-08 15:38:22 +00:00
Emanuel Haupt
7e3bf9b220 - Remove MAKE_JOBS_SAFE from ports that set NO_BUILD
- Trim header
- While here use PLIST_FILES for databases/mrtg-mysql-load
2013-05-08 12:47:16 +00:00
Chris Rees
472ecb4a8f Don't build client with ldap-- this is unnecessary and causes build breakage
for package building because of lack of LDAP installation.

PR:		ports/177381
Tested by:	Chris Dukes <chris.dukes.aix@gmail.com>
2013-05-06 18:37:00 +00:00
Baptiste Daroussin
9f1de9b900 Convert USE_NCURSES by USES=ncurses
Convert USE_READLINE by USES=readline
2013-05-06 15:34:17 +00:00
Alex Dupre
cc3a0b7041 Fix also -server ports with clang. 2013-05-06 14:49:11 +00:00
Frederic Culot
f9b37b6a48 - Update to 2.17.10
Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/178341
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
2013-05-06 13:09:20 +00:00
Anton Berezin
cc2f416212 Update to 0.29.
Changes:
http://search.cpan.org/dist/DBIx-Class-ResultSet-RecursiveUpdate/Changes
2013-05-06 10:11:38 +00:00
Alex Dupre
5f3465e47e Fix build with clang.
PR:		ports/176105
Submitted by:	Spil <spil.oss@gmail.com>
2013-05-06 08:52:05 +00:00
Raphael Kubo da Costa
77b19314b1 Update to 1.5.4.
PR:		ports/176640
Submitted by:	Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer)
2013-05-05 14:30:56 +00:00
Florian Smeets
5ac18767d1 Fix installation of ports that rely on cp -n for installing files. r245960
changed cp to exit with a non-zero exit code if the file exists and is not
overwritten thus causing ports to fail installing when e.g. trying to cp
.default -> .conf files that already exist.

We just ignore the error and continue, as we used to.

Reported by:	jaset
Approved by:	portmgr (bapt)
2013-05-04 22:48:03 +00:00
Florian Smeets
e2315df86d Unbreak, fetch works, tested on 2 different hosts in different locations.
Discussed with:	bapt
2013-05-04 22:14:42 +00:00
Baptiste Daroussin
e116eadca3 Fix build with bmake 2013-05-04 22:00:26 +00:00
Baptiste Daroussin
dc8c5cb37a Mark as broken: does not fetch 2013-05-04 21:24:23 +00:00
Baptiste Daroussin
e7b467e4a6 Fix build with bmake 2013-05-04 20:02:52 +00:00
Bryan Drewery
63f76304d6 - When DISABLE_MAKE_JOBS or MAKE_JOBS_UNSAFE is set, also set
MAKE_JOBS_NUMBER to 1. This makes it safe to do -j${MAKE_JOBS_NUMBER}
  without any extra logic.
- Cleanup ports working around the empty MAKE_JOBS_NUMBER
- This also fixes several ports that were expecting MAKE_JOBS_NUMBER
  to always have a number

Reviewed by:	bapt
Spotted by:	John Marino <draco@marino.st>
With hat:	portmgr
2013-05-04 14:06:08 +00:00
Matthew Seaman
7ceab77300 - Copy databases/phpmyadmin to databases/phpmyadmin35
- Update databases/phpmyadmin to 4.0.0

Version 4.0.0 is the first release of a new major version, and
involves some significant changes in functionality.  In particular it
now requires Javascript in order to operate.

Provide a new phpmyadmin35 port to track the 3.5.x branch for those
not wishing to upgrade yet.  Note that you will have to adjust your
httpd.conf if you switch to this port, as it installs the application to
${LOCALBASE}/www/phpMyAdmin35
2013-05-04 06:24:53 +00:00
Florian Smeets
112166c1f3 Update to 2.2.2 2013-05-03 22:07:58 +00:00
Sergey A. Osokin
730aef92d2 Update from 2.6.11 to 2.6.13.
PR:	178124

<ChangeLog>

[ Redis 2.6.13 ]

UPGRADE URGENCY: MODERATE, nothing very critical but upgrading
is suggested if you experienced:

1) Strange issues with Lua scripting.
2) Not reconfigured reappearing master using Sentinel.
3) Server continusly trying to save on save error.

This version of Redis may also help with AOF and slow / busy
disks and latency issues.

* [FIX] Throttle BGSAVE attempt on saving error.
* [FIX] redis-cli: raise error on bad command line switch.
* [FIX] Redis/Jemalloc Gitignore were too aggressive.
* [FIX] Test: fix RDB test checking file permissions.
* [FIX] Sentinel: always redirect on master->slave transition.
* [FIX] Lua updated to version 5.1.5. Fixes rare scripting issues.
* [NEW] AOF: improved latency figures with slow/busy disks.
* [NEW] Sentinel: turn old master into a slave when it comes back.
* [NEW] More explicit panic message on out of memory.
* [NEW] redis-cli: --latency-history mode implemented.

[ Redis 2.6.12 ]

UPGRADE URGENCY: MODERATE, nothing very critical but a few non trivial bugs.

* [BUGFIX]   redis-cli --bigkeys: don't crash with empty DB.
* [BUGFIX]   stop-writes-on-bgsave-error now works in redis.conf
* [BUGFIX]   Don't crash at startup if RDB is there but can't be opened.
* [BUGFIX]   Initial value for master_link_down_since_seconds is now huge.
* [BUGFIX]   Allow SELECT while loading the DB.
* [BUGFIX]   Don't replicate/AOF an empty MULTI/EXEC if the transaction
             is empty or containing just read-only commands.
* [BUGFIX]   EXPIRE should not be able to resurrect keys (see issue #1026).
* [IMPROVED] Extended SET back ported from Redis 2.8 / unstable
             See http://redis.io/commands/set for more information.
* [IMPROVED] Test suite improved.

</ChangeLog>
2013-05-03 17:38:24 +00:00
Emanuel Haupt
2898e3fa0c Chase security/libgcrypt update 2013-05-03 16:36:39 +00:00
Baptiste Daroussin
09d7b4e13b Fix build with bmake 2013-05-03 15:12:02 +00:00
Alex Dupre
c7fe2bb3c4 Really fix locale. 2013-05-03 14:18:14 +00:00
Matthew Seaman
0a4b684fb4 Update to 5.1.25
ChangeLog: https://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-25.html
2013-05-02 16:22:30 +00:00
Alex Dupre
4221fcf504 Add boost fix for locale. 2013-05-01 17:08:01 +00:00
Alex Dupre
21861f74a4 MySQL seems to compile correctly on 10-CURRENT. 2013-05-01 16:33:00 +00:00
Wen Heping
b0f9d50c08 - Update to 0.95.003 2013-05-01 14:51:55 +00:00
Wen Heping
36a045946b - Update to 0.5.2
PR:		178204
Submitted by:	NoC <devzone.my@gmail.com>
Approved by:	Gea-Suan Lin <gslin@gslin.org> (maintainer)
2013-05-01 07:15:53 +00:00
Anton Berezin
5ecbf1f744 Update to 0.08250.
Changes:	http://search.cpan.org/dist/DBIx-Class/Changes
2013-04-30 10:04:34 +00:00
Anton Berezin
f8d1e687ba Update to 0.00012.
Changes:	http://search.cpan.org/dist/DBIx-Class-EncodedColumn/Changes
2013-04-30 08:42:04 +00:00
Florian Smeets
8fa6ab5bfc Deprecate MySQL 5.0.X and set expiration date to 2013-06-30
Approved by:	ale
2013-04-29 22:35:12 +00:00
Frederic Culot
cf4d09185a - Update to 2.17.9
Changes:	http://www.lemke-it.com/litexec?request=pubclogcego&user=&lang=en
PR:		ports/178233
Submitted by:	Kurt Jaeger <fbsd-ports@opsec.eu> (maintainer)
2013-04-29 18:07:59 +00:00
Martin Wilke
9f3f808479 - Update to 2.5
PR:		178159
Submitted by:	ports fury
2013-04-29 14:21:23 +00:00
Baptiste Daroussin
5271da855f Rely on bsdtar to autodetermine the format of the distfiles when possible
For a while now bsdtar is able to autotermine compression and archive format.
Let's then use tar directly instead of piping to tar.

Now USE_BZIP2 and USE_XZ only set EXTRACT_SUFX to the right format
2013-04-29 08:57:12 +00:00
Alex Dupre
1a1e9ecf9c Distfile re-rolled for a typo, no changes. 2013-04-29 07:23:23 +00:00
Kubilay Kocak
8a35140e06 databases/py-redis: Update to 2.7.4
- Allow OPTIONSFILE to be overridden
- Add regression-test: target

Changes: https://github.com/andymccurdy/redis-py/blob/2.7.4/CHANGES

Approved by:	eadler, rm (mentors, implicit)
2013-04-28 21:57:02 +00:00
Chris Rees
9051d0d101 databases/postgresql-server ports: Unbreak NLS
Submitted by:	bapt
2013-04-28 18:15:06 +00:00
Frederic Culot
406e0be7ed - Update to 1.8.0
Changes:	https://github.com/openstack/swift/blob/master/CHANGELOG
PR:		ports/178117
Submitted by:	trociny@
Approved by:	Gea-Suan Lin <gslin@gslin.org> (maintainer)
2013-04-28 15:39:25 +00:00
Kubilay Kocak
d60158d113 databases/py-htsql & backends: Update to 2.3.3
- Standardise and clarify COMMENTs
- Update pkg-plist's
- Tab->space for WWW: in pkg-descr

Changes: http://htsql.org/blog/2013/htsql-2.3.3.html

Approved:	eadler, rm (mentors, implicit)
2013-04-28 14:34:12 +00:00
Chris Rees
7e146dbd2d databases/postgresql{84,91,92}-server: Readd bsd.port.pre.mk; it is required for checking existence of files in FILESDIR 2013-04-28 14:00:02 +00:00
Marcus von Appen
821843ca06 - Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here

Reviewed by:	bapt, kwm
2013-04-27 08:50:46 +00:00
Florian Smeets
3425a6db7c Merge optimizations to the rc script from r316439 and r316532. 2013-04-26 20:47:28 +00:00
Florian Smeets
b5d5bc4186 Remove MySQL 4.1, it has been unsupported upstream for almost 3.5 years.
Approved by:	ale
2013-04-26 19:52:01 +00:00
TAKATSU Tomonari
e8dd5f5241 - Update to 0.2-6
- Add LICENSE section
- Trim WWW: line in pkg-descr
2013-04-26 16:31:38 +00:00
Baptiste Daroussin
9dbc02d2c5 Convert USE_GETTEXT -> USES=gettext
While here:
- Trim headers
- Remove some useless pre.mk/post.mk
- Convert to optionsng
2013-04-26 15:10:57 +00:00
Martin Wilke
a46be53d41 - Update to 1.3.7
PR:		177762
Submitted by:	rustem.alimov@gmail.com
2013-04-26 13:29:10 +00:00
Martin Wilke
ddde2267a7 - Update to 1.5.0
PR:		177653
Submitted by:	maintainer
2013-04-26 13:25:36 +00:00
Alex Kozlov
83f02b963c - Convert USE_GETTEXT to USES (part 4)
Approved by:	portmgr (bapt)
2013-04-26 10:44:28 +00:00
Glen Barber
2add148357 Update MASTERSITES for my server to use https 2013-04-26 04:03:22 +00:00
Sunpoet Po-Chuan Hsieh
4adeca8471 - Update to 3.0.4
Changes:	https://github.com/redis/redis-rb/blob/master/CHANGELOG.md
2013-04-26 02:35:58 +00:00
Mikhail Teterin
9e001f125e Switch to using USE_MYSQL instead of explicitly depending on
mysqlclient library.

Suggested by:	Florian Smeets
2013-04-25 20:51:38 +00:00
Akinori MUSHA
c45324e9f6 - Fix problem that options dialog is popd up even if there is already
saved file.

- Remove CONFLICTS because it matches databases/ruby-bdb itself
  (Spotted by portlint).

PR:		ports/178107
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
2013-04-25 08:34:19 +00:00