summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-01-02Remove crypto restrictions from kerberos users.maya1-6/+1
2018-01-02Remove traces of crypto restrictions from packages.maya25-56/+25
ok for idea riastradh.
2018-01-02mikutter: 3.6.0 no longer supports Ruby 2.2. PR pkg/52884tsutsui1-1/+4
Bump PKGREVISION.
2018-01-02sayaka: don't forget make mps after updating comments.tsutsui1-2/+2
Pointed out by spz@ and rillig@.
2018-01-02Added more keywords for "make help".rillig1-2/+3
2018-01-02Fixed dollar anchor in sed(1) expression.rillig2-4/+4
The single dollar was discarded by make(1). This was probably not intended and confused the pkglint parser.
2018-01-02Fixed SUBST sed expression that confused pkglint.rillig1-3/+3
In the text "s|\$diffpath = .*|...|", the dollar is interpreted as a Make variable, as if it were "s|\${d}iffpath". Since that variable is usually not defined, the substitution failed to match. Since most systems provide a diff tool in /usr/bin, this didn't break anything. The patched version can also handle DIFF=/usr/bin/gdiff or DIFF=/opt/bin/gnudiff.
2018-01-01Fixed pkglint warnings.rillig2-4/+4
The additional slash in the PLIST was probably a typo. It wasn't noticed yet because the package doesn't build on Linux right now, during the build phase.
2018-01-01Fixed pkglint warnings by moving documents to share/doc/freeciv-manual.rillig3-163/+166
The documentation is from 2000, but still relevant in large parts. Bumped PKGREVISION.
2018-01-01Revert to 1.1295, since re-adding apache22 was an accident.rillig1-3/+1
2018-01-01Sort PLIST files.rillig538-3023/+3001
Unsorted entries in PLIST files have generated a pkglint warning for at least 12 years. Somewhat more recently, pkglint has learned to sort PLIST files automatically. Since pkglint 5.4.23, the sorting is only done in obvious, simple cases. These have been applied by running: pkglint -Cnone,PLIST -Wnone,plist-sort -r -F
2018-01-01doc: Updated pkgtools/pkglint to 5.4.23rillig1-1/+2
2018-01-01Updated pkglint to 5.4.23.rillig4-52/+91
Changes since 5.4.22: Only autofix PLIST sorting in simple cases. Before this version, pkglint sorted the PLIST even when it contained unresolved variable references like ${IMAKE_MAN_DIR}, which resulted in strange and unintuitive orders. These complicated files are left for human inspection.
2018-01-01Updated devel/py-flake8-polyfill, textproc/py-cssselectadam1-1/+3
2018-01-01py-cssselect: updated to 1.0.3adam2-8/+8
Version 1.0.3 * Fix artifact uploads to pypi Version 1.0.2 * Drop support for Python 2.6 and Python 3.3. * Fix deprecation warning in Python 3.6. * Minor cleanups.
2018-01-01py-flake8-polyfill: updated to 1.0.2adam2-7/+7
1.0.2: Fix bug where user-supplied value for an option is ignored if the option is transformed with comma_separated_list or normalize_paths
2018-01-01Updated devel/py-attrs, devel/py-hypothesisadam1-1/+12
2018-01-01Revbump after boost updateadam629-1232/+1263
2018-01-01py-hypothesis: updated to 3.44.4adam2-7/+7
3.44.4: This release fixes :issue:1044, which slowed tests by up to 6% due to broken caching.
2018-01-01py-attrs: updated to 17.4.0adam3-10/+11
17.4.0: Backward-incompatible Changes - The traversal of MROs when using multiple inheritance was backward: If you defined a class C that subclasses A and B like C(A, B), attrs would have collected the attributes from B *before* those of A. This is now fixed and means that in classes that employ multiple inheritance, the output of __repr__ and the order of positional arguments in __init__ changes. Due to the nature of this bug, a proper deprecation cycle was unfortunately impossible. Generally speaking, it's advisable to prefer kwargs-based initialization anyways – *especially* if you employ multiple inheritance and diamond-shaped hierarchies. - The __repr__ set by attrs no longer produces an AttributeError when the instance is missing some of the specified attributes (either through deleting or after using init=False on some attributes). This can break code that relied on repr(attr_cls_instance) raising AttributeError to check if any attr-specified members were unset. If you were using this, you can implement a custom method for checking this:: def has_unset_members(self): for field in attr.fields(type(self)): try: getattr(self, field.name) except AttributeError: return True return False Deprecations - The attr.ib(convert=callable) option is now deprecated in favor of attr.ib(converter=callable). This is done to achieve consistency with other noun-based arguments like *validator*. *convert* will keep working until at least January 2019 while raising a DeprecationWarning. Changes - Generated __hash__ methods now hash the class type along with the attribute values. Until now the hashes of two classes with the same values were identical which was a bug. The generated method is also *much* faster now. - attr.ib\ ’s metadata argument now defaults to a unique empty dict instance instead of sharing a common empty dict for all. The singleton empty dict is still enforced. - ctypes is optional now however if it's missing, a bare super() will not work in slots classes. This should only happen in special environments like Google App Engine. - The attribute redefinition feature introduced in 17.3.0 now takes into account if an attribute is redefined via multiple inheritance. In that case, the definition that is closer to the base of the class hierarchy wins. - Subclasses of auto_attribs=True can be empty now. - Equality tests are *much* faster now. - All generated methods now have correct __module__, __name__, and (on Python 3) __qualname__ attributes.
2018-01-01Updated devel/libatomic_ops, devel/boost-*adam1-3/+1
2018-01-01boost: updated to 1.66.0adam10-73/+560
1.66.0: New Libraries Beast: Portable HTTP, WebSocket, and network operations using only C++11 and Boost.Asio, from Vinnie Falco. CallableTraits: A spiritual successor to Boost.FunctionTypes, Boost.CallableTraits is a header-only C++11 library for the compile-time inspection and manipulation of all 'callable' types. Additional support for C++17 features, from Barrett Adair. Mp11: A C++11 metaprogramming library, from Peter Dimov.
2018-01-01libatomic_ops: updated to 7.6.2adam2-7/+7
Changes: Allow to alter DEFAULT/MAX_NTHREADS values in test_malloc/stack Allow to select almost-non-blocking stack implementation explicitly Annotate AO_malloc with 'alloc_size' and 'malloc' attributes Avoid misleading 'AO_t undefined' error if wrong atomic_ops.h included Define AO_TS_SET to 1 (true) if GCC atomic_test_and_set is used Disable workaround in stack_pop_acquire that was needed for ancient Clang Do not define AO_GCC_FORCE_HAVE_CAS for Clang 3.8+ (Aarch64) Do not disallow to define double_load using built-in atomics (Aarch64) Do not expose AO_GCC_FORCE_HAVE_CAS macro to client code (GCC) Do not install documentation if configure --disable-docs (new option) Do not produce .tar.bz2 distribution file (configure) Eliminate '-pedantic is not an option that controls warnings' GCC message Eliminate data race in cons() of test_malloc Eliminate GCC-5 ASan global-buffer-overflow false positive for AO_stack_bl Fill in allocated memory with values depending on thread id (test_malloc) Fix 'bad register name %sil' assembler error (GCC-4.4/x86) Fix 'unknown attribute no_sanitize' compiler warning for GCC Fix AO_malloc for sizes near CHUNK_SIZE Fix memory leak in test_malloc Fix test failures for Clang-3.8 and older (Aarch64) Fix test_stack failure if AO_PREFER_BUILTIN_ATOMICS (GCC/Aarch64) Fix typo in AO_REAL_NEXT_PTR comment Increase the default number of threads to 16 in test_malloc/stack Mark unallocated/freed memory as inaccessible using ASan functionality New macro (DONT_USE_MMAP) to support testing as if mmap() is unavailable New macro to select stack implementation based on CAS-double Place no_sanitize attributes in a GCC-compliant way Prevent too long run of test_atomic_generalized (especially with TSan) Simplify '#if' expressions in gcc/x86.h (code refactoring) Test smallest allocation of large type (test_malloc) Use __builtin_expect in atomic_ops_malloc Use built-in atomics for load/store/CAS for Clang by default (Aarch64) Use double-word atomic intrinsics for recent Clang versions (gcc/x86.h) Use GCC atomic intrinsics for Hexagon (clang 3.9+) Use generalized double-wide load/store if AO_PREFER_GENERALIZED (Aarch64) Workaround 'unused result' code defects in atomic_ops.c, list_atomic Workaround Thread Sanitizer (TSan) false positive warnings Also, includes 7.4.8 changes
2018-01-01Cleaned up PLIST files.rillig16-18/+25
The actual cleanup has been done by pkglint: * Added missing identifier comments * Replaced ${PKGMANDIR} with a simple man, since the infrastructure does all the magic for PLISTs
2018-01-01Replaced $(ROUND) with ${CURLY} variable references.rillig47-125/+127
This has been a pkglint warning for several years now, and pkglint can even fix it automatically. And it did for this commit. Only in lang/mercury, two passes of autofixing were necessary because there were nested variables.
2018-01-01Removed unused linesadam1-6/+1
2018-01-01doc: Updated pkgtools/pkglint to 5.4.22rillig1-1/+2
2018-01-01Updated pkglint to 5.4.22.rillig39-413/+322
Changes since 5.4.21: * Refactoring: moved packages line and linechecks back into main * Fixed panic when autofixing package Makefiles * Removed apache22 * Added a bit of inline documentation
2018-01-01doc: Updated sysutils/checkperms to 1.12rillig1-1/+2
2018-01-01Updated checkperms to 1.12.rillig3-28/+12
Changes since 1.11: * Moved to GitHub * Incorporated patch for SCO
2018-01-01doc: Updated net/dhcpcd to 7.0.0roy1-1/+2
2018-01-01Import dhcpcd-7.0.0 with the following changes:roy2-7/+7
* dhcp: when unicasting on L3, unicast on L2 as well * dhcp: when rebooting, don't set cidaddr * dhcp6: don't listen on IPv6 addresses when not using DHCPv6 * dhcp: only set probe state when probing (fixes REBOOT reason) * linux: use IFA_F_NOPREFIXROUTE for IPv4 addresses * ipv6: disable kernel RA if interface is active * hooks: set protocol to link for link layer events
2018-01-01apache22: remove package itselfwiz23-3504/+0
2018-01-01doc: Updated net/syncthing to 0.14.42wiz2-3/+3
2018-01-01syncthing: update to 0.14.42.wiz2-7/+7
Bugfixes: #4353: Symlinks as folder root broken on Windows #4475: Discovering new files in a deleted directory does not resurrect the directory #4561: "Panic: interface conversion: *errors.errorString is not net.Error" after restart Enhancements: #2299: Auto-accept shared folders from trusted devices #4406: Empty directories in .stversions should be removed #4476: Human readable errors on attempted deletion of non-empty directory #4542: Support OneDrive folders on recent Windows 10 #4543: Add confirmation on Remove Folder / Device button
2018-01-01doc: mention apache22 removalwiz1-1/+22
2018-01-01apache22: remove, it was eol'd in June 2017wiz151-3295/+53
Remove packages that only work with apache22. Remove apache22 references.
2018-01-01Updated graphics/libwebp to 0.6.1ryoon2-3/+3
2018-01-01Update to 0.6.1ryoon3-9/+10
Changelog: libwebp-0.6.1 - 11/24/2017: version 0.6.1 This is a binary compatible release. * lossless performance and compression improvements + a new 'cruncher' mode (-m 6 -q 100) * ARM performance improvements with clang (15-20% w/ndk r15c, issue #339) * webp-js: emscripten/webassembly based javascript decoder * miscellaneous bug & build fixes (issue #329, #332, #343, #353, #360, #361, #363) Tool updates / additions: added webpinfo - prints file format information (issue #330) gif2webp - loop behavior modified to match Chrome M63+ (crbug.com/649264); '-loop_compatibility' can be used for the old behavior
2018-01-01Updated net/nsd to 4.1.19ryoon1-1/+2
2018-01-01Update to 4.1.19ryoon2-8/+7
Changelog: NSD 4.1.19 Dec 11, 2017 Bugfixes * ignore fallthrough compiler warning in flex EOF rule. * Fix warnings emitted by clang for --enable-packed. Alignment is not a problem for x86_64, don't enable packed when the platform requires aligned access. * Fix spelling error in xfr-inspect. * Fix 3392: Fix regression in 4.1.18 for notify lists with ip4 and ip6 targets. * Add test for support of -Wno-address-of-packed-member for --enable-packed. NSD 4.1.18 Nov 30, 2017 Features * xfr-inspect, it is not installed, it prints xfr files from /tmp made with 'make xfr-inspect' in the source dir. * retry timeout between sending notifies dropped from 15 to 3 sec. * NSD sends 16 notifies simultaneously. * configure --enable-packed reduces memory usage, at expense of unaligned reads. Saves about 17%. * Save memory by selectively allocate precompiled nsec3 hashes, saves about 16% memory. * make ip-transparent option work on OpenBSD. * Save about 2% memory by changing usage count size in name tree. * Fix #2871: Increase number of sockets for xfrd transfers. Bugfixes * Fix gcc 7.1.1 warnings. * Fix writev compile warning on FreeBSD. * Fix #1446: A corrupted zone file "propagates" to good ones. * nsd-control zonestatus prints wait time between attempts, for zones that are in that waiting time. * Fix collision printout of nsec3 to print name, hash and reverse. * Fix #1567: Change crit to err log level for gettimeofday failure. Add defines for compile without syslog. * Fix crash for DS query when parent and child zones both configured in nsd.conf and parent zone has not loaded properly.
2018-01-01Add icoutilsryoon1-1/+2
2018-01-01Added graphics/icoutils version 0.32.2ryoon1-1/+2
2018-01-01graphics/icoutils: import icoutils-0.32.2ryoon4-0/+38
The icoutils are a set of command-line programs for extracting and converting images in Microsoft Windows(R) icon and cursor files. These files usually have the extension .ico or .cur, but they can also be embedded in executables and libraries (.dll-files).
2018-01-01Updated www/firefox-l10n to 57.0.3ryoon1-1/+2
2018-01-01Update to 57.0.3ryoon2-371/+371
* Sync with www/firefox-57.0.3
2018-01-01Updated www/firefox to 57.0.3ryoon1-1/+2
2018-01-01Update to 57.0.3ryoon2-7/+7
Changelog: Fixed * Fix a crash reporting issue that inadvertently sends background tab crash reports to Mozilla without user opt-in (bug 1427111)
2018-01-01Set PKGNAME properlyryoon1-1/+2
2018-01-01Updated sysutils/open-vm-tools to 10.2.0ryoon1-1/+2