Re: The correct manner to obsolete subpackage.

2023-08-30 Thread Jon Turney via Cygwin-apps
On 29/08/2023 23:40, Takashi Yano via Cygwin-apps wrote: If the main package no longer provides a sub package, what is the correct manner to osolete it? Creating empty sub package with sub_package_CATEGORY="_obsolete" is correct? To answer the question correctly, I need to know what you want

Re: The correct manner to obsolete subpackage.

2023-08-30 Thread Takashi Yano via Cygwin-apps
Hi Jon, Thanks the answer. On Wed, 30 Aug 2023 13:43:15 +0100 Jon Turney wrote: > On 29/08/2023 23:40, Takashi Yano via Cygwin-apps wrote: > > If the main package no longer provides a sub package, > > what is the correct manner to osolete it? > > > > Creating empty sub package with > >

Re: [ITA] jq

2023-08-30 Thread Jon Turney via Cygwin-apps
On 29/08/2023 15:26, Andrew Schulman via Cygwin-apps wrote: I'd like to adopt the jq package. It's currently orphaned from Yaakov. I have an updated build script ready to push up for the current release (1.6-1), and a new release (1.7) is expected soon. Andrew Thanks. I think Brian was

Re: [Sharing progress] Tried to revive LLVM/Clang/Libc++ pkgs and port Rust

2023-08-30 Thread William Hu via Cygwin-apps
On Tuesday, August 29th, 2023 at 10:18 PM, William Hu wrote: > src_test: > 1. I believe "make ocamltest" does not run the testsuite; AFAIU, it builds the > auxiliary testing software instead. So far the only ways I know of to run the > testsuite are either "make tests" or cd'ing into the testsuite

Re: can't compile coreutils-9.3 any more after upgrade to cygwin-3.4.8

2023-08-30 Thread Corinna Vinschen via Cygwin-apps
Hi Mark, On Aug 30 00:29, Mark Geisert via Cygwin-apps wrote: > [redirected from the main Cygwin ML] > Corinna Vinschen via Cygwin wrote: > > This is not what I meant. A simple reproducer is ideally a piece of > > C code which shows ;the problem with a minimum of code. In this case, > > a pice

Re: can't compile coreutils-9.3 any more after upgrade to cygwin-3.4.8

2023-08-30 Thread Corinna Vinschen via Cygwin-apps
On Aug 30 11:34, Corinna Vinschen via Cygwin-apps wrote: > #define CPU_ZERO_S(siz, set) __cpuset_zero_s (siz, set) > -static __inline void > -__cpuset_zero_s (size_t siz, cpu_set_t *set) > -{ > - (void) memset (set, 0, siz); > -} > +void __cpuset_zero_s (size_t, cpu_set_t *); > [...] >

Re: can't compile coreutils-9.3 any more after upgrade to cygwin-3.4.8

2023-08-30 Thread Corinna Vinschen via Cygwin-apps
On Aug 30 11:57, Corinna Vinschen via Cygwin-apps wrote: > On Aug 30 11:34, Corinna Vinschen via Cygwin-apps wrote: > > #define CPU_ZERO_S(siz, set) __cpuset_zero_s (siz, set) > > -static __inline void > > -__cpuset_zero_s (size_t siz, cpu_set_t *set) > > -{ > > - (void) memset (set, 0, siz); >

Re: can't compile coreutils-9.3 any more after upgrade to cygwin-3.4.8

2023-08-30 Thread Brian Inglis via Cygwin-apps
On 2023-08-30 06:17, Corinna Vinschen via Cygwin-apps wrote: On Aug 30 11:57, Corinna Vinschen via Cygwin-apps wrote: On Aug 30 11:34, Corinna Vinschen via Cygwin-apps wrote: #define CPU_ZERO_S(siz, set) __cpuset_zero_s (siz, set) -static __inline void -__cpuset_zero_s (size_t siz, cpu_set_t

Re: [Sharing progress] Tried to revive LLVM/Clang/Libc++ pkgs and port Rust

2023-08-30 Thread ASSI via Cygwin-apps
William Hu via Cygwin-apps writes: > Just checked the file and I agree that CFLAGS looks a little funny - are > there any > other stupid flags/variables that you had in mind? NOt immediately, but it makes me wonder if there's other such leakage. I have not found a (text) file that stores this

Re: [ITA] jq

2023-08-30 Thread Brian Inglis via Cygwin-apps
On 2023-08-30 06:46, Jon Turney via Cygwin-apps wrote: On 29/08/2023 15:26, Andrew Schulman via Cygwin-apps wrote: I'd like to adopt the jq package. It's currently orphaned from Yaakov. I have an updated build script ready to push up for the current release (1.6-1), and a new release (1.7) is

Re: The correct manner to obsolete subpackage.

2023-08-30 Thread ASSI via Cygwin-apps
Takashi Yano via Cygwin-apps writes: > But, my case is > >> If the package is really being removed without any replacement, there >> are mechanisms to deal with that case, but that case should be really rare. > > this. pulseaudio package no longer provides esound and gconf, > however, these

Re: The correct manner to obsolete subpackage.

2023-08-30 Thread Brian Inglis via Cygwin-apps
On 2023-08-29 16:40, Takashi Yano via Cygwin-apps wrote: If the main package no longer provides a sub package, what is the correct manner to obsolete it? OBSOLETES=sub_pkg or pkg_OBSOLETES="sub_pkg1 sub_pkg2 ..." Creating empty sub package with sub_package_CATEGORY="_obsolete" is correct?

Re: can't compile coreutils-9.3 any more after upgrade to cygwin-3.4.8

2023-08-30 Thread Corinna Vinschen via Cygwin-apps
On Aug 30 12:04, Brian Inglis via Cygwin-apps wrote: > On 2023-08-30 06:17, Corinna Vinschen via Cygwin-apps wrote: > > On Aug 30 11:57, Corinna Vinschen via Cygwin-apps wrote: > > > On Aug 30 11:34, Corinna Vinschen via Cygwin-apps wrote: > > > > #define CPU_ZERO_S(siz, set) __cpuset_zero_s

Re: The correct manner to obsolete subpackage.

2023-08-30 Thread Takashi Yano via Cygwin-apps
On Wed, 30 Aug 2023 10:59:30 -0600 Brian Inglis wrote: > On 2023-08-29 16:40, Takashi Yano via Cygwin-apps wrote: > > If the main package no longer provides a sub package, > > what is the correct manner to obsolete it? > > OBSOLETES=sub_pkg > > or > > pkg_OBSOLETES="sub_pkg1 sub_pkg2 ..." This

Re: can't compile coreutils-9.3 any more after upgrade to cygwin-3.4.8

2023-08-30 Thread Mark Geisert via Cygwin-apps
[redirected from the main Cygwin ML] Hi Corinna, Corinna Vinschen via Cygwin wrote: On Aug 25 22:50, Mark Geisert via Cygwin wrote: Hi Corinna, Corinna Vinschen via Cygwin wrote: On Aug 24 14:39, Mark Geisert via Cygwin wrote: Denis Excoffier via Cygwin wrote: Hello, When i try to compile