1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
Commit Graph

383878 Commits

Author SHA1 Message Date
Jimmy Olgeni
bc1e1a2c08 Upgrade textproc/elixir-earmark to version 0.2.0. 2015-12-29 06:28:03 +00:00
Steven Kreuzer
63a2cbdc52 Update to version 2.2.1 2015-12-29 03:48:37 +00:00
Martin Wilke
04c054e99d - Update to 1.039
Changes: http://cpansearch.perl.org/src/BDFOY/Test-Prereq-1.039/Changes

PR:		205674
Submitted by:	maintainer
2015-12-29 01:17:52 +00:00
Martin Wilke
b054ae551b - Update to 2.1.3
PR:		205666
Submitted by:	xmj
2015-12-29 01:15:45 +00:00
Marcelo Araujo
99438903fd - Update to 2015.12.23.
PR:		ports/205665
Submitted by:	me@janh.de
2015-12-29 01:01:06 +00:00
Marius Strobl
ae441ebb7b - Update to 3.02a04
- Fix build when `uname -m` != `uname -p`
2015-12-29 00:33:56 +00:00
Marius Strobl
d264c45f16 - Update to 3.01
- Fix build when `uname -m` != `uname -p` [1]

PR:		191424, 197794 [1]
2015-12-29 00:33:00 +00:00
Raphael Kubo da Costa
110f6c1243 Unmark BROKEN, the port fetches fine. 2015-12-28 23:34:01 +00:00
Raphael Kubo da Costa
3d6f2a19a7 Fix MASTER_SITES and unmark BROKEN. 2015-12-28 23:32:58 +00:00
Raphael Kubo da Costa
82a235e09a Switch to new MASTER_SITE and unmark BROKEN. 2015-12-28 23:28:08 +00:00
Raphael Kubo da Costa
df1bc72eaf Unmark BROKEN.
The port fetches just fine.
2015-12-28 23:24:57 +00:00
Raphael Kubo da Costa
d108e3a9a2 Fix MASTER_SITES and unmark broken. 2015-12-28 23:22:45 +00:00
Raphael Kubo da Costa
5d4d3487c4 Fix MASTER_SITES and unmark broken. 2015-12-28 23:22:39 +00:00
Raphael Kubo da Costa
0ac18bd8a7 Fix MASTER_SITES and unmark broken. 2015-12-28 23:19:55 +00:00
Raphael Kubo da Costa
d5a30f1f2f Fix MASTER_SITES and unmark broken. 2015-12-28 23:19:05 +00:00
Raphael Kubo da Costa
987bd278e9 Update MASTER_SITES to avoid falling back to distcaches. 2015-12-28 23:12:34 +00:00
Raphael Kubo da Costa
80e6fa41f1 Adjust MASTER_SITES and unbreak. 2015-12-28 23:11:16 +00:00
Raphael Kubo da Costa
771c194a28 Fix `make fetch'.
Update MASTER_SITES.
2015-12-28 22:57:23 +00:00
Raphael Kubo da Costa
59b5b29b7d Fix `make fetch'.
Point to the new location in the same domain.
2015-12-28 22:53:40 +00:00
Carlo Strub
d5b12d2ebe django-simple-history stores Django model state on every create/update/delete.
WWW: https://github.com/treyhunner/django-simple-history
2015-12-28 22:50:04 +00:00
Jason Unovitch
7be45bc5f2 games/lwjgl: pass maintainership to PR submitter
PR:		205435
Submitted by:	Ilia Skalozubov <freebsd@skinc.ru>
2015-12-28 21:56:46 +00:00
Koop Mast
0f359e9403 Fix the build when libelf from ports is used (on dragonfly).
Reported by:	marino@
2015-12-28 18:58:52 +00:00
Raphael Kubo da Costa
8ceb79f0fe Make sure ${WRKSRC}/lib is passed before /usr/local/lib when linking.
This is another shot at fixing the linkage problems that have plagued our
users particularly when upgrading from Qt 5.x to 5.(x+1). Quick recap: in
Qt5, qmake will by default pass QMAKE_LIBDIR to the linker before other
directories such as ${WRKSRC}/lib, which is where the port's libraries are
built. When a user is upgrading Qt, we can end up with the following linker
line:
  c++ -o SomeBinary -lfoo1 -L/usr/local/lib -L${WRKSRC}/lib -lfoo2 -lfoo3
If libfoo2.so is being built by the port and an older version is currently
installed on the system, /usr/local/lib/libfoo2.so will be picked up instead
of the newly-built ${WRKSRC}/lib/libfoo2.so. At best things just work, at
worst SomeBinary needs some new symbol that is not present in the old
libfoo2.so and linking fails. Case in point: bug 198720.

The previous approach, adopted when fixing bug 194088, was to stop setting
QMAKE_{INC,LIB}DIR in the FreeBSD mkspecs and set the CPATH and LIBRARY_PATH
environment variables in Uses/qmake.mk. This way we just did not pass
-L/usr/local/lib to the linker at all and things mostly worked. However,
people using Qt to build their own software without the ports tree were out
of luck, as they would then need need to deal with passing
/usr/local/{include,lib} to the compiler/linker themselves (bug 195105). Not
only that, but if a dependency mentioned /usr/local/lib we would still have
problems anyway (in bug 198720, the GStreamer pkg-config files contain
-L/usr/local/lib, for example).

We now solve the issue by setting the QMAKE_LIBDIR_FLAGS variable in
.qmake.cache to ${WRKSRC}/lib instead. qmake appends the value of
QMAKE_LIBDIR to QMAKE_LIBDIR_FLAGS, so we are always sure -L${WRKSRC}/lib
will come before -L/usr/local/lib in the linker options. Moreover, qmake is
smart enough to automatically call sed(1) and remove references to
${WRKSRC}/lib from .prl and .pc files when installing them.

PR:		194088
PR:		195105
PR:		198720
MFH:		2015Q4
2015-12-28 18:51:41 +00:00
Jan Beich
ecefeb2a17 Document recent ffmpeg vulnerabilities 2015-12-28 18:21:17 +00:00
Jan Beich
0260c9b6b1 www/firefox-esr: update to 38.5.2
Changes:	https://hg.mozilla.org/releases/mozilla-esr38/rev/b8244a3f55e1
Security:	2c2d1c39-1396-459a-91f5-ca03ee7c64c6
MFH:		2015Q4
2015-12-28 18:20:40 +00:00
Jan Beich
a03fb9505a mail/thunderbird: update to 38.5.0
Changes:	https://hg.mozilla.org/releases/comm-esr38/rev/b88229610b41
PR:		205653
Submitted by:	Christoph Moench-Tegeder <cmt@burggraben.net>
Security:	2c2d1c39-1396-459a-91f5-ca03ee7c64c6
MFH:		2015Q4
2015-12-28 18:20:02 +00:00
Jan Beich
87f00cf346 www/firefox: update to 43.0.3
Mainly for YouTube with FFMPEG=off. [1]

Changes:	https://hg.mozilla.org/releases/mozilla-release/rev/7f685bdc616a [1]
PR:		205652
Submitted by:	Christoph Moench-Tegeder <cmt@burggraben.net>
Security:	10f7bc76-0335-4a88-b391-0b05b3a8ce1c (linux-only)
MFH:		2015Q4
2015-12-28 18:19:23 +00:00
Jan Beich
09d32d986f Document NSS vulnerability fixed by ports r404007
PR:		205652
Reported by:	Christoph Moench-Tegeder <cmt@burggraben.net>
2015-12-28 18:18:45 +00:00
Jan Beich
8af65d5d19 gecko: phase out GStreamer support
H.264 is decoded by FFmpeg directly since Firefox 43.0. GStreamer
doesn't support DASH and no longer used by default since r397984
brings libavcodec.so.

https://bugzilla.mozilla.org/show_bug.cgi?id=1234092
2015-12-28 18:18:03 +00:00
Jan Beich
8be5bca6a8 gecko: enable PULSEAUDIO by default (mainly for WebRTC)
ALSA currently relies on in-kernel support to enumerate available audio
devices for getUserMedia i.e., to detect a microphone. So, build with
PULSEAUDIO late bindings by default preferred over ALSA, over OSS.

Nop for RUN_DEPENDS or users who previously disabled PULSEAUDIO.
2015-12-28 18:17:22 +00:00
Raphael Kubo da Costa
4f127de519 Add archivers/quazip-qt5.
This is the Qt5 version of archivers/quazip. From pkg-descr:

  QuaZIP is a simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package that
  can be used to access ZIP archives. It uses the Qt toolkit.

  WWW: http://quazip.sourceforge.net/

This port was worked on by me and Tobias Berner <tcberner@gmail.com>.
2015-12-28 18:06:09 +00:00
Sunpoet Po-Chuan Hsieh
953a2904ad - Update to 2015.12.27 2015-12-28 16:31:03 +00:00
Sunpoet Po-Chuan Hsieh
e3d618cfad - Update to 2015.12.27 2015-12-28 16:30:58 +00:00
Sunpoet Po-Chuan Hsieh
a348007622 - Update to 2015.12.27 2015-12-28 16:30:54 +00:00
Sunpoet Po-Chuan Hsieh
59f98b4a10 - Update to 1.16
- Add LICENSE
- Add NO_ARCH
- Sort PLIST

Changes:	http://search.cpan.org/dist/XML-XPath/Changes
2015-12-28 16:30:49 +00:00
Sunpoet Po-Chuan Hsieh
56e2134338 - Update to 0.81
Changes:	http://search.cpan.org/dist/Net-GitHub/Changes
2015-12-28 16:30:44 +00:00
Sunpoet Po-Chuan Hsieh
957464e3db - Update to 0.35
Changes:	http://search.cpan.org/dist/MooseX-Types-Structured/Changes
2015-12-28 16:30:39 +00:00
Sunpoet Po-Chuan Hsieh
f19579b920 - Add rubygem-mailboxer 0.13.0
This project is based on the need for a private message system for ging /
social_stream. Instead of creating our core message system heavily dependent on
our development, we are trying to implement a generic and potent messaging gem.

After looking for a good gem to use we noticed the lack of messaging gems and
functionality in them. Mailboxer tries to fill this void delivering a powerful
and flexible message system. It supports the use of conversations with two or
more participants, sending notifications to recipients (intended to be used as
system notifications “Your picture has new comments”, “John Doe has updated his
document”, etc.), and emailing the messageable model (if configured to do so).
It has a complete implementation of a Mailbox object for each messageable with
inbox, sentbox and trash.

The gem is constantly growing and improving its functionality. As it is used
with our parallel development ging / social_stream we are finding and fixing
bugs continously. If you want some functionality not supported yet or marked as
TODO, you can create an issue to ask for it. It will be great feedback for us,
and we will know what you may find useful in the gem.

WWW: https://github.com/mailboxer/mailboxer
2015-12-28 16:30:30 +00:00
Sunpoet Po-Chuan Hsieh
e1b9dde9be - Add rubygem-foreigner 1.7.4
Foreigner introduces a few methods to your migrations for adding and removing
foreign key constraints. It also dumps foreign keys to schema.rb.

The following adapters are supported:
- mysql2
- postgres
- sqlite (foreign key methods are a no-op)

WWW: https://github.com/matthuhiggins/foreigner
2015-12-28 16:30:02 +00:00
Sunpoet Po-Chuan Hsieh
f145619666 - Update RUN_DEPENDS: use Rails 4
- Bump PORTREVISION for dependency change
2015-12-28 16:29:21 +00:00
Sunpoet Po-Chuan Hsieh
b00d08eb65 - Add rubygem-ransack 1.7.0
Ransack is a rewrite of MetaSearch created by Ernie Miller and maintained by
Ryan Bigg, Jon Atack and a great group of contributors. While it supports many
of the same features as MetaSearch, its underlying implementation differs
greatly from MetaSearch, and backwards compatibility is not a design goal.

Ransack enables the creation of both simple and advanced search forms for your
Ruby on Rails application (demo source code here). If you're looking for
something that simplifies query generation at the model or controller layer,
you're probably not looking for Ransack (or MetaSearch, for that matter). Try
Squeel instead.

WWW: https://github.com/activerecord-hackery/ransack
2015-12-28 16:29:03 +00:00
Sunpoet Po-Chuan Hsieh
b6ce7532b8 - Add rubygem-polyamorous 1.3.0
Polyamorous is an extraction of shared code from the Active Record Hackery gems
Ransack, Squeel and MetaSearch by Ernie Miller and maintained by Ryan Bigg,
Xiang Li, Jon Atack and a great little group of contributors.

It is an internal library for extending various versions of Active Record with
polymorphism. There is no public API, so it's :nodoc:. Move along. Nothing to
see here.

WWW: https://github.com/activerecord-hackery/polyamorous
2015-12-28 16:28:12 +00:00
Sunpoet Po-Chuan Hsieh
4564522d58 - Add rubygem-rspec-rails 3.4.0
rspec-rails is a testing framework for Rails 3.x and 4.x.

WWW: https://github.com/rspec/rspec-rails
2015-12-28 16:27:02 +00:00
Sunpoet Po-Chuan Hsieh
088437c179 - Fix MASTER_SITES (unfetchable after r404654) 2015-12-28 16:23:21 +00:00
Martin Wilke
96ada5602f - Update to 2.2.11
PR:		205664
Submitted by:	maintainer
2015-12-28 16:10:51 +00:00
Raphael Kubo da Costa
f6c84ec3a6 Stop setting WRKSRC after r404670. 2015-12-28 16:04:29 +00:00
Raphael Kubo da Costa
c238a86783 Unbreak `make fetch'.
The port's releases are now available from GitHub. diff -uprN between the old
tarball from distcache.FreeBSD.org and the one from GitHub shows that the only
difference is that two files are no longer present: test/kar/MacRoman.praat and
test/kar/unicode16.praat.
2015-12-28 16:03:27 +00:00
Christian Weisgerber
fdea12eb58 Move homepage to https; add license. 2015-12-28 15:49:48 +00:00
Martin Wilke
2f72a31a57 - Update to 2.3.4
PR:		205659
Submitted by:	maintainer
2015-12-28 15:48:47 +00:00
Martin Wilke
01b3997535 - Update to 2.3.4
PR:		205658
Submitted by:	maintainer
2015-12-28 15:48:16 +00:00