Commit graph

339638 commits

Author SHA1 Message Date
adam
adba434e2f cmake: updated to 3.20.3
CMake 3.20.3
* Help: Use relative path for IDE Integration guide link to preset schema
* BinUtils: Use more-private temporary variable names
* ObjectiveC: Respect OSX_ARCHITECTURES for OBJC
* FindBoost: Add support for Boost 1.76
* Ninja: Restore support for Fortran in a symlinked build tree
* Utilities/Sphinx: Update man page config for Sphinx 4
* ExternalProject: Ensure git fetch if updating to hash we don't have yet
* ExternalProject: Only add git config setting with git 1.7.7 or later
* Ninja Multi-Config: Split long command lines by config
* CMP0082: Check EXCLUDE_FROM_ALL property at generate time
* GNU: C++17 default version
* GNU: Final C++20 flags
* GNU: C++23 support
* CUDA: improve regex for CUDA Toolkit root from nvcc verbose output
* cmCommandLineArgument: Correctly record parsing failures
* cmake: `--build` and `--install` error out when encountering bad flags
* cmCommandLineArgument: Provide more information syntax error messages
* NVHPC: Support explicit language flags
* NVHPC: Support Ninja dependency scanning
2021-05-29 06:14:40 +00:00
mef
792329b84a doc: Updated cad/klayout to 0.27 2021-05-29 06:09:27 +00:00
mef
dd8f366da9 (cad/layout) Udated 0.26.11 to 0.27 based on wip/klayout by Atsushi Toyokura
0.27            (2021-05-02):

* Enhancements: Numerous new functions for the RBA and pya API
      Some highlights:
       * "Texts" for text collections (similar for Edges/EdgePairs/Region)
       * New modes for blending layout files - see GitHub issue #666
       * New function Cell#transform - see GitHub issue #598
       * New functions for Image (read, write, clear)
       * New functions for Region and Edges correlating with the new DRC features
       * Multi-cell hierarchical copy/move of trees - will maintain shared instances
       * RBA: iterators are now automatically made available as Enumerable
       * All functions having a void return specification now return self (allows chaining)
       * More functions for manipulating selections (LayoutView#select_all etc.)
       * Spline interpolation code available in new "Utils" namespace
       * QByteArray support, mapping to Python byte arrays
       * MainWindow#set_key_bindings, MainWindow#get_key_bindings, MainWindow#set_menu_items_hidden etc.
       * New class RecursiveInstanceIterator (similar to RecursiveShapeIterator, but acts on instances)
       * Deep vs. flat operations do not always flatten out now (flat vs. deep does however)
       * Global transformations for inputs
* Enhancements: New DRC features
      Some highlights:
       * Better support for texts - "text layers"
       * Combined AND+NOT feature for separating regions into inside and outside part
       * "max_vertex_count" and "max_area_ratio" configuration options
       * "forget" for memory optimization
       * Shielding is optional now for some DRC functions
       * "interact" now has a count filter
       * In verbose more, figure counts and more information is printed
       * Generic DRC function and complex DRC operations: for details search "Universal DRC" in documentation
       * "not_opposite" and "rect_filter" options for some DRC functions
       * "enclosing" (selects polygons entirely enclosing others)
       * New filters for polygons: squares, non_squares, area ratio, bbox aspect ratio
       * More intuitive specification of projection limits ("projecting < 2.um")
       * "with_holes" and "without_holes", also with count
       * Density check is included now ("with_densitiy", "without_density")
       * "split_..." functions give interacting/non-interacting sets in one step
       * Better support for generic transformations as Matrix2d and Matrix3d
       * "fill" and "fill_with_left" functions for dummy fill
       * NO "connected" feature yet. Sorry. Had to drop it to finish this release.
* Enhancements: new LVS features
      Some highlights:
       * Improved netlist and LVS result browser (infinite-depth browsing)
       * Improved circuit match algorithm
       * Case insensitive handling of object names for SPICE netlists
       * Probe feature fixed in flat mode
       * "connect_explicit": for details search "connect_explicit" in documentation
* Enhancements: New features for images
      Some highlights:
       * New menu item: show and hide all images - see GitHub issue #535
       * False color nodes now can have a left and right color allowing color steps
       * Persistance of images through a special file format: "lyimg" (XML based)
* Enhancements: LEF/DEF reader
      Some highlights:
       * Support for layer map files
       * More complete spec support (e.g. FILL, MASK, FOREIGN, DO/BY/STEP ...)
       * Several bug fixes, e.g. routing layer switch for VIAs
       * Some functions also act on the transient selection (less mouse clicks)
* Enhancements: Layout editing and rulers
      Some highlights:
       * Object properties now are changed without having to commit the dialogs
       * Dockable editor options windows
       * "Recently used" list
       * A "distribute objects" feature (Edit/Selection/Distribute)
       * Snap highlighting
       * Mouse tracking cursor indicates grid- and object-snapped location
* Enhancements: Help browser
       * Bookmarks
       * Search in page (Ctrl+F)
* Enhancement: Improved fill tool
      The fill tool now also supports skewed fill pattern repetitions
* Enhancement: Ability to utilize a LayoutView as a Widget
      Standalone instantiation of a LayoutView object is
      supported now. So it becomes possible to create
      custom MainWindow UIs and embed a layout view there.
* Enhancement: Improved layer and cell list filtering and searching
* Enhancement: Experimental 3d (called 2.5d) view of layout
      For details search "2.5d View" in documentation.
* Enhancement: Improved performance on sea of instances for OASIS files
      Iterated OASIS instances are stored and handled in a leaner way in viewer mode
* Enhancement: Buddy scripts can concatenate files with "+" for input
      Concatenation happens by "blending files". Beware of the risk this implies.
      A new option "--blend-mode" has been introduced for supporting overwrite, skip
      and variant formation in case of cell name conflicts. See buddy script help.
* Enhancement: Layer maps now support n:m layer mapping
      This allows mapping n input layers to one logical layer (merging) and also
      one input layer to m logical ones (clone layer). This applies to the
      buddy scripts and layer maps inside KLayout's reader.
* Enhancement: include mechanism for easy include of files into DRC/LVS scripts
      This is a plain text substitution feature. Don't use it for Ruby or Python
      scripts (the preferred way is still require/import). But it's a quick way
      to include partial DRC and LVS scripts without having to worry about variable
      scope. For details see "Including other files" in the documentation under:
      KLayout User Manual/Design Rule Check (DRC)/DRC Runsets.
* Bugfix: %GITHUB%/issues/771
      Fixed an issue with QByteArray/QVariant transformation in Qt binding
* Bugfix: %GITHUB%/issues/750
      PCB gerber import: Incorrect handling of D02 operations.
* Bugfix: %GITHUB%/issues/747
      Proper handling of comments in RVE DB reader
* Bugfix: %GITHUB%/issues/740
      Bug in the "smooth" function.
* Enhancement: %GITHUB%/issues/715
      A separate search range can be specified for box selections now
* Enhancement: %GITHUB%/issues/691
      Technology specific libraries: library name resolution based on technology.
* Enhancement: %GITHUB%/issues/666
      Controlling the way a layout reader integrates cells into an existing layout.
* Bugfix: %GITHUB%/issues/663
      Deep mode DRC: separation from "inside" gives wrong errors.
* Enhancement: %GITHUB%/issues/648
      LVS could not do "connect_implicit" with global nets.
* Bugfix: %GITHUB%/issues/609
      Internal error on net extraction.
* Enhancement: %GITHUB%/issues/598
      Plain transformation of cell missing.
* Enhancement: %GITHUB%/issues/588
      RBA/PYA: Provide event when a net is selected in the netlist browser.
* Enhancement: %GITHUB%/issues/563
      True support for text objects in DRC/LVS (text layers).
* Enhancement: %GITHUB%/issues/558
      Edges#extents, Texts#extents and EdgePairs#extents now
      work hierarchically in deep mode. In DRC, this means,
      "extents" is a deep-enabled method now.
* Enhancement: %GITHUB%/issues/535
      Image handling enhancements.
* Enhancement: %GITHUB%/issues/521
      Enhanced API for ObjectInstPath.
* Enhancement: %GITHUB%/issues/487
      Difficult to select specific labels for net name assignment in net extraction.
      Solution involves a more elaborate handling of texts through "text layers.

0.26.12         (2021-04-21):

* Bugfix: %GITHUB%/issues/747
  Result browser gives error message with // lines in RVE files
* Bugfix: %GITHUB%/issues/771
  Problem with QMimeData binding
2021-05-29 06:08:56 +00:00
wen
c2acad96dd Updated time/p5-DateTime-Format-MySQL to 0.0701 2021-05-29 01:33:23 +00:00
wen
ffea49d196 Update to 0.0701
Upstream changes:
0.0701  2021-05-22

- Fix versioning, reindex

0.07    2021-05-21

- if microseconds are set on provided DateTime object to time_format,
  use them. Fixes RT #136549
2021-05-29 01:32:22 +00:00
wen
67f4b9e184 Updated textproc/p5-PPIx-QuoteLike to 0.017 2021-05-29 01:20:03 +00:00
wen
670fdbf498 Update to 0.017
Upstream changes:
0.017           2021-04-16      T. R. Wyant
    All uses of the postderef argument to new() now warn.

0.016           2021-03-26      T. R. Wyant
    Add rt.cpan.org back to bug reporting methods. Long live RT!

    Get prerequisites up to snuff, and add xt/author/prereq.t to ensure
    they stay that way.

    Refactor authortest into three, so I do not have to generate stub
    files to test without optional modules.

0.015           2021-02-05      T. R. Wyant
    Handle <<\EOD and <<~\EOD, which are equivalent to <<'EOD' and
    <<~'EOD', respectively.

    Recognize indented here documents. Thanks to Olaf Alders (oalders)
    for alerting me to this omission.

0.014           2021-01-14      T. R. Wyant
    Add Travis CI testing.

    Use GitHub as bug tracker. R.I.P. rt.cpan.org.
2021-05-29 01:19:07 +00:00
dholland
9e78167a25 pysolfc 2021-05-29 00:20:45 +00:00
dholland
a1f4958a03 pysolfc apparently uses py-six. PKGREVISION -> 3 2021-05-29 00:20:15 +00:00
wiz
62ccbd5e2d libnet1*: remove bogus conflict with libnet
They do not install in the same location.
2021-05-28 14:21:26 +00:00
pin
def41fc3cb doc: Updated audio/ncspot to 0.7.2 2021-05-28 10:32:47 +00:00
pin
5f911ad6ca audio/ncspot: update to 0.7.2
Maintenance:
-Fix compilation of cover feature (#534)
-Handle expired sessions without panicking (#536)
-Third party dependency updates
2021-05-28 10:32:25 +00:00
mcf
ba20fc4695 rust: fix typo in "old" path in i586-unknown-netbsd patch
Some patch(1) implementations, such as OpenBSD patch and GNU patch,
choose the file name with the fewest path components if neither the
old or new file exist. This missing slash causes the old name
(compiler/rustc_target/src/speci586_unknown_netbsd.rs.orig) to have
fewer components, so it is created instead of the new name as
intended.

This results in build error when one of these patch(1) implementations
is used:

  error[E0583]: file not found for module `i586_unknown_netbsd`
2021-05-28 10:32:20 +00:00
fcambus
e3ab9c0144 doc: Updated www/stagit to 0.9.6 2021-05-28 07:35:59 +00:00
fcambus
06777c8e1c stagit: update to 0.9.6.
ChangeLog:

- man page: codemadness is the primary server. make logo brandless (not 2f30)
- README: improve a bit the usage examples
- do not simplify the history by first-parent
- tiny comment change
- add function to print a single line, ignoring \r and \n
- add meta viewport on stagit-index too
2021-05-28 07:35:43 +00:00
fcambus
cc7c383f91 doc: Updated audio/schismtracker to 20210525 2021-05-28 07:34:52 +00:00
fcambus
013d0ae154 schismtracker: update to 20210525.
Summary of changes since 20200412 release:

- Add support for saving MOD files
- Fix conflict in MIDI setup when ALSA and OSS are both available
- Allow setting program on MIDI drums
- Fix instrument and sample panning overwriting channel panning
- Fix issues related to portamento with Amiga slides
- Support compressed stereo samples in ITI/ITS files
- Convert XM/MOD EA0/EB0 to D00 when loading
- Clamp S3M mixing volume to valid values on save
- Improve autovibrato accuracy
- Fix noteless instrument numbers updating instrument panning
- Fix handling of zero-value linear slides
- Read extended OpenMPT version information
- Fix instrument sample mapping in the IMF loader
- Fix memory access bug in the MTM loader
2021-05-28 07:34:36 +00:00
pin
d7bc067b7b doc: Updated sysutils/xplr to 0.13.1 2021-05-28 07:29:23 +00:00
pin
3c1327f157 sysutils/xplr: update to 0.13.1
Changes & fixes:
-Optimized rendering speed (significantly).
-Minor documentation fixes.
2021-05-28 07:29:04 +00:00
he
8f3d622534 Note update of net/radsecproxy to 1.9.0, remove 1.8.2 from TODO. 2021-05-28 06:22:04 +00:00
he
7ffe4e7ac5 Update radsecproxy to version 1.9.0.
Upstream changes:

2021-05-28 1.9.0
        New features:
        - Accept multiple source* configs for IPv4/v6
        - Specify source per server
        - User configurable cipher-list and ciphersuites
        - User configurable TLS versions
        - Config option for DH-file
        - Add rID and otherName options to certifcateAttributeCheck
        - Allow multiple matchCertificateAttribute
        - Option to start dynamic server in blocking mode

        Misc:
        - Move radsecproxy manpage to section 8
        - Log CUI and operator-name if present
        - Log CN for incomming TLS connections

        Bug Fixes:
        - Fix overlapping log lines
        - Fix memory leak in logging
        - Fix dynidsc example scripts input validation (CVE-2021-32642)

2020-08-06 1.8.2
        Bug fixes:
        - Fix wrong config-unhexing if %25 (%) occurs
        - Fix compatibility with GCC 10 (#63)
        - Fix spelling in manpage
        - Fix modifyVendorAttribute not applied (#62)
        - Fix unncessary status-server when in minimal mode (#61)
2021-05-28 06:20:33 +00:00
triaxx
ebe58cc034 doc: Updated x11/rxvt-unicode to 9.26 2021-05-28 05:24:27 +00:00
triaxx
1346a9c3a4 rxvt-unicode: Update to 9.26
upstream changes:
-----------------
9.26 Fri May 14 19:14:14 CEST 2021
	- ev_iouring.c was wrongly required during compilation, and wrongly
          not packaged.

9.25 Fri May 14 15:51:36 CEST 2021
	- for the 17.5th anniversary, and because many distributions seem to
          remove rxvt in favour of urxvt, this release resurrects rclock as
          urclock.
	- add support for systemd socket-based activation - debian bug #917105,
	  freebsd bug #234276.
	- do not destruct perl on exit anymore: this might fail for a variety of
          reasons, and takes unneccessary time.
        - remove any macros from urxvtperl manpage(s), should fix debian
          bug 858385.
	- the old bg image resources are now provided by the background
	  extension, and perl is thus required for bg image support. No
	  configuration change is needed: urxvt autoloads the background
	  ext if any bg image resource/option is present (for OSC sequences to
          work you need to enable it explicity). The old bg image
	  resources are also now deprecated; users are encouraged to
	  switch to the new bg image interface (see man urxvt-background).
        - confirm-paste now checks for any ctlchars, not just newlines.
        - searchable scrollback will now ignore bracketed paste mode sequences
          (prompted by Daniel Gröber's patch).
	- drop ISO 2022 locale support. ISO 2022 encodings are not supported in
          POSIX locales and clash with vt100 charset emulation (the luit
          program can be used as a substitute).
        - perl didn't parse rgba colours specified as an array correctly,
          only allowing 0 and 100% intensity for each component (this affected
          fill and tint).
        - when iterating over resources, urxvt will now try to properly handle
          multipart resources (such as "*background.expr"), for the benefit
          of autoloading perl extensions.
        - ESC G (query rxvt graphics mode) has been disabled due to security
          implications. The rxvt graphics mode was removed in rxvt-unicode 1.5,
          and no programs relying on being able to query the mode are known.
	- work around API change breakage in perl 5.28, based on a patch by
          Roman Bogorodskiy.
	- improved security: rob nation's (obsolete) graphics mode queries
          no longer reply with linefeed in secure/default mode.
	- ISO 8613-3 direct colour SGR sequences (patch by Fengguang Wu).
	- xterm focus reporting mode (patch by Daniel Hahler).
	- xterm SGR mouse mode.
	- implement DECRQM. Patch by Přemysl Eric Janouch.
	- add missing color index parameter to OSC 4 response. Patch
	  by Přemysl Eric Janouch.
	- in some window managers, if smart resize was enabled, urxvt
	  erroneously moved the window on font change - awesome bug
	  #532, arch linux bug ##34807 (patch by Uli Schlachter).
	- fix urxvtd crash when using a background expression.
	- properly restore colors when using fading and reverse video
	  is enabled while urxvt is focused and then disabled while it
	  is not focused, or vice versa (patch by Daniel Hahler).
	- fix high memory usage when an extension repeatedly hides and
	  shows an overlay (reported by Marcel Lautenbach).
        - expose priv_modes member and constants to perl extensions
          (patch by Rastislav Barlik).
        - fix a whole slew of const sillyness, unfortunately forced upon
          us by ISO C++.
        - update to libecb 0x00010006.
        - disable all thread support in ecb.h as we presumably don't need it.
        - slightly improve Makefile source dependencies.
        - work around bugs in newer Pod::Xhtml versions (flags incorrect formatting codes
          in xhtml/html sections but does not interpret correct ones).
2021-05-28 05:24:10 +00:00
adam
6e86b06614 Added textproc/py-bracex, textproc/py-wcmatch 2021-05-28 04:29:31 +00:00
adam
4b06a84abe py-wcmatch: added version 8.2
Wildcard Match provides an enhanced fnmatch, glob, and pathlib library in order
to provide file matching and globbing that more closely follows the features
found in Bash. In some ways these libraries are similar to Python's builtin
libraries as they provide a similar interface to match, filter, and glob the
file system. But they also include a number of features found in Bash's
globbing such as backslash escaping, brace expansion, extended glob pattern
groups, etc. They also add a number of new useful functions as well, such as
globmatch which functions like fnmatch, but for paths.
2021-05-28 04:25:14 +00:00
adam
dd2a9fb13e py-bracex: added version 2.1.1
Bracex is a brace expanding library (a la Bash) for Python. Brace expanding is
used to generate arbitrary strings.
2021-05-28 04:22:58 +00:00
khorben
99ebd1cf76 doc: Added www/py-flask-sendmail version 0.1 2021-05-27 22:26:29 +00:00
khorben
604b764500 Add py-flask-sendmail 2021-05-27 22:25:50 +00:00
khorben
16073b3928 py-flask-sendmail: import version 0.1
The Flask-Sendmail extension provides a simple interface to your system's
sendmail client from within your Flask application and gives you ability to send
messages from your views and scripts.
2021-05-27 22:25:05 +00:00
pin
423538dfa1 doc: Updated math/kalk to 0.5.2 2021-05-27 20:44:57 +00:00
pin
e3a5739179 math/kalk: update to 0.5.2
-Adjusted estimation and rounding to include imaginary numbers
-Division with complex numbers
-Fixed negative scientific notation
-Basics of complex numbers
-Made sum() and ans compatible with complex numbers
-Implemented complex variants of prelude functions
-Allow a comma before 'dx' in integrals
-Always round values <= 10^-16 down to zero
-Finding square roots for estimate()
-Created synonym 'integral' for 'integrate'
-Convert fract to f64 before turning into string in estimate()
-Avoid panic because of invalid number literal
-Fixed integration with expressions like xdx
-Fixed rounding for complex numbers resulting in 0
-Integration with complex numbers
2021-05-27 20:44:36 +00:00
pin
763cc57ab9 doc: Updated sysutils/xplr to 0.13.0 2021-05-27 20:43:39 +00:00
pin
89155214f8 sysutils/xplr: update to 0.13.0
Changes & fixes:
-Lua functions called via CallLua and CallLuaSilently will now receive
CallLuaArg object as input.
-node_types configurations will inherit parameters from the less specific
node_types configurations and overwrite them.
2021-05-27 20:43:17 +00:00
jperkin
33d4ec633c mk: Map macOS 11.4 to the 11.3 SDK. 2021-05-27 18:16:26 +00:00
brook
5bc6cdc4c7 doc: Added biology/filter-fastq version 0.0.0.20210527 2021-05-27 17:13:58 +00:00
brook
e0507013e4 biology/filter-fastq: add filter-fastq version 0.0.0.20210527 2021-05-27 17:13:15 +00:00
brook
3a68b9598a biology/filter-fastq: add filter-fastq version 0.0.0.20210527
Filter reads from a FASTQ file using a list of identifiers.

Each entry in the input FASTQ file (or files) is checked against all
entries in the identifier list. Matches are included by default, or
excluded if the --invert flag is supplied. Paired-end files are kept
consistent (in order).

This is almost certainly not the most efficient way to implement this
filtering procedure. I tested a few different strategies and this one
seemed the fastest. Current timing with 16 processes is about 10
minutes per 1M paired reads with gzip'd input and output, depending on
the length of the identifier list to filter by.

usage: filter_fastq.py [-h] [-i INPUT] [-1 READ1] [-2 READ2] [-p NUM_THREADS]
                       [-o OUTPUT] [-f FILTER_FILE] [-v] [--gzip]
2021-05-27 17:11:42 +00:00
nia
b1f3aa8df4 boost: bump GCC requirement 2021-05-27 17:02:24 +00:00
nia
d1e1691313 libusb1: bump gcc requirement to 4.9 2021-05-27 16:55:22 +00:00
manu
b87da4e084 Update mail/opendmarc to 1.4.1.1
Changes since 1.4.0 from the RELEASE_NOTES file
        NOTE: In response to CVE-2019-20790, opendmarc has changed
                how it evaluates headers added by previous
                SPF milters.  Users are encouraged to read the
                CVE-2019-20790 file in the "SECURITY" folder
                for more details. (#49, #158).  Originally reported by
                Jianjun Chen, feedback by Simon Wilson and
                David Bürgin <dbuergin@gluet.ch>.
        NOTE: OpenDMARC's internal SPF handling will be removed
                in a future version.  Users are encouraged to
                build linked against libspf2.  Many pre-built
                packages provided by OS packagers already do this.
                (See https://www.libspf2.org)
        Addition of defines for MUSL C Library. (#129/#133).  Patches by
                Marco Rebhan.
        Updated opendmarc.conf manpage and opendmarc.conf.sample to point to
                https://publicsuffix.org/list/.
        Added a CONTRIBUTING document.
        Fix two #ifdefs in arc functions for strlcpy. (#138).  Reported by
                Leo Bicknell.
        Fixes to MySQL Schema (#98/#99).  Patch by Bond Keevil.
        LIBSPF2 calls would not compile on OpenBSD due to OpenBSD not
                having the ns_type definition in arpa/resolv.h.
                Added detection to configure script.  (#134)
        Reworked hcreate_r calls to use hcreate, to compile natively on
                OpenBSD and MacOS. (Part of #94)  Reported by Rupert
                Gallagher.
        Add compatibility with AutoConf 2.70. (#95)
        Documentation updates about SourceForge being deprecated.  (#101)
        Only accept results from Received-SPF fields that indicate clearly
                which identifier was being evaluated, since DMARC specifically
                only wants results based on MAIL FROM.
        Many build-time fixes (#100, #91, #90, #86, #85, #84, #83, #82, #81)
                Patches provided by Rupert Gallagher (ruga@protonmail.com)
        Added config option HoldQuarantinedMessages (default false), which
                controls if messages with p=quarantine will be passed on to
                the mail stream (if False) or placed in the MTA's "hold"
                queue (if True).  Issue #105.  Patch by Marcos Moraes, on
                the OpenDMARC mailing list.
        Remove "--with-wall" from "configure".  Suggested by Leo Bicknell.
        LIBOPENDMARC: Fix bug #50: Ignore all RRTYPEs other than TXT.
                Problem reported by Jan Bouwhuis.
        LIBOPENDMARC: Fix bug #89: Repair absurd RRTYPE test in SPF code.
        LIBOPENDMARC: Fix bug #104: Fix bogus header field parsing code.
        LIBOPENDMARC: Fix bug #161: Don't pass the client IP address through
                htonl() since it's already in network byte order.  This
                was causing SPF errors when the internal SPF
                implementation was in use.
        LIBOPENDMARC: Fix numerous problems with the internal SPF
                implementation.
2021-05-27 16:51:59 +00:00
bsiegert
950cbeaeea Removed graphics/go-imaging 2021-05-27 15:25:34 +00:00
bsiegert
68ef8dad92 go-imaging: remove.
One more package that was here as a hugo dependency.
2021-05-27 15:25:05 +00:00
bsiegert
9cecb18259 Removed go-resize 2021-05-27 15:16:56 +00:00
bsiegert
0f5c1eab6d go-resize: remove.
Same rationale as for go-smartcrop: it was only here as a dependency of
www/hugo, which has switched to Go modules.
2021-05-27 15:16:36 +00:00
bsiegert
6aef117f63 Removed graphics/go-smartcrop 2021-05-27 15:08:22 +00:00
bsiegert
ffa5b853f1 go-smartcrop: remove.
Only hugo ever depended on this, and it no longer does. Not useful on its own.
2021-05-27 15:08:04 +00:00
taca
7b3c5d7683 doc: note update of ISC DHCP packages to 4.4.2p1 (4.4.2-P1)
net/isc-dhcp4
	net/isc-dhclient4
	net/isc-dhcpd4
	net/isc-dhcrelay4
2021-05-27 14:11:56 +00:00
taca
4fe316aacc net/isc-dhcp4: update to 4.4.2p1
Update isc-dhcp4 to 4.4.2p1 (4.4.2-P1).

		Changes since 4.4.2 (Bug Fixes)

 ! Corrected a buffer overwrite possible when parsing hexadecimal
   literals with more than 1024 octets. Reported by Jon Franklin from Dell,
   and also by Pawel Wieczorkiewicz from Amazon Web Services.
   [Gitlab #182]
   CVE: CVE-2021-25217
2021-05-27 14:10:12 +00:00
taca
246b8c9406 devel/ruby-cucumber-tag_expressions: renamed to ruby-cucumber-tag-expressions
Forgot to commit of removing renamed package.
2021-05-27 13:19:55 +00:00
adam
492853cdf3 Updated devel/py-construct, devel/py-cookiecutter 2021-05-27 12:02:57 +00:00