Re: Call for arms: Arch Linux D package maintenance

2017-04-17 Thread R McGuire via Digitalmars-d-announce

On Thursday, 13 April 2017 at 09:34:00 UTC, Atila Neves wrote:

On Tuesday, 11 April 2017 at 16:17:32 UTC, John Colvin wrote:
On Thursday, 16 February 2017 at 19:58:47 UTC, Rory McGuire 
wrote:

[...]


Any news on this? The arch packages are listed as orphaned.


Same question, and adding that I volunteer to take over.

Atila


Are you involved in Arch?

The update is that Arch TUs are not likely to accept one of us 
that is not very involved in Arch. I've been watching the Arch 
mailing lists a bit and two users that tried to get involved were 
rejected and one user who is _very_ involved and has been for 
years got accepted.


I have tried to contact the last person that built the packages 
to see I could help with the dlang packages but have not received 
a reply yet.





Bitbucket Pipelines

2017-04-17 Thread R McGuire via Digitalmars-d-announce

Hi,

Thought some of us might be interested in this, it is now really 
simple to set up testing within bitbucket, by using "Bitbucket 
Pipelines", docker based testing with what seems to be standard 
bash script in the YAML file.


The below config is for a dub package.

bitbucket-pipelines.yml
=

# This is a sample build configuration for D.
# Check our guides at https://confluence.atlassian.com/x/5Q4SMw 
for more examples.

# Only use spaces to indent your .yml configuration.
# -
# You can specify a custom docker image from Docker Hub as your 
build environment.

image: base/archlinux
pipelines:
  default:
- step:
script: # Modify the commands below to build your 
repository.

  - pacman -Sy --noconfirm dub dmd
  - dub build
  #- dub test

=

Regards,
Rory McGuire