Re: Updated: coreutils 8.32

2022-05-21 Thread Fergus Daly
I've just updated coreutils. I don't use test versions. So I have
$ uname --version
uname (GNU coreutils) 8.32
Packaged by Cygwin (8.32-1)

Now on 32-bit Cygwin I get 
$ uname -s
CYGWIN_NT-10.0-19044-WOW64 [ previously CYGWIN_NT-10.0-WOW ]

And on 64-bit Cygwin I get
$ uname -s
CYGWIN_NT-10.0-19044 [ previously CYGWIN_NT-10.0 ]

Packaging error?

Fergus


-- 
Problem reports:  https://cygwin.com/problems.html
FAQ:  https://cygwin.com/faq/
Documentation:https://cygwin.com/docs.html
Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple


[ANNOUNCEMENT] Updated: htmldoc 1.9.16

2022-05-21 Thread Cygwin htmldoc Maintainer
The following package has been upgraded in the Cygwin distribution:

* htmldoc   1.9.16

HTMLDOC reads HTML and Markdown source files or web pages and generates
EPUB, HTML, PostScript, or PDF files with an optional table of contents.
HTMLDOC normally expects structured documents, with chapters, headings,
lists, tables, etc. but also handles web pages in HTML, Markdown, and
other continuous formats.

For more information, please see the project home page:

https://www.msweet.org/htmldoc

or the repository README:

https://github.com/michaelrsweet/htmldoc/blob/master/README.md

Please see below or read /usr/share/doc/htmldoc/CHANGES.md after
installation for details of changes since the previous Cygwin release:

https://github.com/michaelrsweet/htmldoc/blob/v1.9.16/CHANGES.md


Changes in HTMLDOC v1.9.16

* Added support for `$DATE(format)` and `$TIME(format)` header/footer strings
* Fixed a potential image overflow bug with JPEG and PNG images
* Fixed potential heap overflow bugs with pages
* Fixed potential use-after-free in blocks
* Updated the GNU TLS HTTPS support code to use a faster connection shutdown 
mode
* Fixed some minor Coverity warnings.
* Updated the GUI interface for current display fonts.


-- 
Problem reports:  https://cygwin.com/problems.html
FAQ:  https://cygwin.com/faq/
Documentation:https://cygwin.com/docs.html
Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple


[ANNOUNCEMENT] Test: coreutils 9.1 (TEST)

2022-05-21 Thread Cygwin coreutils Co-Maintainer
The following test package has been uploaded to the Cygwin distribution:

* coreutils 9.1

GNU core utilities (includes fileutils, shellutils and textutils)

Common core utilities include: [ arch b2sum base32 base64
basename cat chcon chgrp chmod chown chroot cksum comm cp csplit cut date
dd df dir dircolors dirname du echo env expand expr factor false fmt fold
gkill groups head hostid id install join link ln logname ls md5sum mkdir
mkfifo mknod mktemp mv nice nl nohup nproc numfmt od paste pathchk pinky
pr printenv printf ptx pwd readlink realpath rm rmdir runcon seq sha1sum
sha224sum sha256sum sha384sum sha512sum shred shuf sleep sort split stat
stdbuf stty sum sync tac tail tee test timeout touch tr true truncate
tsort tty uname unexpand uniq unlink users vdir wc who whoami yes

Please test these Base category utilities as extensively as possible
(especially if you are a Cygwin package maintainer) as this package is
used in all installations and has not been upgraded for a few years.
I have it locally installed so it is used by commands, scripts,
cron jobs, and cygport builds, so it has and is getting frequent
exercise with no apparent issues so far.
If no issues are reported within a couple of weeks the package will be
upgraded to current.

For more information, see the project home pages:

https://www.gnu.org/software/coreutils
https://savannah.gnu.org/projects/coreutils

In case of doubts about changes, it may be useful to check the FAQ or Gotchas:

https://www.gnu.org/software/coreutils/faq/coreutils-faq.html
https://www.pixelbeat.org/docs/coreutils-gotchas.html

For changes since the previous Cygwin release, see below or read
/usr/share/doc/coreutils/NEWS after installation; for complete details see:

https://github.com/coreutils/coreutils/blob/v9.1/NEWS
https://git.sv.gnu.org/gitweb/?p=coreutils.git;a=log;h=refs/tags/v9.1
/usr/share/doc/coreutils/ChangeLog


Noteworthy changes in release 9.1 (2022-04-15)

Bug fixes

* chmod -R no longer exits with error status when encountering symlinks.
  All files would be processed correctly, but the exit status was incorrect.
  [bug introduced in coreutils-9.0]

* If 'cp -Z A B' checks B's status and some other process then removes B,
  cp no longer creates B with a too-generous SELinux security context
  before adjusting it to the correct value.
  [bug introduced in coreutils-8.17]

* 'cp --preserve=ownership A B' no longer ignores the umask when creating B.
  Also, 'cp --preserve-xattr A B' is less likely to temporarily chmod u+w B.
  [bug introduced in coreutils-6.7]

* On macOS, 'cp A B' no longer miscopies when A is in an APFS file system
  and B is in some other file system.
  [bug introduced in coreutils-9.0]

* On macOS, fmt no longer corrupts multi-byte characters
  by misdetecting their component bytes as spaces.
  [This bug was present in "the beginning".]

* 'id xyz' now uses the name 'xyz' to determine groups, instead of xyz's uid.
  [bug introduced in coreutils-8.22]

* 'ls -v' and 'sort -V' no longer mishandle corner cases like "a..a" vs "a.+"
  or lines containing NULs.  Their behavior now matches the documentation
  for file names like ".m4" that consist entirely of an extension,
  and the documentation has been clarified for unusual cases.
  [bug introduced in coreutils-7.0]

* On macOS, 'mv A B' no longer fails with "Operation not supported"
  when A and B are in the same tmpfs file system.
  [bug introduced in coreutils-9.0]

* 'mv -T --backup=numbered A B/' no longer miscalculates the backup number
  for B when A is a directory, possibly inflooping.
  [bug introduced in coreutils-6.3]

Changes in behavior

* cat now uses the copy_file_range syscall if available, when doing
  simple copies between regular files.  This may be more efficient, by avoiding
  user space copies, and possibly employing copy offloading or reflinking.

* chown and chroot now warn about usages like "chown root.root f",
  which have the nonstandard and long-obsolete "." separator that
  causes problems on platforms where user names contain ".".
  Applications should use ":" instead of ".".

* cksum no longer allows abbreviated algorithm names,
  so that forward compatibility and robustness is improved.

* date +'%-N' now suppresses excess trailing digits, instead of always
  padding them with zeros to 9 digits.  It uses clock_getres and
  clock_gettime to infer the clock resolution.

* dd conv=fsync now synchronizes output even after a write error,
  and similarly for dd conv=fdatasync.

* dd now counts bytes instead of blocks if a block count ends in "B".
  For example, 'dd count=100KiB' now copies 100 KiB of data, not
  102,400 blocks of data.  The flags count_bytes, skip_bytes and
  seek_bytes are therefore obsolescent and are no longer documented,
  though they still work.

* ls no longer colors files with capabilities by default, as file-based
  capabilties are very rarely used, and lookup increases proc

[ANNOUNCEMENT] Updated: coreutils 8.32

2022-05-21 Thread Cygwin coreutils Co-Maintainer
The following package has been in test for two weeks with no reported or
obvious issues and has now been upgraded to current stable in the Cygwin
distribution:

* coreutils 8.32

GNU core utilities (includes fileutils, shellutils and textutils)

Common core utilities include: [ arch b2sum base32 base64
basename cat chcon chgrp chmod chown chroot cksum comm cp csplit cut date
dd df dir dircolors dirname du echo env expand expr factor false fmt fold
gkill groups head hostid id install join link ln logname ls md5sum mkdir
mkfifo mknod mktemp mv nice nl nohup nproc numfmt od paste pathchk pinky
pr printenv printf ptx pwd readlink realpath rm rmdir runcon seq sha1sum
sha224sum sha256sum sha384sum sha512sum shred shuf sleep sort split stat
stdbuf stty sum sync tac tail tee test timeout touch tr true truncate
tsort tty uname unexpand uniq unlink users vdir wc who whoami yes

For more information, see the project home pages:

https://www.gnu.org/software/coreutils
https://savannah.gnu.org/projects/coreutils

In case of doubts about changes, it may be useful to check the FAQ or
Gotchas:

https://www.gnu.org/software/coreutils/faq/coreutils-faq.html
https://www.pixelbeat.org/docs/coreutils-gotchas.html

For the many changes since the previous Cygwin release, see below or
read /usr/share/doc/coreutils/NEWS after installation; for complete
details see:

https://github.com/coreutils/coreutils/blob/v8.32/NEWS
https://git.sv.gnu.org/gitweb/?p=coreutils.git;a=log;h=refs/tags/v8.32
/usr/share/doc/coreutils/ChangeLog


Noteworthy changes in release 8.32 (2020-03-05)

Bug fixes

* cp now copies /dev/fd/N correctly on platforms like Solaris where
  it is a character-special file whose minor device number is N.
  [bug introduced in fileutils-4.1.6]

* dd conv=fdatasync no longer reports a "Bad file descriptor" error
  when fdatasync is interrupted, and dd now retries interrupted calls
  to close, fdatasync, fstat and fsync instead of incorrectly
  reporting an "Interrupted system call" error.
  [bugs introduced in coreutils-6.0]

* df now correctly parses the /proc/self/mountinfo file for unusual entries
  like ones with '\r' in a field value ("mount -t tmpfs tmpfs /foo$'\r'bar"),
  when the source field is empty ('mount -t tmpfs "" /mnt'), and when the
  filesystem type contains characters like a blank which need escaping.
  [bugs introduced in coreutils-8.24 with the introduction of reading
   the /proc/self/mountinfo file]

* factor again outputs immediately when stdout is a tty but stdin is not.
  [bug introduced in coreutils-8.24]

* ln works again on old systems without O_DIRECTORY support (like Solaris 10),
  and on systems where symlink ("x", ".") fails with errno == EINVAL
  (like Solaris 10 and Solaris 11).
  [bug introduced in coreutils-8.31]

* rmdir --ignore-fail-on-non-empty now works correctly for directories
  that fail to be removed due to permission issues.  Previously the exit status
  was reversed, failing for non empty and succeeding for empty directories.
  [bug introduced in coreutils-6.11]

* 'shuf -r -n 0 file' no longer mistakenly reads from standard input.
  [bug introduced with the --repeat feature in coreutils-8.22]

* split no longer reports a "output file suffixes exhausted" error
  when the specified number of files is evenly divisible by 10, 16, 26,
  for --numeric, --hex, or default alphabetic suffixes respectively.
  [bug introduced in coreutils-8.24]

* seq no longer prints an extra line under certain circumstances (such as
  'seq -f "%g " 100 100').
  [bug introduced in coreutils-6.10]

Changes in behavior

* Several programs now check that numbers end properly.  For example,
  'du -d 1x' now reports an error instead of silently ignoring the 'x'.
  Affected programs and options include du -d, expr's numeric operands
  on non-GMP builds, install -g and -o, ls's TABSIZE environment
  variable, mknod b and c, ptx -g and -w, shuf -n, and sort --batch-size
  and --parallel.

* date now parses military time zones in accordance with common usage:
"A" to "M"  are equivalent to UTC+1 to UTC+12
"N" to "Y"  are equivalent to UTC-1 to UTC-12
"Z" is "zulu" time (UTC).
  For example, 'date -d "09:00B" is now equivalent to 9am in UTC+2 time zone.
  Previously, military time zones were parsed according to the obsolete
  rfc822, with their value negated (e.g., "B" was equivalent to UTC-2).
  [The old behavior was introduced in sh-utils 2.0.15 ca. 1999, predating
  coreutils package.]

* ls issues an error message on a removed directory, on GNU/Linux systems.
  Previously no error and no entries were output, and so indistinguishable
  from an empty directory, with default ls options.

* uniq no longer uses strcoll() to determine string equivalence,
  and so will operate more efficiently and consistently.

New Features

* ls now supports the --time=birth option to display and sort by
  file creation time, where available.

* od --

Re: Cygwin Perl has slowed in recent months

2022-05-21 Thread Hans-Bernhard Bröker

Am 18.05.2022 um 03:53 schrieb David Christensen:

> I am working on a Perl module that runs on various Unix-like platforms.
> When I 'make test' on similar computers:
>
> FreeBSD 12.3-RELEASE 28 wallclock secs
> Debian GNU/Linux 11.3  31 wallclock secs
> macOS 11.6.2  36 wallclock secs
> Windows 7 / Cygwin 3.3.5-1509 wallclock secs

Given the complete lack of information about what that Perl module of 
yours might be doing, that's hard to have a meaningful discussion about.



--
Problem reports:  https://cygwin.com/problems.html
FAQ:  https://cygwin.com/faq/
Documentation:https://cygwin.com/docs.html
Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple


Re: pluma editor does not startup

2022-05-21 Thread Thomas Wolff



Am 21/05/2022 um 15:24 schrieb Tatsuro MATSUOKA:

Installing "mate-desktop-schemas" solves the issue

Sorry for noise.
If that's the case, a package dependency is missing, so it's not noise 
but could be fixed.




Tatsuro


- Original Message -

From: "Tatsuro MATSUOKA" 
To: "cygwin@cygwin.com" 
Date: 2022/05/21 土 21:29
Subject: pluma editor does not startup


I installed the pluma editor via cygwin setup (64bit).
However, pluma does not startup.

$ pluma

** (pluma:18054): WARNING **: Couldn't connect to accessibility bus: Operating 
system does not support abstract socket namespace


(pluma:18054): GLib-GIO-ERROR **: Settings schema 'org.mate.lockdown' is not 
installed

How I can fix?

Tatsuro







--
Problem reports:  https://cygwin.com/problems.html
FAQ:  https://cygwin.com/faq/
Documentation:https://cygwin.com/docs.html
Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple


Re: pluma editor does not startup

2022-05-21 Thread Tatsuro MATSUOKA
Installing "mate-desktop-schemas" solves the issue

Sorry for noise.

Tatsuro

> - Original Message -
> 
> From: "Tatsuro MATSUOKA" 
> To: "cygwin@cygwin.com" 
> Date: 2022/05/21 土 21:29
> Subject: pluma editor does not startup
> 
> 
> I installed the pluma editor via cygwin setup (64bit). 
> However, pluma does not startup.
> 
> $ pluma
> 
> ** (pluma:18054): WARNING **: Couldn't connect to accessibility bus: 
> Operating system does not support abstract socket namespace
> 
> 
> (pluma:18054): GLib-GIO-ERROR **: Settings schema 'org.mate.lockdown' is not 
> installed
> 
> How I can fix?
> 
> Tatsuro
> 
> 


-- 
Problem reports:  https://cygwin.com/problems.html
FAQ:  https://cygwin.com/faq/
Documentation:https://cygwin.com/docs.html
Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple


pluma editor does not startup

2022-05-21 Thread Tatsuro MATSUOKA
I installed the pluma editor via cygwin setup (64bit). 
However, pluma does not startup.

$ pluma

** (pluma:18054): WARNING **: Couldn't connect to accessibility bus: Operating 
system does not support abstract socket namespace


(pluma:18054): GLib-GIO-ERROR **: Settings schema 'org.mate.lockdown' is not 
installed

How I can fix?

Tatsuro


-- 
Problem reports:  https://cygwin.com/problems.html
FAQ:  https://cygwin.com/faq/
Documentation:https://cygwin.com/docs.html
Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple