Commit graph

258769 commits

Author SHA1 Message Date
roy
efdbac7a6e Uses termcap, not ncurses. 2017-01-05 21:13:53 +00:00
wiz
dff683501a Updated graphics/png to 1.6.28 2017-01-05 17:54:54 +00:00
wiz
8198c749c7 Updated png to 1.6.28.
Version 1.6.28rc01 [January 3, 2017]
  Fixed arm/aarch64 detection in CMakeLists.txt (Gianfranco Costamagna).
  Added option to Cmake build allowing a custom location of zlib to be
    specified in a scenario where libpng is being built as a subproject
    alongside zlib by another project (Sam Serrels).
  Changed png_ptr->options from a png_byte to png_uint_32, to accomodate
    up to 16 options.

Version 1.6.28rc02 [January 4, 2017]
  Added "include(GNUInstallDirs)" to CMakeLists.txt (Gianfranco Costamagna).
  Moved SSE2 optimization code into the main libpng source directory.
    Configure libpng with "configure --enable-intel-sse" or compile
    libpng with "-DPNG_INTEL_SSE" in CPPFLAGS to enable it.

Version 1.6.28rc03 [January 4, 2017]
  Backed out the SSE optimization and last CMakeLists.txt to allow time for QA.

Version 1.6.28 [January 5, 2017]
  No changes.
2017-01-05 17:54:44 +00:00
adam
777c6327cb Updated databases/sqlite3 to 3.16.1 2017-01-05 17:52:18 +00:00
adam
9cf3c637ef Changes 3.16.1:
Fix a bug concerning the use of row values within triggers (see ticket 8c9458e7) that was in version 3.15.0 but was not reported until moments after the 3.16.0 release was published.
2017-01-05 17:49:54 +00:00
roy
a77c3d23ab Uses termcap, not curses. 2017-01-05 17:22:09 +00:00
maya
632f77b0ff Note update of irssi* packages to 1.0.0. 2017-01-05 17:17:54 +00:00
maya
97ae39916b irssi-icb: catch up with irssi 1.0.0 distinfo changes.
thanks leot for testing!
2017-01-05 17:16:30 +00:00
maya
bae61e9fb1 irssi-xmpp: catch up with irssi 1.0.0.
thanks leot for testing!
2017-01-05 17:15:46 +00:00
maya
732bde7d42 irssi: update to 1.0.0
v1.0.0 2017-01-03  The Irssi team <staff@irssi.org>
	* Removed --disable-ipv6 (#408).
	* /connect Network now aborts with an error if no servers have been
	  added to that network (#443).
	* /dcc commands now use quotes around spaces consistently.
	* bell_beeps was removed (#524, #565).
	* Switch to GRegex instead of regex.h (#412).
	+ irssiproxy can now forward all tags through a single
	  port. By Lukas Mai (mauke, #425).
	+ irssiproxy can also listen on unix sockets. By Lukas Mai (#427).
	+ send channel -botcmds immediately when no mask is specified (#175, #399).
	+ the kill buffer now remembers consecutive kills.
	  New bindings were added: yank_next_cutbuffer and append_next_kill
	  By Todd A. Pratt (#353, #414, #455)
	+ connections will avoid looking up IPv6 addresses if the machine does
	  not have an IPv6 address assigned (exact behaviour is implementation
	  defined, #410).
	+ Fix potential crash if scripts insert undef values into the completion
	  list (#413).
	+ Paste warning is now also shown on pasting overlong
	  lines. By Manish Goregaokar (#426).
	+ autolog_ignore_targets and activity_hide_targets learn a new syntax
	      tag/* and * to ignore whole networks or everything.
	  By Jari Matilainen (vague666, #437)
	+ /hilight got a -matchcase flag to hilight case
	  sensitively. By Thibault B (isundil, #421, #476).
	+ Always build irssi with TLS support.
	+ Rename SSL to TLS in the code and add -tls_* versions of the -ssl_*
	  options to /CONNECT and /SERVER, but make sure the -ssl_* options continue
	  to work.
	+ Use TLS for Freenode, EFnet, EsperNet, OFTC, Rizon, and IRC6 in the default
	  configuration.
	+ Display TLS connection information upon connect. You can disable this by
	  setting tls_verbose_connect to FALSE.
	+ Add -tls_pinned_cert and -tls_pinned_pubkey for x509 and public key pinning.

	  The values needed for -tls_pinned_cert and -tls_pinned_pubkey is shown
	  when connecting to a TLS enabled IRC server, but you can also find the
	  values like this: Start by downloading the certificate from a given IRC
	  server:

	      $ openssl s_client -connect chat.freenode.net:6697 < /dev/null 2>/dev/null | \
	        openssl x509 > freenode.cert

	  Find the value for -tls_pinned_cert:

	      $ openssl x509 -in freenode.cert -fingerprint -sha256 -noout

	  Find the value for -tls_pinned_pubkey:

	      $ openssl x509 -in freenode.cert -pubkey -noout | \
	        openssl pkey -pubin -outform der | \
	        openssl dgst -sha256 -c | \
	        tr a-z A-Z

	+ Remove support for DANE validation of TLS certificates.

	  There wasn't enough support in the IRC community to push for this on the
	  majority of bigger IRC networks. If you believe this should be
	  reintroduced into irssi, then please come up with an implementation that
	  does not rely on the libval library. It is causing a lot of troubles for
	  our downstream maintainers.

	+ /names and $[...] now uses utf8 string operations. By Xavier
          G. (#40, #411, #471, #480).
	+ New setting completion_nicks_match_case (#488).
	+ /channel /server /network now support modify subcommand. By
	  Jari Matilainen (#338, #498).
	+ Irssi::signal_remove now works with coderefs. By Tom Feist (shabble, #512).
	+ /script reset got an -autorun switch (#540, #538).
	+ cap_toggle can now be called from Perl, and fields
	  cap_active and cap_supported can be inspected (#542).
	+ Make it possible to disable empty line completion. By Lauri
	  Tirkkonen (lotheac, #574).
	+ New option sasl_disconnect_on_failure to disconnect when
	  SASL log-in failed (#514).
	- IP addresses are no longer stored when resolve_reverse_lookup is
	  used.
	- Removed broken support for curses (#521).
	- Removed broken dummy mode (#526).
	- Fix terminal state after suspend (#450, #452).
	- Improve Perl library path detection (#479, #132).
	- Reconnect now works on unix connections (#493).
	- Fix completion warnings (#125, #496, FS#124).
	- Fix a crash in the --more-- item (#501).
	- Fix a display issue in /unignore (#517, bdo#577202).
	- Fix a crash in some netsplits (#529, #500).
	- Fix crashes with some invalid config (#550, #551, #563, #564, #587, #581, #570).
	- Add support for SASL Fragmentation. By Kenny Root (kruton, #506).
	- Improve netsplit dumping (#420, #465).
	- Improve responsibility under DCC I/O strain (#578, #159).
	- Fix query nick change on open (#580, #586).
	- Correct a few help texts.
2017-01-05 17:14:52 +00:00
roy
f339c71253 Use the curses framework. 2017-01-05 16:52:19 +00:00
fhajny
b351bd58a3 Enable beats 2017-01-05 16:44:02 +00:00
fhajny
e6b25c1469 Added sysutils/beats version 5.1.1 2017-01-05 16:43:20 +00:00
fhajny
5b8bd78a1b Import beats 5.1.1 as sysutils/beats (based on wip/beats).
The Beats are lightweight processes, written in Go, that you install
on your servers to capture all sorts of operational data like logs,
operating system metrics or network packet data, and to send it to
Elasticsearch, either directly or via Logstash, so it can be
visualized with Kibana.
2017-01-05 16:43:09 +00:00
roy
3e363b0fd6 Use the curses framework 2017-01-05 16:33:58 +00:00
wiz
cb0e8203bc Updated sysutils/py-borgbackup to 1.0.9 2017-01-05 16:33:26 +00:00
wiz
24b200d63f Updated py-borgbackup to 1.0.9.
Version 1.0.9 (2016-12-20)

Security fixes:

    A flaw in the cryptographic authentication scheme in Borg
    allowed an attacker to spoof the manifest. See Pre-1.0.9 manifest
    spoofing vulnerability above for the steps you should take.
    borg check: When rebuilding the manifest (which should only be
    needed very rarely) duplicate archive names would be handled
    on a âfirst come first serveâ basis, allowing an attacker to
    apparently replace archives.

Bug fixes:

    borg check:
        rebuild manifest if it’s corrupted
        skip corrupted chunks during manifest rebuild
    fix TypeError in integrity error handler, #1903, #1894
    fix location parser for archives with @ char (regression introduced in 1.0.8), #1930
    fix wrong duration/timestamps if system clock jumped during a create
    fix progress display not updating if system clock jumps backwards
    fix checkpoint interval being incorrect if system clock jumps

Other changes:

    docs:
        add python3-devel as a dependency for cygwin-based installation
        clarify extract is relative to current directory
        FAQ: fix link to changelog
        markup fixes
    tests:
        test_get_(cache|keys)_dir: clean env state, #1897
        get back pytest’s pretty assertion failures, #1938
    setup.py build_usage:
        fixed build_usage not processing all commands
        fixed build_usage not generating includes for debug commands

Version 1.0.9rc1 (2016-11-27)

Bug fixes:

    files cache: fix determination of newest mtime in backup set
    (which is used in cache cleanup and led to wrong âAâ [added]
    status for unchanged files in next backup), #1860.
    borg check:
        fix incorrectly reporting attic 0.13 and earlier archives as corrupt
        handle repo w/o objects gracefully and also bail out early if repo is completely empty, #1815.
    fix tox/pybuild in 1.0-maint
    at xattr module import time, loggers are not initialized yet

New features:

    borg umount <mountpoint> exposed already existing umount code
    via the CLI api, so users can use it, which is more consistent
    than using borg to mount and fusermount -u (or umount) to
    un-mount, #1855.
    implement borg create –noatime –noctime, fixes #1853

Other changes:

    docs:
        display README correctly on PyPI
        improve cache / index docs, esp. files cache docs, fixes #1825
        different pattern matching for –exclude, #1779
        datetime formatting examples for {now} placeholder, #1822
        clarify passphrase mode attic repo upgrade, #1854
        clarify –umask usage, #1859
        clarify how to choose PR target branch
        clarify prune behavior for different archive contents, #1824
        fix PDF issues, add logo, fix authors, headings, TOC
        move security verification to support section
        fix links in standalone README (:ref: tags)
        add link to security contact in README
        add FAQ about security
        move fork differences to FAQ
        add more details about resource usage
    tests: skip remote tests on cygwin, #1268
    travis:
        allow OS X failures until the brew cask osxfuse issue is fixed
        caskroom osxfuse-beta gone, it’s osxfuse now (3.5.3)
    vagrant:
        upgrade OSXfuse / FUSE for macOS to 3.5.3
        remove llfuse from tox.ini at a central place
        do not try to install llfuse on centos6
        fix fuse test for darwin, #1546
        add windows virtual machine with cygwin
        Vagrantfile cleanup / code deduplication
2017-01-05 16:33:16 +00:00
roy
c47ece26ed Note we need libpanel from curses. 2017-01-05 16:08:18 +00:00
maya
4eec1f893d note update of irssi* packages. 2017-01-05 15:51:21 +00:00
maya
74f72b4902 irssi-xmpp: catch up with irssi changes.
bump PKGREVISION to ensure it is rebuilt.
2017-01-05 15:49:46 +00:00
maya
514ca78079 irssi-icb: catch up with irssi changes.
bump PKGREVISION to ensure it is rebuilt.
2017-01-05 15:48:34 +00:00
maya
e48eef7a95 irssi: update to 0.8.21.
irssi 0.8.21 is a maintenance release without any new features.

Changes:

- Correct a NULL pointer dereference in the nickcmp function found by
Joseph Bisch (GL#1)
- Correct an out of bounds read in certain incomplete control codes
found by Joseph Bisch (GL#2)
- Correct an out of bounds read in certain incomplete character
sequences found by Hanno Böck and independently by J. Bisch (GL#3)
- Correct an error when receiving invalid nick message (GL#4, #466)
2017-01-05 15:46:10 +00:00
roy
8ca06b09c1 Use the curses framework. 2017-01-05 15:36:24 +00:00
leot
598da4204f Fix typos in recent devel/ruby-redmine-* entries 2017-01-05 13:12:25 +00:00
sborrill
82314ce2ba Fix build by getting configure not to check for dependencies that will never
be needed.
2017-01-05 12:44:54 +00:00
roy
cff63d1765 Allow to use NetBSD-7.99 curses 2017-01-05 12:38:30 +00:00
roy
6fc65779b7 Move curses foo from options.mk to Makefile (hi Thomas!) 2017-01-05 12:37:08 +00:00
roy
5e15387da0 Updated chat/weechat to 1.6 2017-01-05 12:30:56 +00:00
roy
c15fdf82ba Import weechat-1.6:
Due to the documenation change below, man pages are no longer supplied in pkgsrc.

New features
        core: add optional argument "lowest", "highest" or level mask in command /input hotlist_clear
        core: add option "cycle" in command /buffer
        api: add "extra" argument to evaluate extra variables in function string_eval_expression() (issue #534)
        relay: add option relay.network.allow_empty_password (issue #735)
        trigger: add support for one-time triggers (issue #399, issue #509)

Improvements
        core, irc, xfer: display more information in memory allocation errors (issue #573)
        api: remove functions printf_date() and printf_tags()
        irc: rename server options "default_msg_{kick|part|quit}" to "msg_{kick|part|quit}", evaluate them
        relay: allow escape of comma in command "init" (weechat protocol) (issue #730)

Bug fixes
        core, irc, xfer: refresh domain name and name server addresses before connection to servers (fix connection to servers after suspend mode) (issue #771)
        api: fix return of function string_match() when there are multiple masks in the string (issue #812)
        api: fix crash in function network_connect_to() if address is NULL
        api: fix connection to servers with hook_connect() on Windows 10 with Windows subsystem for Linux (issue #770)
        api: fix crash in function string_split_command() when the separator is not a semicolon (issue #731)
        irc: fix socket leak in connection to server (issue #358, issue #801)
        irc: fix display of service notice mask (message 008) (issue #429)
        irc: fix NULL pointer dereference in 734 command callback (issue #738)
        relay: return an empty hdata when the requested hdata or pointer is not found (issue #767)
        xfer: fix crash on DCC send if option xfer.file.auto_accept_nicks is set (issue #781)

Documentation
        switch to asciidoctor to build docs and man page

Build
        python: add detection of Python 3.5
2017-01-05 12:30:39 +00:00
wiz
619a1beaef + ardour-5.5, avidemux-2.6.16, cdrtools-3.02a07, coreutils-8.26,
dateutils-0.4.1, duplicity-0.7.11, dvdstyler-3.0.3, fox-1.7.57,
  inkscape-0.92, kdenlive-16.12, libgphoto2-2.5.11, maxima-5.39.0,
  mkvtoolnix-9.6.0, nmap-7.40, openvpn-2.4.0, pitivi-0.98,
  stella-4.7.3, strace-4.15, streamtuner-2.2.0, tin-2.4.1, veusz-1.25,
  vice-3.0.
2017-01-05 12:29:24 +00:00
adam
307f4c37de Updated lang/llvm to 3.9.1 2017-01-05 12:10:08 +00:00
adam
a3ebdf18b6 Changes 3.9.1:
The LLVMContext gains a new runtime check (see LLVMContext::discardValueNames()) that can be set to discard Value names (other than GlobalValue). This is intended to be used in release builds by clients that are interested in saving CPU/memory as much as possible.
There is no longer a “global context” available in LLVM, except for the C API.
The autoconf build system has been removed in favor of CMake. LLVM 3.9 requires CMake 3.4.3 or later to build. For information about using CMake please see the documentation on Building LLVM with CMake. For information about the CMake language there is also a CMake Primer document available.
C API functions LLVMParseBitcode, LLVMParseBitcodeInContext, LLVMGetBitcodeModuleInContext and LLVMGetBitcodeModule having been removed. LLVMGetTargetMachineData has been removed (use LLVMGetDataLayout instead).
The C API function LLVMLinkModules has been removed.
The C API function LLVMAddTargetData has been removed.
The C API function LLVMGetDataLayout is deprecated in favor of LLVMGetDataLayoutStr.
The C API enum LLVMAttribute and associated API is deprecated in favor of the new LLVMAttributeRef API. The deprecated functions are LLVMAddFunctionAttr, LLVMAddTargetDependentFunctionAttr, LLVMRemoveFunctionAttr, LLVMGetFunctionAttr, LLVMAddAttribute, LLVMRemoveAttribute, LLVMGetAttribute, LLVMAddInstrAttribute, LLVMRemoveInstrAttribute and LLVMSetInstrParamAlignment.
TargetFrameLowering::eliminateCallFramePseudoInstr now returns an iterator to the next instruction instead of void. Targets that previously did MBB.erase(I); return; now probably want return MBB.erase(I);.
SelectionDAGISel::Select now returns void. Out-of-tree targets will need to be updated to replace the argument node and remove any dead nodes in cases where they currently return an SDNode * from this interface.
Added the MemorySSA analysis, which hopes to replace MemoryDependenceAnalysis. It should provide higher-quality results than MemDep, and be algorithmically faster than MemDep. Currently, GVNHoist (which is off by default) makes use of MemorySSA.
The minimum density for lowering switches with jump tables has been reduced from 40% to 10% for functions which are not marked optsize (that is, compiled with -Os).
2017-01-05 11:54:32 +00:00
roy
3fc59ab453 Use the curses framework.
Punt silly buildlink depds.
2017-01-05 11:27:21 +00:00
wiz
56a2c4d5c1 Fix installation and PLIST. 2017-01-05 11:07:55 +00:00
fhajny
4892a9cfad Updated lang/nodejs to 7.4.0 2017-01-05 11:02:53 +00:00
fhajny
62216d28ba Update lang/nodejs to 7.4.0.
Notable changes

- buffer:
  - Improve performance of Buffer allocation by ~11%.
  - Improve performance of Buffer.from() by ~50%.
- events: Improve performance of EventEmitter.once() by ~27%.
- fs: Allow passing Uint8Array to fs methods where Buffers are supported.
- http: Improve performance of http server by ~7%.
- npm: Upgrade to v4.0.5
2017-01-05 11:02:44 +00:00
roy
c3f7aeb4f9 Really uses terminfo, not termcap. 2017-01-05 10:20:01 +00:00
jperkin
80fe696d87 Ensure the local yywrap is used. Fixes build with newer flex. 2017-01-05 09:40:00 +00:00
roy
e5c7c275b4 pwsafe doesn't really use curses. 2017-01-05 09:39:02 +00:00
roy
985433eede USe the curses framework. 2017-01-05 09:27:54 +00:00
prlw1
0f9300e6d4 flac-1.3.2.tar.xz changed trivially, but not its filename. Update to
version which matches http://downloads.xiph.org/releases/flac/SHA1SUMS
2017-01-05 09:16:41 +00:00
wiz
e622d34512 Remove unused distinfo file. Add category to relative paths like usual. 2017-01-05 08:38:40 +00:00
wiz
8a0c53a125 Remove patch that is not in distinfo. 2017-01-05 08:36:40 +00:00
wiz
cdf9656837 Remove patch that is not in distinfo after update. 2017-01-05 08:35:56 +00:00
wiz
a4d0dd7e9a Needs bash to build. 2017-01-05 08:34:37 +00:00
wiz
8009389554 Sort. 2017-01-05 08:11:34 +00:00
schmonz
3ff1918708 Added devel/p5-Test-Continuous version 0.76 2017-01-05 04:11:46 +00:00
schmonz
219045614e Add and enable p5-Test-Continuous. 2017-01-05 04:11:29 +00:00
schmonz
c9b4a020d1 Initial import of p5-Test-Continuous.
Continuous Testing is a concept and tool to re-run software tests as
soon as the developer saves the source code.

"Test::Continuous" is a tool based on App::Prove that implements this
concept for Perl.

See <http://groups.csail.mit.edu/pag/continuoustesting/> for the
original implementation of Continuous Testing as an Eclipse plugin. See
also Zentest <http://www.zenspider.com/ZSS/Products/ZenTest/> for the
same concept implemented in Ruby's world.
2017-01-05 04:10:40 +00:00
schmonz
70b9ba7af7 Updated devel/p5-File-ChangeNotify to 0.26nb2 2017-01-05 02:33:47 +00:00