Cleanup, remove sociomantic stuff, close #406 merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
parent
c3537a5d51
commit
460096728b
|
@ -1,12 +1,6 @@
|
||||||
[submodule "libdparse"]
|
[submodule "libdparse"]
|
||||||
path = libdparse
|
path = libdparse
|
||||||
url = https://github.com/dlang-community/libdparse.git
|
url = https://github.com/dlang-community/libdparse.git
|
||||||
[submodule "makd"]
|
|
||||||
path = makd
|
|
||||||
url = https://github.com/sociomantic-tsunami/makd
|
|
||||||
[submodule "beaver"]
|
|
||||||
path = beaver
|
|
||||||
url = https://github.com/sociomantic-tsunami/beaver.git
|
|
||||||
[submodule "stdx-allocator"]
|
[submodule "stdx-allocator"]
|
||||||
path = stdx-allocator
|
path = stdx-allocator
|
||||||
url = https://github.com/dlang-community/stdx-allocator
|
url = https://github.com/dlang-community/stdx-allocator
|
||||||
|
|
29
.travis.yml
29
.travis.yml
|
@ -1,15 +1,12 @@
|
||||||
sudo: false
|
sudo: false
|
||||||
language: d
|
language: d
|
||||||
d:
|
d:
|
||||||
#- dmd-nightly
|
|
||||||
- dmd-beta
|
|
||||||
- dmd
|
- dmd
|
||||||
- ldc-beta
|
|
||||||
- ldc
|
- ldc
|
||||||
|
|
||||||
os:
|
os:
|
||||||
- linux
|
- linux
|
||||||
# - osx # disabled until travis has more mac resources
|
- osx
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
|
@ -24,30 +21,6 @@ script: ./.travis.sh
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- stage: Build & Upload Package
|
|
||||||
if: tag IS present
|
|
||||||
# Which package to deploy
|
|
||||||
env:
|
|
||||||
- DMD=2.076.*
|
|
||||||
- DIST=xenial
|
|
||||||
- PATH="$(git config -f .gitmodules submodule.beaver.path)/bin:$PATH"
|
|
||||||
language: generic
|
|
||||||
sudo: required
|
|
||||||
services:
|
|
||||||
- docker
|
|
||||||
git:
|
|
||||||
submodules: false
|
|
||||||
before_install: git submodule update --init
|
|
||||||
install: beaver dlang install
|
|
||||||
script:
|
|
||||||
- beaver dlang make pkg
|
|
||||||
deploy:
|
|
||||||
provider: script
|
|
||||||
script: beaver bintray upload -d dlang-community/apt/dfmt build/last/pkg/*.deb
|
|
||||||
skip_cleanup: true
|
|
||||||
on:
|
|
||||||
tags: true # must be a git tag
|
|
||||||
repo: dlang-community/dfmt # must be a tag on dlang-community
|
|
||||||
- stage: GitHub Release
|
- stage: GitHub Release
|
||||||
#if: tag IS present
|
#if: tag IS present
|
||||||
d: ldc-1.8.0
|
d: ldc-1.8.0
|
||||||
|
|
1
beaver
1
beaver
|
@ -1 +0,0 @@
|
||||||
Subproject commit 82f8c8f6bbd9f0fbd9753a134377bec134a5956c
|
|
|
@ -1,6 +0,0 @@
|
||||||
# Copyright sociomantic labs GmbH 2017.
|
|
||||||
# Distributed under the Boost Software License, Version 1.0.
|
|
||||||
# (See accompanying file LICENSE.txt or copy at
|
|
||||||
# http://www.boost.org/LICENSE_1_0.txt)
|
|
||||||
|
|
||||||
FROM sociomantictsunami/dlang:v4
|
|
1
makd
1
makd
|
@ -1 +0,0 @@
|
||||||
Subproject commit d735c1df67399693f699f8315418173a55de5313
|
|
31
pkg/dfmt.pkg
31
pkg/dfmt.pkg
|
@ -1,31 +0,0 @@
|
||||||
# dfmt packaging configuration
|
|
||||||
# ============================
|
|
||||||
|
|
||||||
dfmt_bindir='bin'
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Define the keyword arguments to pass to fpm (via the OPTS dict)
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
OPTS.update(
|
|
||||||
name = "dfmt",
|
|
||||||
url = 'https://github.com/dlang-community/dfmt',
|
|
||||||
maintainer = 'Stefan Koch <stefan.koch@sociomantic.com>',
|
|
||||||
vendor = 'Sociomantic Labs GmbH',
|
|
||||||
provides = "dfmt",
|
|
||||||
description = '''\
|
|
||||||
D source code formatter
|
|
||||||
''',
|
|
||||||
depends = FUN.autodeps('dfmt', path=dfmt_bindir),
|
|
||||||
)
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Define the positional arguments to pass to fpm (via the ARGS list)
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
ARGS.extend(FUN.mapfiles(dfmt_bindir, '/usr/bin', 'dfmt'))
|
|
||||||
ARGS.extend([
|
|
||||||
'bash-completion/completions/dfmt=/usr/share/bash-completion/completions/dfmt'
|
|
||||||
])
|
|
||||||
|
|
||||||
# vim: set ft=python tw=80 :
|
|
Loading…
Reference in New Issue