Commit graph

359234 commits

Author SHA1 Message Date
jperkin
190fdc6df7 doc: Added pkgtools/mktools version 20220607 2022-06-07 09:53:46 +00:00
jperkin
530f0bf560 mktools: Import new package, version 20220607.
Collection of tools written in C to improve the performance of certain
sections of the pkgsrc mk infrastructure where shell is too slow.

For now this just includes mk-buildlink-symlinks which is used to generate
the buildlink3 symlinks as part of the "wrapper" phase.
2022-06-07 09:53:36 +00:00
wiz
a5f6ccca4d TODO: add removal of introspection option 2022-06-07 09:36:16 +00:00
wiz
53aee86d74 mk: revert unintended commit 2022-06-07 09:35:15 +00:00
wiz
b45cc32a32 mk: remove documentation for introspection option
This option is not needed any longer and should be removed from packages
that still have it.

https://mail-index.netbsd.org/pkgsrc-users/2022/06/06/msg035658.html
2022-06-07 09:34:50 +00:00
wiz
9f21e9de38 doc: Updated sysutils/e2fsprogs to 1.46.4nb2 2022-06-07 08:17:46 +00:00
wiz
e2bdb3d684 e2fsprogs: turn off nls option
The option is broken - the files it wants to install are not created
(all listed bulk builds on bulktracker mark this as 'failed').

Bump PKGREVISION.
2022-06-07 08:17:37 +00:00
wiz
683b4f8eda doc: Updated math/openfst to 1.8.2 2022-06-07 07:58:33 +00:00
wiz
9a80b71012 openfst: update to 1.8.2.
OpenFst: Release 1.8
   * Adds farencode (1.8.2)
   * Deletes MakeArcMapFst in favor of CTAD on ArcMapFst (1.8.2)
   * Removes `int64` (etc.) type shims in place of <cstdint> (1.8.2)
   * Expands smart-pointer use (1.8.1)
   * Expands std::string_view use (1.8.1)
   * Removes SymbolTableReadOptions (1.8.1)
   * Adds farconvert (1.8.0)
   * Migration to C++17 (1.8.0)
   * Updates Bazel build (1.8.0)
   * Better handling for empty FARs (1.8.0)
   * Improves to ExpectationWeight (1.8.0)
   * Improves display of properties masks in pywrapfst (1.8.0)
   * Internal reference-counting/smart pointer improvements (1.8.0)
   * Deprecates PROJECT_(IN|OUT)PUT in favor of scoped enum ProjectType (1.8.0)

OpenFst: Release 1.7
   * TokenType is now a scoped enum (1.7.8)
   * pywrapfst is now Python 3-only (1.7.8)
   * fstproject now has --project_type flag (1.7.8)
   * BitmapIndex is now 2x faster for Select0/Select1 (1.7.8)
   * Property testing is now thread-safe (1.7.7)
   * Modernizes random generation (1.7.7)
   * Adds MakeArcMapFst (1.7.6)
   * Adds RealWeight and Real64Weight (1.7.6)
   * Adds a new, idiomatic SymbolTable iterator interface (1.7.6)
   * Improves symbol table lifetime management in pywrapfst (1.7.6)
   * Improves the design of the FST class hierarchy in pywrapfst (1.7.6)
   * Removes unnecessary template parameters in constructors (1.7.5)
   * Converts RmEpsilonFstOptions from class to struct (1.7.5)
   * Eliminates redundant checks in Minimize (1.7.5)
   * CompactFst is now templated on Compactor rather than ArcCompactor (1.7.4)
   * Removes harmful constexpr specifications in the FAR extension (1.7.4)
   * Improved script API support for EncodeMapper (1.7.4)
   * New header format for the EncodeMapper (1.7.4)
   * Many cleanups to the n-gram extension (1.7.4)
   * Improved C++17 compatibility shims (1.7.4)
   * Overloads Arc constructors with default weight argument (1.7.3)
   * Fixes RmEpsilon and Union property checking bugs (1.7.3)
   * Makes Isomorphic more robust to nondeterminism (1.7.3)
   * Adds default weight argument to SetFinal (1.7.3)
   * Cleans up low-level logging (1.7.3)
   * Adds power-weight mappers (1.7.3)
   * Adds expander cache (1.7.3)
   * Fixes bug with coinaccessible states in NaturalAStarEstimate (1.7.2)
   * Optionally allows building with Bazel (1.7.2)
   * Simplifies string printing interface (1.7.2)
   * Marks weight converters const (1.7.2)
   * Adds NoMatchComposeFilter (1.7.2)
   * Removed static assertions that trigger bugs in GCC (1.7.1)
   * Evaluates many weight operations at compile-time (1.7.1)
   * Improved use of move semantics, especially in cache-backed FSTs (1.7.0)
   * Adds configure-time test for float equality reflexivity (1.7.0)
   * Removes volatile qualifiers from float weights (1.7.0)
   * Protections for signedness in string compiler (1.7.0)
   * Adds additional overloads to Equals (1.7.0)
   * Clean-up to weight constructors (1.7.0)

OpenFst: Release 1.6
   * Optimized label lookup in SymbolTable (1.6.9)
   * Fixed HashMatcher issues with SetState() and Find() consistency (1.6.8)
   * Fixed PROGRAM_FLAGS documentation string in binaries (1.6.8)
   * Fixed handling of symbol tables in EpsNormalize (1.6.8)
   * Fixed error reporting when FST arc type unknown (1.6.8)
   * The first_path option to ShortestPath is now optimal for A* (1.6.7)
   * Renames SymbolTable::kNoSymbol to kNoSymbol (1.6.7)
   * Exposes PowerMapper to the scripting API (1.6.7)
   * Fixes linking of the special SOs (1.6.7)
   * Adds kShortestDelta for operations dependent on shortest-distance (1.6.6)
   * Adds Python methods for (un)pickling and (de)serializing FSTs (1.6.6)
   * Adds constructive variants of Invert and Project (1.6.6)
   * Increases code sharing in MemoryPool/MemoryArena (1.6.6)
   * Improves consistency of matcher FST ownership (1.6.6)
   * Fixes error handling in HashMatcher (1.6.6)
   * Adds non-trivial A* estimator class (1.6.6)
   * Prevents unreachable code generation in libfstscript (1.6.5)
   * Adds move constructors for non-trivial weight types (1.6.5)
   * Standardizes method names for tuple weight types (1.6.5)
   * Eliminates undefined behavior in weight hashing (1.6.5)
   * Optimizes binary search in SortedMatcher (1.6.5)
   * Adds SetWeight (1.6.5)
   * Fixes typing error in Python FAR reader (1.6.4)
   * Removes restriction that Prune argument have commutative weights (1.6.3)
   * Improves configuration of CompositeWeight readers and writers (1.6.3)
   * Improves accuracy of ShortestDistance summation (1.6.3)
   * SetFinal now "moves" its weight argument (1.6.3)
   * Exposes ArcIterator and EncodeMapper flags in Python (1.6.3)
   * Properly sets return codes in FST binaries (1.6.3)
   * Eliminates StringWeight macros (1.6.3)
   * Finalizes most virtual method overrides (1.6.2)
   * Adds float format support to FST drawing (1.6.1)
   * Fixes missing includes of <fst/log.h> (1.6.1)
   * Adds the "special" extension and the fstspecial binary; this is similar to
     fstconvert but accepts arguments for specifying special labels (phi, rho,
     and sigma) of FSTs (1.6.0)
   * Exposes allow_negative_label option for Python symbol tables (1.6.0)
   * Many classes and constants moved into an internal namespace (1.6.0)
   * Extensive modernization for C++11 style (1.6.0)
   * Adds Member method to SymbolTable (1.6.0)
   * Adds HashMatcher (1.6.0)

OpenFst: Release 1.5
   * Generalized epsilon normalization to non-functional case (1.5.0)
   * Added multiple pushdown transducer (MPDT) support (1.5.0)
   * Added general gallic (plus is union) semiring (1.5.0)
   * Added p-subsequential determinization (1.5.0)
   * Fixed missing Isomorphic components (1.5.0)
   * Added FST compression extension (1.5.0)
   * Added final method to matchers (1.5.0)
   * Fixed various compiler issues (1.5.0)
   * Fixed Isomorphic function (1.5.0)
   * Added Python extension (1.5.0)
   * Added UnionWeight (1.5.0)
   * Added missing const qualification to (1.5.1):
      - SymbolTableIterator access
      - EncodeMapper writing to file
      - EncodeMapper SymbolTable access
   * Added TrivialComposeFilter for more efficient composition when one
     of the arguments is epsilon-free (1.5.1)
   * Added InputEpsilonMapper and OutputEpsilonMapper arc mappers (1.5.1)
   * Added properties bits kUnweightedCycles and kWeightedCycles (1.5.1)
   * Replaced internal custom reference-counting (RefCounter) with C++11 smart
     pointers where possible, and fixed reference-counting bugs (1.5.1)
   * When calling DeleteStates on a MutableFst with a shared impl, the impl
     is set to a new empty impl rather than copying and deleting (1.5.1)
   * Prepended Pdt to the Expand libraries and classes in the PDT
     extension, and prepended MPdt to the Expand libraries and classes
     in the MPDT extension, so that both can be used in the same compilation
     unit (1.5.1)
   * Added option to PDT Replace for compiling a strongly-regular RTN into a
     bounded-stack PDT (1.5.1)
   * Improved symbol table support for PDT Replace, including automatic
     generation of parentheses symbols (1.5.1)
   * Improvements to scripting API (1.5.1):
      - Added methods for FST access and mutation
      - Added additional checks for arc/weight compatibility
      - WeightClass::One and WeightClass::Zero now require a specified weight
        type at time of construction
      - Improved VectorFstClass constructors
      - Added linear-time check for cyclic dependencies in Replace
      - Added EncodeMapperClass, a template-free box for an EncodeMapper
   * Improvements to the binaries (1.5.1):
      - Fixed no-op --precision flag to fstdraw (1.5.1)
      - Fixed no-op --file_list_input flag to farcreate (1.5.1)
   * Improvements to the Python extension (1.5.1):
      - Adds methods for creating an empty mutable FST
      - Adds methods for FST access via state and arc iteration
      - Adds FST compilation from arclists (cf. fstcompile)
      - Adds FST printing and drawing
      - Adds FarReader and FarWriter classes.
   * Consolidated Python extension into single module (1.5.2)
   * FarReader's GetFst method now returns a pointer (1.5.2)
   * Python add_arc now takes an Arc object (1.5.2)
   * Fixed build flags for dlopen (1.5.2)
   * Fixed FSTERROR macro (1.5.2)
   * Scripting API and Python weight objects now support semiring arithmetic
     (1.5.3)
   * Mutation methods of the Python Fst object now support chaining (1.5.3)
   * Adds optional minimization of non-deterministic FSTs (1.5.3)
   * Adds check for error when opening files when compiling strings into FARs
     (1.5.4)
   * Prevents underflow when using LogProbArcSelector in random generation
     (1.5.4)
   * Adds routines for parsing string flags to the scripting API (1.5.4)
   * Makes random weight generators a single template class (1.5.4)
   * Makes weight Properties constexpr where possible (1.5.4)
   * Adds RemoveSymbol method to SymbolTable (1.5.4)

OpenFst: Release 1.4
   * Port to C++11 (1.4.0)
   * Isomorphic function added (1.4.0)
   * Disambiguate function added (1.4.0)
   * Matcher interface augmented with Priority method
   * Special matchers (rho/sigma/phi) can match special symbols
     on both input FSTs in composition/intersection provided at each
     state pair they only match one side (1.4.0)
   * Added ExplicitMatcher to suppress implicit matches (e.g. epsilon
     self-loops) (1.4.0)
   * Linear{Tagger,Classifier}Fst extensions added (1.4.0).
   * Generalized state-reachable to work when input is cyclic (so long as no
     final state is in a cycle). This ensures label-reachable (and hence label
     lookahead) works with cyclic input (1.4.0)
   * Added Condense to build the condensation graph (SCCs condensed to single
     states) of an FST (1.4.0).
   * Added an option to Reverse to specify whether a super-initial state
     should always be created (1.4.0).
   * Fixed bugs in FirstCacheStore, PowerWeight, and StringCompiler (1.4.0).
   * Changed SymbolTable to use faster data structure (1.4.0).
   * Added 'min' disambiguation in determinizaton to keep only the minimum
     output in a non-functional transducer when plus=min/max
     (flag --disambiguate_output) (1.4.1)
   * Compiler issues in linear-fst fixed (1.4.1)

OpenFst: Release 1.3
   * Support for non-fatal exits on errors: (1.3.1)
      - Added FLAGS_fst_error_fatal: FST errors are
        fatal if true (default); o.w. return objects flagged as bad:
        e.g., FSTs - kError
        prop. true, FST weights - not a Member().
      - Added kError property bit signifying bad FST
      - Added  NoWeight() method to FST weight requirements that returns
        weight that is not a Member().
   * Various improvements to the FAR extensions (1.3.1)
      - a single FST is now a FAR type
      - FLAGS_initial_symbols: Uses the symbol table from the
        first FST in the archive for all entries"
      - Input/output to standard input/output for some FAR and arc types
   * --with-icu configuration option no longer needed (1.3.1)
   * Improved flags usage esp. if use SET_FLAGS not SetFlags/InitFst (1.3.2)
   * Added 'fst' as possible far writer type (1.3.2)
   * phi matcher can now accept 0 as the phi label (1.3.2)
   * Added ngram-fst extension (1.3.2)
   * Improved performance of PDT composition (1.3.3)
   * Memory-map support (1.3.3)
   * Fixed cross-FST serialization issues (1.3.3)
   * Fixed NGramFst off-by-one issue (1.3.3)
   * farextract now allows one to specify a list of comma-separated keys,
     including key ranges (1.3.3)
   * Fixed bug in PDT replace that could cause close paren IDs to collide
     with open paren IDs (1.3.4)

OpenFst: Release 1.2
   * Added lookahead matching and filtering for faster composition
   * Added EditFst for mutation of o.w. immutable FSTs
   * Added script sub-namespace defining type FstClass, a non-templated
     Fst<Arc> to hold the arc template type internally. This and FST
     operations on it allow easier I/O and scripting at the cost of some
     runtime dispatching.
   * Added per-arc-iterator control of Fst caching.
   * Added PowerWeight and Power Arc.
   * Added SparsePowerWeight and SparsePowerArc (1.2.4)
   * Added SignedLogWeight and SignedLogArc (1.2.4)
   * Added ExpectationWeight and ExpectationArc (1.2.4)
   * Added AStarQueue, PruneQueue and NaturalPruneQueue disciplines (1.2.6)
   * Added Log64Weight and Log64Arc to FST library throughout, including
     support throughout scripts/bins/dsos (1.2.8)
   * Added delayed RandGenFst that outputs tree of paths weighted
     by count (1.2.8)
   * Added fstsymbols shell-level command
   * Added total weight removal option to pushing
   * Changed methods for symbol table mutation:
     use MutableInputSymbols()/MutableOutputSymbols().
   * Numerous efficiency improvements esp in composition, replace, and caching
   * Made "fstmap" handle semiring conversion by adding "to_std", "to_log"
     and "to_log64" as supported 'map_type' arguments (1.2.8).
   * Made the destructive implementation of RmEpsilon skip over states
     admitting no non-epsilon incoming transition (1.2.8).
   * Fixed numerous bugs (1.2 through 1.2.9) including:
      - improper types of some approximation deltas
      - sub-optimal hashing functions
      - issues in internal reuse of shortest distance
      - hashing bug in FloatWeight
      - bug in shortest path queue
      - symbol table checksumming issues
      - various C++ standards issues
      - Visit() behavior when visitation aborted
      - Decode() hash performance bug (1.2.1)
      - EditFst::Copy(bool) method when the boolean parameter is true (1.2.7)
      - SymbolTable memory leak in Invert() (1.2.8)
      - Added escaping of " and \ in labels in fstdraw, needed for dot to
        function properly (1.2.8)
      - Fixed handling of final weight of start state in fstpush (1.2.8)
      - Added FST_LL_FORMAT to fix 64-bit integer printf issues (1.2.9)
      - Fixed missing <functional> includes (1.2.9)
      - Fixed reused local variable names (1.2.9)
      - Fixed passing string by reference in FstDraw args (1.2.9)
   * Added extensions directories including:
      - finite-state archive (FAR) utilities,
        added stlist format supporting writing/reading to/from standard out/in
        at the library-level (1.2.8)
      - compact FSTs
      - lookahead FSTs
      - pushdown transducers (improved in 1.2.1 through 1.2.7).
   * Added StateMap/StateMapFst; renamed Map/MapFst to ArcMap/ArcMapFst;
     map/MapFst retained (but deprecated) (1.2.9)
   * Deleted ArcSum() and ArcMerge; use StateMap w/ ArcSumMapper and
     ArcUniqueMapper (1.2.9).
   * Incremented version of ConstFst/CompactFsts to stop memory alignment
     that fails on pipes. Made old version raises errors when read on
     pipes (1.2.9).
   * Improved determinize hash (1.2.9)
   * Removed stdio uses (1.2.10)
   * Fixed library ordering issues esp. with newer GNU build tools (1.2.10)
2022-06-07 07:58:23 +00:00
wiz
f5655a5dda doc: Updated databases/deforaos-libdatabase to 0.0.2nb7 2022-06-07 07:44:33 +00:00
wiz
45b4160194 deforaos-libdatabase: fix PLIST for fixed gtk-doc
and depend on it. Bump PKGREVISION.
2022-06-07 07:44:24 +00:00
wiz
be706a6d7a doc: Updated security/lasso to 2.7.0nb4 2022-06-07 07:39:55 +00:00
wiz
348fdac7c7 lasso: fix PLIST for fixed gtk-doc
and depend on it. Bump PKGREVISION.
2022-06-07 07:39:45 +00:00
wiz
b60c752bca doc: Updated devel/deforaos-cpp to 0.0.6nb1 2022-06-07 07:38:07 +00:00
wiz
c1ca4bafbc deforaos-cpp: fix PLIST for fixed gtk-doc
and depend on it. Bump PKGREVISION.
2022-06-07 07:37:58 +00:00
wiz
fe8e2743d1 doc: Updated x11/deforaos-libdesktop to 0.4.1nb1 2022-06-07 07:30:31 +00:00
wiz
eeaf8e2e8f deforaos-libdesktop: update PLIST for fixed gtk-doc
and depend on it. Bump PKGREVISION.
2022-06-07 07:30:20 +00:00
gutteridge
0a26a61623 firefox: 101 requires rust>=1.59 2022-06-07 03:36:31 +00:00
ryoon
a1e1f82b3f doc: Updated converters/dos2unix to 7.4.3 2022-06-06 21:09:58 +00:00
ryoon
87359f120e dos2unix: Updateto 7.4.3
CHangelog:
New Serbian tranlation of the manual. Updated Esperanto translation.
2022-06-06 21:09:28 +00:00
ryoon
66d6f9b787 doc: Updated www/firefox-l10n to 101.0 2022-06-06 21:02:08 +00:00
ryoon
b334bbe77e firefox-l10n: Update to 101.0
* Sync with www/firefox-101.0.
2022-06-06 21:01:22 +00:00
ryoon
9e1f1a4361 doc: Updated www/firefox to 101.0 2022-06-06 21:00:59 +00:00
ryoon
b9a8492c24 firefox: Update to 101.0
* Under NetBSD/i386 9, rustc consumes all RAM and swap and failed
  to build this package.

Changelog:
New

  * Reading is now easier with the prefers-contrast media query, which allows
    sites to detect if the user has requested that web content is presented
    with a higher (or lower) contrast.

  * It??s your choice! All non-configured MIME types can now be assigned a
    custom action upon download completion.

  * Firefox now allows users to use as many microphones as you want, at the
    same time, during video conferencing. The most exciting benefit is that you
    can easily switch your microphones at any time (if your conferencing
    service provider enables this flexibility).

Fixed

  * Various security fixes.

Changed

  * Removed "subject common name" fallback support from certificate validation.
    This fallback mode was previously enabled only for manually installed
    certificates. The CA Browser Forum Baseline Requirements have required the
    presence of the "subjectAltName" extension since 2012, and use of the
    subject common name was deprecated in RFC 2818.
2022-06-06 20:59:39 +00:00
tron
e69f1d1849 Note update of the "mutt" package to version 2.2.6 2022-06-06 20:58:49 +00:00
tron
04e9866001 mutt: Update to version 2.2.6
This is a bug-fix release, fixing a variety of small issues.
2022-06-06 20:58:33 +00:00
ryoon
034cae8435 doc: Updated devel/cbindgen to 0.23.0 2022-06-06 20:53:44 +00:00
ryoon
756dfd0413 cbindgen: Update to 0.23.0
Changelog:
0.23.0:
    Better support for constexpr. (#756)
    constexpr is now enabled by default in C++ mode. You can use const.allow_constexpr=false to revert to previous behavior. (#756)
    Minimum syn version no longer parses old rust code. (#754)

0.22.0:
    Support rename rule for union body members (#751).
    constant: Add support for associated constant expressions (#752).
    Fix regression in CamelCase rename rule (should be lowerCamelCase) (#750).
    enumeration: simplify standard types in variants (#749).
    Avoid generating and writing bindings when called recursively (#747).
    Cython: Omit per-variant tags in unions generated for Rust enums (#748).
    Update various dependencies.

0.21.0:
    Update MSRV to 1.54.0
    Update clap to 3.1.
    Update heck to 0.4.0
    unraw identifiers
    Honor documentation_length in Cython.
    Add documentation_style to with short and full options
    Map RawFd to Int
    Respect remove_underscores config when prefixing name to enum
2022-06-06 20:53:06 +00:00
rhialto
b82eb1ca78 emulators/simh: add notes re license, simh3, open-simh. 2022-06-06 14:21:55 +00:00
rhialto
6b06156960 Add open-simh and simh3. 2022-06-06 14:20:45 +00:00
rhialto
54f33b9b25 doc: Added emulators/open-simh version 4.0.0.20220531 2022-06-06 14:20:25 +00:00
rhialto
c2de251284 Add emulators/open-simh.
The fork from emulators/simh due to licensing issues.
2022-06-06 14:20:07 +00:00
rhialto
5377e4612a doc: Added emulators/simh3 version 3.12.2 2022-06-06 14:19:04 +00:00
rhialto
68fc053175 Add emulators/simh3.
The "original" Bob Supnik-maintained series.
2022-06-06 14:18:05 +00:00
taca
2eaacf0984 doc: Updated databases/ruby-sequel to 5.57.0 2022-06-06 13:40:22 +00:00
taca
108bf954f9 databases/ruby-sequel: update to 5.57.0
5.57.0 (2022-06-01)

* Make Database#create_function on PostgreSQL accept :parallel option
  (bananarne) (#1870)

* Add support for :on_update_current_timestamp column option on MySQL
  (jeremyevans)

* Add is_distinct_from extension with support for the IS DISTINCT FROM
  operator (jeremyevans)

5.56.0 (2022-05-01)

* Make alter_table add_column/add_foreign_key methods support :index option
  to create an index on the column (jeremyevans)

* Support creation of STRICT tables on SQLite 3.37.0+ via create_table
  :strict option (jeremyevans)

* Add sqlite_json_ops extension for DSL support for JSON functions and
  operators added in SQLite 3.38.0 (jeremyevans)

* Recognize "INTEGER" type same as "integer" type in the schema dumper,
  helpful on SQLite 3.37.0+ (jeremyevans)
2022-06-06 13:39:58 +00:00
taca
bf26cb110b doc: Updated databases/ruby-moneta to 1.5.1 2022-06-06 13:28:28 +00:00
taca
2b94276ec3 databases/ruby-moneta: update to 1.5.1
1.5.0 (2022/04/06)

* Adapters - internally, most (all?) adapters now inherit from a base
  Adapter class

* Adapters - adapter configuration is now accessed via a config method on

* each adapter - see the code for examples. This shouldn't affect

* users unless they were directly modifying adapters' attributes.

* Redis - fix deprecation warnings for Redis 4.6+ multi/pipelined handling
  (#215)

* Mongo - slight improvement to error handling

1.5.1 (2022/04/13)

* Adapters::File - fix an implicit hash issue in Ruby 3 (#222)
2022-06-06 13:28:05 +00:00
taca
05373bbcac doc/TODO: SOGo and go-hugo
+ SOGo-2.4.3, SOGo-5.6.0, SOPE-2.4.3, SOPE-5.6.0, go-hugo-0.99.1.
2022-06-06 13:24:47 +00:00
taca
9425cafa5d doc: Updated databases/ruby-hiera to 3.9.0 2022-06-06 13:23:37 +00:00
taca
6f143630d4 databases/ruby-hiera: update to 3.9.0
No release note nor change log.  Please refer:
<https://github.com/puppetlabs/hiera/compare/3.8.0...3.9.0>.
2022-06-06 13:23:13 +00:00
martin
2b79263475 doc: Updated audio/mserv to 0.35nb24 2022-06-06 12:13:02 +00:00
martin
f1cab3d024 Fix handling of 64bit time_t on 32bit archs 2022-06-06 12:12:47 +00:00
fcambus
cbfcdeef83 doc: Added net/czds version 1.0.6 2022-06-06 08:47:21 +00:00
fcambus
fe14d0a720 Add czds. 2022-06-06 08:47:02 +00:00
fcambus
fac8ff154f net/czds: import czds-1.0.6.
Client to ICANN's Centralized Zone Data Service (CZDS) REST API using
both the documented and undocumented API endpoints. Should allow you
to perform almost any action you can in the web interface via this API.
2022-06-06 08:46:12 +00:00
dholland
f9d80a22e4 CHANGES for blt and tkdesk. 2022-06-06 05:12:27 +00:00
dholland
4b1b7be5d3 Fix up sysutils/tkdesk, some.
- Fix up the TCL interpreter result handling so we don't need to use
   USE_INTERP_RESULT.

 - Fix the first startup segfault (probably the one seen in PR 32807
   but not necessarily) by using Tcl_Free instead of trying to bypass
   it. Unfortunately, there's at least one more segfault at startup
   with no obvious cause.

 - Don't run off the end of string buffers.

 - Remove some uses of sprintf. Use standard headers. Other minor
   tidyups.

 - Correct glitch in the configury patches that made it link
   statically to blt.

 - Avoid passing empty variable names to test(1) during configure.

 - Fix some pkglint.

Bump PKGREVISION to 4, because even though it didn't run and still
doesn't, it does build. :-|
2022-06-06 05:11:58 +00:00
dholland
8479111d9e Patch up x11/blt some.
Most importantly, fix up what it passes to the TCL package handling
functions, since as it was the library won't initialize. I can't
remember when this changed in TCL but I've seen the same issue
before... years ago. This library has likely been inoperable all that
time.

Patch up a whole bunch of build warnings, some significant.

However, it probably still doesn't work and in addition to a lot more
routine build issues it needs attention from someone who knows more
tcl than me.

Bump PKGREVISION (to 13). I'm not going to bump the handful of
dependent packages since I don't think I've done anything to change
the interface, plus they're all likely inoperable anyway given how
broken this thing looks.

Prerequisite for checking PR 32807 for currency, since it depends on
blt and blt won't load. But I rather imagine the problem seen at the
time was blt dumping core.
2022-06-06 04:27:14 +00:00
gutteridge
2effd70468 curses.builtin.mk: fix a typo in a comment 2022-06-06 01:24:11 +00:00