Commit graph

256406 commits

Author SHA1 Message Date
maya
b2ab9eec3d Note update of liboggz pkgrevision 2016-10-30 09:46:36 +00:00
maya
6621e98476 liboggz: bump PKGREVISION for previous. it's a functional change, however
small.

Fix pkglint warnings about whitespace
2016-10-30 09:45:32 +00:00
maya
35b4f15dbb liboggz: remove all patches
these patches were intended to fix build on Open/Free-BSD and are simply wrong
and broke the build on linux before and now on OS X.

"it declares an uninitialized timezone structure and uses it to adjust the date.
 ...even if struct timezone weren't deprecated."

PR pkg/50558, report on pkgsrc-users by Emre Eryilmaz
2016-10-30 09:41:58 +00:00
wen
ee7105239f Updated sysutils/ansible2 to 2.1.2.0 2016-10-30 09:08:57 +00:00
wen
6fd84a5a5d Update to 2.1.2.0
Upstream changes:
## 2.1.2 "The Song Remains the Same" - 09-29-2016

###Minor Changes:
* Fixed a bug related to creation of retry files (#17456)
* Fixed a bug in the way include params are used when an include task is dynamic (#17064)
* Fixed a bug related to including blocks in an include task (#15963)
* Fixed a bug related to the use of hostvars internally when creating the connection plugin. This prevents things like variables using lookups from being evaluated unnecessarily (#17024)
* Fixed a bug where using a variable containing a list for the `hosts` of a play resulted in an list of lists (#16583)
* Fixed a bug where integer values would cause an error if a module param was of type `float` (no issue)
* Fixed a bug with net_template failing if src was not specified (#17726)
* Fixed a bug in "ansible-galaxy import" (#17417)
* Fixed a bug in which INI files incorrectly treated a hosts range as a section header (#15331)
* Fixed a bug in which the max_fail_percentage calculation erroneously caused a series of plays to stop executing (#15954)
* Fixed a bug in which the task names were not properly templated (#16295)
* Fixed a bug causing "squashed" loops (ie. yum, apt) to incorrectly report results (ansible-modules-core#4214)
* Fixed several bugs related to includes:
  - when including statically, make sure that all parents were also included statically (issue #16990)
  - properly resolve nested static include paths
  - print a message when a file is statically included
* Fixed a bug in which module params expected to be float types were not converted from integers (only strings) (#17325)
* Fixed a bug introduced by static includes in 2.1, which prevented notifications from going to the "top level" handler name.
* Fixed a bug where a group_vars or host_vars directory in the current working directory would be used (and would take precedence) over those in the inventory and/or playbook directory.
* Fixed a bug which could occur when the result of an async task did not parse as valid JSON.
* (re)-allowed the use of ansible_python_interpreter lines with more than one argument.
* Fixed several bugs related to the creation of the implicit localhost in inventory.
* Fixed a bug related to an unspecified number of retries when using until.
* Fixed a race-condition bug when creating temp directories before the worker process is forked.
* Fix a bug with async's poll keyword not making use of ansible_python_interpreter to run (and thus breaking when /usr/bin/python is not present on the remote machine.)
* Fix a bug where hosts that started with a range in inventory were being treated as an invalid section header.

Module fixes:
* Fixed a bug where the temporary CA files created by the module helper code were not being deleted properly in some situations (#17073)
* Fixed many bugs in the unarchive module
* Fixes for module ec2:
  - Fixed a bug related to source_dest_check when used with non-vpc instances (core#3243)
  - Fixed a bug in ec2 where instances were not powering of when referenced via tags only (core#4765)
  - Fixed a bug where instances with multiple interfaces were not powering up/down correctly (core#3234)
* Fixes for module get_url:
  - Fixed a bug in get_url module to force a download if there is a checksum mismatch regardless of the last modified time (core#4262)
  - Fixed a bug in get_url module to properly process FTP results (core#3661 and core#4601)
* Fixed a bug in win_user related to users with disabled accounts/expired passwords (core#4369)
* ini_file:
  - Fixed a bug where option lines are now inserted before blank lines.
  - Fixed a bug where leading whitespace prevented matches on options.
* Fixed a bug in iam_cert when dup_ok is used as a string.
* Fixed a bug in postgresql_db related to the changed logic when state=absent.
* Fixed a bug where single_transaction and quick were not passed into db_dump for the mysql_db module.
* Fixed a bug where the fetch module was not idempotent when retrieving the target of a symlink.
* Many minor fixes for bugs in extras modules.

###Deprecations:

* Deprecated the use of `_fixup_perms`. Use `_fixup_perms2` instead.
  This change only impacts custom action plugins using `_fixup_perms`.

###Incompatible Changes:

* Use of `_fixup_perms` with `recursive=True` (the default) is no longer supported.
  Custom action plugins using `_fixup_perms` will require changes unless they already use `recursive=False`.
  Use `_fixup_perms2` if support for previous releases is not required.
  Otherwise use `_fixup_perms` with `recursive=False`.

## 2.1.1 "The Song Remains the Same" - 07-28-2016

###Minor Changes:

* If the user is not using paramiko or vault, allow Ansible to run if pycrypto is not installed.
* Fixed a bug in pkg_util module that caused "update_catalog must be one of" error if 'update_catalog' arg was used.
* Fixed a bug where psuedo-connection vars (eg, ansible_winrm_transport) defined in group_vars or host_vars were not getting passed to the connection.
* Fixed a bug where temp file permissions on BSDs were not using filesystem acls when available.
* Fixed some bugs in variable dependency resolution. These were mainly related to includes and roles, to bringe the VariableManager code in-line with our documentation.
* Fixed a bug in unarchive, when the destination was a symlinked directory.
* Fixed a bug related to performance when loading a large number of groups.
* Fixed bugs related to the way host and group vars are loaded, which (for large sets of inventory variables) can reduce CPU and memory usage by 50%.
* Fixed a bug where includes were not being implicitly evaluated as static when no loop or variables were being used.
* Fixed several more bugs in relation to the way play execution continues or halts when hosts fail, to bringe the behavior more in line with 1.9.x.
* Fixed bugs related to the use of the underlying shell executable with the script and raw modules.
* Fixed several bugs in relation to the way ssh keys were used with various networking modules.
* Fixed a bug related to the way handlers are tracked internally, which could cause bugs when roles are reused within the same play (allow_duplicates: yes) or when the role dependencies formed a "diamond" pattern.
* Fixed a bug related to setfacl on platforms which do not support the -R option for recursive changes.
* Several fixes to the way async works to prevent race conditions and other bugs
* More fixes to the way failed and unreachable hosts affect future plays
* Fixed a bug in the way the to_json filter encoded some objects
* Fixed a bug in the way roles and dependencies are loaded, and how they inherit params from parent roles.
* Fixed a bug in which the number of retries in a do/until loop was off by one
* Fixed a bug in the way the passwd lookup deals with salts
* When using the local connection, internally the remote_user value is now forced to be the current user even if remote_user is specified, to prevent issues with become settings
* Fix for Azure modules to work with most recent Azure python library (2.0.0rc5)
* Fix for bug related to unreachable hosts and any_errors_fatal in the linear strategy
* Fix for error handling in relation to killed/dead worker processes. If workers are killed via SIGKILL or SIGTERM, this will halt execution of the playbook.
* Fixed a regression in the way we handle variables from dependent roles.
* Added better handling for certain errors thrown from the cryptography.
* Fixed a typo in the azure_rm_storageaccount module.
* Fixed some minor bugs in the os_user_role and cs_volume modules.
* Fixed a bug related to the return value of a low-level inventory API call related to getting variables for hosts and groups.
2016-10-30 09:07:23 +00:00
adam
974a1f3317 Added postgresql96 directories 2016-10-30 08:58:12 +00:00
adam
8889df1526 Added postgresql96 support 2016-10-30 08:57:12 +00:00
mef
b3f5efd052 Updated devel/p5-Log-Dispatchouli to 2.015 2016-10-30 05:22:50 +00:00
mef
fa859180f1 Updated devel/p5-Log-Dispatchouli to 2.015
------------------------------------------
2.015     2016-10-17 15:42:54-04:00 America/New_York
        - Log::Dispatchouli subclass can now provide its own proxy_class
          method to use something other than Log::Dispatchouli::Proxy

2.014     2016-10-14 18:28:36-04:00 America/New_York
        - non-trial release of v2.013

2.013     2016-07-30 16:34:57-04:00 America/New_York (TRIAL RELEASE)
        - minor optimizations to callbacks (thanks, Olivier Mengué)
2016-10-30 05:22:40 +00:00
mef
37e69bb4c4 Updated devel/p5-Devel-CheckOS to 1.77 2016-10-30 05:19:33 +00:00
mef
61802c6bd3 Updated devel/p5-Devel-CheckOS to 1.77
--------------------------------------
1.77    2016-10-21      Add MacOSX:v10_11 and ..._12
2016-10-30 05:19:21 +00:00
mef
97bb457ac5 Updated devel/p5-Module-Install to 1.17 2016-10-30 05:16:31 +00:00
mef
06c43d7296 Updated devel/p5-Module-Install to 1.17
---------------------------------------
1.17  2016-10-24
  - fix issue with mkpath with empty path
  - removed irrelevant code for Perl < v5.6
  - VMS fixes (RT#79858, Craig A. Berry)
  - documentation updated to reflect current discouraged state
2016-10-30 05:16:23 +00:00
mef
847d8e51d0 Updated devel/p5-Term-ANSIColor to 4.06 2016-10-30 05:10:21 +00:00
mef
e932ca4995 Updated devel/p5-Term-ANSIColor to 4.06
---------------------------------------
Term::ANSIColor 4.06 (2016-10-28)
    Add aliases ansi16 through ansi255 and on_ansi16 through on_ansi255
    (plus the corresponding constants) for the grey and rgb colors so that
    one can refer to all of the 256 ANSI colors with consistent names.
    These are aliases; the colors returned by uncolor will still use the
    grey and rgb names.  (#118267)
2016-10-30 05:10:10 +00:00
manu
226bbfbb38 Use newer DES API so that smbk5pwd loads with newer OpenSSL
OpenSSL removed old DES API which used des_* functions.
24956ca00f

In order to link with libcrypto from recent OpenSSL releases, we need
to replace the older API des_* functions by the newer API DES_* functions.

Submitted upstream as ITS#8525
http://www.openldap.org/its/index.cgi/Incoming?id=8525
2016-10-30 05:04:09 +00:00
kamil
5637d06871 Sync new hmac name as ffhmac 2016-10-30 01:10:10 +00:00
kamil
424368e504 Fix conflicting hmac symbol name with <stdlib.h> on NetBSD.
This helps webrtc option on NetBSD.
2016-10-30 01:06:26 +00:00
maya
814aa005ea acpica-utils: clean up patch lost in the update and left behind with
no checksum for it

fixes clang build by removing GCC-specific build flags
2016-10-29 21:04:13 +00:00
fhajny
acb753872f Use proper configure arg instead of wrong subst that leaked DESTDIR.
Clean up. PKGREVISION bump.
2016-10-29 20:14:42 +00:00
adam
764bafa746 Updated databases/postgresql to the latest 2016-10-29 19:47:19 +00:00
adam
5550e39165 The PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 9.6.1, 9.5.5, 9.4.10, 9.3.15, 9.2.19, and 9.1.24. This is also the last update for the PostgreSQL 9.1 series as it is now end-of-life. This release fixes two issues that can cause data corruption, which are described in more detail below. It also patches a number of other bugs reported over the last three months. The project urges users to apply this update at the next possible downtime. 2016-10-29 19:41:53 +00:00
wiz
b0c7a5fc6a Updated mail/neomutt to 20161028 2016-10-29 12:07:50 +00:00
wiz
fcb81129e6 Updated neomutt to 20161028.
Note

This release has more pager bug-fixes and heaps more testing.

Thanks

Many thanks to our new contributors to NeoMutt: Doug Stone-Weaver, Ismaël Bouya, Steven Ragnarök
and our regular contributors: Darshit Shah, David Sterba, Pietro Cerutti, Tobias Angele

Features

    notmuch: Add a fake “Folder” header to viewed emails Ismaël Bouya (@immae)
    sidebar: consider description when using whitelist Doug Stone-Weaver (@doweaver)
    forgotten-attachment: Ignore lines matching quote_regexp. Steven Ragnarök (@nuclearsandwich)
    forgotten-attachment: Fix checking logic. Steven Ragnarök (@nuclearsandwich)
    forgotten-attachment: Update docs regarding $quote_regexp. Steven Ragnarök (@nuclearsandwich)
    skip-quoted: skip to body David Sterba (@kdave)
    nntp: use safe_{fopen,fclose}
    nntp: fix resource leak

Bug Fixes

    “inbox” sorting function Pietro Cerutti (@gahr)
    sensible-browser/notmuch changing mailbox
    overhaul the index/pager updates
    crash in hdrline
    remove stray line introduced by pager fix
    Possible fix for random pager crashes.

Docs

    use a more expressive coverity scan badge Tobias Angele (@toogley)
    light tidying

Build

    replace the ugly strfcpy() macro with a function Darshit Shah (darnir)
    build: Look for tgetent in ncurses, fallback to tinfo only if not found Pietro Cerutti (@gahr)
    build: fix a couple of build warnings
    travis: install doc dependencies
    build: fix install/dist/distcheck targets

Upstream

    Fix POP3 SASL authentication mechanism DIGEST-MD5. (closes #3862)
    Add a few explanatory comments to pop_auth_sasl(). (see #3862)
    Fix GPGME signature zero timestamp and locale awareness issues. (closes #3882)
    Handle presence of ‘–’ delimiter in $sendmail. (closes #3168)
    Allow IPv6 literal addresses in URLs. (closes #3681)
    Fix gpgme segfault in create_recipient_set().
    Use mutt_strlen and mutt_strncmp in sidebar.c.
    Change sidebar to only match $folder prefix on a $sidebar_divider_char. (closes #3887)
    Actually fix gpgme segfault in create_recipient_set().
2016-10-29 12:07:40 +00:00
pettai
f54375d3e4 fix pkglint warning 2016-10-29 09:55:13 +00:00
pettai
e6f551da59 Updated net/knot to 2.3.1 2016-10-29 09:43:10 +00:00
pettai
a80390111a Knot DNS 2.3.1 (2016-10-07)
===========================

Bugfixes:
---------
 - Missing glue records in some responses
 - Knsupdate prompt printing on non-terminal
 - Mismatch between configuration policy item names and documentation
 - Segfault on OS X (Sierra)

Improvements:
-------------
 - Significant speed-up of conf-commit and conf-diff operations (in most cases)
 - New EDNS Client Subnet libknot API
 - Better semantic-checks error messages

Features:
---------
 - Print TLS certificate hierarchy in kdig verbose mode
 - New +subnet alias for +client
 - New mod-whoami and mod-noudp modules
 - New zone-purge control command
 - New log-queries and log-responses options for mod-dnstap
2016-10-29 09:42:48 +00:00
bsiegert
e095d6272f Revbump packages depending on Go after the Go 1.7.3 update. 2016-10-29 08:59:46 +00:00
jnemeth
2449245c7e Updated comms/asterisk13 to 13.12.1 2016-10-29 02:13:51 +00:00
jnemeth
952e00ae39 Update to Asterisk 13.12.1: this is a critical bug fix release.
The Asterisk Development Team has announced the release of Asterisk 13.12.1.

The release of Asterisk 13.12.1 resolves an issue reported by the
community and would have not been possible without your participation.
Thank you!

The following is the issue resolved in this release:

Bugs fixed in this release:
-----------------------------------
 * ASTERISK-26503 - app_voicemail: Asterisk crashes when
      MailboxExists is used (Reported by Doug Lytle)

For a full list of changes in this release, please see the ChangeLog:

http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-13.12.1

Thank you for your continued support of Asterisk!
2016-10-29 02:10:06 +00:00
marino
938915d38c pkgtools/pkg: fix installation of conf files (forgotten PLIST delta)
Use of OWN_DIRS alleviates use of @pkgdir.  Thanks to jperkins
and ultimately wiz for the suggestion.
2016-10-28 23:39:10 +00:00
marino
9a555265f0 pkgtools/pkg: fix installation of conf files (better)
Use of OWN_DIRS alleviates use of @pkgdir.  Thanks to jperkins
and ultimately wiz for the suggestion.
2016-10-28 23:37:53 +00:00
wiz
616c480040 Updated devel/py-setuptools_scm to 1.15.0 2016-10-28 23:28:32 +00:00
wiz
74578acaf6 Updated py-setuptools_scm to 1.15.0.
v1.15.0
=======

* more sophisticated ignoring of mercurial tag commits
  when considering distance in commits
  (thanks Petre Mierlutiu)
* fix issue #114: stop trying to be smart for the sdist
  and ensure its always correctly usign itself
* update trove classifiers
* fix issue #84: document using the installed package metadata for sphinx
* fix issue #81: fail more gracious when git/hg are missing
* address issue #93: provide an experimental api to customize behaviour on shallow git repos
  a custom parse function may pick pre parse actions to do when using git


v1.14.1
=======

* fix #109: when detecting a dirty git workdir
            don't consider untracked file
            (this was a regression due to #86 in v1.13.1)
* consider the distance 0 when the git node is unknown
  (happens when you haven't commited anything)
2016-10-28 23:28:21 +00:00
wiz
af03639ead Updated devel/py-setuptools to 28.7.0 2016-10-28 23:27:11 +00:00
wiz
ded6257253 Updated py-setuptools to 28.7.0.
v28.7.0
-------

* #832: Moved much of the namespace package handling
  functionality into a separate module for re-use in something
  like #789.
* #830: ``sdist`` command no longer suppresses the inclusion
  of data files, re-aligning with the expectation of distutils
  and addressing #274 and #521.

v28.6.1
-------

* #816: Fix manifest file list order in tests.
2016-10-28 23:26:56 +00:00
tnn
e16fd4f3f1 Updated net/synergy to 1.8.4 2016-10-28 21:31:51 +00:00
tnn
ee764436d9 synergy-1.8.4 (2016-10-11)
Bug #4041 UHD/4K DPI scaling broken on Windows servers
Bug #4420 When XRandR adds a screen, it is inaccessible
Bug #5603 Activation notification depends on existence of /etc/os-release
Bug #5624 Update notification sometimes requests a downgrade
Bug #5329 Current date is shown for build date in the about dialog
Bug #5640 Synergy branding is inconsistent across platforms
Enhancement #5617 Remove redundant plugin infrastructure
Enhancement #5627 Move SSL certificate generation to main window
Enhancement #5628 Move SSL implementation into core binary
Enhancement #5629 Move activation from wizard into new dialog window
2016-10-28 21:31:30 +00:00
tez
bd2a4efc3e Update mit-krb5 to 1.14.4 & fix build on OS X 2016-10-28 20:56:55 +00:00
tez
66438d98b7 Update to 1.14.4 and fix build on OS X
Should resolve PR#51136
2016-10-28 20:56:14 +00:00
marino
3d7455043c pkgtools/pkg: fix installation of conf files
The CONF_FILES are never installed if their target directories don't
already exist due to other previous installation.  This adds several
@pkgdir entries to ensure the CONF_FILES installation can always succeed.

While here, simplify the post-install target.
2016-10-28 19:35:30 +00:00
adam
37972b4963 Updated devel/SDL2 to 2.0.5; multimedia/ffmpeg3 to 3.2 2016-10-28 19:16:39 +00:00
adam
acd36691ca version 3.2:
- libopenmpt demuxer
- tee protocol
- Changed metadata print option to accept general urls
- Alias muxer for Ogg Video (.ogv)
- VP8 in Ogg muxing
- curves filter doesn't automatically insert points at x=0 and x=1 anymore
- 16-bit support in curves filter and selectivecolor filter
- OpenH264 decoder wrapper
- MediaCodec H.264/HEVC/MPEG-4/VP8/VP9 hwaccel
- True Audio (TTA) muxer
- crystalizer audio filter
- acrusher audio filter
- bitplanenoise video filter
- floating point support in als decoder
- fifo muxer
- maskedclamp filter
- hysteresis filter
- lut2 filter
- yuvtestsrc filter
- CUDA CUVID H.263/VP8/VP9/10 bit HEVC (Dithered) Decoding
- vaguedenoiser filter
- added threads option per filter instance
- weave filter
- gblur filter
- avgblur filter
- sobel and prewitt filter
- MediaCodec HEVC/MPEG-4/VP8/VP9 decoding
- Meridian Lossless Packing (MLP) / TrueHD encoder
- Non-Local Means (nlmeans) denoising filter
- sdl2 output device and ffplay support
- sdl1 output device and sdl1 support removed
- extended mov edit list support
- libfaac encoder removed
- Matroska muxer now writes CRC32 elements by default in all Level 1 elements
- sidedata video and asidedata audio filter
- Changed mapping of rtp MIME type G726 to codec g726le.
2016-10-28 19:15:06 +00:00
adam
4f79f8a175 Changes 2.0.5:
General:
* Implemented audio capture support for some platforms
* Added SDL_DequeueAudio() to retrieve audio when buffer queuing is turned on for audio capture
* Added events for dragging and dropping text
* Added events for dragging and dropping multiple items
* By default the click raising a window will not be delivered to the SDL application. You can set the hint SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH to "1" to allow that click through to the window.
* Saving a surface with an alpha channel as a BMP will use a newer BMP format that supports alpha information. You can set the hint SDL_HINT_BMP_SAVE_LEGACY_FORMAT to "1" to use the old format.
* Added SDL_GetHintBoolean() to get the boolean value of a hint
* Added SDL_RenderSetIntegerScale() to set whether to smoothly scale or use integral multiples of the viewport size when scaling the rendering output
* Added SDL_CreateRGBSurfaceWithFormat() and SDL_CreateRGBSurfaceWithFormatFrom() to create an SDL surface with a specific pixel format
* Added SDL_GetDisplayUsableBounds() which returns the area usable for windows. For example, on Mac OS X, this subtracts the area occupied by the menu bar and dock.
* Added SDL_GetWindowBordersSize() which returns the size of the window's borders around the client area
* Added a window event SDL_WINDOWEVENT_HIT_TEST when a window had a hit test that wasn't SDL_HITTEST_NORMAL (e.g. in the title bar or window frame)
* Added SDL_SetWindowResizable() to change whether a window is resizable
* Added SDL_SetWindowOpacity() and SDL_GetWindowOpacity() to affect the window transparency
* Added SDL_SetWindowModalFor() to set a window as modal for another window
* Added support for AUDIO_U16LSB and AUDIO_U16MSB to SDL_MixAudioFormat()
* Fixed flipped images when reading back from target textures when using the OpenGL renderer
* Fixed texture color modulation with SDL_BLENDMODE_NONE when using the OpenGL renderer
* Fixed bug where the alpha value of colorkeys was ignored when blitting in some cases

Windows:
* Added a hint SDL_HINT_WINDOWS_DISABLE_THREAD_NAMING to prevent SDL from raising a debugger exception to name threads. This exception can cause problems with .NET applications when running under a debugger.
* The hint SDL_HINT_THREAD_STACK_SIZE is now supported on Windows
* Fixed XBox controller triggers automatically being pulled at startup
* The first icon from the executable is used as the default window icon at runtime
* Fixed SDL log messages being printed twice if SDL was built with C library support
* Reset dead keys when the SDL window loses focus, so dead keys pressed in SDL applications don't affect text input into other applications.

Mac OS X:
* Fixed selecting the dummy video driver
* The caps lock key now generates a pressed event when pressed and a released event when released, instead of a press/release event pair when pressed.
* Fixed mouse wheel events on Mac OS X 10.12
* The audio driver has been updated to use AVFoundation for better compatibility with newer versions of Mac OS X

Linux:
* Added support for the Fcitx IME
* Added a window event SDL_WINDOWEVENT_TAKE_FOCUS when a window manager asks the SDL window whether it wants to take focus.
* Refresh rates are now rounded instead of truncated, e.g. 59.94 Hz is rounded up to 60 Hz instead of 59.
* Added initial support for touchscreens on Raspberry Pi

OpenBSD:
* SDL_GetBasePath() is now implemented on OpenBSD

iOS:
* Added support for dynamically loaded objects on iOS 8 and newer

tvOS:
* Added support for Apple TV
* Added a hint SDL_HINT_APPLE_TV_REMOTE_ALLOW_ROTATION to control whether he Apple TV remote's joystick axes will automatically match the rotation of the remote.

Android:
* Fixed SDL not resizing window when Android screen resolution changes
* Corrected the joystick Z axis reporting for the accelerometer

Emscripten (running in a web browser):
* Many bug fixes and improvements
2016-10-28 19:13:44 +00:00
riastradh
9e5fa829d7 Add a debug-only file. 2016-10-28 17:47:21 +00:00
schnoebe
a86bbf5fe4 update print/hplip to 3.16.10 2016-10-28 17:27:46 +00:00
schnoebe
4aba22508c Update to 3.16.10:
Release Notes:

HPLIP 3.16.10 - This release has the following changes:

  Added Support for the Following New Printers:
    - HP officejetPro7740 wide  Format All in one
    - HP Office jet 6950 All-in-One printer
    - HP ScanJet Pro 3000 s3 Sheet-feed Scanner
    - HP ScanJet Enterprise Flow 5000 s4 Sheet-feed Scanner
    - HP Scanjet Entrprise Flow 7000 s3 sheetfeed Scanner
    - HP Color LaserJet Pro MFP M277c6

  Added support for the following new Distro's:
    - Ubuntu 16.10
    - Debian 8.6

  Notes to Follow:
    - For scanjets scan using command "hp-scan --adf --size=size_name"
    - "hp-scan --help" for all size_name
2016-10-28 17:27:21 +00:00
jperkin
d4514a48b4 Make the postfix user/group names variables. 2016-10-28 16:10:51 +00:00
dholland
c5c409b738 Extend PR 48500 alpha gcc workaround to gcc5. From Rin Okuyama. 2016-10-28 15:55:50 +00:00
marino
dc5dfa8d53 pkgtools/pkg: Honor existing PKG_DBDIR definition
Rather than defaulting to /var/db/pkgng, use the variable that exists
already for this purpose.  Similarly, change cache directory definition
from /var/cache/pkgng to ${VARBASE}/cache/pkgng
2016-10-28 15:35:08 +00:00