Re: is there a limit on how many mintty terminals can be open at once?

2021-10-03 Thread Takashi Yano via Cygwin
On Sun, 3 Oct 2021 12:25:15 -0400
"Jason Pyeron" wrote:
> I got the "Error: Could not fork child process: There are no available 
> terminals (-1)" error.
> 
> Closing N minty terminals allowed me to open exactly N more.
> 
> My google fu is poor, since I cannot seem to find relevant pages.
> 
> What is the limit?

In current cygwin, maximum number of pty is 128.
It is hard coded and not configurable by user.
https://cygwin.com/git/?p=newlib-cygwin.git;a=blob;f=winsup/cygwin/tty.h#l15


-- 
Takashi Yano 

-- 
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: [ANNOUNCEMENT] Updated: less-581.2-1

2021-10-03 Thread Brian Inglis

On 2021-09-18 12:01, Brian Inglis wrote:

On 2021-05-02 04:04, Marco Atzeri wrote:

New version 581.2-1 of
   less
is available in the Cygwin distribution


Running less +F  (follow ) or less +G  then F or less  
then F does not seem to work (since at least v 530) on logs updated 
every second or so or longer, showing only the last line(s) when 
started, unlike tail -f or xtail:



$ for ((i = 1; i < 1000; ++i)); do
   echo $i $i $i $i $i $i $i $i $i $i $i $i $i $i $i $i $i $i $i $i $i
   sleep 1
done > t & less +F t
[wait]
^C
G
q
$ kill %1


It appears the issue may be with lessopen, and mostly works if you use 
-L to disable lessopen, but NUL chars are displayed around startup, so 
it's not as clean as:


$ tail -n$COLUMNS -f ... | less +F

Maybe lessopen is disabled when input is from stdin?

I will test with the new release and see if it's better.

--
Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada

This email may be disturbing to some readers as it contains
too much technical detail. Reader discretion is advised.
[Data in binary units and prefixes, physical quantities in SI.]

--
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: {,mingw-{i686,x86_64}-}pcre2-10.38-1

2021-10-03 Thread Achim Gratz


The PCRE2 library is a set of functions that implement regular
expression pattern matching using the same syntax and semantics as Perl,
with just a few differences.

This is a rebuild of the latest upstream release with gcc10, along with
the latest patchset from Fedora.

The following packages have been uploaded to the Cygwin distribution:

 pcre2-10.38-1
 libpcre2-10.38-1
 libpcre2_16_0-10.38-1
 libpcre2_32_0-10.38-1
 libpcre2-posix3-10.38-1
 libpcre2-devel-10.38-1
 libpcre2-doc-10.38-1

 mingw-i686-pcre2-10.38-1
 mingw-x86_64-pcre2-10.38-1

-- 
  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.

-- 
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


Updated: {,mingw-{i686,x86_64}-}pcre2-10.38-1

2021-10-03 Thread Achim Gratz


The PCRE2 library is a set of functions that implement regular
expression pattern matching using the same syntax and semantics as Perl,
with just a few differences.

This is a rebuild of the latest upstream release with gcc10, along with
the latest patchset from Fedora.

The following packages have been uploaded to the Cygwin distribution:

 pcre2-10.38-1
 libpcre2-10.38-1
 libpcre2_16_0-10.38-1
 libpcre2_32_0-10.38-1
 libpcre2-posix3-10.38-1
 libpcre2-devel-10.38-1
 libpcre2-doc-10.38-1

 mingw-i686-pcre2-10.38-1
 mingw-x86_64-pcre2-10.38-1

-- 
  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.


Re: CI scallywag setup/cygport/autoconf missing autoconf-archive pkg

2021-10-03 Thread Brian Inglis

On 2021-10-02 10:35, Brian Inglis wrote:

On 2021-10-02 08:13, Ken Brown via Cygwin-apps wrote:

On 10/2/2021 1:48 AM, Brian Inglis wrote:

On 2021-10-01 22:15, Achim Gratz wrote:

Brian Inglis writes:

As autoconf requires: autoconf2.1 autoconf2.5 bash sed, I believe that
would be the more appropriate place for an autoconf-archive
requirement, otherwise cygport would have to require it, which is not
so obvious.


No. If a build needs autoconf-archive then require it there.  The whole
point of having things in separate packages is that you do not have to
install things you don't need. Neither autottols nor cygport require
this package in any way.


See response to Yaakov: the problem is it's just a given in the build 
systems of the packages that use it,


I acknowledge that it's easy to give advice with hindsight, but here 
are two ways you might have discovered that you needed 
autoconf-archive as a build requirement for your package.


1. You could have checked the Fedora .spec file for the package.  In 
my experience, Fedora maintainers are generally very good at listing 
build requirements.  I don't think you've said what package you're 
talking about, so I can't check whether that would have helped in this 
case.


I have clued in over time and grab package .spec and Debian .dsc, 
debian/rules and any other distro files with useful content, while I am 
looking at a package.
As I said, it appears to be assumed it's in the infrastructure, I can't 
find any other spec linkages to autoconf-archive, and get similar 
results in Debian and OpenSuSE Build System:


wget/wget.spec:BuildRequires: gnutls-devel, pkgconfig, texinfo, gettext, 
autoconf, libidn2-devel, libuuid-devel, perl-podlators, libpsl-devel, 
libmetalink-devel, gpgme-devel, gcc, zlib-devel


If anyone can suggest how I can trace the Fedora web to find those, or 
other distros, I would be grateful.


2. An internet search for AX_CODE_COVERAGE would have immediately told 
you that it's in autoconf-archive.


It wasn't that apparent as I use DDG and no longer use Google! ;^>

You also mentioned the gnulib bug you ran into while packaging bison. 
It's unfortunate that you lost so much time on this, but you handled 
it exactly right.  You reported it upstream, they passed it on to 
gnulib, and it got fixed.


We all appreciate the effort you've been making to adopt orphaned 
packages.  I think you've just run into a string of bad luck that has 
caused this to be very time consuming.


I'm not so worried about my time as the implications for other 
maintainers who may not, and getting more on board, if there is a large 
impedance between our and other build system infrastructure.


I've found that gnome-common requires autoconf-archive as it builds on 
it (from f21+, as does mate-common on recent Debian and Fedora 
main/rawhide but not epel7 nor Cygwin) so that may be why Linux build 
environments always have it available.


--
Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada

This email may be disturbing to some readers as it contains
too much technical detail. Reader discretion is advised.
[Data in binary units and prefixes, physical quantities in SI.]


[ANNOUNCEMENT] Updated: less-590-1

2021-10-03 Thread Marco Atzeri via Cygwin-announce via Cygwin

New version 590-1 of

  less

is available in the Cygwin distribution

CHANGES
Last upstream release

http://www.greenwoodsoftware.com/less/

Also compiled with pcre2 regex

DESCRIPTION
Less is a free, open-source file pager.
It can be found on most versions of Linux, Unix and Mac OS,
as well as on many other operating systems.

HOMEPAGE
http://www.greenwoodsoftware.com/less/

Marco Atzeri

If you have questions or comments, please send them to the
cygwin mailing list at: cygwin (at) cygwin (dot) com .

--
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


Updated: less-590-1

2021-10-03 Thread Marco Atzeri via Cygwin-announce

New version 590-1 of

  less

is available in the Cygwin distribution

CHANGES
Last upstream release

http://www.greenwoodsoftware.com/less/

Also compiled with pcre2 regex

DESCRIPTION
Less is a free, open-source file pager.
It can be found on most versions of Linux, Unix and Mac OS,
as well as on many other operating systems.

HOMEPAGE
http://www.greenwoodsoftware.com/less/

Marco Atzeri

If you have questions or comments, please send them to the
cygwin mailing list at: cygwin (at) cygwin (dot) com .


[ANNOUNCEMENT] Updated: openblas-0.3.18-1

2021-10-03 Thread Marco Atzeri via Cygwin-announce via Cygwin

New releases 0.3.18-1 of

openblas  (source)
libopenblas   (dinamic library)

are available in the Cygwin distribution :

CHANGES
Last upstream release bugfix and performance improvment
https://github.com/xianyi/OpenBLAS/releases

 OpenBLAS will now provide enough buffer space for at
 least 50 threads by default.

DESCRIPTION
OpenBLAS is an optimized BLAS library based on
GotoBLAS2 1.13 BSD version and further extended.
OpenBLAS is licensed under the 3-clause BSD license.

HOMEPAGE
http://www.openblas.net/

CYGWIN NOTES
1) As BLAS it is around 5-10 times faster than Netlib reference,
   included in the liblapack0 package.

2) No devel package is provided as liblapack-devel already provide
   the needed headers and import.
   Openblas is fully compatible with Netlib BLAS.

3) libopenblas consist of a single file
 /usr/bin/cygblas-0.dll
   that will precede in PATH the liblapack0
 /usr/lib/lapack/cygblas-0.dll
   and used instead. Removing libopenblas will restore the
   usage of Netlib BLAS

4) CPU architecture covered up to now

   64 bit
ATOM BARCELONA BOBCAT BULLDOZER CORE2 DUNNINGTON EXCAVATOR
HASWELL NANO NEHALEM OPTERON OPTERON_SSE3 PENRYN PILEDRIVER
PRESCOTT SANDYBRIDGE STEAMROLLER ZEN

   32 bit
ATHLON ATOM BANIAS BARCELONA BOBCAT COPPERMINE CORE2
DUNNINGTON KATMAI NANO NEHALEM NORTHWOOD OPTERON
OPTERON_SSE3 PENRYN PRESCOTT


Regards
Marco Atzeri

If you have questions or comments, please send them to the
cygwin mailing list at: cygwin (at) cygwin (dot) com .

--
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: eccodes-2.23.0-1

2021-10-03 Thread Marco Atzeri via Cygwin-announce via Cygwin

Version 2.23.0-1 of

  libeccodes
  libeccodes-data
  libeccodes-devel
  libeccodes-tools

are available in the Cygwin distribution.

CHANGES
latest upstream release

DESCRIPTION
ecCodes is a package developed by ECMWF
(European Centre for Medium-Range Weather Forecasts)
which provides an application programming interface and a set of
tools for decoding and encoding messages in the following formats:

WMO FM-92 GRIB edition 1 and edition 2
WMO FM-94 BUFR edition 3 and edition 4

HOMEPAGE
https://confluence.ecmwf.int/display/ECC/ecCodes+Home
https://www.ecmwf.int/

Regards
Marco Atzeri

If you have questions or comments, please send them to the
cygwin mailing list at: cygwin (at) cygwin (dot) com .

--
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


Updated: openblas-0.3.18-1

2021-10-03 Thread Marco Atzeri via Cygwin-announce

New releases 0.3.18-1 of

openblas  (source)
libopenblas   (dinamic library)

are available in the Cygwin distribution :

CHANGES
Last upstream release bugfix and performance improvment
https://github.com/xianyi/OpenBLAS/releases

 OpenBLAS will now provide enough buffer space for at
 least 50 threads by default.

DESCRIPTION
OpenBLAS is an optimized BLAS library based on
GotoBLAS2 1.13 BSD version and further extended.
OpenBLAS is licensed under the 3-clause BSD license.

HOMEPAGE
http://www.openblas.net/

CYGWIN NOTES
1) As BLAS it is around 5-10 times faster than Netlib reference,
   included in the liblapack0 package.

2) No devel package is provided as liblapack-devel already provide
   the needed headers and import.
   Openblas is fully compatible with Netlib BLAS.

3) libopenblas consist of a single file
 /usr/bin/cygblas-0.dll
   that will precede in PATH the liblapack0
 /usr/lib/lapack/cygblas-0.dll
   and used instead. Removing libopenblas will restore the
   usage of Netlib BLAS

4) CPU architecture covered up to now

   64 bit
ATOM BARCELONA BOBCAT BULLDOZER CORE2 DUNNINGTON EXCAVATOR
HASWELL NANO NEHALEM OPTERON OPTERON_SSE3 PENRYN PILEDRIVER
PRESCOTT SANDYBRIDGE STEAMROLLER ZEN

   32 bit
ATHLON ATOM BANIAS BARCELONA BOBCAT COPPERMINE CORE2
DUNNINGTON KATMAI NANO NEHALEM NORTHWOOD OPTERON
OPTERON_SSE3 PENRYN PRESCOTT


Regards
Marco Atzeri

If you have questions or comments, please send them to the
cygwin mailing list at: cygwin (at) cygwin (dot) com .



Updated: eccodes-2.23.0-1

2021-10-03 Thread Marco Atzeri via Cygwin-announce

Version 2.23.0-1 of

  libeccodes
  libeccodes-data
  libeccodes-devel
  libeccodes-tools

are available in the Cygwin distribution.

CHANGES
latest upstream release

DESCRIPTION
ecCodes is a package developed by ECMWF
(European Centre for Medium-Range Weather Forecasts)
which provides an application programming interface and a set of
tools for decoding and encoding messages in the following formats:

WMO FM-92 GRIB edition 1 and edition 2
WMO FM-94 BUFR edition 3 and edition 4

HOMEPAGE
https://confluence.ecmwf.int/display/ECC/ecCodes+Home
https://www.ecmwf.int/

Regards
Marco Atzeri

If you have questions or comments, please send them to the
cygwin mailing list at: cygwin (at) cygwin (dot) com .


[ANNOUNCEMENT] Updated: cdo-2.0.0-0.5

2021-10-03 Thread Marco Atzeri via Cygwin-announce via Cygwin

Version 2.0.0-0.5 of

  cdo
  libcdo0
  cdo-devel

are available in the Cygwin distribution.

CHANGES
latest upstream release candidate for 2.0.0

DESCRIPTION
Climate Data Operators

CDO is a collection of command line Operators to manipulate and
analyse Climate and NWP model Data.
Supported data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and IEG

HOMEPAGE
https://code.mpimet.mpg.de/projects/cdo

Regards
Marco Atzeri

If you have questions or comments, please send them to the
cygwin mailing list at: cygwin (at) cygwin (dot) com .

--
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


Updated: cdo-2.0.0-0.5

2021-10-03 Thread Marco Atzeri via Cygwin-announce

Version 2.0.0-0.5 of

  cdo
  libcdo0
  cdo-devel

are available in the Cygwin distribution.

CHANGES
latest upstream release candidate for 2.0.0

DESCRIPTION
Climate Data Operators

CDO is a collection of command line Operators to manipulate and
analyse Climate and NWP model Data.
Supported data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and IEG

HOMEPAGE
https://code.mpimet.mpg.de/projects/cdo

Regards
Marco Atzeri

If you have questions or comments, please send them to the
cygwin mailing list at: cygwin (at) cygwin (dot) com .



is there a limit on how many mintty terminals can be open at once?

2021-10-03 Thread Jason Pyeron
I got the "Error: Could not fork child process: There are no available 
terminals (-1)" error.

Closing N minty terminals allowed me to open exactly N more.

My google fu is poor, since I cannot seem to find relevant pages.

What is the limit?

Can the limit be configured?

$ ps -f | grep mintty | wc -l
42

$ dir /dev/ | grep pty | wc -l
46


CYGWIN_NT-10.0 hostname 3.2.0(0.340/5/3) 2021-03-29 08:42 x86_64 Cygwin

v/r,

Jason Pyeron

--
Jason Pyeron  | Architect
PD Inc| Certified SBA 8(a)
10 w 24th St  | Certified SBA HUBZone
Baltimore, MD | CAGE Code: 1WVR6
 
.mil: jason.j.pyeron@mail.mil
.com: jpye...@pdinc.us
tel : 202-741-9397




-- 
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] Update: ca-certificates-2.50-2

2021-10-03 Thread Achim Gratz


The following packages have been uploaded to the Cygwin distribution:

* ca-certificates-2.50-2

Mozilla's CA root certificates for use with OpenSSL, NSS, GnuTLS, and
other software that handles certificate verification.

This is an update to the latest upstream release.  The previous release
erroneously included outdated data and has been removed.


-- 
  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.

-- 
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


Update: ca-certificates-2.50-2

2021-10-03 Thread Achim Gratz


The following packages have been uploaded to the Cygwin distribution:

* ca-certificates-2.50-2

Mozilla's CA root certificates for use with OpenSSL, NSS, GnuTLS, and
other software that handles certificate verification.

This is an update to the latest upstream release.  The previous release
erroneously included outdated data and has been removed.


-- 
  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.


Re: [ITA] ca-certificates

2021-10-03 Thread Achim Gratz
Jon Turney writes:
> I notice in passing that commit is a couple of years old and belongs
> to an EOL'ed Fedora version, so you might want to see if there are
> later commits which are more suitable?

WTH… somewhere along getting all the other stuff going the actual update
seems to have gone missing.  OK, I'll fix it up and re-release.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

SD adaptations for KORG EX-800 and Poly-800MkII V0.9:
http://Synth.Stromeko.net/Downloads.html#KorgSDada


Re: [ITA] ca-certificates

2021-10-03 Thread Jon Turney

On 03/10/2021 09:27, Achim Gratz wrote:

Jon Turney writes:

I think it's a scallywag bug that it doesn't currently checkout
packaging repository submodules, so let me try to fix that.


Doesn't seem to work:

--8<---cut here---start->8---
Submodule 'fedora' (https://src.fedoraproject.org/rpms/ca-certificates.git) 
registered for path 'fedora'
Cloning into '/cygdrive/c/projects/ca-certificates/fedora'...
error: Server does not allow request for unadvertised object 
00da4d0e2ad60757fe0901ae01a4423a31140bed
fatal: Fetched in submodule path 'fedora', but it did not contain 
00da4d0e2ad60757fe0901ae01a4423a31140bed. Direct fetching of that commit failed.
scallywag: something went wrong cloning the package repo
--8<---cut here---end--->8---



Yeah, I did say 'try' because shallow cloning submodules is somewhat 
fraught, but I think I have it right now...


I notice in passing that commit is a couple of years old and belongs to 
an EOL'ed Fedora version, so you might want to see if there are later 
commits which are more suitable?


[ANNOUNCEMENT] Updated: Perl distributions

2021-10-03 Thread Achim Gratz


The following Perl distributions have been updated to their latest
release version available on CPAN:

noarch
--
perl-DateTime-TimeZone-2.49-1

-- 
  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.

-- 
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


Updated: Perl distributions

2021-10-03 Thread Achim Gratz


The following Perl distributions have been updated to their latest
release version available on CPAN:

noarch
--
perl-DateTime-TimeZone-2.49-1

-- 
  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.


[ANNOUNCEMENT] Test: _autorebase-001091-0.1

2021-10-03 Thread Achim Gratz


The _autorebase package has been updated to recognize compiled Elisp
files (*.eln) in preparation of the Emacs 28 release.

Please refer to /usr/share/doc/Cygwin/_autorebase.README for configuring
additional locations or files to rebase.


Notes
=

Starting with this version, the list of files to rebase is fully rebuilt
for each run.  The previous default of incrementally rebasing only the
changed packages can be requested by running

  rebase-trigger rebuild_incremental

The configuration is sticky and can be switched back to fully rebuilding
by running

  rebase-trigger rebuild_always

This option is provided for debugging purposes and should not be
necessary unless Cygwin is installed on an exceptionally slow disk.


-- 
  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.

-- 
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


Test: _autorebase-001091-0.1

2021-10-03 Thread Achim Gratz


The _autorebase package has been updated to recognize compiled Elisp
files (*.eln) in preparation of the Emacs 28 release.

Please refer to /usr/share/doc/Cygwin/_autorebase.README for configuring
additional locations or files to rebase.


Notes
=

Starting with this version, the list of files to rebase is fully rebuilt
for each run.  The previous default of incrementally rebasing only the
changed packages can be requested by running

  rebase-trigger rebuild_incremental

The configuration is sticky and can be switched back to fully rebuilding
by running

  rebase-trigger rebuild_always

This option is provided for debugging purposes and should not be
necessary unless Cygwin is installed on an exceptionally slow disk.


-- 
  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.


[ANNOUNCEMENT] Update: ca-certificates-2.50-1

2021-10-03 Thread Achim Gratz


The following packages have been uploaded to the Cygwin distribution:

* ca-certificates-2.50-1

Mozilla's CA root certificates for use with OpenSSL, NSS, GnuTLS, and
other software that handles certificate verification.

This is an update to the latest upstream release.


-- 
  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.

-- 
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


Update: ca-certificates-2.50-1

2021-10-03 Thread Achim Gratz


The following packages have been uploaded to the Cygwin distribution:

* ca-certificates-2.50-1

Mozilla's CA root certificates for use with OpenSSL, NSS, GnuTLS, and
other software that handles certificate verification.

This is an update to the latest upstream release.


-- 
  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain@cygwin.com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.


Re: [ITA] ca-certificates

2021-10-03 Thread Achim Gratz
Jon Turney writes:
> I think it's a scallywag bug that it doesn't currently checkout
> packaging repository submodules, so let me try to fix that.

Doesn't seem to work:

--8<---cut here---start->8---
Submodule 'fedora' (https://src.fedoraproject.org/rpms/ca-certificates.git) 
registered for path 'fedora'
Cloning into '/cygdrive/c/projects/ca-certificates/fedora'...
error: Server does not allow request for unadvertised object 
00da4d0e2ad60757fe0901ae01a4423a31140bed
fatal: Fetched in submodule path 'fedora', but it did not contain 
00da4d0e2ad60757fe0901ae01a4423a31140bed. Direct fetching of that commit failed.
scallywag: something went wrong cloning the package repo
--8<---cut here---end--->8---


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

SD adaptations for Waldorf Q V3.00R3 and Q+ V3.54R2:
http://Synth.Stromeko.net/Downloads.html#WaldorfSDada