Commit graph

35107 commits

Author SHA1 Message Date
Marcus von Appen
1b0994ee1e - Convert USE_PYTHON to new USES in www/
With hat:	python@
2015-01-03 08:41:20 +00:00
Sunpoet Po-Chuan Hsieh
eab56f41b6 - Fix r375988
Notified by:	antoine
2015-01-03 07:36:19 +00:00
Sunpoet Po-Chuan Hsieh
d23509afec - Update *_DEPENDS
- Add LICENSE
- Simplify Makefile
- Bump PORTREVISION for dependency change
2015-01-03 07:13:05 +00:00
Sunpoet Po-Chuan Hsieh
69bd4e546d - Add LICENSE 2015-01-03 07:13:00 +00:00
Sunpoet Po-Chuan Hsieh
ec0eb69830 - Add LICENSE 2015-01-03 07:12:54 +00:00
Kurt Jaeger
cba03c03e1 security/libgcrypt: 1.6.1 -> 1.6.2, bump depends
Changes:
- src/sexp.c (do_vsexp_sscan): Return error for invalid args.
- cipher/md.c (_gcry_md_info): Fix a segv in case of calling
  with wrong parameters.
- cipher/primegen.c (_gcry_generate_elg_prime): Change to return an
  error code, possible NULL deref in call to prime generator.
- cipher/dsa.c (generate): Take care of new return code.
- cipher/elgamal.c (generate): Change to return an error code.  Take
	care of _gcry_generate_elg_prime return code.
- ecc: Support the non-standard 0x40 compression flag for EdDSA.
- mpi: Extend the internal mpi_get_buffer.
- mpi: Fix regression for powerpc-apple-darwin detection.
- Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in
- Fix building for the x32 target without asm modules in
  mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI.
- Fix ARM assembly when building __PIC__
- mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit.
  * mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear
    allocated but not used bits before resizing.
  * tests/t-mpi-bits.c (set_bit_with_resize): New.
- Use internal malloc function in fips.c.
  * src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/.
- pubkey: Re-map all deprecated RSA algo numbers.
- cipher: Fix possible NULL dereference in cipher/md.c for being NULL.
- Fix ARMv6 detection when CFLAGS modify target CPU architecture.

PR:		193264
Approved by:	cpm@fbsd.es (maintainer)
2015-01-02 18:46:33 +00:00
Danilo Egea Gondolfo
1214b15c50 - Update to 0.81 2015-01-02 18:38:36 +00:00
Pawel Pekala
68058b3539 - Update to version 6.5.0 [1]
- Make RUN_DEPENDS path independent
- Remove GH_PROJECT, GH_TAGNAME they are by default set to suggested values
- Don't split install to 2 targets (install, post-install)
- Cleanup pkg-plist

PR:		196076 [1]
Submitted by:	Geoffroy Desvernay (maintainer) [1]
2015-01-01 20:25:36 +00:00
Pawel Pekala
a6ddfe6ef4 Update to version 3.3.11
PR:		196042
Submitted by:	m.tsatsenko@gmail.com (maintainer)
2015-01-01 18:08:23 +00:00
Sunpoet Po-Chuan Hsieh
89b5f82662 - Uncomment NO_ARCH, which should be committed in r375997 2015-01-01 16:31:00 +00:00
Sunpoet Po-Chuan Hsieh
5f1f5c5736 - Update to 5.2.11
- While I'm here, add NO_ARCH and use @dir

Changes:	http://www.sixapart.jp/movabletype/news/2014/12/24-1300.html
PR:		ports/196406
Submitted by:	Takefu <takefu@airport.fm> (maintainer)
2015-01-01 16:26:28 +00:00
Sunpoet Po-Chuan Hsieh
fee292c50d - Update *_DEPENDS: XMLRPC::Transport::HTTP was moved from net/p5-SOAP-Lite to net/p5-XMLRPC-Lite
- Bump PORTREVISION for dependency change

With hat:	perl
2015-01-01 16:25:44 +00:00
Sunpoet Po-Chuan Hsieh
664a4ba4b1 - Update *_DEPENDS: require p5-WWW-Scraper-ISBN 1.00+ which includes p5-WWW-Scraper-ISBN-Driver
- Bump PORTREVISION for dependency change
2015-01-01 16:24:20 +00:00
Sunpoet Po-Chuan Hsieh
086bba0d72 - Update to 0.41
Changes:	http://search.cpan.org/dist/WWW-Scraper-ISBN-Amazon_Driver/Changes
2015-01-01 16:24:14 +00:00
Sunpoet Po-Chuan Hsieh
65740cb069 - Mark CONFLICTS_INSTALL with www/p5-WWW-Scraper-ISBN
- Mark DEPRECATED and set EXPIRATION_DATE to 2015-01-31
2015-01-01 16:24:09 +00:00
Sunpoet Po-Chuan Hsieh
962a12e1a2 - Mark CONFLICTS_INSTALL with www/p5-WWW-Scraper-ISBN
- Mark DEPRECATED and set EXPIRATION_DATE to 2015-01-31
2015-01-01 16:24:03 +00:00
Sunpoet Po-Chuan Hsieh
3513ca511d - Update to 1.02
- Add LICENSE
- Mark CONFLICTS_INSTALL with www/p5-WWW-Scraper-ISBN-Driver and www/p5-WWW-Scraper-ISBN-Record

Changes:	http://search.cpan.org/dist/WWW-Scraper-ISBN/Changes
2015-01-01 16:23:57 +00:00
Sunpoet Po-Chuan Hsieh
28677ad8d5 - Fix OSVERSION and WITH_OPENSSL_PORT check
We have 4 cases:
1. OSVERSION >= 1000000 and WITH_OPENSSL_PORT undefined
2. OSVERSION >= 1000000 and WITH_OPENSSL_PORT defined
3. OSVERSION < 1000000 and WITH_OPENSSL_PORT undefined
4. OSVERSION < 1000000 and WITH_OPENSSL_PORT defined

nghttp2 builds fine in first 2 cases, and it fails in last 2 cases. The
".elif defined(WITH_OPENSSL_PORT)" in r347801 matches case 2 and 4, therefore
users of case 2 are affected. We simplify the check to OSVERSION only since
there is no need to check OpenSSL version.

Notified by:	Beeblebrox <zaphod@berentweb.com>
2015-01-01 16:10:48 +00:00
Sunpoet Po-Chuan Hsieh
79bcf980d4 - Update to 5.90077
- Remove leading definite article from COMMENT
- Add PORTSCOUT

Changes:	http://search.cpan.org/dist/Catalyst-Runtime/Changes
2015-01-01 16:09:56 +00:00
Raphael Kubo da Costa
b5a972b8b2 Add a patch (sent upstream) to fix the creation of empty directories with CMake 3.1.0.
No PORTREVISION bump, as there should not be any functional changes. Tested
with CMake 3.0.2.
2014-12-31 17:41:04 +00:00
Rene Ladan
82e02f8fc1 Remove expired ports:
2014-12-31 graphics/ender: Unused by EFL 1.11
2014-12-31 graphics/enesim: Unused by EFL 1.11
2014-12-31 graphics/etch: Unused by EFL 1.11
2014-12-31 www/egueb: Unused by EFL 1.11
2014-12-31 x11-wm/e17-module-comp-scale: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-eektool: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-elfe: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-empris: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-engage: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-eooorg: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-everything-aspell: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-everything-mpris: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-everything-pidgin: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-everything-shotgun: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-everything-wallpaper: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-exebuf: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-execwatch: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-flame: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-iiirk: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-itask: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-mail: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-moon: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-news: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-photo: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-rain: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-screenshot: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-slideshow: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-taskbar: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-uptime: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-weather: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-winlist-ng: Broken and updates aren't available
2014-12-31 x11-wm/e17-module-winselector: Broken and updates aren't available
2014-12-31 17:21:52 +00:00
Wen Heping
9c7e4038f7 - Update to 5.70
Changes: http://search.cpan.org/src/SRI/Mojolicious-5.70/Changes

PR:		196285
Submitted by:	adamw@
2014-12-31 14:29:13 +00:00
Wen Heping
1dd76f801c - Update to 1.6.2
PR:		196368
Submitted by:	fbsd@opal.com(maintainer)
2014-12-31 13:36:02 +00:00
Kubilay Kocak
7f2f46eed2 www/py-django_compressor: Update to 1.4
- Update to 1.4
- Update Python bits to USES / USE_PYTHON
- Extend Python compatibility to 3.x
- Add SLIMIT option
- Switch BeautifulSoup dependency to 4.x
- Update pkg-desc

PR:		191387
Submitted by:	Melvyn Sopacua <melvyn magemana nl>
Approved by:	maintainer timeout (4 months)
2014-12-31 06:41:03 +00:00
Alex Dupre
eeb1dbc8d4 Update to 4.3.6 release. 2014-12-30 09:52:26 +00:00
Alex Dupre
ff6a32181c Update to 4.3.3 release. 2014-12-30 09:52:06 +00:00
Dmitry Sivachenko
c6d1ff5df7 Update to version 2.0.9. 2014-12-30 09:10:32 +00:00
Muhammad Moinur Rahman
9885b64ddb www/cgicc: Update version 3.2.14=>3.2.16
- Cleanup plist (@dir)
- Change INSTALL_TARGET to install-strip

Differential Revision:	https://reviews.freebsd.org/D1394
Approved by:	bapt(mentor)
2014-12-30 08:44:39 +00:00
Baptiste Daroussin
a34cd4a383 Allow packaging as a user
Cleanup plist
2014-12-28 19:46:53 +00:00
Pawel Pekala
f5ce67fe47 - Update to version 272
- Hand over to new maintainer

PR:		196003
Submitted by:	maintainer
2014-12-28 18:42:49 +00:00
Baptiste Daroussin
8d3c5ed23e Convert to USES=autoreconf 2014-12-28 18:39:11 +00:00
Pawel Pekala
086d35b297 Update to version 6.2.9 (bug and security fixes)
Changelog: http://wiki.typo3.org/TYPO3_CMS_6.2.9

PR:		196020
Submitted by:	maintainer
2014-12-28 18:28:32 +00:00
Vanilla I. Shu
c43dca7117 Upgrade to 1.3.4.
PR:		ports/196322
Submitted by:	Franco Fichtner <franco@lastsummer.de>
Approved by:	maintainer
2014-12-28 15:42:27 +00:00
Sunpoet Po-Chuan Hsieh
f70e67cbc5 - Update to 0.13.3
- Update WWW

Changes:	https://github.com/jnunemaker/httparty/blob/master/History
2014-12-28 13:16:41 +00:00
Sunpoet Po-Chuan Hsieh
e1334008cd - Add py-spyne 2.10.10
Spyne is a Python RPC toolkit that makes it easy to expose online services that
have a well-defined API using multiple protocols and transports.

It integrates with popular Python web frameworks as well as libraries like
SQLAlchemy to keep your code as DRY (Don't Repeat Yourself) as possible.

WWW: https://pypi.python.org/pypi/spyne
WWW: http://spyne.io/
2014-12-28 13:14:37 +00:00
Sunpoet Po-Chuan Hsieh
3372182dc8 - Update to 2.1.16
Changes:	https://github.com/npm/npm/releases
2014-12-28 13:14:25 +00:00
Wen Heping
a138ae58c5 - Update to 1.11 [1]
- Add LICENSE
- Remove blank line in Makefile

PR:		196308 [1]
Submitted by:	koue@chaosophia.net [1]
2014-12-28 04:54:55 +00:00
Kurt Jaeger
db46d2784d www/varnish: 3.0.5 -> 3.0.6
ChangeLog
https://www.varnish-cache.org/trac/browser/doc/changes.rst

Requested by:	jedrzejczak.michal@gmail.com
2014-12-27 15:18:14 +00:00
Jimmy Olgeni
f419040e57 Remove accidental %%RUBY_SUFFIX%%, which may break the plist depending
on your Ruby version.
2014-12-27 10:33:04 +00:00
Raphael Kubo da Costa
477f6d1480 Depend on libpng.so, not libpng15.so.
Approved by:	gnome (kwm)
2014-12-26 21:59:11 +00:00
Antoine Brodin
53925843da Deprecate ports broken for more than 6 months 2014-12-26 21:47:10 +00:00
Mark Felder
4494d43b48 Update dependencies
They changed slightly since 3.3.0 and I never noticed when I committed
3.5.0.

PR:		196159
2014-12-26 20:13:07 +00:00
Adam Weinberger
ed9c500d88 Add www/p5-Mojolicious-Plugin-TtRenderer, a template-toolkit renderer for
Mojolicious.
2014-12-26 19:36:54 +00:00
Baptiste Daroussin
086a1c998a Update to 0.5 2014-12-25 21:18:11 +00:00
Koop Mast
67ec4d9e63 Add webkit2-gtk3 2.6.4.
This port only supplies the WebKit2 library for gtk3, and has some API changes.
The webkitgtk project switch to cmake. Due to issues I don't understand
  yet we can't use USES=cmake yet.
Use USES=compiler:c++11-lib to replace custom dancing around with clang
  and OSVERSION.
Make 8.x as IGNORE, because of c++ and other issues.
2014-12-25 21:10:27 +00:00
Baptiste Daroussin
2d7cbb3ad2 Bump portrevision after png update 2014-12-25 20:55:54 +00:00
Baptiste Daroussin
bb21093773 Bump portrevision after png update 2014-12-25 20:54:41 +00:00
Koop Mast
8473fcddb8 Update to 2.4.7.
Sync some changes from the webkit-gtk3 port.
The 2.4.x series is the last webkitgtk version that will have WebKit1.
2014-12-25 19:12:08 +00:00
Antoine Brodin
7ae46e9b12 Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade 2014-12-25 19:04:25 +00:00
Wen Heping
13ebb3c3bf The ajax keyword which is exported by this plugin allow you to
define a route handler optimized for Ajax queries.

WWW: https://metacpan.org/pod/Dancer2::Plugin::Ajax

PR:		196253
Submitted by:	Henk van Oers<hvo.pm@xs4all.nl>
2014-12-25 13:16:27 +00:00