Tijl Coosemans
da7b909534
Set NOPRECIOUSMAKEVARS so bsd.port.mk doesn't pass ARCH to submakes.
...
PR: 204732
2015-11-22 19:26:16 +00:00
Danilo Egea Gondolfo
3f4a06358b
- Update to 1.5.40
2015-11-22 18:47:24 +00:00
Danilo Egea Gondolfo
17bff37091
- Update to 0.32.0
2015-11-22 18:47:06 +00:00
Sergey A. Osokin
414f51cc12
Upgrade third-party lua module from 0.9.18 to 0.9.19.
2015-11-22 18:33:05 +00:00
Kurt Jaeger
ffb2f86e9f
security/libgcrypt: Re-add missing patch
...
- This patch was removed when updating to 1.6.4, so the patch needs
to be put back in order to solve the bug 204399.
PR: 204600
Submitted by: Carlos J. Puga Medina <cpm@fbsd.es> (maintainer)
2015-11-22 17:33:05 +00:00
Kurt Jaeger
f0bbc7efad
multimedia/mpv: fix typo INSTALL_ICONS -> INSTALLS_ICONS
...
PR: 204599
2015-11-22 17:16:08 +00:00
Kurt Jaeger
f8472fb7bc
multimedia/mpv: 0.12.0 -> 0.13.0
...
Changes:
https://github.com/mpv-player/mpv/releases/tag/v0.13.0
PR: 204599
Submitted by: Carlos J. Puga Medina <cpm@fbsd.es> (maintainer)
2015-11-22 17:14:36 +00:00
Stephen Montgomery-Smith
a38e17ce02
- Give maintainership to stephen@, This will help him track subtle C++
...
errors. These errors also break cad/netgen.
2015-11-22 16:55:34 +00:00
Jason Unovitch
256fab819d
mail/phplist: fix spelling error LICENSE_FILe -> LICENSE_FILE (portlint)
2015-11-22 15:56:09 +00:00
Jason Unovitch
fde06c9470
mail/phplist: update 3.2.1 -> 3.2.3
...
Changes: https://github.com/phpList/phplist3/compare/v3.2.1...v3.2.3
PR: 204726
Submitted by: Krzysztof <ports@bsdserwis.com> (maintainer)
2015-11-22 15:54:03 +00:00
Matthew Seaman
525f891aa0
Remove outdated comment. pkg(8) handles empty dirs just fine, and the
...
code was changed long ago to account for that.
2015-11-22 15:17:40 +00:00
Jason Unovitch
1b30014141
textproc/kibana41: update 4.1.2 -> 4.1.3
...
- Update PORTVERSION, distinfo, and pkg-plist for 4.1.3
- Update PKGNAMESUFFIX to reflect directory change in preparation of
upcoming Kibana 4.2 port that requires Elasticsearch 2.0
- Explain Elasticsearch compatible version range in pkg-descr
textproc/Makefile, MOVED: Chase Kibana rename kibana4 -> kibana41
Changes: https://www.elastic.co/blog/kibana-4-2-1-and-4-1-3
Submitted by: Sergey Kozlov <kozlov.sergey.404@gmail.com> (maintainer)
Security: CVE-2015-8131
Security: https://vuxml.FreeBSD.org/freebsd/fb2475c2-9125-11e5-bd18-002590263bf5.html
Differential Revision: https://reviews.freebsd.org/D4226
MFH: 2015Q4
X-MFH-With: r398461 (Kibana 4.1.2 update)
2015-11-22 14:55:52 +00:00
Jason Unovitch
2ac3d93b1b
Document Kibana CSRF attack vulnerability
...
Security: CVE-2015-8131
Security: https://vuxml.FreeBSD.org/freebsd/fb2475c2-9125-11e5-bd18-002590263bf5.html
2015-11-22 14:41:24 +00:00
Dmitry Marakasov
9c6fb73784
- Update graphics/libraw to 0.17.0
...
- While here, minor port cleanup, switch to options helpers
- Bump PORTREVISIONs of consumers as soversion has changed
PR: 204553
Submitted by: graham@menhennitt.com.au
2015-11-22 12:42:48 +00:00
Alexey Dokuchaev
eba4f3e9a4
Make installation of sample files optional (as port examples).
2015-11-22 11:40:29 +00:00
Palle Girgensohn
da6a8a3291
Use USES=pgsql instead of hardwiring a postgresql version
...
PR: 204719
Submitted by: Rainer Hurling<rhurlin@gwdg.de> (maintainer)
2015-11-22 11:33:58 +00:00
Johan van Selst
4472031417
- Make sure installed egrep/fgrep run correct GNU grep rather than base grep
...
- Bump PORTREVISION
2015-11-22 11:33:57 +00:00
Andrew Turner
87e9985dbe
devel/nspr: Add support for arm64.
...
PR: 203353
Approved by: jbeich
2015-11-22 10:26:23 +00:00
Koop Mast
ef3b873d94
Update ImageMagick7 to 20151120 snapshot.
...
* Convert the custom test target into a do-test target and run it when
the TESTS options is selected.
* Sort plist
2015-11-22 10:15:41 +00:00
Koop Mast
e1d100181e
Update ImageMagick to 6.9.2-6.
...
* Convert the custom test target into a do-test target and run it when
the TESTS options is selected.
* Sort plist
2015-11-22 10:15:06 +00:00
Koop Mast
a3f5f0c108
Revert back to 0.4.1.
...
This needs a newer glib then is in ports.
Don't touch the ports that have a dependancy on this since they only
use it at build time. And no portepoch since it didn't build anyway.
Submitted by: antoine@
Pointy hat to: kwm@
2015-11-22 10:08:30 +00:00
John Marino
6819d5d636
Mk/Scripts/smart_makepatch.sh: Fix multi-patch file and locals bug
...
There were two issues with the new smart_makepatch script.
1) use of "local" declaration
All function variables were declared "local" during the review. This
caused the script to break, at least on FreeBSD 9.2. Given that it's
not being seen on 9.3R or later, it might be a bug in Bourne shell that
has since been fixed.
e.g. This resulted in stderr error on second iteration:
local contains=$(grep "^+++ " ${existing_patch} | awk '{x++; print x}')
however, this works fine:
local contains
contains=$(grep "^+++ " ${existing_patch} | awk '{x++; print x}')
To be safe, all local variables are assigned with $(<shell cmd>) on
separate lines now.
2) The comment extraction was flawed for files that contain multiple
patches. It was not counting the hunk lines properly which caused some
portion of a patch to be considered as a comment for the next patch. The
hunk traversal algorithm has been fixed.
Since 1) involved the introduction of local declarations that broke the
script and since only Scripts/smart_makepatch.sh is touched, I will
piggy-back on the original approval. The fix was tested with devel/nspr,
the port listed in the PR, which uses multi-patch files.
Approved by: portmgr
Differential Revision: D4136
PR: 204725
2015-11-22 09:18:07 +00:00
Alexey Dokuchaev
08414216f2
- Update to version 2.5
...
- Define LICENSE (GPLv2), switch to USES=localbase
- Drop redundant DISTNAME and CONFIGURE_ARGS assignments
- Remove old-school attribution from pkg-descr
PR: 203959 (modified)
Approved by: maintainer timeout (33 days)
2015-11-22 08:03:51 +00:00
Kurt Jaeger
7583c9528b
sysutils/tuptime: small fixes
...
- correct pkg-message and install upgrade scripts for older databases
PR: 204145
Submitted by: ricardo.fraile@gmail.com
Approved by: jeremy@smart-serv.net (maintainer)
2015-11-22 08:02:41 +00:00
Antoine Brodin
a91eabe49f
Unbreak INDEX with fmake:
...
"Makefile", line 54: Unassociated shell command "# ${LR_MOD_DIR}/car/INDEX:${PORTSDIR}/math/R-cran-car"
fmake: fatal errors encountered -- cannot continue
2015-11-22 07:45:11 +00:00
Thomas Zander
369f921d95
Add non-default OPTION to support NEON instructions on arm
...
Include new patch from jbeich:
- Add NEON OPTION on arm; no changes in default OPTIONs
- Port now assumes at least armv7-a if user selects NEON
PR: 204345
Submitted by: gonzo@FreeBSD.org , jbeich@FreeBSD.org
2015-11-22 07:19:55 +00:00
Muhammad Moinur Rahman
4f6f6be6f6
net/p5-File-Rsync: Update version 0.45=>0.48
...
- Mark NO_ARCH
- Add new BUILD_DEPENDS
- Make patch files 'make makepatch' compatible
2015-11-22 04:50:46 +00:00
Warner Losh
b02c82497d
Use the PyPi version instead. Add dependency for six missed in the
...
last commit. Use the PyPi version instead of the made up one.
Bump PORTEPOCH to 1 because 0.7.117 is less than 20151118.
Differential Revision: https://reviews.freebsd.org/D4248
2015-11-22 03:25:13 +00:00
Jason Unovitch
062498b31d
Document code execution via a format string vulnerability in a2ps
...
Security: CVE-2015-8107
Security: https://vuxml.FreeBSD.org/freebsd/e359051d-90bd-11e5-bd18-002590263bf5.html
2015-11-22 02:12:43 +00:00
Jason Unovitch
2a176a5014
Hook sysutils/py-dlipower to the build (chase r402210)
2015-11-22 01:59:48 +00:00
Jason Unovitch
019a165667
security/govpn: update 4.1 -> 4.2
...
Changes:
- Fixed non-critical bug when server may fail if up-script is not executed
successfully.
PR: 204609
Submitted by: Sergey Matveev <stargrave@stargrave.org> (maintainer)
2015-11-22 01:41:28 +00:00
Warner Losh
e1e4f3641e
Create dlipower, a python-based control program for Data Logger Inc's
...
various web-based power strips.
2015-11-22 01:09:49 +00:00
Koop Mast
9ae266d1f1
Update appstream-glib to 0.5.4.
...
Switch from custom code to using USES=libarchive.
Adjust BUILD_DEPEND lines in where needed.
2015-11-22 00:52:13 +00:00
Dmitry Marakasov
17ff68886a
Use ?= for setting PORTREVISION to allow it to be overridden in slave ports, namely gimp-gutenprint
...
Reported by: mcdouga9 at egr dot msu dot edu
Approved by: portmgr blanket
2015-11-22 00:51:14 +00:00
Dmitry Marakasov
c664a6a84c
- Add LICENSE_FILE
...
- Pet portlint
- Switch to options helpers
2015-11-22 00:39:57 +00:00
Koop Mast
f1f581a883
Update Gstreamer suite to 1.6.1.
2015-11-21 23:04:40 +00:00
Muhammad Moinur Rahman
f23cc2478e
net/ndpi: Update version 1.6=>1.7
2015-11-21 22:35:39 +00:00
Kurt Jaeger
c6c0fe495d
www/p5-pQuery: 0.09 -> 0.23
...
Changes:
http://cpansearch.perl.org/src/INGY/pQuery-0.23/Changes
PR: 204308
Submitted by: Torsten Zuehlsdorff <ports@toco-domains.de>
Approved by: tobez (maintainer timeout)
2015-11-21 21:26:03 +00:00
Alex Kozlov
bdc39ceec7
- Unbreak, distfile has been rerolled
...
- Update pkg-descr
2015-11-21 21:08:51 +00:00
Kurt Jaeger
744045bfca
dns/totd: new MASTER_SITES, unbreak, point WWW to new site
...
PR: Chris Hutchinson <portmaster@bsdforge.com>
Approved by: ed (maintainer timeout)
2015-11-21 20:51:14 +00:00
Antoine Brodin
eafca35fde
Simplify
2015-11-21 20:44:18 +00:00
Thierry Thomas
7aeddff2aa
Upgrade to 5.1.24.
2015-11-21 20:42:57 +00:00
Muhammad Moinur Rahman
dd12faabf8
sysutils/dar: Add new OPTIONS
...
- Add ZLIB, BZIP2, LZMA and GPGME support in the new version
PR: 204715
Submitted by: neil@darlow.co.uk
2015-11-21 20:31:37 +00:00
Raphael Kubo da Costa
175a4107e6
Update to 2.2.1.
...
Upstream changes:
- ensure that TLS sockets are not double-initialized
- add :addresses to connect options with multiple ports
- recover from connection.close by default
PR: 204322
Submitted by: Dave Cottlehuber <dch@skunkwerks.at>
Approved by: maintainer timeout (15 days)
2015-11-21 20:23:05 +00:00
Jan Beich
8c436fd7ac
mail/thunderbird: update to 38.4.0
...
Changes: https://www.mozilla.org/en-US/thunderbird/38.4.0/releasenotes/
MFH: 2015Q4
Security: 9d04936c-75f1-4a2c-9ade-4c1708be5df9
2015-11-21 20:05:03 +00:00
Jan Beich
c68b369d27
www/seamonkey-i18n: unbreak after r401981
...
=======================<phase: configure >============================
===> seamonkey-i18n-2.39 cannot install: seamonkey versions mismatch:
seamonkey-39 is installed and wanted version is seamonkey-.
*** Error code 1
PR: 204692
Reported by: pkg-fallout, martin.dieringer@gmx.de
MFH: 2015Q4
X-MFH-With: r401981
2015-11-21 20:04:28 +00:00
Raphael Kubo da Costa
a48a7f6b5e
Update to 2.4.7 and change maintainer's email address.
...
PR: 204630
Submitted by: pakhom@pakhom.spb.ru (maintainer)
2015-11-21 20:02:46 +00:00
Dirk Meyer
598b762566
- make portlint happier
2015-11-21 20:02:43 +00:00
Dirk Meyer
4d508758c3
- rename MAN1
2015-11-21 20:01:12 +00:00
Koop Mast
9d85f7d743
Add CPE info, and fix some whitespace issues.
...
PR: 204695
Submitted by: shun <shun.fbsd.pr@dropcut.net>
2015-11-21 19:59:57 +00:00