Re: [swift-dev] Compile Error - Arch Linux

2015-12-05 Thread Dmitri Gribenko
On Fri, Dec 4, 2015 at 6:08 AM, Ryan Lovelett wrote: > I know that Arch Linux is not a "Supported Target Platforms" so I guess > this may be off topic. > > However, I'm trying to make an PKGBUILD script so that Swift can be > installed from the AUR (and perhaps eventually from the main > repositor

Re: [swift-dev] Optional to String conversion

2015-12-05 Thread Andrew Trick
> On Dec 4, 2015, at 10:26 PM, Dmitri Gribenko wrote: > > On Fri, Dec 4, 2015 at 10:21 PM, Andrew Trick > wrote: >> >>> On Dec 4, 2015, at 10:05 PM, Dmitri Gribenko wrote: >>> >>> On Fri, Dec 4, 2015 at 10:00 PM, Andrew Trick wrote: I’m adding runtime functiona

[swift-dev] Roll-out of deprecating ++ and --

2015-12-05 Thread Matthijs Hollemans
The proposal for the removal of the ++ and -- operators states that, > In terms of roll-out, we should deprecate them in the Spring Swift 2.x > release (with a nice Fixit hint to cover common cases), and remove them > completely in Swift 3. Is it possible to keep the Spring 2.x release non-brea

Re: [swift-dev] Optional to String conversion

2015-12-05 Thread Greg Parker
> On Dec 4, 2015, at 10:00 PM, Andrew Trick wrote: > > I’m adding runtime functionality to support optional casts and ran into some > Optional to String conversion behavior that is currently somewhat > accidental—it will break when I add functionality. I want to understand the > desired behav

[swift-dev] Swift on ARM processor

2015-12-05 Thread Piero Sabino
Swift functions on an ARM processor? Inviato da iPhone Piero Sabino ___ swift-dev mailing list swift-dev@swift.org https://lists.swift.org/mailman/listinfo/swift-dev

Re: [swift-dev] Swift on ARM processor

2015-12-05 Thread David Abraham
Currently Linux-x86 but there are community members exploring Linux-ARM -David > On Dec 5, 2015, at 9:03 AM, Piero Sabino wrote: > > Swift functions on an ARM processor? > > Inviato da iPhone > Piero Sabino > ___ > swift-dev mailing list > swift-dev@

Re: [swift-dev] Compile Error - Arch Linux

2015-12-05 Thread Ryan Lovelett
Dmitri, Thanks for the extra set of eyes. I have confirmed that moving '-lpthread -ldl' to either the beginning or end will allow that step to succeed. The part that I'm stuck on is where that linker argument comes from in the first place and how to reorder them. Do you happen to have any insight

Re: [swift-dev] Roll-out of deprecating ++ and --

2015-12-05 Thread Rudolf Adamkovic
-1 Slowing down development so that paper books can keep up? Sounds like a very bad idea to me. R+ Sent from my iPhone > On 05 Dec 2015, at 10:26, Matthijs Hollemans wrote: > > The proposal for the removal of the ++ and -- operators states that, > >> In terms of roll-out, we should deprecat

[swift-dev] RFC: Adding Optional variants of == for collections to the std lib

2015-12-05 Thread Paul Young
I’d like to get a sense from contributors to the standard library if they feel that the functionality in https://github.com/paulyoung/OptionalEquatableCollection has a place there. The project provides Optional variants of the existing implementations of the "equal to” operator (==) for Array,

Re: [swift-dev] Roll-out of deprecating ++ and --

2015-12-05 Thread Alex Blewitt
> On 5 Dec 2015, at 10:26, Matthijs Hollemans wrote: > > The proposal for the removal of the ++ and -- operators states that, > >> In terms of roll-out, we should deprecate them in the Spring Swift 2.x >> release (with a nice Fixit hint to cover common cases), and remove them >> completely i

Re: [swift-dev] Roll-out of deprecating ++ and --

2015-12-05 Thread Chris Lattner
> On Dec 5, 2015, at 1:26 AM, Matthijs Hollemans wrote: > > The proposal for the removal of the ++ and -- operators states that, > >> In terms of roll-out, we should deprecate them in the Spring Swift 2.x >> release (with a nice Fixit hint to cover common cases), and remove them >> completely

Re: [swift-dev] Starter project: convert RST files to Markdown

2015-12-05 Thread Paul Young
Done! https://github.com/apple/swift/pull/246 On Sat, Dec 5, 2015 at 5:31 PM, Chris Lattner wrote: > If someone is interested in tackling a useful starter project, there are a > number of files in the repository that are still in RST format. We’d like > for them to eventually move to markdown

[swift-dev] enquiry

2015-12-05 Thread Shaheen Sharafudheen
hi, i can't seem to verify the signature,here's what i get: *gpg: can't open `swift-2.2-SNAPSHOT-2015-12-01-b-ubuntu15.10.tar.gz.sig'* *gpg: verify signatures failed: file open error* -- *Best Regards,* *Mohd.Shahin Shar**af* *XI-D* *PREFECT* I.I.S.Dammam *Al-Rabie st.* *Dammam,* *K.S.A* ___

[swift-dev] How to view which tests are fail

2015-12-05 Thread Sahil Wasan
Hi Swift Team I am using this utils/build-script -RT command to runt tests. My question is 1) At the end test is failing(4 test) but I do not know which tests are failing and what is reason. 2) Can I use Xcode to debug the swift code. Is it possible. I have created project with utils/build-script

[swift-dev] Merge-commit noise?

2015-12-05 Thread Jacob Bandes-Storch
Now that contributions are being made on GitHub, it seems there is a lot of noise in the repo's history from merge commits. [image: Inline image 1] Would it make sense to instate a policy where commits must be rebased on top of master before merging/pushing? (The rebase would have to be done by

Re: [swift-dev] Roll-out of deprecating ++ and --

2015-12-05 Thread Matthijs Hollemans
Awesome, thanks for clarifying. :-) -Matthijs > On 5 dec. 2015, at 18:29, Chris Lattner wrote: > > >> On Dec 5, 2015, at 1:26 AM, Matthijs Hollemans wrote: >> >> The proposal for the removal of the ++ and -- operators states that, >> >>> In terms of roll-out, we should deprecate them in

[swift-dev] Install Swift on Ubuntu 14.04 LTS

2015-12-05 Thread Piero Sabino via swift-dev
I can't install Swift on Ubuntu 14.04 LTS x86_64 ___ swift-dev mailing list swift-dev@swift.org https://lists.swift.org/mailman/listinfo/swift-dev

Re: [swift-dev] RFC: Adding Optional variants of == for collections to the std lib

2015-12-05 Thread Martin Kühl via swift-dev
On 5 December 2015 at 16:38, Paul Young wrote: > > I’d like to get a sense from contributors to the standard library if they > feel that the functionality in > https://github.com/paulyoung/OptionalEquatableCollection has a place there. > > The project provides Optional variants of the existing i

Re: [swift-dev] Starter project: Convert release notes into something useful

2015-12-05 Thread joe via swift-dev
I'd be willing to tackle the second problem (the content/design). I saw someone tweet about this file the other day, and it took me a while to find it in the utils directory. It was a great read, but also kind of a pain as one long doc because I preferred to read from the oldest notes to the mos

Re: [swift-dev] Starter project: Convert release notes into something useful

2015-12-05 Thread joe via swift-dev
Ok, that makes sense. I can start by moving it to the root as a single markdown doc and making sure it renders well on GitHub. Any strong feelings on CHANGES.md vs CHANGELOG.md? > On Dec 5, 2015, at 3:00 PM, Alex Chan wrote: > > On 5 Dec 2015, at 20:54, joe via swift-dev wrote: > >> It was a

Re: [swift-dev] RFC: Adding Optional variants of == for collections to the std lib

2015-12-05 Thread John McCall via swift-dev
> On Dec 5, 2015, at 12:39 PM, Martin Kühl via swift-dev > wrote: > On 5 December 2015 at 16:38, Paul Young wrote: >> >> I’d like to get a sense from contributors to the standard library if they >> feel that the functionality in >> https://github.com/paulyoung/OptionalEquatableCollection has

Re: [swift-dev] Merge-commit noise?

2015-12-05 Thread Jacob Bandes-Storch via swift-dev
Note that recording the original contributor is exactly what happens when you do `git rebase`: the rebaser will become the Committer, but the Author remains the same. On Sat, Dec 5, 2015 at 1:25 PM, Alex Blewitt via swift-dev < swift-dev@swift.org> wrote: > > > > On 5 Dec 2015, at 19:46, Jordan R

Re: [swift-dev] enquiry

2015-12-05 Thread Dmitri Gribenko via swift-dev
On Fri, Dec 4, 2015 at 10:07 PM, Shaheen Sharafudheen wrote: > > hi, > i can't seem to verify the signature,here's what i get: > gpg: can't open `swift-2.2-SNAPSHOT-2015-12-01-b-ubuntu15.10.tar.gz.sig' > gpg: verify signatures failed: file open error Hi Shaheen, Please verify that you have two f

[swift-dev] Promises

2015-12-05 Thread Dale Buckley via swift-dev
Promises seem to be a popular subject at the moment and there are a few libraries out there for a number of languages that try too implement this feature. I feel that there are a few good concepts to take from promises that could be swiftified so we can get away from embedded closures. Does anyo

Re: [swift-dev] Starter project: Convert release notes into something useful

2015-12-05 Thread joe via swift-dev
No problem at all. Thanks for adding back the older missing stuff. I didn't even realize that was added back until I was editing the formatting and didn't recognize some of it from when I read it the other day. > On Dec 5, 2015, at 11:16 PM, Chris Lattner wrote: > > >> On Dec 5, 2015, at 1:06

Re: [swift-dev] Language Specification on Github?

2015-12-05 Thread Chris Lattner via swift-dev
> On Dec 4, 2015, at 8:23 AM, David Waite wrote: > > Is there a possibility of the swift books (at least the core language and a > html build process ) being turned into projects on github? I do have > changes/fixes which I would suggest against the books if there was a process > to do so - a