November 01, 2014 Re: [dmd-beta] 2.066.1 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Brad Roberts | Thx!! -- Andrei On 11/1/14 1:28 AM, Brad Roberts via dmd-beta wrote: > Ah.. sorry, read too fast, curl. To get it to acctually fail when the > server fails the request, add --fail. > > example: > > braddr@redmond:~$ curl --silent --fail --output /tmp/foo.tar.gz \ > https://issues.dlang.org/s3logs/previous/2014-10.tar.gz > braddr@redmond:~$ echo $? > 22 > > > On 11/1/2014 1:17 AM, Brad Roberts via dmd-beta wrote: >> What http library are you using that can't tell you that the status code >> isn't 200 but instead is a 404? >> >> On 11/1/2014 12:30 AM, Andrei Alexandrescu wrote: >>> Well here's a problem I'm encountering. I download .tar.gz stuff for the >>> previous months. Right now it's Nov 1 0:27 so my system is looking for >>> https://issues.dlang.org/s3logs/previous/2014-10.tar.gz. That's not yet >>> there, which is fine. However, when I download (with curl) I don't get a >>> nice error, I get an HTML page containing the error as text instead of >>> the .tar.gz file. Subsequently my automated code attempts to untar the >>> file and obviously fails. >>> >>> That's why I think ftp or ssh would be better. Any solution with what we >>> have? >>> >>> >>> Andrei >>> >>> On 10/16/14 12:58 AM, Brad Roberts via dmd-beta wrote: >>>> It's semi-automated. None of the issues between current and more >>>> automated are difficult, but there's a bunch of little things. It's >>>> really pretty easy for me to do the syncing, so I haven't really >>>> bothered to invest in it. >>>> >>>> The largest stumbling block, not for automation, but long term single >>>> point of failure issues is that the s3 bucket is owned by my personal >>>> account along with a bunch of other things. It'd be better to have a >>>> standalone account for just that bucket. Also not hard to change, but >>>> requires effort and some down time. Just hasn't been worth doing. >>>> >>>> Really, it takes me just a couple minutes to do, which is dominated by >>>> network file transfers. >>>> >>>> On 10/15/2014 11:14 PM, Jacob Carlborg via dmd-beta wrote: >>>>> On Oct 15, 2014, at 10:36 PM, Martin Nowak via dmd-beta >>>>> <dmd-beta@puremagic.com> wrote: >>>>> >>>>>> Files are uploaded to my webserver, someone needs to copy them to >>>>>> ftp.digitalmars.com and the S3 server. >>>>> >>>>> How automated is this process now? What's missing to make it >>>>> completely >>>>> automatic except for entering passwords/API keys and similar? >>>>> >>>>> -- >>>>> /Jacob Carlborg >>>>> >>>>> >>>>> _______________________________________________ >>>>> dmd-beta mailing list >>>>> dmd-beta@puremagic.com >>>>> http://lists.puremagic.com/mailman/listinfo/dmd-beta >>>>> >>>> _______________________________________________ >>>> dmd-beta mailing list >>>> dmd-beta@puremagic.com >>>> http://lists.puremagic.com/mailman/listinfo/dmd-beta >> _______________________________________________ >> dmd-beta mailing list >> dmd-beta@puremagic.com >> http://lists.puremagic.com/mailman/listinfo/dmd-beta > _______________________________________________ > dmd-beta mailing list > dmd-beta@puremagic.com > http://lists.puremagic.com/mailman/listinfo/dmd-beta _______________________________________________ dmd-beta mailing list dmd-beta@puremagic.com http://lists.puremagic.com/mailman/listinfo/dmd-beta |
November 01, 2014 Re: [dmd-beta] 2.066.1 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Martin Nowak | FYI - https://github.com/D-Programming-Language/dlang.org/pull/687 disables dpl-docs building until we sort out the issues with dub. -- Andrei _______________________________________________ dmd-beta mailing list dmd-beta@puremagic.com http://lists.puremagic.com/mailman/listinfo/dmd-beta |
November 02, 2014 Re: [dmd-beta] 2.066.1 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Andrei Alexandrescu Attachments:
| Are there any yet unmerged dmd/druntime/phobos changes planned for this release?
On Sun, Nov 2, 2014 at 8:38 AM, Andrei Alexandrescu via dmd-beta < dmd-beta@puremagic.com> wrote:
> FYI - https://github.com/D-Programming-Language/dlang.org/pull/687 disables dpl-docs building until we sort out the issues with dub. -- Andrei
>
> _______________________________________________
> dmd-beta mailing list
> dmd-beta@puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
>
|
November 06, 2014 Re: [dmd-beta] 2.066.1 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Andrei Alexandrescu | On 11/01/2014 04:19 PM, Andrei Alexandrescu via dmd-beta wrote: > Thx!! -- Andrei recommended default curl parameters curl -fsSL http://example.org -f exit with non-zero if request isn't OK -s silent -S print errors when silent -L follow redirects _______________________________________________ dmd-beta mailing list dmd-beta@puremagic.com http://lists.puremagic.com/mailman/listinfo/dmd-beta |
November 06, 2014 Re: [dmd-beta] 2.066.1 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Михаил Страшун Attachments:
| I'm sure this is a dumb question but, is 2.066.1 released? It seems to be on the web site, and a few people have asked about it, but I don't see anything in announce. Looking here, there seems to be ongoing discussion on it, or is it just a stale subject line?
-Steve
On Nov 2, 2014, at 8:16 AM, Михаил Страшун via dmd-beta <dmd-beta@puremagic.com> wrote:
> Are there any yet unmerged dmd/druntime/phobos changes planned for this release?
>
> On Sun, Nov 2, 2014 at 8:38 AM, Andrei Alexandrescu via dmd-beta <dmd-beta@puremagic.com> wrote:
> FYI - https://github.com/D-Programming-Language/dlang.org/pull/687 disables dpl-docs building until we sort out the issues with dub. -- Andrei
>
> _______________________________________________
> dmd-beta mailing list
> dmd-beta@puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
>
> _______________________________________________
> dmd-beta mailing list
> dmd-beta@puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
|
November 07, 2014 Re: [dmd-beta] 2.066.1 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Steven Schveighoffer | On 11/06/2014 11:00 PM, Steven Schveighoffer via dmd-beta wrote: > I'm sure this is a dumb question but, is 2.066.1 released? It seems to > be on the web site, and a few people have asked about it, but I don't > see anything in announce. Looking here, there seems to be ongoing > discussion on it, or is it just a stale subject line? There has been some delay with updating the website. An announcement should follow soon. _______________________________________________ dmd-beta mailing list dmd-beta@puremagic.com http://lists.puremagic.com/mailman/listinfo/dmd-beta |
November 07, 2014 Re: [dmd-beta] 2.066.1 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Andrei Alexandrescu | On 11/02/2014 07:38 AM, Andrei Alexandrescu wrote: > FYI - https://github.com/D-Programming-Language/dlang.org/pull/687 > disables dpl-docs building until we sort out the issues with dub. -- Andrei It's not issues with dub you're encountering but issues with other libraries and unstable compiler updates. currently waiting for a dmd regression fix (https://github.com/D-Programming-Language/dmd/pull/4113). _______________________________________________ dmd-beta mailing list dmd-beta@puremagic.com http://lists.puremagic.com/mailman/listinfo/dmd-beta |
November 07, 2014 Re: [dmd-beta] 2.066.1 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Martin Nowak | On 10/15/2014 10:35 PM, Martin Nowak via dmd-beta wrote: > Files are uploaded to my webserver, someone needs to copy them to > ftp.digitalmars.com and the S3 server. > > Please try out your platform and report back if everything works before > we can announce this release. > > https://dlang.dawg.eu/downloads/dmd.2.066.1/ > Walter, can you please mirror the files to ftp.digitalmars.com. _______________________________________________ dmd-beta mailing list dmd-beta@puremagic.com http://lists.puremagic.com/mailman/listinfo/dmd-beta |
Copyright © 1999-2021 by the D Language Foundation