Nothing Special   »   [go: up one dir, main page]

Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Prepare 1.0.0 #2

Merged
merged 1 commit into from
Feb 1, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@ dist: trusty
language: rust
cache:
directories:
- .vagga
- .vagga/stable-home
- .vagga/beta-home
- .vagga/nightly-home

addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev

env:
matrix:
Expand Down Expand Up @@ -33,6 +42,9 @@ before_script:
echo "$(id -un):100000:65536" | sudo tee /etc/subuid | sudo tee /etc/subgid
sudo apt-get install uidmap -y
curl http://files.zerogw.com/vagga/vagga-install-testing.sh | sh
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH

script:
- vagga check-fmt
Expand Down Expand Up @@ -60,5 +72,5 @@ after_success:
- |
if [ $FEATURES == "static render wayland serialization" ]
then
vagga doc-upload $TRAVIS_BRANCH $TRAVIS_REPO_SLUG $TRAVIS_PULL_REQUEST $GH_TOKEN
travis-cargo doc-upload
fi
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

## v0.1.0

- Initial Release
- Pre Release
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ name = "wlc"
version = "0.1.0"
authors = ["Victor Brekenfeld (Drakulix) <github@drakulix.de>"]
description = "Safe Bindings for Cloudef's wlc (Wayland Compositor C-Library)"
documentation = ""
documentation = "https://drakulix.github.io/wlc"
repository = "https://github.com/Drakulix/wlc"
readme = "README.md"
keywords = ["wayland", "compositor", "bindings"]
categories = ["external-ffi-bindings", "gui"]
license = "MIT"
exclude = [".travis.yml", ".rustfmt.toml"]

[badges]
travis-ci = { repository = "Drakulix/wlc" }
Expand Down
12 changes: 2 additions & 10 deletions vagga.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@ containers:
setup:
- !Ubuntu xenial
- !UbuntuUniverse
- !Install [build-essential, wget, curl, pkg-config, file, openssl, sudo, ca-certificates, gcc-multilib, clang, libclang-dev, cmake, git, libpixman-1-dev, libwayland-dev, libxkbcommon-dev, udev, libinput-dev, libx11-dev, libxfixes-dev, libx11-xcb-dev, libxcb-ewmh-dev, libxcb-composite0-dev, libxcb-xkb-dev, libxcb-xfixes0-dev, libxcb-image0-dev, libgbm-dev, libdrm-dev, libgl1-mesa-dev, libegl1-mesa-dev, libgles2-mesa-dev, libdbus-1-dev, libsystemd-dev, libcurl4-openssl-dev, libelf-dev, libdw-dev, wayland-protocols, linux-libc-dev]
- !PipConfig
dependencies: true
- !Py2Install [travis-cargo==0.1.15]
- !Install [build-essential, wget, curl, pkg-config, file, openssl, sudo, ca-certificates, gcc-multilib, clang, libclang-dev, cmake, git, libpixman-1-dev, libwayland-dev, libxkbcommon-dev, udev, libinput-dev, libx11-dev, libxfixes-dev, libx11-xcb-dev, libxcb-ewmh-dev, libxcb-composite0-dev, libxcb-xkb-dev, libxcb-xfixes0-dev, libxcb-image0-dev, libgbm-dev, libdrm-dev, libgl1-mesa-dev, libegl1-mesa-dev, libgles2-mesa-dev, libdbus-1-dev, libsystemd-dev, wayland-protocols, linux-libc-dev]
- !Sh |
cd /tmp/
git clone git://github.com/Cloudef/wlc
Expand Down Expand Up @@ -168,9 +165,4 @@ commands:
description: Upload documentation
accepts-arguments: true
container: nightly
run: |
export TRAVIS_BRANCH=$1
export TRAVIS_REPO_SLUG=$2
export TRAVIS_PULL_REQUEST=$3
export GH_TOKEN=$4
travis-cargo doc-upload
run: travis-cargo doc-upload
7 changes: 7 additions & 0 deletions wlc-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ name = "wlc-sys"
version = "0.0.7"
authors = ["Victor Brekenfeld (Drakulix) <github@drakulix.de>"]
build = "build.rs"
description = "Bindgen generated low-level wlc wrapper"
documentation = "https://drakulix.github.io/wlc/wlc-sys/"
repository = "https://github.com/Drakulix/wlc/tree/master/wlc-sys"
keywords = ["wayland", "compositor", "bindings"]
categories = ["external-ffi-bindings"]
license = "MIT"
exclude = [".travis.yml", ".rustfmt.toml"]

[lib]
path = "src/lib.rs"
Expand Down