Re: How to reinstall everything?

2021-02-04 Thread Hamish McIntyre-Bhatty via Cygwin
On 04/02/2021 15:24, Marco Atzeri via Cygwin wrote: > In 04.02.2021 15:21, Hamish McIntyre-Bhatty via Cygwin wrote: > >> >> Thanks Marco. >> >> All done, attributed to you under BSD and available at >> https://gitlab.com/hamishmb/cygwin-scripts. >> >> Hamish >> > > Hi Hamish > I see 404 error,

Re: How to reinstall everything?

2021-02-04 Thread Marco Atzeri via Cygwin
In 04.02.2021 15:21, Hamish McIntyre-Bhatty via Cygwin wrote: Thanks Marco. All done, attributed to you under BSD and available at https://gitlab.com/hamishmb/cygwin-scripts. Hamish Hi Hamish I see 404 error, maybe it has private setting ? Regards Marco -- Problem reports:

Re: How to reinstall everything?

2021-02-04 Thread Hamish McIntyre-Bhatty via Cygwin
On 16/01/2021 21:02, Marco Atzeri via Cygwin wrote: > On 16.01.2021 20:55, Hamish McIntyre-Bhatty via Cygwin wrote: >> In reply to Marco Atzeri: >> >> """ >> Some time ago I put a script here: >> https://stackoverflow.com/questions/46829532/cygwin-save-package-selections-for-later-reinstall >> >>

Re: How to reinstall everything?

2021-01-21 Thread Bill Stewart
On Sun, Jan 17, 2021 at 11:23 AM matthew patton wrote: > can we fix setup.exe to read STDIN with '-P', like so? > echo 'pkg1,pkg2,pkg3' | setup.exe -P - What problem does this solve for you? PowerShell example, if you're not familiar: $packages = 'pkg1','pkg2','pkg3' setup -P ($packages -join

Re: How to reinstall everything?

2021-01-21 Thread Hamish McIntyre-Bhatty via Cygwin
On 21/01/2021 16:24, Marco Atzeri via Cygwin wrote: > On 21.01.2021 17:00, Hamish McIntyre-Bhatty via Cygwin wrote: >> On 16/01/2021 21:02, Marco Atzeri via Cygwin wrote: On 16.01.2021 20:55, Hamish McIntyre-Bhatty via Cygwin wrote: > In reply to Marco Atzeri: > >> >> Bumping in case you

Re: How to reinstall everything?

2021-01-21 Thread Marco Atzeri via Cygwin
On 21.01.2021 17:00, Hamish McIntyre-Bhatty via Cygwin wrote: On 16/01/2021 21:02, Marco Atzeri via Cygwin wrote: On 16.01.2021 20:55, Hamish McIntyre-Bhatty via Cygwin wrote: In reply to Marco Atzeri: Bumping in case you didn't see my follow up query Marco: What license are these

Re: How to reinstall everything?

2021-01-21 Thread Hamish McIntyre-Bhatty via Cygwin
On 16/01/2021 21:02, Marco Atzeri via Cygwin wrote: >> On 16.01.2021 20:55, Hamish McIntyre-Bhatty via Cygwin wrote: >>> In reply to Marco Atzeri: >>> >>> """ >>> Some time ago I put a script here: >>> https://stackoverflow.com/questions/46829532/cygwin-save-package-selections-for-later-reinstall

Re: How to reinstall everything?

2021-01-18 Thread Brian Inglis
On 2021-01-17 13:53, matthew patton via Cygwin wrote: On Sunday, January 17, 2021, 02:44:37 PM EST, Achim Gratz wrote: matthew patton via Cygwin writes: can we fix setup.exe to read STDIN with '-P', like so? echo 'pkg1,pkg2,pkg3' | setup.exe -P - You probably forgot that setup is a Windows

Re: How to reinstall everything?

2021-01-17 Thread matthew patton via Cygwin
On Sunday, January 17, 2021, 02:44:37 PM EST, Achim Gratz wrote: >matthew patton via Cygwin writes: >> can we fix setup.exe to read STDIN with '-P', like so?  >> echo 'pkg1,pkg2,pkg3' | setup.exe -P - > You probably forgot that setup is a Windows program.  besides, you must > not start it

Re: How to reinstall everything?

2021-01-17 Thread Hans-Bernhard Bröker
Am 17.01.2021 um 19:23 schrieb matthew patton via Cygwin: can we fix setup.exe to read STDIN with '-P', like so? To fix something, it has to be broken first. I don't see that being the case here. echo 'pkg1,pkg2,pkg3' | setup.exe -P - I don't see that in any way easier or more helpful

Re: How to reinstall everything?

2021-01-17 Thread Achim Gratz
matthew patton via Cygwin writes: > can we fix setup.exe to read STDIN with '-P', like so?  > echo 'pkg1,pkg2,pkg3' | setup.exe -P - You probably forgot that setup is a Windows program. besides, you must not start it from the Cygwin that you are about to install a package into. Regards, Achim.

Re: How to reinstall everything?

2021-01-17 Thread Brian Inglis
On 2021-01-17 11:23, matthew patton via Cygwin wrote: can we fix setup.exe to read STDIN with '-P', like so? $ echo 'pkg1,pkg2,pkg3' | setup.exe -P - and even more useful if the argument can be space delimited. $ setup.exe -P pkg1 pkg2 pkg3 or if that's too much $ setup.exe -P pkg1 -P pkg2 -P

Re: How to reinstall everything?

2021-01-17 Thread matthew patton via Cygwin
can we fix setup.exe to read STDIN with '-P', like so?  echo 'pkg1,pkg2,pkg3' | setup.exe -P - and even more useful if the argument can be space delimited.setup.exe -P pkg1 pkg2 pkg3or if that's too muchsetup.exe -P pkg1 -P pkg2 -P pkg3 -- Problem reports: https://cygwin.com/problems.html

Re: How to reinstall everything?

2021-01-16 Thread Hamish McIntyre-Bhatty via Cygwin
Cheers. I'll ask for these to be added to that repository and have them attributed to you. Any particular license? Hamish On 16/01/2021 21:02, Marco Atzeri via Cygwin wrote: > On 16.01.2021 20:55, Hamish McIntyre-Bhatty via Cygwin wrote: >> In reply to Marco Atzeri: >> >> """ >> Some time ago I

Re: How to reinstall everything?

2021-01-16 Thread Marco Atzeri via Cygwin
On 16.01.2021 20:55, Hamish McIntyre-Bhatty via Cygwin wrote: In reply to Marco Atzeri: """ Some time ago I put a script here: https://stackoverflow.com/questions/46829532/cygwin-save-package-selections-for-later-reinstall """ This has been very useful for me. Is this in a git/other

Re: How to reinstall everything?

2021-01-16 Thread Hamish McIntyre-Bhatty via Cygwin
In reply to Marco Atzeri: """ Some time ago I put a script here: https://stackoverflow.com/questions/46829532/cygwin-save-package-selections-for-later-reinstall """ This has been very useful for me. Is this in a git/other repository somewhere? If not, I think it might aid discovery for it to

Re: How to reinstall everything?

2020-06-27 Thread Brian Inglis
On 2020-06-26 12:17, Brian Inglis wrote: > On 2020-06-26 11:47, Eliot Moss wrote: >> I've moved to new computer and want to install the same packages I had >> before. Is there a way to tell setup from the command line to re-install all >> packages from my local package directory? (Things are

Re: How to reinstall everything?

2020-06-26 Thread Brian Inglis
On 2020-06-26 11:47, Eliot Moss wrote: > I've moved to new computer and want to install the same packages I had > before. Is there a way to tell setup from the command line to re-install all > packages from my local package directory? (Things are mostly installed, but > not working entirely

Re: How to reinstall everything?

2020-06-26 Thread marco atzeri via Cygwin
On Fri, 26 Jun 2020, 19:48 Eliot Moss, wrote: > Dear cygwin-ers -- I've moved to new computer and want to install the same > packages I had before. > Is there a way to tell setup from the command line to re-install all > packages from my local package > directory? (Things are mostly installed,

How to reinstall everything?

2020-06-26 Thread Eliot Moss
Dear cygwin-ers -- I've moved to new computer and want to install the same packages I had before. Is there a way to tell setup from the command line to re-install all packages from my local package directory? (Things are mostly installed, but not working entirely properly, and it is tedious to