Commit graph

313771 commits

Author SHA1 Message Date
taca
4cb56c28ff devel/ruby-activesupport52: update to 5.2.4.2
Update ruby-activesupport52 to 5.2.4.2.


## Rails 5.2.4.1 (December 18, 2019) ##

*   No changes.


## Rails 5.2.4 (November 27, 2019) ##

*   Make ActiveSupport::Logger Fiber-safe. Fixes #36752.

    Use `Fiber.current.__id__` in `ActiveSupport::Logger#local_level=` in order
    to make log level local to Ruby Fibers in addition to Threads.

    Example:

        logger = ActiveSupport::Logger.new(STDOUT)
        logger.level = 1
        p "Main is debug? #{logger.debug?}"

        Fiber.new {
          logger.local_level = 0
          p "Thread is debug? #{logger.debug?}"
        }.resume

        p "Main is debug? #{logger.debug?}"

    Before:

        Main is debug? false
        Thread is debug? true
        Main is debug? true

    After:

        Main is debug? false
        Thread is debug? true
        Main is debug? false

    *Alexander Varnin*
2020-03-20 15:37:38 +00:00
taca
34f93e336b lang/ruby/rails.mk: start update of rails52 to 5.2.4.2
Start update of rails51 to 5.2.4.2.
2020-03-20 15:36:25 +00:00
taca
22a0f93f62 doc: note update of rails51 packages to 5.1.7
devel/ruby-activesupport51
	devel/ruby-activemodel51
	devel/ruby-activejob51
	www/ruby-actionview51
	www/ruby-actionpack51
	www/ruby-actioncable51
	databases/ruby-activerecord51
	mail/ruby-actionmailer51
	devel/ruby-railties51
	www/ruby-rails51
2020-03-20 15:31:53 +00:00
taca
bb3c29364e www/ruby-rails51: update to 5.1.7
Update ruby-rails51 to 5.1.7.

pkgsrc change: add "USE_LANGAUGES=	# none".

* No change except version.
2020-03-20 15:30:32 +00:00
taca
e418114710 devel/ruby-railties51: update to 5.1.7
Update ruby-railties51 to 5.1.7.

pkgsrc change: add "USE_LANGAUGES=	# none".

* No change except version.
2020-03-20 15:30:09 +00:00
taca
db24c537f0 mail/ruby-actionmailer51: update to 5.1.7
Update ruby-actionmailer51 to 5.1.7.

pkgsrc change: add "USE_LANGAUGES=	# none".

* No change except version.
2020-03-20 15:29:48 +00:00
taca
c0c96c4f6a databases/ruby-activerecord51: update to 5.1.7
Update ruby-activerecord51 to 5.1.7.

pkgsrc change: add "USE_LANGAUGES=	# none".


## Rails 5.1.7 (March 27, 2019) ##

*   Fix `touch` option to behave consistently with `Persistence#touch` method.

    *Ryuta Kamizono*

*   Back port Rails 5.2 `reverse_order` Arel SQL literal fix.

    *Matt Jones*, *Brooke Kuhlmann*

*   `becomes` should clear the mutation tracker which is created in `after_initialize`.

    Fixes #32867.

    *Ryuta Kamizono*
2020-03-20 15:29:23 +00:00
taca
41e4d8d50b www/ruby-actioncable51: update to 5.1.7
Update ruby-actioncable51 to 5.1.7.

pkgsrc change: add "USE_LANGAUGES=	# none".

* No change except version.
2020-03-20 15:28:10 +00:00
taca
291d71b4ec www/ruby-actionpack51: update to 5.1.7
Update ruby-actionpack51 to 5.1.7.

pkgsrc change: add "USE_LANGAUGES=	# none".

* No change except version.
2020-03-20 15:27:43 +00:00
taca
29c13cf047 www/ruby-actionview51: update to 5.1.7
Update www/ruby-actionview51 to 5.1.7.

pkgsrc change: add "USE_LANGAUGES=	# none".

## Rails 5.1.7 (March 27, 2019) ##

*   Fix issue with `button_to`'s `to_form_params`

    `button_to` was throwing exception when invoked with `params` hash that
    contains symbol and string keys. The reason for the exception was that
    `to_form_params` was comparing the given symbol and string keys.

    The issue is fixed by turning all keys to strings inside
    `to_form_params` before comparing them.

    *Georgi Georgiev*
2020-03-20 15:27:07 +00:00
taca
3a9bfbb35a devel/ruby-activejob51: update to 5.1.7
Update ruby-activejob51 to 5.1.7.

pkgsrc change: add "USE_LANGAUGES=	# none".

* No change except version.
2020-03-20 15:26:27 +00:00
taca
2115bf55ba devel/ruby-activemodel51: update to 5.1.7
Update ruby-activemodel51 to 5.1.7.

pkgsrc change: add "USE_LANGAUGES=	# none".

* No change except version.
2020-03-20 15:25:50 +00:00
taca
da02ad4784 devel/ruby-activesupport51: update to 5.1.7
Update ruby-activesupport51 to 5.1.7.

pkgsrc change: add "USE_LANGAUGES=	# none".

* No change except version.
2020-03-20 15:25:14 +00:00
taca
a29e0f36be lang/ruby/rails.mk: start update of rails51 to 5.1.7
Start update of rails51 to 5.1.7.
2020-03-20 15:21:12 +00:00
taca
d666aacc19 doc: note update of a few ruby packages
misc/ruby-sprockets-rails	3.2.1nb1
	devel/ruby-shoulda-matchers	3.1.3
	www/ruby-jquery-rails		4.3.5
2020-03-20 15:15:17 +00:00
taca
196b37a4ff www/ruby-jquery-rails: update to 4.3.5
Update ruby-jquery-rails to 4.3.5.
pkgsrc change: support Rails 5.1 and 5.2.


## 4.3.5

- update jquery to 3.4.1

## 4.3.4

- update jquery to 3.4.0
2020-03-20 15:13:58 +00:00
taca
bd2b297f7e devel/ruby-shoulda-matchers: update to 3.1.3
Update ruby-shoulda-matchers to 3.1.3.
pkgsrc change: Do not restrict to Rails to 4.2.


# 3.1.3

### Improvements

* Update `BigDecimal.new()` to use `BigDecimal()` and avoid deprecation warnings
  in Ruby 2.6.
2020-03-20 15:12:43 +00:00
taca
57d4f32443 misc/ruby-sprockets-rails: relax rails version
* Do not restrict to Rails to 4.2.

Bump PKGREVISION.
2020-03-20 15:11:41 +00:00
taca
56bae7efce Bump PKGREVISION
* Bump PKGREVISION by RUBY_RAILS_DEFAULT change.
* Cosmetic change comment in RUBY_RAILS_ACCEPTED line.
2020-03-20 15:09:58 +00:00
taca
9e854c4327 Bump PKGREVISION
* Bump PKGREVISION by RUBY_RAILS_DEFAULT change.
2020-03-20 15:08:56 +00:00
taca
52f74e17a9 Bump PKGREVISION
* Bump PKGREVISION by RUBY_RAILS_DEFAULT change.
* And add "USE_LANGUAGES= #none".
2020-03-20 15:08:08 +00:00
taca
ee87c30304 lang/ruby/rails.mk: Change RUBY_RAILS_DEFAULT to 52
Change RUBY_RAILS_DEFAULT to 52; Ruby on Rails 5.2 to default since
Rails 4.2 is EOL.
2020-03-20 15:06:33 +00:00
rillig
172f1091af mk/extract/extract.mk: enclose extract_file in quotes
This prevents unintended shell word expansion.

It also makes that argument visible in "bmake show-all-extract". Before,
it was left out entirely from the output. Now it is printed as an empty
string literal, which at least gives a hint that "there is something".
2020-03-20 15:00:45 +00:00
micha
37d81ebc28 news/bystand: Fix unresolved symbols on SunOS 2020-03-20 14:40:56 +00:00
gson
cb5e4324f3 Updated misc/py-anita to 2.3 2020-03-20 12:47:01 +00:00
gson
9700ccde0a misc/py-anita: update to 2.3.
Changes from 2.2:

Deal with curses sometimes optimizing away the final "s" in "Debug
symbols", causing the debug set to not be installed.

Increase default memory size for amd64 from 128M to 192M, as the
installer no longer runs reliably in 128M without exhausting memory.

Keep logging the console output for a few seconds after shutdown to
catch the autoconf detach messages and possible panics on detach.

When logging shell commands, avoid line breaks between options and
their arguments.

Support the "virt" machine type for evbarm-eamv7hf as an alternative
to the default of vexpress-a15.  To enable, use the command line
option --machine virt.
2020-03-20 12:46:15 +00:00
nia
4b51d9715f *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
nia
331a0cad19 doc: Updated net/libtorrent-rasterbar to 1.2.5 2020-03-20 11:57:52 +00:00
nia
8010f38b97 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:44 +00:00
nia
936195e60c libtorrent-rasterbar: Update to 1.2.5
1.2.5 release

	* announce port=1 instead of port=0, when there is no listen port
	* fix LSD over IPv6
	* support TCP_NOTSENT_LOWAT on Linux
	* fix correct interface binding of local service discovery multicast
	* fix issue with knowing which interfaces to announce to trackers and DHT
	* undeprecate settings_pack::dht_upload_rate_limit

1.2.4 release

	* fix binding TCP and UDP sockets to the same port, when specifying port 0
	* fix announce_to_all_trackers and announce_to_all_tiers behavior
	* fix suggest_read_cache setting
	* back-off tracker hostname looksups resulting in NXDOMAIN
	* lower SOCKS5 UDP keepalive timeout
	* fix external IP voting for multi-homed DHT nodes
	* deprecate broadcast_lsd setting. Just use multicast
	* deprecate upnp_ignore_nonrouters setting
	* don't attempt sending event=stopped if event=start never succeeded
	* make sure &key= stays consistent between different source IPs (as mandated by BEP7)
	* fix binding sockets to outgoing interface
	* add new socks5_alert to trouble shoot SOCKS5 proxies
2020-03-20 11:57:43 +00:00
nia
eadd216a68 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
nia
55171cf3c4 myodbc: Do not accept mysql 5.1 2020-03-20 11:45:32 +00:00
nia
94cc318165 lighttpd: use https 2020-03-20 11:45:01 +00:00
tnn
e470ac750e zig: mark as BROKEN (needs update due to lang/llvm update) 2020-03-20 11:42:38 +00:00
tnn
9b1551f57d yaws: fix linux PLIST. Installs .la files; set USE_LIBTOOL 2020-03-20 11:39:43 +00:00
nia
659ccf4e5f doc: Updated sysutils/neofetch to 7.0.0 2020-03-20 11:34:51 +00:00
nia
ab64eb3a55 neofetch: Update to 7.0.0
Changes:

NOTE

* This list isn't complete. There have been more changes
  and fixes than are listed here. This release contains a
  lot of bug fixes.

* My main priority was to release this... release. It's been
  a while and I'd rather not let this take up too much time.

* I've also made the release process quicker and easier to
  do with the intent to push more updates in shorter
  intervals. Expect quicker and more frequent releases.

Dylan

---

DISTRIBUTIONS

* Added support for Proxmox VE.
* Added support for BlackArch.
* Added support for Neptune.
* Added support for Obarun.
* Added support for Drauger OS.
* Added support for macOS Catalina.
* Added support for ArchStrike.
* Added support for Cucumber Linux.
* Added support for EuroLinux.
* Added support for Cleanjaro.
* Added support for Septor Linux.
* Added support for Carbs Linux.
* Added support for EndeavourOS.
* Added support for T2.
* Fixed various Haiku issues.
* Fixed various FreeMiNT issues.

GENERAL

* Start of Neofetch code cleanup. This is essentially just bringing
  Neofetch forward to meet my newer code style and present
  shell expertise.

ASCII

* Added various new small logos.
* Added various small logos from pfetch.
* New Linux Mint logo.

WINDOW MANAGER

* Fixed bugs in window manager detection.
* Added KWin Wayland detection.
* Added GNOME Wayland detection.

DESKTOP ENVIRONMENT

* Added support for showing DE version.
* Added Regolith linux support.

IMAGE DISPLAY

* Fixed terminal size detection issues.

TERMINAL FONT

* Added font detection for ConEmu.
* Konsole fixes.

UPTIME

* Fixed Haiku uptime detection.

SONG

* Added support for Muine player.
* Added support for Elementary music player.
* Various fixes.

THEME

* Fixed Plasma issues.
* Fixed Openbox issues.

COLOR BLOCKS

* Added option to position color blocks horizontally.

WALLPAPER

* Added Plasma desktop support.

DISK

* Added '--disk_subtitle none'.
* Added '--disk_percent'.

RESOLUTION

* Added TTY support.
* Added naive Wayland support.
* Multi monitor support for Windows.

TITLE

* Added --title_fqdn.

CPU

* AMD fixes.

PACKAGES

* Appimage support.

SHELL

* Fixed yash support
2020-03-20 11:34:40 +00:00
tnn
dbe8e7fac3 asterisk-sounds-native: adjust workaround for missing x-bit on directories 2020-03-20 11:21:48 +00:00
wiz
5e4f44248b doc: Added graphics/wcslib version 7.2 2020-03-20 11:09:07 +00:00
wiz
a09d43f5fe graphics/Makefile: + wcslib 2020-03-20 11:08:56 +00:00
wiz
1178334695 graphics/wcslib: import wcslib-7.2
Packaged in wip by Thomas Orgis.

The FITS "World Coordinate System" (WCS) standard defines keywords
and usage that provide for the description of astronomical coordinate
systems in a FITS image header.  SLIB is implemented in C, with support
for FORTRAN via a set of wrapper functions.
2020-03-20 11:05:03 +00:00
nia
45e1025d43 musicpd: Further simplify and clean up options.
id3 and sndfile provide fairly basic, nearly-always-expected functionality,
so remove those from the hydra.
2020-03-20 10:43:35 +00:00
micha
5d5fb6c0cd news/tin: Fix build with PKG_DEVELOPER=yes
This should fix the bulk build on NetBSD 9.0/aarch64 too.
No revision bump, because patch is only for build system.
2020-03-20 10:25:15 +00:00
nia
5409ffc2cb doc: Updated audio/musicpd to 0.21.21 2020-03-20 10:23:13 +00:00
nia
266dcf42c0 musicpd: Update to 0.21.21
ver 0.21.21 (2020/03/19)
* configuration
  - fix bug in "metadata_to_use" setting
* playlist
  - asx, xspf: fix corrupt tags in the presence of XML entities
* archive
  - iso9660: skip empty file names to work around libcdio bug
* decoder
  - gme: ignore empty tags
* output
  - solaris: port to NetBSD
* raise default "max_connections" value to 100
2020-03-20 10:23:03 +00:00
adam
8559da5ada Updated textproc/py-ICU, devel/py-semantic_version 2020-03-20 09:32:26 +00:00
adam
27d2f6e7df py-semantic_version: updated to 2.8.4
2.8.4:
*Bugfix:*
Properly coerce versions with leading zeroes in components (e.g.
``1.01.007``)
2020-03-20 09:31:27 +00:00
he
30559db783 Note update of lang/rust to 1.42.0nb1. 2020-03-20 09:30:18 +00:00
adam
101c220248 py-ICU: updated to 2.4.3
Version 2.4.2 -> 2.4.3
- added Char.getPropertyValueName() and Char.getPropertyValueEnum()
- fixed build errors with PythonReplaceable for ICU < 55
2020-03-20 09:26:21 +00:00
he
8b1d5cacf2 Bump NetBSD bootstrap versions to 1.41.1 for
- i686 (NetBSD/i386)
 - powerpc
 - aarch64
 - sparc64
Bump PKGREVISION.
2020-03-20 09:25:00 +00:00