commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266 values | license stringclasses 13 values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
24c5e8f4e423b5937e1f1885a96d618c0d1b0f02 | .travis.yml | .travis.yml | ---
language: python
python:
- 2.6
- 2.7
env:
- secure: |-
WF3zgCer3gTFPEeJFICLJ0akll9waz4NTP1sJGlkkgwkLc/4vexe+YULBTz+
DyQX37yKqjC95Ym9YM8cmEV4axjGTxGMvp5/B9OZGO4Mc/MwbJuZ5XBdFNgC
KritpYvK2kQEVAAqWqvskgidQpxEU+WjzQ5Gtflmb6nklpemEQ4=
matrix:
allow_failures:
- python: 2.6
install: pip install -q -r requirements.txt --use-mirrors
script:
- nosetests -a '!feature'
branches:
except:
- release
notifications:
email: false
after_success:
- ./tag-release.sh
| ---
language: python
python:
- 2.6
- 2.7
env:
- secure: |-
WF3zgCer3gTFPEeJFICLJ0akll9waz4NTP1sJGlkkgwkLc/4vexe+YULBTz+
DyQX37yKqjC95Ym9YM8cmEV4axjGTxGMvp5/B9OZGO4Mc/MwbJuZ5XBdFNgC
KritpYvK2kQEVAAqWqvskgidQpxEU+WjzQ5Gtflmb6nklpemEQ4=
matrix:
allow_failures:
- python: 2.6
install: pip install -q -r requirements.txt --use-mirrors
script:
- nosetests -a '!feature'
branches:
except:
- release
notifications:
email: false
after_success:
- ./tag_release.sh
| Fix typo on after success script name | Fix typo on after success script name
| YAML | mit | alphagov/transactions-explorer,gds-attic/transactions-explorer,gds-attic/transactions-explorer,gds-attic/transactions-explorer,gds-attic/transactions-explorer,alphagov/transactions-explorer,alphagov/transactions-explorer,alphagov/transactions-explorer,alphagov/transactions-explorer,gds-attic/transactions-explorer |
8b9b7e2ff68fa4f68b2476d99945197751a7ec2e | .travis.yml | .travis.yml | # Ensure that we only run CI test on the Node.js enabled servers.
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "iojs-v1.1"
- "iojs-v1.0"
# Create a Travis memcached enabled environment for the test suite to run in and
# ensure that we test against localhost on Travis-CI.
services: memcache
env: MEMCACHED__HOST=localhost
# The `sevices: memcache` will start a memcached service on localhost
# and on the default port, but in order to test against multiple memcached
# instances we need to spawn a couple more, so we do that during the before
# script
before_script:
- memcached -p 11212 -d
- memcached -p 11213 -d
# Fix broken builds caused by packages using the carrot semver bullshit.
before_install:
- "npm install -g npm@2.1.x"
# Allow failing of these specific builds, they are not that important yet as
# they either lack adoption of large base of users or are beta release
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
- node_js: "0.9"
- node_js: "iojs-v1.1"
- node_js: "iojs-v1.0"
| # Ensure that we only run CI test on the Node.js enabled servers.
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
- "4"
- "5"
# Create a Travis memcached enabled environment for the test suite to run in and
# ensure that we test against localhost on Travis-CI.
services: memcache
env: MEMCACHED__HOST=localhost
# The `sevices: memcache` will start a memcached service on localhost
# and on the default port, but in order to test against multiple memcached
# instances we need to spawn a couple more, so we do that during the before
# script
before_script:
- memcached -p 11212 -d
- memcached -p 11213 -d
# Fix broken builds caused by packages using the carrot semver bullshit.
before_install:
- "npm install -g npm@2.1.x"
| Update Travis config to test against newer Node versions | Update Travis config to test against newer Node versions
| YAML | mit | acarrasco/node-memcached,3rd-Eden/node-memcached,3rd-Eden/memcached,3rd-Eden/node-memcached,3rd-Eden/memcached,acarrasco/node-memcached |
912ff2205ea2130909dff0ea1f2f532c6bd7d7a6 | .travis.yml | .travis.yml | language: cpp
before_script:
- mkdir build
- cd build
- cmake ..
script: make
| language: cpp
before_script:
- sudo apt-get -qq update
- sudo apt-get install -y libboost-program-options-dev
- mkdir build
- cd build
- cmake ..
script: make
| Install boost before building on Travis CI | Install boost before building on Travis CI
| YAML | apache-2.0 | petabi/regexbench,petabi/regexbench,petabi/regexbench,petabi/regexbench |
b7e210fd1c0b6d0bcb9d93488305ceae60eeaa04 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.0
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
xcode_sdk: iphonesimulator
before_install:
- brew update
- brew uninstall xctool && brew install --HEAD xctool
xcode_project: NetworkReachability.xcodeproj
xcode_scheme: NetworkReachability
| language: objective-c
osx_image: xcode8
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
# See https://docs.travis-ci.com/user/languages/objective-c for details.
xcode_sdk: iphonesimulator
before_install:
- brew update
- brew uninstall xctool && brew install --HEAD xctool
xcode_project: NetworkReachability.xcodeproj
xcode_scheme: NetworkReachability
| Use "xcode8" OS X image | Use "xcode8" OS X image
| YAML | mit | royratcliffe/NetworkReachability,royratcliffe/NetworkReachability |
1562dae31ece2820d866245bfd37ca73e07e49c1 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk11
addons:
apt:
packages:
- oracle-java9-installer
script: mvn install
before_install:
- ./etc/before.sh
deploy:
skip_cleanup: true
provider: script
script: mvn deploy
on:
branch: master
| language: java
jdk:
- openjdk12
addons:
apt:
packages:
- oracle-java9-installer
script: mvn install
before_install:
- ./etc/before.sh
deploy:
skip_cleanup: true
provider: script
script: mvn deploy
on:
branch: master
| Build fails for whatever reason -.- | Build fails for whatever reason -.- | YAML | apache-2.0 | remondis-it/remap |
6a9baabf28a8ef19f54f02a2ad0bde12cd765116 | .travis.yml | .travis.yml | env: RAKE_TASK=spec
cache: bundler
language: ruby
matrix:
include:
- env: RAKE_TASK=rubocop
rvm: '2.2'
rvm:
- '2.2'
- '2.1'
- '2.0'
- 'jruby-9'
- 'rbx-2'
script: bundle exec rake $RAKE_TASK
sudo: false
| env: RAKE_TASK=spec
cache: bundler
language: ruby
matrix:
include:
- env: RAKE_TASK=rubocop
rvm: '2.3'
rvm:
- '2.3'
- '2.2'
- '2.1'
- '2.0'
- 'jruby-9'
- 'rbx-2'
script: bundle exec rake $RAKE_TASK
sudo: false
| Test against Ruby 2.3 on Travis | Test against Ruby 2.3 on Travis
| YAML | mit | orgsync/stoplight,bolshakov/stoplight |
f32b29b381acf48c966e9552a5adc5e2fb940d08 | .travis.yml | .travis.yml | matrix:
include:
- language: python
sudo: false
python: "2.7"
install:
- pip install -e .[pythonz] --upgrade
- pip install pytest
script: py.test -rws tests/
- language: python
sudo: false
python: "3.3"
install:
- pip install -e . --upgrade
- pip install pytest
script: py.test -rws tests/ --ignore=tests/test_install.py
- language: python
sudo: false
python: "3.4"
install:
- pip install -e . --upgrade
- pip install pytest
script: py.test -rws tests/ --ignore=tests/test_install.py
- language: python
sudo: false
python: "3.5"
install:
- pip install -e . --upgrade
- pip install pytest
script: py.test -rws tests/ --ignore=tests/test_install.py
- language: python
sudo: false
python: "3.6"
install:
- pip install -e .[pythonz] --upgrade
- pip install pytest
script: py.test -rws tests/
- language: python
sudo: false
python: "pypy"
install:
- pip install -e .[pythonz] --upgrade
- pip install pytest
script: py.test -rws tests/
- language: nix | matrix:
include:
- language: python
sudo: false
python: "2.7"
install:
- pip install -e .[pythonz] --upgrade
- pip install pytest
script: py.test -rws tests/
- language: python
sudo: false
python: "3.4"
install:
- pip install -e . --upgrade
- pip install pytest
script: py.test -rws tests/ --ignore=tests/test_install.py
- language: python
sudo: false
python: "3.5"
install:
- pip install -e . --upgrade
- pip install pytest
script: py.test -rws tests/ --ignore=tests/test_install.py
- language: python
sudo: false
python: "3.6"
install:
- pip install -e .[pythonz] --upgrade
- pip install pytest
script: py.test -rws tests/
- language: python
sudo: false
python: "pypy"
install:
- pip install -e .[pythonz] --upgrade
- pip install pytest
script: py.test -rws tests/
- language: nix
| Drop EOL'd Python 3.3 from Travis builds | Drop EOL'd Python 3.3 from Travis builds
Python 3.3 reached EOL a couple of months ago, and setuptools dropped support
for it earlier this year: pypa/setuptools@7392f01ff . As a result, the 3.3 entry in the
build matrix has been erroring out since at least #196. | YAML | mit | berdario/pew,berdario/pew |
c41cc891c29f4820a3c00545bbb0ffb78393a4d8 | .travis.yml | .travis.yml | language: rust
addons:
postgresql: 9.4
before_script:
- "./.travis/setup.sh"
script:
- cargo test
- cargo test --features "uuid rustc-serialize time unix_socket serde"
- cargo doc --no-deps --features "unix_socket"
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && ./.travis/update_docs.sh
env:
global:
secure: cZEcWfKI7Pml5og9o1zBMYhbj20Pa22kYVDTDEHqvOoe0kq1cnB5sTH7P0FUgiPq2Ax4B8eQIaC30yvFJ02R7kmTys4aQD98NyCyzdO+dqYi93C9PFYGhl/DKsb4iZ2VP+8LffYSwRGsNSzE9Fj9SFRMIOjHN+UfaVHXaUVjE7Y=
| language: rust
rust:
- nightly
- beta
addons:
postgresql: 9.4
before_script:
- "./.travis/setup.sh"
script:
- cargo test
- cargo test --features "uuid rustc-serialize time unix_socket serde"
- cargo doc --no-deps --features "unix_socket"
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && ./.travis/update_docs.sh
env:
global:
secure: cZEcWfKI7Pml5og9o1zBMYhbj20Pa22kYVDTDEHqvOoe0kq1cnB5sTH7P0FUgiPq2Ax4B8eQIaC30yvFJ02R7kmTys4aQD98NyCyzdO+dqYi93C9PFYGhl/DKsb4iZ2VP+8LffYSwRGsNSzE9Fj9SFRMIOjHN+UfaVHXaUVjE7Y=
| Test on both nightly and beta | Test on both nightly and beta
| YAML | apache-2.0 | sfackler/rust-postgres,tempbottle/rust-postgres,ddrmanxbxfr/rust-postgres,achanda/rust-postgres,achanda/rust-postgres,ddrmanxbxfr/rust-postgres,sfackler/rust-postgres,tempbottle/rust-postgres |
1b65cfff815b29b57d90da1e873d3c4fad5a34eb | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
script: py.test -v
notifications:
slack: mamansoft:eEn62WlXE4vbWMZDyMc9WS9b
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
script: py.test -v
notifications:
slack:
secure: S81vdt0O2Tyb5XD/wyTysjxzsh8eRBu55KF2n/zjScWxh78pVKUicfJd2CzrdsQ9EVdugY/E2PCyLDaX9jWRIyY0JiQ2e6Q62wcgAnZuTPIwPTcVBljd9I1ptuKKq5EWeeQKr2lnxA+EKUfjKZsflEMOKRmbQnVrJDOLADT7JoycuMn17mzobz9gu7hC9Haac+WUJxElhFZt/TpADEBVcn8bngMr3lg4eKgrodRvGi2BZCeTSCoq43O/HUaJ9o9URf/ifzvtrc2DJr1PSy3NRk5gMt++YpHTDDS2+zNzXgM1Ve0KvvrsdB3VRDx2ICWD5PV6oZmT9xcaKOKG5+VSAml9BMp2e4I0PQxkoaGCyi3bLhqLW/UQPcj2UIhIbRN8tTF0lMRMT7RbExjfD7MBcR4wRwIbWSZuVnJxLE50HFOkn+aZ2ZIJMObJbnkxwCoFz3Eikn0B/TkkvlVswvNQpitjwBBGVMiSUSHYcChsKf/mm7zmjzQgRoRzag+5XfACEm347PEyGooSt6g7Fehvtw/Zz2HeJwz5pCu/SUrdLexOPydwNQrX40yIYhD/PvA/pLnyrlOVa6W/1JBlOYuxfno1wWpLyxVoW0n+oRgKmMdMxAuteFiyeHEW1tLz8KUDbW64cEfQorvdtMYxKKY5ieGFppvA/R0XnifvveM7S9Y=
| Change slack token into secure | Change slack token into secure
| YAML | mit | tadashi-aikawa/owlmixin |
cbf8f46eb6ffea1c78ba41ec739cd7f5aa071b0e | .travis.yml | .travis.yml | language: python
compiler: g++
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
- sudo apt-get install gcc-5 g++-5
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 40 --slave /usr/bin/g++ g++ /usr/bin/g++-5
- sudo update-alternatives --config gcc
install:
# installing requirements for kattis problem tools
# note that on debian/ubuntu pip tools are being installed to the python2 pip
# install kattis problem tools
- chmod +x travis-install.sh
- sudo ./travis-install.sh
- sudo pip2 install git+https://github.com/kattis/problemtools
script:
- verifyproblem armorhere
- verifyproblem craftmines
- verifyproblem dangtiles
- verifyproblem melzarmaze
- verifyproblem silentmist
- verifyproblem slaykayran
- verifyproblem standbehindbraum
- verifyproblem thewayforward | dist: trusty
language: python
compiler: g++
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
- sudo apt-get install gcc-5 g++-5
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 40 --slave /usr/bin/g++ g++ /usr/bin/g++-5
- sudo update-alternatives --config gcc
install:
# installing requirements for kattis problem tools
# note that on debian/ubuntu pip tools are being installed to the python2 pip
# install kattis problem tools
- chmod +x travis-install.sh
- sudo ./travis-install.sh
- sudo pip2 install git+https://github.com/kattis/problemtools
script:
- verifyproblem armorhere
- verifyproblem craftmines
- verifyproblem dangtiles
- verifyproblem melzarmaze
- verifyproblem silentmist
- verifyproblem slaykayran
- verifyproblem standbehindbraum
- verifyproblem thewayforward
| Set trusty as the default distro for CI | Set trusty as the default distro for CI
This closes https://github.com/wgma00/utscode/issues/1. | YAML | unlicense | wgma00/utscode,wgma00/utscode,wgma00/utscode |
1d889e8c20144c2b72bdc19b66ec0382543ea84c | .travis.yml | .travis.yml | sudo: required
language: python
python: "2.7"
addons:
apt:
packages:
- libffi-dev
- libjpeg-dev
- libssl-dev
- libtiff4-dev
- libxml2-dev
- libxslt1-dev
- zlib1g-dev
services:
- postgresql
env: >
DJANGO_SETTINGS_MODULE="conf_site.settings.travis-ci"
before_install:
- psql -c 'create database travis;' -U postgres
install:
- "pip install -r requirements/travis-ci.txt"
script:
- "flake8 --exclude=ansible,migrations ."
- "./manage.py test"
| sudo: required
language: python
python: "2.7"
addons:
apt:
packages:
- libffi-dev
- libjpeg-dev
- libssl-dev
- libtiff4-dev
- libxml2-dev
- libxslt1-dev
- zlib1g-dev
services:
- postgresql
env: >
DJANGO_SETTINGS_MODULE="conf_site.settings.travis-ci"
before_install:
- psql -c 'create database travis;' -U postgres
install:
- "pip install -r requirements/travis-ci.txt"
script:
- "flake8 --exclude=ansible,docs,migrations ."
- "./manage.py test"
| Exclude docs folder from flake8 testing. | Exclude docs folder from flake8 testing.
| YAML | mit | pydata/conf_site,pydata/conf_site,pydata/conf_site |
6ea5842c460b832864998ab9d07bd7ff22e9be50 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
script:
- bundle exec rspec
- bundle exec rubocop
| language: ruby
rvm:
- 2.2.4
- 2.3.0
script:
- bundle exec rspec
- bundle exec rubocop
| Drop support for ruby 2.1 | Drop support for ruby 2.1 | YAML | mit | freemle/freemle-ruby,jorttbv/jortt-ruby |
ec76e65763bcdf75e8faacd6a37da5e71167b9e2 | .travis.yml | .travis.yml | sudo: required
language: javascript
services:
- docker
before_install:
- docker build -t asewdat/word-flip .
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push asewdat/word-flip
script: | sudo: required
services:
- docker
before_install:
- docker build -t asewdat/word-flip .
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push asewdat/word-flip | Remove script task temporarily from Travis CI. | Remove script task temporarily from Travis CI.
| YAML | mit | Allyshia/wordFlip,Allyshia/wordFlip,Allyshia/wordFlip |
06ec7bdd477faeef0353c088ffe998e77fbd4df4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.5
- 2.3.1
script: bundle exec rspec
before_install:
# fixes Travis CI error: NoMethodError: undefined method `spec' for nil:NilClass
- gem install bundler
| language: ruby
rvm:
- 2.2.5
- 2.3.1
script: bundle exec rspec
before_install:
# fixes Travis CI error: NoMethodError: undefined method `spec' for nil:NilClass
- gem install bundler
| Remove old Ruby versions from Travis | Remove old Ruby versions from Travis
Because they're not compatible with Rails 5, which we are now testing
against.
| YAML | mit | biola/Voight-Kampff |
7af424cae8f33c0357242a549e14bf45c1252ee9 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
# Install non-pip dependencies
before_install:
- sudo apt-get install -y librrd-dev
# Install dependencies
install:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
# Run unit tests
script:
- python -m unittest discover -s export/ -p '*_test.py'
- python -m unittest discover -s monitoring/ -p '*_test.py'
- python -m unittest discover -s plugin/ -p '*_test.py'
- python -m unittest discover -s system/vsys/ -p '*_test.py'
sudo: false
| language: python
python:
- "2.6"
- "2.7"
# Install non-pip dependencies
addons:
apt:
sources:
- librrd-dev
# Install dependencies
install:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
# Run unit tests
script:
- python -m unittest discover -s export/ -p '*_test.py'
- python -m unittest discover -s monitoring/ -p '*_test.py'
- python -m unittest discover -s plugin/ -p '*_test.py'
- python -m unittest discover -s system/vsys/ -p '*_test.py'
sudo: false
| Install apt packages with addon instead of sudo. | Install apt packages with addon instead of sudo.
| YAML | apache-2.0 | m-lab/collectd-mlab,stephen-soltesz/collectd-mlab,m-lab/collectd-mlab,stephen-soltesz/collectd-mlab |
d441083a40dd7bb559f987f3449448c5a26471a6 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.0
- 5.6
- 5.5
- hhvm
matrix:
fast_finish: true
before_script:
- composer install --dev
script:
- phpunit
| language: php
sudo: false
php:
- 7.0
- 5.6
- 5.5
- hhvm
matrix:
fast_finish: true
allow_failures:
- 7.0
before_script:
- composer install --dev
script:
- phpunit
| Allow php 7.0 build to fail | Allow php 7.0 build to fail
| YAML | mit | trk-life/trk-life,trk-life/trk-life,trk-life/trk-life |
688aad6d0c6dedd5cf3a0bb8af5127a016a1f085 | .travis.yml | .travis.yml | language: c
sudo: false
addons:
apt:
packages:
- gcc-avr
- binutils-avr
- avr-libc
- avrdude
- ccache
before_install:
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
install: true
script:
- git submodule init --recursive
- make
| language: c
sudo: false
git:
submodules: false
addons:
apt:
packages:
- gcc-avr
- binutils-avr
- avr-libc
- avrdude
- ccache
before_install:
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
install: true
script:
- make
| Fix git submodule failure in CI | Fix git submodule failure in CI
| YAML | bsd-3-clause | suvayu/GPS_tracker |
5f6fbdb2b2df80a2cffb5ae8046cc5227cdcdf07 | .travis.yml | .travis.yml | # ref. http://docs.travis-ci.com/user/languages/objective-c/
language: objective-c
osx_image: xcode7.3
xcode_workspace: CotEditor.xcworkspace
xcode_scheme:
- CotEditor
- CotEditor -AppStore
before_install:
- gem install cocoapods
script: xctool -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
# enable container-based infrastructure
sudo: false
cache: cocoapods
| # ref. http://docs.travis-ci.com/user/languages/objective-c/
language: objective-c
osx_image: xcode7.3
xcode_workspace: CotEditor.xcworkspace
xcode_scheme:
- CotEditor
- CotEditor -AppStore
before_install:
- gem install cocoapods
script: xcodebuild -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
# enable container-based infrastructure
sudo: false
cache: cocoapods
| Use xcodebuild instead of xctool | Use xcodebuild instead of xctool
| YAML | apache-2.0 | onevcat/CotEditor,onevcat/CotEditor,onevcat/CotEditor |
73c193480798445fdb2e2eba0b1d3629d12d4704 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec"
rvm:
- 1.9.3
- 2.1.5
notifications:
email: false
env:
- PUPPET_VERSION=3.4.3
- PUPPET_VERSION=3.7.2
- PUPPET_VERSION=3.7.5 FUTURE_PARSER=yes
- PUPPET_VERSION=4.0.0
- PUPPET_VERSION=4.2.0
| language: ruby
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
notifications:
email: false
env:
- PUPPET_VERSION=3.4.3
- PUPPET_VERSION=3.7.2
- PUPPET_VERSION=3.7.5 FUTURE_PARSER=yes
- PUPPET_VERSION=3.8.5
- PUPPET_VERSION=3.8.5 FUTURE_PARSER=yes
- PUPPET_VERSION=4.0.0
- PUPPET_VERSION=4.2.0
| Add puppet 3.8.5 and ruby 2.0.0 to test suite | Add puppet 3.8.5 and ruby 2.0.0 to test suite
| YAML | apache-2.0 | mfinelli/puppet-nsd,mfinelli/puppet-nsd |
595ab592aa4d468b3b04f869bf78118675025544 | .travis.yml | .travis.yml | sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="54.0b"
- FX_VERSION="45.0.2esr"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "45.0.2esr" ]; then
wget -O tarball "https://archive.mozilla.org/pub/firefox/releases/45.0.2esr/linux-x86_64/en-US/firefox-45.0.2esr.tar.bz2";
fi
- if [ $FX_VERSION = "54.0b" ]; then
wget -O tarball "https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-beta-linux64-add-on-devel/1496339244/firefox-54.0.en-US.linux-x86_64-add-on-devel.tar.bz2";
fi
- tar xf tarball
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm i
- node_modules/.bin/gulp build
script:
- test/runtests.sh -x firefox/firefox
| sudo: false
language: node_js
node_js:
- "node"
cache:
directories:
- "node_modules"
env:
- FX_VERSION="54.0b"
- FX_VERSION="45.0.2esr"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "45.0.2esr" ]; then
wget -O tarball "https://archive.mozilla.org/pub/firefox/releases/45.0.2esr/linux-x86_64/en-US/firefox-45.0.2esr.tar.bz2";
fi
- if [ $FX_VERSION = "54.0b" ]; then
wget -O tarball "https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-beta-linux64-add-on-devel/1496339244/firefox-54.0.en-US.linux-x86_64-add-on-devel.tar.bz2";
fi
- tar xf tarball
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- node_modules/.bin/gulp build
script:
- test/runtests.sh -x firefox/firefox
| Use Node.js mode on Travis | Use Node.js mode on Travis
| YAML | agpl-3.0 | gracile-fr/zotero,gracile-fr/zotero,gracile-fr/zotero |
3cfcf8540c2ebfa7891db14e15e9ea014901e77b | web/docker/nibrs-web-dev.yaml | web/docker/nibrs-web-dev.yaml | # Docker Compose file that builds to nibrs-web image
# To run: docker-compose -f nibrs-web-dev.yaml build
#
version: '3.2'
networks:
nibrs_nw:
driver: bridge
ipam:
driver: default
config:
-
subnet: 192.168.0.0/16
services:
nibrs-web:
container_name: nibrs-web
image: searchncjis/nibrs-web:2.0.1
build:
context: ./nibrs-web
restart: always
networks:
nibrs_nw: | # Docker Compose file that builds to nibrs-web image
# To run: docker-compose -f nibrs-web-dev.yaml build
#
version: '3.2'
networks:
nibrs_nw:
driver: bridge
ipam:
driver: default
config:
-
subnet: 192.168.0.0/16
services:
nibrs-web:
container_name: nibrs-web
image: searchncjis/nibrs-web:2.0.2
build:
context: ./nibrs-web
restart: always
networks:
nibrs_nw: | Upgrade as per new WAR | Upgrade as per new WAR | YAML | apache-2.0 | SEARCH-NCJIS/nibrs,SEARCH-NCJIS/nibrs,SEARCH-NCJIS/nibrs,SEARCH-NCJIS/nibrs,SEARCH-NCJIS/nibrs |
524f75327c442efbb76a922f3c26b940a369030b | webapp/docker-compose-php.yml | webapp/docker-compose-php.yml | version: '2'
services:
mysql:
image: mysql
volumes:
- ./.data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: password
api:
build: ./php
volumes:
- ./php:/var/www:ro
react:
build: ./react
volumes:
- ./react/build:/app:ro
environment:
API: http://api
links:
- api
- mysql
nginx:
image: nginx:alpine
ports:
- "80:80"
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
command: "nginx"
links:
- api
- react
| version: '2'
services:
mysql:
image: mysql
volumes:
- ./.data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: password
api:
build: ./php
volumes:
- ./php:/var/www:ro
react:
build: ./react
volumes:
- ./react/build:/app:ro
environment:
API: http://api
links:
- api
- mysql
environment:
API: http://api:80
nginx:
image: nginx:alpine
ports:
- "80:80"
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
command: "nginx"
links:
- api
- react
| Set API environment variable in docker-compose.yml | Set API environment variable in docker-compose.yml
| YAML | mit | isucon/isucon6-final,isucon/isucon6-final,matsuu/isucon6-final,isucon/isucon6-final,isucon/isucon6-final,matsuu/isucon6-final,matsuu/isucon6-final,isucon/isucon6-final,isucon/isucon6-final,isucon/isucon6-final,matsuu/isucon6-final,isucon/isucon6-final,matsuu/isucon6-final,matsuu/isucon6-final,matsuu/isucon6-final,matsuu/isucon6-final |
a22b09601cbbba94bedbcb15869752666255fccb | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- composer install --no-progress --prefer-source
script:
- vendor/bin/phpunit
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
php:
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- composer install --no-progress --prefer-source
script:
- find inc src tests \( -name '*.php' \) -exec php -l {} \;
- vendor/bin/phpunit
notifications:
email: false
slack:
rooms: inpsyde:pb4VD0j0HYkb3lHmppSmmdxH
on_start: never
on_failure: always
on_success: change
| Improve Travis CI config file. | Improve Travis CI config file.
| YAML | mit | inpsyde/Wonolog |
85816250a6c85b1624c00bfb5c9354d8a660a6da | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
- "pypy"
- "pypy3"
install:
- pip install pytest typing
script: py.test -vv
| sudo: false
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
- "pypy"
- "pypy3"
matrix:
allow_failures:
- python: "3.5-dev"
- python: "nightly"
install:
- pip install pytest typing
script: py.test -vv
| Allow failures with development Python versions | Allow failures with development Python versions
We build with those only to notice regressions, not to depend on them.
| YAML | bsd-3-clause | alecthomas/injector |
9dced7ad5334e7992186e7724bb15cfa4be38d9d | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "4"
- "0.12"
| language: node_js
node_js:
- "6"
- "4"
| Remove node 0.12 from CI | Remove node 0.12 from CI
| YAML | mit | NickGard/postcss-shadowCSS |
67a4afe03d51bb36d0da3b3db0328b44f0e6f1f8 | .travis.yml | .travis.yml | # Travis CI (http://travis-ci.org/) is a continuous integration service for
# open source projects. This file configures it to run unit tests for rtfblog.
language: go
go:
- tip
before_install:
- go get golang.org/x/tools/cmd/vet
- go get -v golang.org/x/tools/cmd/cover
- go get -v github.com/mattn/goveralls
- npm install -g grunt-cli bower browserify json
script:
- make
- go test -covermode=count -coverprofile=profile.cov -v ./src/...
after_script:
- $HOME/gopath/bin/goveralls -coverprofile=profile.cov -service=travis-ci
| # Travis CI (http://travis-ci.org/) is a continuous integration service for
# open source projects. This file configures it to run unit tests for rtfblog.
language: go
go:
- 1.4
- tip
before_install:
- go get golang.org/x/tools/cmd/vet
- go get -v golang.org/x/tools/cmd/cover
- go get -v github.com/mattn/goveralls
- npm install -g grunt-cli bower browserify json
script:
- make
- go test -covermode=count -coverprofile=profile.cov -v ./src/...
after_script:
- $HOME/gopath/bin/goveralls -coverprofile=profile.cov -service=travis-ci
| Build with go1.4 on Travis | Build with go1.4 on Travis
| YAML | bsd-2-clause | rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog |
0f988ed39548f05b85eb7294c4564d62a6729746 | _data/website/quotes.yml | _data/website/quotes.yml | ---
- section: mentors
quote: Whenever I am asked what is the missing link between a promising [business]person and a successful one, mentoring comes to mind.
author: Richard Branson (Founder & CEO, The Virgin Group)
source: The Virgin Blog
url: "http://www.virgin.com/richard-branson/the-importance-of-mentoring"
- section: register
quote: Courage starts with showing up and letting ourselves be seen.
author: Brene Brown
source: Daring Greatly
url: "http://www.amazon.com/Daring-Greatly-Courage-Vulnerable-Transforms/dp/1592407331"
- section: about
quote: When you want to succeed as bad as you want to breathe, then you’ll be successful.
author: Eric Thomas, the Hip-Hop Preacher
source: Secrets to Success (Part I)
url: "https://www.youtube.com/watch?v=5fsm-QbN9r8"
- section: thanks
quote: It is impossible to feel grateful and depressed in the same moment.
author: Naomi Williams
source: Inc.com
- section: schedule
quote: Time is a created thing. To say "I don’t have time" is like saying "I don’t want to."
author: Lao Tzu
source: Tao Te Ching
url: "http://www.goodreads.com/author/quotes/2622245.Lao_Tzu"
---
| ---
- section: mentors
quote: Whenever I am asked what is the missing link between a promising person and a successful one, mentoring comes to mind.
author: Richard Branson (Founder & CEO, The Virgin Group)
source: The Virgin Blog
url: "http://www.virgin.com/richard-branson/the-importance-of-mentoring"
- section: register
quote: Courage starts with showing up and letting ourselves be seen.
author: Brene Brown
source: Daring Greatly
url: "http://www.amazon.com/Daring-Greatly-Courage-Vulnerable-Transforms/dp/1592407331"
- section: about
quote: When you want to succeed as bad as you want to breathe, then you’ll be successful.
author: Eric Thomas, the Hip-Hop Preacher
source: Secrets to Success (Part I)
url: "https://www.youtube.com/watch?v=5fsm-QbN9r8"
- section: thanks
quote: It is impossible to feel grateful and depressed in the same moment.
author: Naomi Williams
source: Inc.com
- section: schedule
quote: Time is a created thing. To say "I don’t have time" is like saying "I don’t want to."
author: Lao Tzu
source: Tao Te Ching
url: "http://www.goodreads.com/author/quotes/2622245.Lao_Tzu"
---
| Remove my editorializing on Richard's quote. | Remove my editorializing on Richard's quote.
| YAML | apache-2.0 | oaklandfinishup/oaklandfinishup.github.io,oaklandfinishup/oaklandfinishup.github.io |
919818b22d251a94366acfa55f45a8324c9d50eb | .expeditor/release.omnibus.yml | .expeditor/release.omnibus.yml | ---
project-name: chef-server
config: omnibus/omnibus.rb
install-dir: /opt/opscode
test-path: omnibus/omnibus-test.sh
fips-platforms:
- el-*-x86_64
builder-to-testers-map:
el-7-x86_64:
- el-7-x86_64
- el-8-x86_64
- amazon-2-x86_64
sles-12-x86_64:
- sles-12-x86_64
- sles-15-x86_64
ubuntu-16.04-x86_64:
- ubuntu-16.04-x86_64
- ubuntu-18.04-x86_64
- ubuntu-20.04-x86_64
| ---
project-name: chef-server
config: omnibus/omnibus.rb
install-dir: /opt/opscode
test-path: omnibus/omnibus-test.sh
fips-platforms:
- el-*-x86_64
- ubuntu-*-x86_64
builder-to-testers-map:
el-7-x86_64:
- el-7-x86_64
- el-8-x86_64
- amazon-2-x86_64
sles-12-x86_64:
- sles-12-x86_64
- sles-15-x86_64
ubuntu-18.04-x86_64:
- ubuntu-18.04-x86_64
- ubuntu-20.04-x86_64
| Remove support for Ubuntu 16.04 + add Ubuntu FIPS | Remove support for Ubuntu 16.04 + add Ubuntu FIPS
We can enable FIPS on Ubuntu easily so we might as well since we're
already constrained in OpenSSL with FIPS on RHEL.
Ubuntu 16.04 is EOL at the end of April so let's remove this.
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/chef-server,chef/chef-server,chef/chef-server,chef/chef-server,chef/chef-server,chef/chef-server |
f3f7dc123d199af7a1a5053de1ae626748d7bfd2 | .rubocop.yml | .rubocop.yml |
AllCops:
Includes:
- tasks/*.rake
Excludes:
- tmp/*
LineLength:
Max: 100
MethodLength:
Max: 17
CyclomaticComplexity:
Max: 9
WordArray:
Enabled: false
AlignHash:
# Alignment of entries using hash rocket as separator. Valid values are:
#
# key - left alignment of keys
# 'a' => 2
# 'bb' => 3
# separator - alignment of hash rockets, keys are right aligned
# 'a' => 2
# 'bb' => 3
# table - left alignment of keys, hash rockets, and values
# 'a' => 2
# 'bb' => 3
EnforcedHashRocketStyle: table
# Alignment of entries using colon as separator. Valid values are:
#
# key - left alignment of keys
# a: 0
# bb: 1
# separator - alignment of colons, keys are right aligned
# a: 0
# bb: 1
# table - left alignment of keys and values
# a: 0
# bb: 1
EnforcedColonStyle: separator
# TODO
Documentation:
Enabled: false
# Currently IndentationWidth reports false positive offence around here document.
IndentationWidth:
Enabled: false
# TODO: This should not register offences for non keyword hashes.
BracesAroundHashParameters:
Enabled: false
# TODO: Shorten to 100.
ClassLength:
Max: 150
|
AllCops:
Includes:
- tasks/*.rake
Excludes:
- tmp/*
LineLength:
Max: 100
MethodLength:
Max: 17
CyclomaticComplexity:
Max: 8
WordArray:
Enabled: false
AlignHash:
# Alignment of entries using hash rocket as separator. Valid values are:
#
# key - left alignment of keys
# 'a' => 2
# 'bb' => 3
# separator - alignment of hash rockets, keys are right aligned
# 'a' => 2
# 'bb' => 3
# table - left alignment of keys, hash rockets, and values
# 'a' => 2
# 'bb' => 3
EnforcedHashRocketStyle: table
# Alignment of entries using colon as separator. Valid values are:
#
# key - left alignment of keys
# a: 0
# bb: 1
# separator - alignment of colons, keys are right aligned
# a: 0
# bb: 1
# table - left alignment of keys and values
# a: 0
# bb: 1
EnforcedColonStyle: separator
# TODO
Documentation:
Enabled: false
# Currently IndentationWidth reports false positive offence around here document.
IndentationWidth:
Enabled: false
# TODO: This should not register offences for non keyword hashes.
BracesAroundHashParameters:
Enabled: false
# TODO: Shorten to 100.
ClassLength:
Max: 150
| Decrease max CyclomaticComplexity to 8 | Decrease max CyclomaticComplexity to 8
| YAML | mit | yujinakayama/transpec,irfanah/transpec,yujinakayama/transpec,irfanah/transpec |
ed0f0ae4f56ba75acce37b2acad56f3143036a9e | _config.yml | _config.yml | title: Chloé Frommer
sass:
sass_dir: /assets/_sass/
style: compressed
baseurl:
permalink: pretty
markdown: rdiscount
gems:
- jekyll-sitemap
prose:
rooturl: '_posts'
siteurl: 'http://prose.github.io/starter/'
relativeLinks: 'http://prose.github.io/starter/links.jsonp'
media: 'media'
metadata:
_posts:
- name: "category"
field:
element: "hidden"
value: "blog"
- name: "layout"
field:
element: "hidden"
value: "blog"
- name: "title"
field:
element: "text"
label: "Title"
value: ""
- name: "splash"
field:
element: "text"
label: "Splash image"
value: ""
- name: "tags"
field:
element: "multiselect"
label: "Add Tags"
placeholder: "Choose Tags"
options:
- name: "Apples"
value: "apples"
- name: "Bananas"
value: "bananas"
- name: "Pears"
value: "pears"
- name: "Mangos"
value: "mangos"
_posts/static:
- name: "layout"
field:
element: "hidden"
value: "page"
- name: "title"
field:
element: "text"
label: "Title"
value: ""
- name: "permalink"
field:
element: "text"
label: "Permalink"
value: ""
| title: Chloé Frommer
sass:
sass_dir: /assets/_sass/
style: compressed
baseurl:
permalink: pretty
gems:
- jekyll-sitemap
prose:
rooturl: '_posts'
siteurl: 'http://prose.github.io/starter/'
relativeLinks: 'http://prose.github.io/starter/links.jsonp'
media: 'media'
metadata:
_posts:
- name: "category"
field:
element: "hidden"
value: "blog"
- name: "layout"
field:
element: "hidden"
value: "blog"
- name: "title"
field:
element: "text"
label: "Title"
value: ""
- name: "splash"
field:
element: "text"
label: "Splash image"
value: ""
- name: "tags"
field:
element: "multiselect"
label: "Add Tags"
placeholder: "Choose Tags"
options:
- name: "Apples"
value: "apples"
- name: "Bananas"
value: "bananas"
- name: "Pears"
value: "pears"
- name: "Mangos"
value: "mangos"
_posts/static:
- name: "layout"
field:
element: "hidden"
value: "page"
- name: "title"
field:
element: "text"
label: "Title"
value: ""
- name: "permalink"
field:
element: "text"
label: "Permalink"
value: ""
| Remove markdown in config cause this is a KRAMDOWN | Remove markdown in config cause this is a KRAMDOWN
| YAML | mit | chloefrommer/chloefrommer.github.io,chloefrommer/chloefrommer.github.io,chloefrommer/chloefrommer.github.io |
02eb153e58ef3b760e3ec78cc9e004dad834d13e | _config.yml | _config.yml | name: Notes from a dev
markdown: redcarpet
pygments: true
| name: Notes from a dev
markdown: redcarpet
pygments: true
permalink: /blog/:year/:month/:day/:title
| Update URL to just be date | Update URL to just be date
| YAML | mit | ethankhall/ethankhall.github.io,ethankhall/ethankhall.github.io |
12546abc9e4d3bf5c8c9a177f09c28f6c95b59bf | _config.yml | _config.yml | title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "5.1.0"
baseurl: ""
url: "https://helmetjs.github.io"
markdown: CommonMarkGhPages
commonmark:
options: ["UNSAFE", "FOOTNOTES"]
| title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "5.1.1"
baseurl: ""
url: "https://helmetjs.github.io"
markdown: CommonMarkGhPages
commonmark:
options: ["UNSAFE", "FOOTNOTES"]
| Update Helmet version to 5.1.1 | Update Helmet version to 5.1.1
| YAML | mit | helmetjs/helmetjs.github.io,helmetjs/helmetjs.github.io |
84e5c5e6788ee0f0aaf0a0601b4a50f9d9c86465 | _config.yml | _config.yml | title: The Lounge — Self-hosted web IRC client
description: "The official website for The Lounge, the self-hosted web IRC client."
baseurl: ""
markdown: kramdown
gems:
- jekyll-sitemap
collections:
docs:
output: true
| title: The Lounge — Self-hosted web IRC client
description: "The official website for The Lounge, the self-hosted web IRC client."
baseurl: ""
markdown: kramdown
plugins:
- jekyll-sitemap
collections:
docs:
output: true
| Rename Jekyll config gems into plugins to silence a deprecation warning | Rename Jekyll config gems into plugins to silence a deprecation warning
| YAML | mit | thelounge/thelounge.github.io,thelounge/thelounge.github.io,thelounge/thelounge.github.io |
896d6cbe9e765aea1c161351a214649feea423dd | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Microsoft Spot Market Team 1 Project Site
description: > # this means to ignore newlines until "baseurl:"
The project site for Microsoft Spot Market Team 1 made as part of COMP204P
Systems Engineering for University College London.
baseurl: "/2016/group5" # the subpath of your site, e.g. /blog
url: "http://students.cs.ucl.ac.uk" # the base hostname & protocol for your site, e.g. http://example.com
# Build settings
markdown: kramdown
highlighter: rouge
permalink: pretty
paginate: 5
exclude: ["less","node_modules","Gruntfile.js","package.json","README.md","Gemfile","Gemfile.lock","LICENSE"]
gems: [jekyll-paginate, jekyll-feed]
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Spot Market ChatBot
description: > # this means to ignore newlines until "baseurl:"
The project site for Microsoft Spot Market ChatBot made as part of COMP204P
Systems Engineering for University College London.
baseurl: "/2016/group5" # the subpath of your site, e.g. /blog
url: "http://students.cs.ucl.ac.uk" # the base hostname & protocol for your site, e.g. http://example.com
# Build settings
markdown: kramdown
highlighter: rouge
permalink: pretty
paginate: 5
exclude: ["less","node_modules","Gruntfile.js","package.json","README.md","Gemfile","Gemfile.lock","LICENSE"]
gems: [jekyll-paginate, jekyll-feed]
| Update site name and description | Update site name and description
| YAML | mit | Thalexander/sm1-site,Thalexander/sm1-site,Thalexander/sm1-site |
140ea8714a06a8e6e4019427268f6d2c42a9a627 | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
highliter: pygments
# Setup
title: codeRIT
url: https://coderit.org
description: codeRIT represents a coalition of RIT students with a mission to represent the RIT hackathon community on a national level. It focuses its attention towards increasing its relationship with other collegiate technical communities, teaching software development and entrepreneurial skills to its members, and uniting a fragmented collection of groups amongst GCCIS as one RIT group.
committees:
- name: Logistics & Hospitality
description: Our main goal is to make sure that everyone is comfortable and having fun during Brick Hack events. We are responsible for planning out the many needs of the event, such as location, events, venue setup, food, and many other important amenities.
image: http://placehold.it/150
- name: Marketing & Design
description: Our team is in charge of the branding of our organization by creatings logos, building and managing websites, getting swag to hand out, and handling all of our social media efforts.
image: http://placehold.it/150
- name: Director
description: Communicates all organization ongoings with each committee as well as with administration. Maintains various weekly events for the entire organization.
image: http://placehold.it/150
- name: Sponsorship
description: We reach out to some of the best companies in the world to come to and sponsor our events. Without the financial support from these different companies, none of our events could take place.
image: http://placehold.it/150
- name: Travel & Outreach
description: We communicate with other schools to learn how make our own organization better. By networking with other schools, we open more opportunities to attend their events and for them to attend ours.
image: http://placehold.it/150
| # Dependencies
markdown: redcarpet
highliter: pygments
# Setup
title: codeRIT
url: https://coderit.org
description: codeRIT represents a coalition of RIT students with a mission to represent the RIT hackathon community on a national level. It focuses its attention towards increasing its relationship with other collegiate technical communities, teaching software development and entrepreneurial skills to its members, and uniting a fragmented collection of groups amongst GCCIS as one RIT group.
| Remove unneccessary commmittees from config | Remove unneccessary commmittees from config
| YAML | mit | codeRIT/coderit.github.io |
85f72d7b991da37c0e7576dda73ea3ae3666d48f | _config.yml | _config.yml | # Site settings
title: Pioneers in Engineering
email: leadership@pioneers.berkeley.edu
description: >
(c) Pioneers in Engineering Foundation 2015. </br>
Licensed under CC-BY-4.0.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://pioneers.berkeley.edu" # the base hostname & protocol for your site
twitter_username: PieRobotics
github_username: pioneers
facebook_username: pierobotics
youtube_username: pierobotics
instagram_username: pierobotics
host: 0.0.0.0
# Build settings
markdown: kramdown
| # Site settings
title: Pioneers in Engineering
email: leadership@pioneers.berkeley.edu
description: >
© Pioneers in Engineering Foundation 2015. </br>
Licensed under CC-BY-4.0.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://pioneers.berkeley.edu" # the base hostname & protocol for your site
twitter_username: PieRobotics
github_username: pioneers
facebook_username: pierobotics
youtube_username: pierobotics
instagram_username: pierobotics
host: 0.0.0.0
# Build settings
markdown: kramdown
| Change footer description to unicode copyright symbol | Change footer description to unicode copyright symbol
| YAML | apache-2.0 | pioneers/website,pioneers/website,kev-chien/website,pioneers/website,kev-chien/website,pioneers/website,kev-chien/website,pioneers/website,kev-chien/website,kev-chien/website |
ae889e83a55fdf5f145476c769055fddd881bfa7 | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
permalink: pretty
# Setup
title: 'Nathan Kleyn'
tagline: 'The musings of a programming fanatic'
description: 'Ruby, Haskell, Rust, and JS tinkerer. Find me on Twitter as <a href="https://twitter.com/nathankleyn" target="_blank">@nathankleyn</a>.'
url: http://nathankleyn.com
baseurl: /
include: ['.well-known']
author:
name: 'Nathan Kleyn'
url: https://twitter.com/nathankleyn
paginate: 5
sass:
sass_dir: css/_sass
style: compressed
| # Dependencies
highlighter: rouge
# Permalinks
permalink: pretty
# Setup
title: 'Nathan Kleyn'
tagline: 'The musings of a programming fanatic'
description: 'Ruby, Haskell, Rust, and JS tinkerer. Find me on Twitter as <a href="https://twitter.com/nathankleyn" target="_blank">@nathankleyn</a>.'
url: http://nathankleyn.com
baseurl: /
include: ['.well-known']
author:
name: 'Nathan Kleyn'
url: https://twitter.com/nathankleyn
paginate: 5
sass:
sass_dir: css/_sass
style: compressed
| Fix site warnings after GitHub Jekyll upgrade. | Fix site warnings after GitHub Jekyll upgrade.
| YAML | mit | nathankleyn/nathankleyn.github.io,nathankleyn/nathankleyn.github.io |
7a48c4680a896c198721e3e27382f069b45c0585 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Dependencies
gems: [jekyll-sitemap]
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Insiders Guide to LDF16
email: your-email@domain.com
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://ldf16.com" # the base hostname & protocol for your site
twitter_username: jekyllrb
github_username: jekyll
# Build settings
markdown: kramdown
# theme: minima
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Dependencies
gems: [jekyll-sitemap]
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Insiders Guide to LDF16
email: your-email@domain.com
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://ldf16.com" # the base hostname & protocol for your site
twitter_username: jekyllrb
github_username: jekyll
# Build settings
markdown: kramdown
# theme: minima
| Update site url to https | Update site url to https
| YAML | mit | clippings/ldf16-guide,clippings/ldf16-guide,clippings/ldf16-guide |
1a6e7a018c9f69a42aa0c41971aed69566027f1c | _config.yml | _config.yml | # Site wide configuration
title: "ETAIS"
description: "Estonian Scientific Computing Infrastructure"
logo: logo.png # 120x120 px default image used for Twitter summary card
teaser: # 400x250 px default teaser image used in image archive grid
locale: en
url: "http://localhost:4000"
feed:
path: atom.xml
# Jekyll configuration
sass:
sass_dir: _sass
style: compressed
permalink: /:categories/:title/
kramdown:
toc_levels: 1..2
highlighter: rouge
gems:
- jekyll-sitemap
- jekyll-gist
- jekyll-feed
# Site owner
owner:
name:
email:
twitter:
google:
ad-client:
ad-slot:
bio:
avatar: bio-photo.jpg # 160x160 px image for author byline
disqus-shortname:
include:
- .htaccess
exclude:
- "*.less"
- "*.sublime-project"
- "*.sublime-workspace"
- .asset-cache
- .bundle
- .jekyll-assets-cache
- .sass-cache
- CHANGELOG
- Capfile
- Gemfile
- Gruntfile.js
- LICENSE
- README
- Rakefile
- config
- gulpfile.js
- lib
- log
- node_modules
- package.json
- spec
- tmp
| # Site wide configuration
title: "ETAIS"
description: "Estonian Scientific Computing Infrastructure"
logo: logo.png # 120x120 px default image used for Twitter summary card
teaser: # 400x250 px default teaser image used in image archive grid
locale: en
url: "https://etais-ee.github.io/etais-web"
feed:
path: atom.xml
# Jekyll configuration
sass:
sass_dir: _sass
style: compressed
permalink: /:categories/:title/
kramdown:
toc_levels: 1..2
highlighter: rouge
gems:
- jekyll-sitemap
- jekyll-gist
- jekyll-feed
# Site owner
owner:
name:
email:
twitter:
google:
ad-client:
ad-slot:
bio:
avatar: bio-photo.jpg # 160x160 px image for author byline
disqus-shortname:
include:
- .htaccess
exclude:
- "*.less"
- "*.sublime-project"
- "*.sublime-workspace"
- .asset-cache
- .bundle
- .jekyll-assets-cache
- .sass-cache
- CHANGELOG
- Capfile
- Gemfile
- Gruntfile.js
- LICENSE
- README
- Rakefile
- config
- gulpfile.js
- lib
- log
- node_modules
- package.json
- spec
- tmp
| Rollback configuration for public hosting | Rollback configuration for public hosting
| YAML | mit | etais-ee/etais-web,etais-ee/etais-web,etais-ee/etais-web |
8ef4659848b8af24a82be7ac5a2c07ddff35c3be | _config.yml | _config.yml | exclude: ['LICENSE', 'README.md', 'build.js']
| exclude: ['LICENSE', 'README.md', 'build.js', 'about-me/README.md', 'page/page.html', 'page/redirect.html']
| Exclude more files from GitHub Pages's Jekyll | Exclude more files from GitHub Pages's Jekyll
| YAML | mit | demoneaux/demoneaux.github.io,d10/d10.github.io,d10/d10.github.io |
0b8597493556a1d91dc05403cc985367f9b3b04d | metadata/amirz.dngprocessor.yml | metadata/amirz.dngprocessor.yml | Categories:
- Multimedia
License: LGPL-3.0-only
SourceCode: https://github.com/amirzaidi/DNGProcessor
IssueTracker: https://github.com/amirzaidi/DNGProcessor/issues
AutoName: DNG Processor
Summary: Process DNG images into JPEGs
Description: |-
''DNG Processor'' waits for new RAW images captured using the OEM camera
app, or any other camera app that can capture RAWs, and then processes them
into JPEGs in the background. It does this by using the power of your
phone's GPU for up to a few seconds. The results are placed in the folder
/DCIM/Processed.
RepoType: git
Repo: https://github.com/amirzaidi/DNGProcessor
Builds:
- versionName: '5'
versionCode: 5
commit: v5
subdir: app/
gradle:
- yes
AutoUpdateMode: Version v%c
UpdateCheckMode: Tags
CurrentVersion: v5
CurrentVersionCode: 5
| Categories:
- Multimedia
License: LGPL-3.0-only
SourceCode: https://github.com/amirzaidi/DNGProcessor
IssueTracker: https://github.com/amirzaidi/DNGProcessor/issues
AutoName: DNG Processor
Summary: Process DNG images into JPEGs
Description: |-
''DNG Processor'' waits for new RAW images captured using the OEM camera
app, or any other camera app that can capture RAWs, and then processes them
into JPEGs in the background. It does this by using the power of your
phone's GPU for up to a few seconds. The results are placed in the folder
/DCIM/Processed.
RepoType: git
Repo: https://github.com/amirzaidi/DNGProcessor
Builds:
- versionName: '5'
versionCode: 5
commit: v5
subdir: app/
gradle:
- yes
AutoUpdateMode: Version v%c
UpdateCheckMode: Tags
CurrentVersion: '1.0'
CurrentVersionCode: 1
| Update CV of DNG Processor to 1.0 (1) | Update CV of DNG Processor to 1.0 (1)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
c860c10ecd846084ce57a398ebe24bfc7ce9c052 | metadata/co.appreactor.news.yml | metadata/co.appreactor.news.yml | Categories:
- Internet
- Reading
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/bubelov/news
IssueTracker: https://github.com/bubelov/news/issues
AutoName: News
RepoType: git
Repo: https://github.com/bubelov/news
Builds:
- versionName: 0.2.0
versionCode: 6
commit: v0.2.0
subdir: app
gradle:
- yes
- versionName: 0.2.1
versionCode: 7
commit: v0.2.1
subdir: app
gradle:
- yes
- versionName: 0.2.2
versionCode: 8
commit: v0.2.2
subdir: app
gradle:
- yes
- versionName: 0.2.3
versionCode: 9
commit: v0.2.3
subdir: app
gradle:
- yes
- versionName: 0.2.4
versionCode: 10
commit: v0.2.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.2.4
CurrentVersionCode: 10
| Categories:
- Internet
- Reading
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/bubelov/news
IssueTracker: https://github.com/bubelov/news/issues
AutoName: News
RepoType: git
Repo: https://github.com/bubelov/news
Builds:
- versionName: 0.2.0
versionCode: 6
commit: v0.2.0
subdir: app
gradle:
- yes
- versionName: 0.2.1
versionCode: 7
commit: v0.2.1
subdir: app
gradle:
- yes
- versionName: 0.2.2
versionCode: 8
commit: v0.2.2
subdir: app
gradle:
- yes
- versionName: 0.2.3
versionCode: 9
commit: v0.2.3
subdir: app
gradle:
- yes
- versionName: 0.2.4
versionCode: 10
commit: v0.2.4
subdir: app
gradle:
- yes
- versionName: 0.2.5
versionCode: 11
commit: v0.2.5
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.2.5
CurrentVersionCode: 11
| Update News to 0.2.5 (11) | Update News to 0.2.5 (11)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
4fc40449133ae9172950f458f2799b93683fe1f0 | defaults/main.yml | defaults/main.yml | ---
haproxy_ciphers:
- ECDHE-RSA-AES256-GCM-SHA384
- ECDHE-RSA-AES256-SHA384
- ECDHE-RSA-AES256-SHA
- AES256-GCM-SHA384
- AES256-SHA256
- AES256-SHA
- CAMELLIA256-SHA
- ECDHE-RSA-AES128-GCM-SHA256
- ECDHE-RSA-AES128-SHA256
- ECDHE-RSA-AES128-SHA
- AES128-GCM-SHA256
- AES128-SHA256
- AES128-SHA
- CAMELLIA128-SHA
- ECDHE-RSA-DES-CBC3-SHA
- DES-CBC3-SHA
| ---
haproxy_ciphers:
- ECDHE-RSA-AES256-GCM-SHA384
- ECDHE-RSA-AES256-SHA384
- ECDHE-RSA-AES256-SHA
- AES256-GCM-SHA384
- AES256-SHA256
- DHE-RSA-AES256-SHA
- AES256-SHA
- CAMELLIA256-SHA
- ECDHE-RSA-AES128-GCM-SHA256
- ECDHE-RSA-AES128-SHA256
- ECDHE-RSA-AES128-SHA
- AES128-GCM-SHA256
- AES128-SHA256
- DHE-RSA-AES128-SHA
- AES128-SHA
- CAMELLIA128-SHA
- ECDHE-RSA-DES-CBC3-SHA
- DES-CBC3-SHA
| Revert "Revert "Add settings for robust PFS"" | Revert "Revert "Add settings for robust PFS""
This reverts commit 3aeb89b0784f503c06c99c1df4a2e85ff68b1e3c.
see [#127793629]
| YAML | apache-2.0 | betterplace/ansible-haproxy |
87b7e65d8abbb914510bc2983cb66ad34c67330d | packages/go/google-cloud.yaml | packages/go/google-cloud.yaml | homepage: ''
changelog-type: ''
hash: 0fefd2ff6b81cd1fcb7ba97ecfc8ca090fa56f59bc091f28dfbe6a9bed85abb2
test-bench-deps: {}
maintainer: tomas.carnecky@gmail.com
synopsis: Client for the Google Cloud APIs
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
stm: -any
base: ! '>=4.4 && <4.9'
time: -any
unordered-containers: -any
text: -any
http-client-tls: -any
mtl: -any
scientific: -any
http-types: -any
aeson: -any
all-versions:
- '0.0.2'
author: Tomas Carnecky
latest: '0.0.2'
description-type: haddock
description: Storage, Compute, ...
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 4b583140ea6f13a525c7f77add013b83022d97b9bfd34674fecb0425c6ad6d48
test-bench-deps: {}
maintainer: tomas.carnecky@gmail.com
synopsis: Client for the Google Cloud APIs
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
stm: -any
base: ! '>=4.4 && <4.9'
time: -any
unordered-containers: -any
text: -any
http-client-tls: -any
mtl: ! '>=2.2.1 && <3'
random: -any
scientific: -any
http-types: -any
aeson: -any
all-versions:
- '0.0.2'
- '0.0.3'
author: Tomas Carnecky
latest: '0.0.3'
description-type: haddock
description: Storage, Compute, ...
license-name: MIT
| Update from Hackage at 2015-08-26T19:38:12+0000 | Update from Hackage at 2015-08-26T19:38:12+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
92c5e34789359fb39d0f2cce16f8de92a307c78d | compose/docker-compose.yml | compose/docker-compose.yml | version: "3"
services:
loadbalancer:
image: dockercloud/haproxy
ports:
- 5000:80
links:
- vote
networks:
- front-tier
- back-tier
volumes:
- /var/run/docker.sock:/var/run/docker.sock
vote:
build: ./vote
command: python app.py
volumes:
- ./vote:/app
ports:
- 80
networks:
- front-tier
- back-tier
result:
build: ./result
command: nodemon --debug server.js
volumes:
- ./result:/app
ports:
- "5001:80"
- "5858:5858"
networks:
- front-tier
- back-tier
worker:
build:
context: ./worker
networks:
- back-tier
redis:
image: redis:alpine
container_name: redis
ports: ["6379"]
networks:
- back-tier
db:
image: postgres:9.4
container_name: db
volumes:
- "db-data:/var/lib/postgresql/data"
networks:
- back-tier
volumes:
db-data:
networks:
front-tier:
back-tier:
| version: "3"
services:
loadbalancer:
image: dockercloud/haproxy
ports:
- 5000:80
links:
- vote
networks:
- front-tier
volumes:
- /var/run/docker.sock:/var/run/docker.sock
vote:
build: ./vote
command: python app.py
volumes:
- ./vote:/app
ports:
- 80
networks:
- front-tier
- back-tier
result:
build: ./result
command: nodemon --debug server.js
volumes:
- ./result:/app
ports:
- "5001:80"
- "5858:5858"
networks:
- front-tier
- back-tier
worker:
build:
context: ./worker
networks:
- back-tier
redis:
image: redis:alpine
container_name: redis
ports: ["6379"]
networks:
- back-tier
db:
image: postgres:9.4
container_name: db
volumes:
- "db-data:/var/lib/postgresql/data"
networks:
- back-tier
volumes:
db-data:
networks:
front-tier:
back-tier:
| Update load balancer to be only on front end network | Update load balancer to be only on front end network
| YAML | mit | lizard43/docker-demo17,lizard43/docker-demo17,lizard43/docker-demo17,lizard43/docker-demo17,lizard43/docker-demo17,lizard43/docker-demo17 |
b701e29632514c23aa3359f2473179891a06a4a4 | defaults/main.yml | defaults/main.yml | ---
# defaults file for apt-cacher-ng
apt_cacher_ng_port: 3142
apt_cacher_ng_cache_dir: /var/cache/apt-cacher-ng
apt_cacher_ng_setup_ufw: True
apt_cacher_ng_enable_report_page: True
| ---
# defaults file for apt-cacher-ng
apt_cacher_ng_port: 3142
apt_cacher_ng_cache_dir: /var/cache/apt-cacher-ng
apt_cacher_ng_setup_ufw: True
| Revert "set SGID to CacheDir" | Revert "set SGID to CacheDir"
This reverts commit 3d1f15b8e4f584c520adf7e73b4dd603db98492a.
| YAML | mit | elnappo/ansible-role-apt-cacher-ng |
f8b003f113c3f92dd3877c55ec49ae3d329b3199 | config/database.yml | config/database.yml | # PostgreSQL. Versions 9.1 and up are supported.
#
# Install the pg driver:
# gem install pg
# On OS X with Homebrew:
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
# On OS X with MacPorts:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin directory on your path.
#
# Configure Using Gemfile
# gem 'pg'
#
default: &default
adapter: postgresql
encoding: unicode
# For details on connection pooling, see rails configuration guide
# http://guides.rubyonrails.org/configuring.html#database-pooling
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
development:
<<: *default
database: mailman_development
test:
<<: *default
database: <%= ENV['WERCKER'] ? "myuser:ourlittlesecret@#{ENV['POSTGRES_PORT_5432_TCP_ADDR']}:5432" : 'mailman_test' %>
production:
<<: *default
url: <%= ENV['DATABASE_URL'] %>
| # PostgreSQL. Versions 9.1 and up are supported.
#
# Install the pg driver:
# gem install pg
# On OS X with Homebrew:
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
# On OS X with MacPorts:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin directory on your path.
#
# Configure Using Gemfile
# gem 'pg'
#
default: &default
adapter: postgresql
encoding: unicode
# For details on connection pooling, see rails configuration guide
# http://guides.rubyonrails.org/configuring.html#database-pooling
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
development:
<<: *default
database: mailman_development
test:
<<: *default
<% if ENV['WERCKER_POSTGRESQL_USERNAME'] %>
database: <%= ENV['WERCKER_POSTGRESQL_DATABASE'] %><%= ENV['TEST_ENV_NUMBER'] %>
username: <%= ENV['WERCKER_POSTGRESQL_USERNAME'] %>
password: <%= ENV['WERCKER_POSTGRESQL_PASSWORD'] %>
host: <%= ENV['WERCKER_POSTGRESQL_HOST'] %>
port: <%= ENV['WERCKER_POSTGRESQL_PORT'] %>
min_messages: warning
<% else %>
database: <%= 'mailman_test' %>
<% end %>
production:
<<: *default
url: <%= ENV['DATABASE_URL'] %>
| Add werker config for tests | Add werker config for tests
| YAML | agpl-3.0 | payloadtech/mailpenny,payloadtech/mailpenny,payloadtech/mailpenny |
250584cc77ed78e5f2b69188a963780e2de2f222 | metadata/org.sensors2.osc.yml | metadata/org.sensors2.osc.yml | Categories:
- Multimedia
License: MIT
WebSite: https://sensors2.org/osc
SourceCode: https://github.com/SensorApps/Sensors2OSC
IssueTracker: https://github.com/SensorApps/Sensors2OSC/issues
Changelog: https://github.com/SensorApps/Sensors2OSC/blob/HEAD/Changelog.md
AutoName: Sensors2OSC
Description: |-
Read sensor data from your phone and send them to a receiver via Open Sound
Control (OSC).
Typical use case is controlling a music application from your phone or tablet.
RepoType: git
Repo: https://github.com/SensorApps/Sensors2OSC
Builds:
- versionName: 0.1.0
versionCode: 1
commit: 839a86c50f7cdcb0ccb136b8c9de302295007ee3
subdir: app
gradle:
- yes
- versionName: 0.2.0
versionCode: 2
commit: 0.2.0
subdir: app
gradle:
- yes
- versionName: 0.3.0
versionCode: 3
commit: 0.3.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.2.0
CurrentVersionCode: 2
| Categories:
- Multimedia
License: MIT
WebSite: https://sensors2.org/osc
SourceCode: https://github.com/SensorApps/Sensors2OSC
IssueTracker: https://github.com/SensorApps/Sensors2OSC/issues
Changelog: https://github.com/SensorApps/Sensors2OSC/blob/HEAD/Changelog.md
AutoName: Sensors2OSC
Description: |-
Read sensor data from your phone and send them to a receiver via Open Sound
Control (OSC).
Typical use case is controlling a music application from your phone or tablet.
RepoType: git
Repo: https://github.com/SensorApps/Sensors2OSC
Builds:
- versionName: 0.1.0
versionCode: 1
commit: 839a86c50f7cdcb0ccb136b8c9de302295007ee3
subdir: app
gradle:
- yes
- versionName: 0.2.0
versionCode: 2
commit: 0.2.0
subdir: app
gradle:
- yes
- versionName: 0.3.0
versionCode: 3
commit: 0.3.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.3.0
CurrentVersionCode: 3
| Update CV of Sensors2OSC to 0.3.0 (3) | Update CV of Sensors2OSC to 0.3.0 (3)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata |
928489726e7976566994124c162043d42630bced | articles/quickstart/backend/golang/index.yml | articles/quickstart/backend/golang/index.yml | title: Go API
# TODO remove 'image' once new QS page is live. Then only use 'logo'.
image: /media/platforms/golang.png
logo: golang
thirdParty: false
alias:
- go
- golang
languages:
- Go
author:
name: Sergiu Ghitea
email: sergiu.ghitea@auth0.com
community: false
topics:
- quickstart
contentType: tutorial
useCase: quickstart
snippets:
dependencies: server-apis/golang/dependencies
setup: server-apis/golang/setup
use: server-apis/golang/use
articles:
- 01-authorization
- 02-using
- 03-troubleshooting
show_steps: true
github:
org: auth0-samples
repo: auth0-golang-api-samples
requirements:
- Go 1.15+
next_steps:
- path: 01-authorization
list:
- text: Configure other identity providers
icon: 345
href: "/identityproviders"
- text: Enable multifactor authentication
icon: 345
href: "/multifactor-authentication"
- text: Learn about attack protection
icon: 345
href: "/attack-protection"
- text: Learn about rules
icon: 345
href: "/rules"
| title: Go API
# TODO remove 'image' once new QS page is live. Then only use 'logo'.
image: /media/platforms/golang.png
logo: golang
thirdParty: false
alias:
- go
- golang
languages:
- Go
author:
name: Sergiu Ghitea
email: sergiu.ghitea@auth0.com
community: false
topics:
- quickstart
contentType: tutorial
useCase: quickstart
snippets:
dependencies: server-apis/golang/dependencies
setup: server-apis/golang/setup
use: server-apis/golang/use
articles:
- 01-authorization
- 02-using
- 03-troubleshooting
default_article: 01-authorization
show_steps: true
github:
org: auth0-samples
repo: auth0-golang-api-samples
sdk:
name: go-jwt-middleware
url: https://github.com/auth0/go-jwt-middleware
logo: golang
requirements:
- Go 1.15+
next_steps:
- path: 01-authorization
list:
- text: Configure other identity providers
icon: 345
href: "/identityproviders"
- text: Enable multifactor authentication
icon: 345
href: "/multifactor-authentication"
- text: Learn about attack protection
icon: 345
href: "/attack-protection"
- text: Learn about rules
icon: 345
href: "/rules"
| Add go backend quickstart to docs/libraries | Add go backend quickstart to docs/libraries
| YAML | mit | auth0/docs,auth0/docs,auth0/docs |
55f50d58e3b6437942aeb2126dad1daa5b21d2bd | .github/FUNDING.yml | .github/FUNDING.yml | # These are supported funding model platforms
github: [amoffat]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
| # These are supported funding model platforms
github: [amoffat, ecederstrand]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
| Include Erik as a funding target | Include Erik as a funding target | YAML | mit | amoffat/sh,amoffat/sh |
2599cb5b960c32b6e799ff8172ceae2fdf1459bc | packages/wa/warp-systemd.yaml | packages/wa/warp-systemd.yaml | homepage: https://github.com/hercules-ci/warp-systemd
changelog-type: markdown
hash: d1c428d8713acef9938e8084fa1b86713eec716b022dac8c50b147c797b26aff
test-bench-deps: {}
maintainer: hackage@roberthensing.nl
synopsis: Socket activation and other systemd integration for the Warp web server
(WAI)
changelog: |
# Revision history for warp-systemd
## 0.1.0.0 -- 2019-09-18
* First version. Released on an unsuspecting world.
basic-deps:
warp: '>=3.2.0 && <3.4'
wai: ==3.2.*
unix: -any
base: '>=4.9 && <4.13'
network: '>=2.6.3.0 && <3.1'
systemd: ==1.*
all-versions:
- 0.1.0.0
author: Robert Hensing
latest: 0.1.0.0
description-type: haddock
description: ''
license-name: BSD-3-Clause
| homepage: https://github.com/hercules-ci/warp-systemd
changelog-type: markdown
hash: ce65648636f6aa4789b72ab0acd9acd73786533fe7468daf50c6e68fd7295292
test-bench-deps: {}
maintainer: hackage@roberthensing.nl
synopsis: Socket activation and other systemd integration for the Warp web server
(WAI)
changelog: |
# Revision history for warp-systemd
## 0.1.0.0 -- 2019-09-18
* First version. Released on an unsuspecting world.
basic-deps:
warp: '>=3.2.0 && <3.4'
wai: ==3.2.*
unix: -any
base: '>=4.9 && <4.14'
network: '>=2.6.3.0 && <3.2'
systemd: ==2.*
all-versions:
- 0.1.0.0
author: Robert Hensing
latest: 0.1.0.0
description-type: haddock
description: ''
license-name: BSD-3-Clause
| Update from Hackage at 2020-07-09T15:28:29Z | Update from Hackage at 2020-07-09T15:28:29Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a5c777bf3329b02c0a89d395fcf1483561a3abed | .github/mergify.yml | .github/mergify.yml | ---
pull_request_rules:
- name: remove outdated approvals
conditions:
- base=master
actions:
dismiss_reviews:
approved: true
changes_requested: false
- name: automatic merge
conditions:
- label!=do-not-merge
- base=master
- "#approved-reviews-by>=2"
- "#changes-requested-reviews-by=0"
- status-success=check
# each test should be listed separately, do not use regular expressions:
# https://docs.mergify.io/conditions.html#validating-all-status-check
- status-success=test-suite (mimic)
- status-success=test-suite (nautilus)
- status-success=test-suite (octopus)
actions:
merge:
method: rebase
rebase_fallback: merge
dismiss_reviews: {}
delete_head_branch: {}
- name: ask to resolve conflict
conditions:
- conflict
actions:
comment:
message: "This pull request now has conflicts with the target branch.
Could you please resolve conflicts and force push the corrected
changes? 🙏"
| ---
pull_request_rules:
- name: remove outdated approvals
conditions:
- base=master
actions:
dismiss_reviews:
approved: true
changes_requested: false
- name: automatic merge
conditions:
- label!=do-not-merge
- base=master
- "#approved-reviews-by>=2"
- "#changes-requested-reviews-by=0"
- status-success=check
# each test should be listed separately, do not use regular expressions:
# https://docs.mergify.io/conditions.html#validating-all-status-check
- status-success=test-suite (mimic)
- status-success=test-suite (nautilus)
- status-success=test-suite (octopus)
actions:
merge:
method: rebase
rebase_fallback: merge
strict: smart
strict_method: rebase
dismiss_reviews: {}
delete_head_branch: {}
- name: ask to resolve conflict
conditions:
- conflict
actions:
comment:
message: "This pull request now has conflicts with the target branch.
Could you please resolve conflicts and force push the corrected
changes? 🙏"
| Use Smart-mode for "Strict Merge" to enable automatic rebase | Use Smart-mode for "Strict Merge" to enable automatic rebase
Enabling Smart-mode for "Strict Merge" causes Mergify to do a rebase of
the PR before merging. The rebase will trigger CI runs again, and
merging will be done only when the CI results are successful.
See-also: https://docs.mergify.io/actions.html#merge
Signed-off-by: Niels de Vos <7bda0c0ee7f47171cc808e9e60292cbc5d8140dd@redhat.com>
| YAML | mit | ceph/go-ceph,ceph/go-ceph,ceph/go-ceph |
bef0463e860f952634f1f1cad1ef655275f07e21 | config/services.yml | config/services.yml | dashboards:
- slug: licensing
name: Licensing
- slug: vehicle-licensing
name: Vehicle licensing
feature_toggle: evl_dashboard
- slug: hmrc
name: HMRC
feature_toggle: hmrc_dashboards
excluded_from_list: true
- slug: lasting-power-of-attorney
name: Lasting Power of Attorney
feature_toggle: lpa_dashboard
- slug: pay-legalisation-post
name: Pay to get documents legalised by post
feature_toggle: fco_dashboards
- slug: pay-legalisation-drop-off
name: Pay to legalise documents using the premium service
feature_toggle: fco_dashboards
- slug: pay-register-birth-abroad
name: Payment to register a birth abroad in the UK
feature_toggle: fco_dashboards
- slug: pay-register-death-abroad
name: Payment to register a death abroad
feature_toggle: fco_dashboards
- slug: pay-foreign-marriage-certificates
name: Payment for certificates to get married abroad
feature_toggle: fco_dashboards
- slug: deposit-foreign-marriage
name: Deposit foreign marriage or civil partnership certificates
feature_toggle: fco_dashboards
- slug: sorn
name: SORN (Statutory Off Road Notification)
feature-toggle: evl_dashboard
- slug: tax-disc
name: Tax disc
feature_toggle: evl_dashboard
| dashboards:
- slug: licensing
name: Licensing
- slug: vehicle-licensing
name: Vehicle licensing
feature_toggle: evl_dashboard
- slug: hmrc
name: HMRC
feature_toggle: hmrc_dashboards
excluded_from_list: true
- slug: lasting-power-of-attorney
name: Lasting Power of Attorney
feature_toggle: lpa_dashboard
- slug: pay-legalisation-post
name: Pay to get documents legalised by post
feature_toggle: fco_dashboards
- slug: pay-legalisation-drop-off
name: Pay to legalise documents using the premium service
feature_toggle: fco_dashboards
- slug: pay-register-birth-abroad
name: Payment to register a birth abroad in the UK
feature_toggle: fco_dashboards
- slug: pay-register-death-abroad
name: Payment to register a death abroad
feature_toggle: fco_dashboards
- slug: pay-foreign-marriage-certificates
name: Payment for certificates to get married abroad
feature_toggle: fco_dashboards
- slug: deposit-foreign-marriage
name: Deposit foreign marriage or civil partnership certificates
feature_toggle: fco_dashboards
- slug: sorn
name: SORN (Statutory Off Road Notification)
feature_toggle: evl_dashboard
- slug: tax-disc
name: Tax disc
feature_toggle: evl_dashboard
| Fix typo in feature toggle for EVL | Fix typo in feature toggle for EVL
| YAML | mit | gds-attic/limelight,gds-attic/limelight,gds-attic/limelight |
8ce12fe98a613a3f129e0ace0a980e3c2ff85b50 | config/settings.yml | config/settings.yml | plugins:
solved_enabled:
default: true
client: true
allow_solved_on_all_topics:
default: true
client: true
accept_all_solutions_trust_level:
default: 4
client: true
empty_box_on_unsolved:
default: false
client: true
solved_quote_length:
default: 300
client: false
solved_topics_auto_close_hours:
default: 0
| plugins:
solved_enabled:
default: true
client: true
allow_solved_on_all_topics:
default: true
client: true
accept_all_solutions_trust_level:
default: 1
client: true
empty_box_on_unsolved:
default: false
client: true
solved_quote_length:
default: 300
client: false
solved_topics_auto_close_hours:
default: 0
| Change default for solutions trust level | Change default for solutions trust level
| YAML | mit | bolariin/discourse-instructor-endorsed,bolariin/discourse-instructor-endorsed,bolariin/discourse-instructor-endorsed |
fdfb7f0ebe7da2420cded128238520e3fab912cc | .codacy.yaml | .codacy.yaml | ---
exclude_paths:
- "client/src/main/java/io/spine/net/Patterns.java"
- "base/src/test/**/*.*"
- "client/src/test/**/*.*"
- "server/src/test/**/*.*"
- "server-deployment/src/test/**/*.*"
- "testutil/src/test/**/*.*"
- "time/src/test/**/*.*"
- "values/src/test/**/*.*"
| ---
exclude_paths:
- "client/src/main/java/io/spine/net/Patterns.java"
- "base/src/test/**/*.*"
- "core/src/test/**/*.*"
- "client/src/test/**/*.*"
- "server/src/test/**/*.*"
- "server-deployment/src/test/**/*.*"
- "testutil/src/test/**/*.*"
- "time/src/test/**/*.*"
- "values/src/test/**/*.*"
| Exclude `core` test sources from Codacy inspections. | Exclude `core` test sources from Codacy inspections.
| YAML | apache-2.0 | SpineEventEngine/core-java,SpineEventEngine/core-java,SpineEventEngine/core-java |
0c706adb0b623e91012505b4965de496cd99c440 | .codecov.yml | .codecov.yml | # https://docs.codecov.io/docs/codecov-yaml
# https://github.com/codecov/support/wiki/Codecov-Yaml
coverage:
status:
project:
default: false
patch:
default: false
flags:
production:
paths:
- StyleCop.Analyzers/StyleCop.Analyzers/
- StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/
test:
paths:
- StyleCop.Analyzers/StyleCop.Analyzers.Test/
- StyleCop.Analyzers/StyleCopTester/
| # https://docs.codecov.io/docs/codecov-yaml
# https://github.com/codecov/support/wiki/Codecov-Yaml
coverage:
status:
project:
default: false
patch:
default: false
flags:
production:
paths:
- src/CSVReader/
- src/EtwClrProfiler/
- src/EtwHeapDump/
- src/FastSerialization/
- src/HeapDump/
- src/HeapDumpCommon/
- src/HeapDumpInterface/
- src/HtmlJs/
- src/MemoryGraph/
- src/PerfView/
- src/PerfView64/
- src/PerfViewExtensions/
- src/related/TraceEventAPIServer/
- src/TraceEvent/
- src/Utilities/
- src/VS/
test:
paths:
- src/LinuxEvent.Tests/
- src/PerfView.Tests/
- src/PerfView.TestUtilities/
- src/TraceEvent/Ctf/CtfTracing.Tests/
- src/TraceEvent/TraceEvent.Tests/
| Fix paths for production and test paths | Fix paths for production and test paths
| YAML | mit | vancem/perfview,vancem/perfview,vancem/perfview,vancem/perfview,vancem/perfview |
956ea52994d4a92dd4ee61880d275699818e9a41 | devtools/conda-recipe/meta.yaml | devtools/conda-recipe/meta.yaml | package:
name: msmbuilder-dev
version: !!str 3.0.0
#source:
# fn: master.zip
# url: https://github.com/msmbuilder/msmbuilder/archive/master.zip
build:
preserve_egg_dir: True
number: 0
entry_points:
- msmb = msmbuilder.scripts.msmb:main
requirements:
build:
- python
- setuptools
- cython
- numpy
- mdtraj
run:
- python
- setuptools
- numpy
- scipy
- pandas
- six
- mdtraj
- scikit-learn
- numpydoc
- pytables
- pyhmc
test:
requires:
- nose
- munkres
- numdifftools
- matplotlib
- statsmodels
imports:
- msmbuilder
commands:
- msmb -h
- nosetests msmbuilder -v
about:
home: https://github.com/msmbuilder/msmbuilder
license: LGPLv2.1+
summary: 'MSMBuilder: Statistical models for biomolecular dynamics'
| package:
name: msmbuilder-dev
version: !!str 3.3.0
#source:
# fn: master.zip
# url: https://github.com/msmbuilder/msmbuilder/archive/master.zip
build:
preserve_egg_dir: True
number: 0
entry_points:
- msmb = msmbuilder.scripts.msmb:main
requirements:
build:
- python
- setuptools
- cython
- numpy
- mdtraj
run:
- python
- setuptools
- numpy
- scipy
- pandas
- six
- mdtraj
- scikit-learn
- numpydoc
- pytables
- pyhmc
test:
requires:
- nose
- munkres
- numdifftools
- matplotlib
- statsmodels
imports:
- msmbuilder
commands:
- msmb -h
- nosetests msmbuilder -v
about:
home: https://github.com/msmbuilder/msmbuilder
license: LGPLv2.1+
summary: 'MSMBuilder: Statistical models for biomolecular dynamics'
| Increment the version in the CI conda recipe. | Increment the version in the CI conda recipe.
| YAML | lgpl-2.1 | dr-nate/msmbuilder,mpharrigan/mixtape,dotsdl/msmbuilder,dr-nate/msmbuilder,rmcgibbo/msmbuilder,brookehus/msmbuilder,msmbuilder/msmbuilder,msultan/msmbuilder,peastman/msmbuilder,msmbuilder/msmbuilder,rafwiewiora/msmbuilder,msmbuilder/msmbuilder,dotsdl/msmbuilder,stephenliu1989/msmbuilder,msmbuilder/msmbuilder,Eigenstate/msmbuilder,msultan/msmbuilder,cxhernandez/msmbuilder,mpharrigan/mixtape,cxhernandez/msmbuilder,rmcgibbo/msmbuilder,brookehus/msmbuilder,dr-nate/msmbuilder,dr-nate/msmbuilder,peastman/msmbuilder,cxhernandez/msmbuilder,msultan/msmbuilder,dotsdl/msmbuilder,brookehus/msmbuilder,rafwiewiora/msmbuilder,mpharrigan/mixtape,peastman/msmbuilder,peastman/msmbuilder,cxhernandez/msmbuilder,stephenliu1989/msmbuilder,dotsdl/msmbuilder,Eigenstate/msmbuilder,mpharrigan/mixtape,rmcgibbo/msmbuilder,Eigenstate/msmbuilder,Eigenstate/msmbuilder,mpharrigan/mixtape,cxhernandez/msmbuilder,rafwiewiora/msmbuilder,stephenliu1989/msmbuilder,peastman/msmbuilder,msmbuilder/msmbuilder,stephenliu1989/msmbuilder,rafwiewiora/msmbuilder,dr-nate/msmbuilder,msultan/msmbuilder,Eigenstate/msmbuilder,rmcgibbo/msmbuilder,rafwiewiora/msmbuilder,brookehus/msmbuilder,brookehus/msmbuilder,msultan/msmbuilder |
b63d94c0dbd65a71db544562bd55196428ca3bef | tmuxinator/tmuxinator.symlink/blog.yml | tmuxinator/tmuxinator.symlink/blog.yml | # ~/.tmuxinator/blog.yml
# you can make as many tabs as you wish...
project_name: blog
project_root: ~/code/jekyll_blog
tabs:
- bash: #empty, will just run plain bash
- vim: vim
- server: jekyll
- git: tig
| # ~/.tmuxinator/blog.yml
# you can make as many tabs as you wish...
project_name: blog
project_root: ~/code/jekyll_blog
tabs:
- bash: #empty, will just run plain bash
- vim: vim
- server: TZ="GMT-2" jekyll
- git: tig
| Set timezone before running Jekyll | Set timezone before running Jekyll
For some reason this seems to be the timezone I was using when I
initially created my blog. It isn't the SA timezone so not sure what's
going on there, but using this seems to stop Jekyll from updating all of
my previous post entries in my atom feed.
| YAML | mit | markscholtz/dotfiles,markscholtz/dotfiles |
f1423e0344b5becd6d566deb031dd4b3e39596a2 | Example/.xbuild.yml | Example/.xbuild.yml | verbose: true
scheme: WLXBluetoothDeviceShared
workspace: WLXBluetoothDevice.xcworkspace
xctool: false
| verbose: true
scheme: WLXBluetoothDeviceShared
workspace: WLXBluetoothDevice.xcworkspace
xctool: true
| Revert "Uses xctool to build." | Revert "Uses xctool to build."
This reverts commit dab772eb7218784cf727af4ed3c6fa2679370d69.
| YAML | mit | drdaz/WLXBluetoothDevice,Wolox/WLXBluetoothDevice,Wolox/WLXBluetoothDevice,drdaz/WLXBluetoothDevice |
4dd5f2b63d0c821bffc9f5ac09c7f292de2df8ed | .kitchen.yml | .kitchen.yml | driver:
name: vagrant
platforms:
- name: centos-5.10
- name: centos-6.5
- name: fedora-19
- name: macosx-10.9
- name: debian-7.4
run_list: recipe[apt::default]
- name: ubuntu-10.04
run_list: recipe[apt::default]
- name: ubuntu-12.04
run_list: recipe[apt::default]
- name: ubuntu-13.10
run_list: recipe[apt::default]
suites:
- name: default
run_list: recipe[build-essential::default]
| driver:
name: vagrant
platforms:
- name: centos-5.10
- name: centos-6.5
- name: fedora-19
- name: freebsd-9.2
- name: macosx-10.9
- name: debian-7.4
run_list: recipe[apt::default]
- name: ubuntu-10.04
run_list: recipe[apt::default]
- name: ubuntu-12.04
run_list: recipe[apt::default]
- name: ubuntu-13.10
run_list: recipe[apt::default]
suites:
- name: default
run_list: recipe[build-essential::default]
| Add FreeBSD to list of platforms | Add FreeBSD to list of platforms
| YAML | apache-2.0 | mblomdahl/build-essential,Quoin/build-essential,someara/build-essential,ShawnJSullivan/chef-build-essential,bdwyertech/build-essential,opscode-cookbooks/build-essential,protec-cookbooks/build-essential,hhoover/build-essential,linc01n/build-essential,h4ck3rm1k3/build-essential,glensc/chef-cookbook-build-essential,chef-cookbooks/build-essential,miketheman/opscode-build-essential,GannettDigital/chef-build-essential,juliandunn/build-essential |
4a95c4090d2dc9d527ca2ee74d4ac7880942d273 | .kitchen.yml | .kitchen.yml | driver:
name: vagrant
provisioner:
name: chef_zero
driver_config:
require_chef_omnibus: true
platforms:
- name: ubuntu-14.04
run_list:
- recipe[apt::default]
- name: ubuntu-12.04
run_list:
- recipe[apt::default]
- name: ubuntu-10.04
run_list:
- recipe[apt::default]
- name: debian-7.8
run_list:
- recipe[apt::default]
- name: debian-6.0.10
run_list:
- recipe[apt::default]
- name: centos-7.1
- name: centos-6.6
- name: centos-5.11
- name: fedora-20
- name: fedora-21
suites:
- name: default
run_list:
- recipe[nscd::default]
attributes:
nscd:
server_user: "nobody"
| driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt::default]
- name: ubuntu-14.04
run_list:
- recipe[apt::default]
- name: debian-7.8
run_list:
- recipe[apt::default]
- name: debian-8.1
run_list:
- recipe[apt::default]
- name: centos-7.1
- name: centos-6.6
- name: centos-5.11
- name: fedora-21
suites:
- name: default
run_list:
- recipe[nscd::default]
attributes:
nscd:
server_user: "nobody"
| Update platforms in Kitchen config | Update platforms in Kitchen config
| YAML | apache-2.0 | chef-cookbooks/nscd,chef-cookbooks/nscd,opscode-cookbooks/nscd,opscode-cookbooks/nscd |
9c9c37b9d678b747bc050b2bbcdb83789aee995c | .kitchen.yml | .kitchen.yml | driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
platforms:
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
- name: oracle-7.3
- name: debian-8.7
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: create
run_list:
- recipe[test::create]
- name: create_thin
excludes:
- debian-7.11
run_list:
- recipe[test::create_thin]
- name: resize
run_list:
- recipe[test::create]
- recipe[test::resize]
- name: resize_thin
excludes:
- debian-7.11
run_list:
- recipe[test::create_thin]
- recipe[test::resize_thin]
| driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
platforms:
- name: centos-6.9
- name: centos-7.3
- name: debian-7.11
- name: oracle-7.3
- name: debian-8.7
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: create
run_list:
- recipe[test::create]
- name: create_thin
excludes:
- debian-7.11
run_list:
- recipe[test::create_thin]
- name: resize
run_list:
- recipe[test::create]
- recipe[test::resize]
- name: resize_thin
excludes:
- debian-7.11
run_list:
- recipe[test::create_thin]
- recipe[test::resize_thin]
| Test on CentOS 6.9 in TK | Test on CentOS 6.9 in TK
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/lvm,opscode-cookbooks/lvm,opscode-cookbooks/lvm,ChiefAlexander/lvm,chef-cookbooks/lvm,ChiefAlexander/lvm |
01877427072276f67abadc047e565a2663a9c729 | .kitchen.yml | .kitchen.yml | driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: amazonlinux
driver_config:
box: mvbcoding/awslinux
- name: centos-6
- name: centos-7
- name: debian-8
run_list: apt::default
- name: debian-9
run_list: apt::default
- name: fedora-27
- name: opensuse-leap-42
- name: ubuntu-14.04
run_list: apt::default
- name: ubuntu-16.04
run_list: apt::default
suites:
- name: default
run_list:
recipe[test::default]
| driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: amazonlinux
driver_config:
box: mvbcoding/awslinux
- name: centos-6
- name: centos-7
- name: debian-8
run_list: apt::default
- name: debian-9
run_list: apt::default
- name: fedora-28
- name: opensuse-leap-42
- name: ubuntu-14.04
run_list: apt::default
- name: ubuntu-16.04
run_list: apt::default
suites:
- name: default
run_list:
recipe[test::default]
| Update the platforms we test | Update the platforms we test
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/fail2ban,chef-cookbooks/fail2ban,opscode-cookbooks/fail2ban,opscode-cookbooks/fail2ban |
fc041dc835f797f41c046f8b756177c82711ff15 | .codeclimate.yml | .codeclimate.yml | ---
engines:
duplication:
enabled: true
config:
languages:
- python
fixme:
enabled: true
radon:
enabled: true
pep8:
enabled: true
ratings:
paths:
- "**.py"
| ---
engines:
duplication:
enabled: true
config:
languages:
- python
fixme:
enabled: true
radon:
enabled: true
pep8:
enabled: true
ratings:
paths:
- "**.py"
exclude_paths:
- "tests/"
| Exclude tests directory from code climate checks. | Exclude tests directory from code climate checks.
| YAML | mit | eduardobmc/flask-test |
8922da7ca118bf4cc2601034be6bea2db48ee586 | .rubocop.yml | .rubocop.yml | require:
- rubocop-performance
- rubocop-rails
- rubocop-rspec
AllCops:
TargetRailsVersion: 5.2
TargetRubyVersion: 2.6
Exclude:
- Brewfile
- 'bin/*'
- 'db/**/*'
- 'vendor/bundle/**/*'
Layout/AlignHash:
EnforcedColonStyle: table
EnforcedHashRocketStyle: table
Lint/UriEscapeUnescape:
Enabled: false
Metrics/AbcSize:
Max: 22.29
Metrics/BlockLength:
Enabled: false
Metrics/LineLength:
Enabled: false
Metrics/MethodLength:
Max: 14
Exclude:
- 'spec/**/*'
Metrics/ModuleLength:
Exclude:
- 'spec/**/*'
Rails:
Enabled: true
Rails/HasAndBelongsToMany:
Exclude:
- 'app/models/conversation.rb'
- 'app/models/user.rb'
Rails/HelperInstanceVariable:
Enabled: false
Rails/SkipsModelValidations:
Enabled: false
RSpec/DescribeClass:
Exclude:
- spec/features/**/*
- spec/requests/**/*
- spec/system/**/*
RSpec/ExampleLength:
Max: 42
RSpec/MultipleExpectations:
Enabled: false
RSpec/NestedGroups:
Max: 4
Style/Documentation:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/RescueStandardError:
Enabled: false
| require:
- rubocop-performance
- rubocop-rails
- rubocop-rspec
AllCops:
TargetRailsVersion: 5.2
TargetRubyVersion: 2.6
Exclude:
- Brewfile
- 'bin/*'
- 'db/**/*'
- 'log/**/*'
- 'node_modules/**/*'
- 'tmp/**/*'
- 'vendor/bundle/**/*'
Layout/AlignHash:
EnforcedColonStyle: table
EnforcedHashRocketStyle: table
Lint/UriEscapeUnescape:
Enabled: false
Metrics/AbcSize:
Max: 22.29
Metrics/BlockLength:
Enabled: false
Metrics/LineLength:
Enabled: false
Metrics/MethodLength:
Max: 14
Exclude:
- 'spec/**/*'
Metrics/ModuleLength:
Exclude:
- 'spec/**/*'
Rails:
Enabled: true
Rails/HasAndBelongsToMany:
Exclude:
- 'app/models/conversation.rb'
- 'app/models/user.rb'
Rails/HelperInstanceVariable:
Enabled: false
Rails/SkipsModelValidations:
Enabled: false
RSpec/DescribeClass:
Exclude:
- spec/features/**/*
- spec/requests/**/*
- spec/system/**/*
RSpec/ExampleLength:
Max: 42
RSpec/MultipleExpectations:
Enabled: false
RSpec/NestedGroups:
Max: 4
Style/Documentation:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/RescueStandardError:
Enabled: false
| Exclude some directories to speed up analysis | Exclude some directories to speed up analysis | YAML | bsd-2-clause | diowa/icare,diowa/icare,diowa/icare,diowa/icare |
2cb28febbb8ea61a8b63bf5b2b079b0d53aef2a7 | .rubocop.yml | .rubocop.yml | # these should all probably get resolved
Lint/ShadowingOuterLocalVariable:
Exclude:
- 'lib/artifactory/resources/base.rb'
Lint/UselessAssignment:
Exclude:
- 'lib/artifactory/resources/build_component.rb'
- 'lib/artifactory/resources/repository.rb'
- 'lib/artifactory/resources/user.rb'
- 'spec/integration/resources/artifact_spec.rb'
| # these should all probably get resolved
# when we get on a modern version of chefstyle this can go away
Style/EndOfLine:
EnforcedStyle: lf
Lint/ShadowingOuterLocalVariable:
Exclude:
- 'lib/artifactory/resources/base.rb'
Lint/UselessAssignment:
Exclude:
- 'lib/artifactory/resources/build_component.rb'
- 'lib/artifactory/resources/repository.rb'
- 'lib/artifactory/resources/user.rb'
- 'spec/integration/resources/artifact_spec.rb'
| Set line feeds in Chefstyle for now | Set line feeds in Chefstyle for now
We're stuck on a crazy old chefstyle for now
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/artifactory-client,chef/artifactory-client |
a4a60c48868bfecca429926d0ddbac0f743f59c6 | .rubocop.yml | .rubocop.yml | AlignParameters:
Enabled: false
Encoding:
Enabled: false
ClassLength:
Enabled: false
MethodLength:
Enabled: false
LineLength:
Enabled: false
# HashSyntax:
# EnforcedStyle: hash_rockets
Documentation:
Enabled: false
PerceivedComplexity:
Enabled: false
CyclomaticComplexity:
Enabled: false
Style/FileName:
Enabled: false
Metrics/AbcSize:
Enabled: false
AllCops:
Exclude:
- 'Guardfile'
| AllCops:
Exclude:
- vendor/**/*
AlignParameters:
Enabled: false
Encoding:
Enabled: false
ClassLength:
Enabled: false
MethodLength:
Enabled: false
LineLength:
Enabled: false
Documentation:
Enabled: false
PerceivedComplexity:
Enabled: false
CyclomaticComplexity:
Enabled: false
Style/FileName:
Enabled: false
Metrics/AbcSize:
Enabled: false
AllCops:
Exclude:
- 'Guardfile'
| Add exclusion and remove use of hash rockets | Add exclusion and remove use of hash rockets
| YAML | apache-2.0 | scalp42/aws,miketheman/aws-cookbook,paybyphone/aws,arnaud036/aws,chef-cookbooks/aws,itwasntandy/aws,grosendorf/aws,evertrue/aws,opscode-cookbooks/aws,joshoohaah/aws,BuyerQuest/aws,rafaelfelix/aws,Altiscale/aws |
1ddc65ca09f8705ab6c35d6adbd150db7972a636 | .rubocop.yml | .rubocop.yml | AllCops:
Exclude:
- vendor/**/*
AlignParameters:
Enabled: false
Encoding:
Enabled: false
HashSyntax:
Enabled: false
LineLength:
Enabled: false
MethodLength:
Max: 30
NumericLiterals:
Enabled: false
SingleSpaceBeforeFirstArg:
Enabled: false
| AllCops:
Exclude:
- vendor/**/*
AlignParameters:
Enabled: false
Encoding:
Enabled: false
LineLength:
Enabled: false
MethodLength:
Max: 30
NumericLiterals:
Enabled: false
SingleSpaceBeforeFirstArg:
Enabled: false
| Use ruby 1.9 hash syntax | Use ruby 1.9 hash syntax
| YAML | apache-2.0 | tas50/chef-mcelog,tas50/chef-mcelog |
612a29ce75b83f50ef88cac8c456e21ba3cbae5b | .styleci.yml | .styleci.yml | preset: laravel
enabled:
- no_useless_else
- phpdoc_align
- phpdoc_no_empty_return
- phpdoc_order
- phpdoc_separation | preset: laravel
enabled:
- no_useless_else
- phpdoc_align
- phpdoc_no_empty_return
- phpdoc_order
- phpdoc_separation
finder:
not-path:
- "src/Fpdf"
exclude:
- "doc" | Exclude Fpdf lib and docs from StyleCI | Exclude Fpdf lib and docs from StyleCI
| YAML | mit | codedge/laravel-fpdf,codedge/laravel-fpdf |
ced6a286921bdb9dec6c78ada752efe2c2698cc7 | .kitchen.ec2.yml | .kitchen.ec2.yml | ---
# The following environment variables are required:
# - AWS_ACCESS_KEY_ID
# - AWS_SECRET_ACCESS_KEY
# - AWS_SSH_KEY_ID
# - AWS_REGION
#
# Optional environment variables:
# - AWS_SECURITY_GROUP
# - AWS_SUBNET
# - KITCHEN_NO_CONCURRENCY set it to true if you do not want concurrency
driver:
name: ec2
instance_type: t2.micro
associate_public_ip: true
region: <%= ENV['AWS_REGION'] || 'us-west-2' %>
subnet_filter:
tag: 'Name'
value: <%= ENV['AWS_SUBNET'] || 'chef-testing-opensource-vpc-subnet' %>
security_group_filter:
tag: 'Name'
value: <%= ENV['AWS_SECURITY_GROUP'] || 'chef-testing-opensource-vpc-security-group' %>
transport:
ssh_key: <%= ENV['HOME'] %>/.ssh/id_rsa
provisioner:
name: chef_zero
platforms:
- name: centos-6
driver:
image_id: ami-05cf2265
suites:
- name: default
run_list:
- recipe[rundeck-bridge]
| ---
# The following environment variables are required:
# - AWS_ACCESS_KEY_ID
# - AWS_SECRET_ACCESS_KEY
# - AWS_SSH_KEY_ID
# - AWS_REGION
#
# Optional environment variables:
# - AWS_SECURITY_GROUP
# - AWS_SUBNET
# - KITCHEN_NO_CONCURRENCY set it to true if you do not want concurrency
driver:
name: ec2
instance_type: t2.micro
associate_public_ip: true
iam_profile_name: test-kitchen
region: <%= ENV['AWS_REGION'] || 'us-west-2' %>
subnet_filter:
tag: 'Name'
value: <%= ENV['AWS_SUBNET'] || 'chef-testing-opensource-vpc-subnet' %>
security_group_filter:
tag: 'Name'
value: <%= ENV['AWS_SECURITY_GROUP'] || 'chef-testing-opensource-vpc-security-group' %>
transport:
ssh_key: <%= ENV['HOME'] %>/.ssh/id_rsa
provisioner:
name: chef_zero
platforms:
- name: centos-6
driver:
image_id: ami-05cf2265
suites:
- name: default
run_list:
- recipe[rundeck-bridge]
| Add iam profile to kitchen config | Add iam profile to kitchen config
| YAML | apache-2.0 | criteo-cookbooks/rundeck-bridge |
40aca8ae1010e80c95dcdaaf4483c5730ae3f2e4 | .scrutinizer.yml | .scrutinizer.yml | filter:
paths: ["src/*"]
tools:
external_code_coverage: true
php_code_coverage: true
php_sim: true
php_mess_detector: true
php_pdepend: true
php_analyzer: true
php_cpd: true | checks:
php: true
coding_style:
php:
spaces:
before_parentheses:
closure_definition: true
around_operators:
concatenation: true
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run
tools:
external_code_coverage:
timeout: 3600
runs: 1 # Scrutinizer will wait for code coverage submissions for every PHP versions declared in .travis.yml
build_failure_conditions:
- 'elements.rating(<= C).new.exists' # No new classes/methods with a rating of C or worse allowed
- 'issues.severity(>= MAJOR).new.exists' # New issues of major or higher severity
- 'project.metric_change("scrutinizer.test_coverage", < 0)' # Code Coverage decreased from previous inspection
- 'patches.label("Unused Use Statements").new.exists' # No new unused imports patches allowed
| Upgrade to latest Scrutinizer PHP analysis engine | Upgrade to latest Scrutinizer PHP analysis engine
| YAML | mit | genkgo/camt |
67712d164528ba400ed9c218bf9c474d0706832d | .scrutinizer.yml | .scrutinizer.yml | build:
environment:
php:
version: 7.1
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover=coverage-file'
coverage:
file: 'coverage-file'
format: 'clover'
| build:
environment:
php:
version: 7.1
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover=coverage-file --stop-on-failure'
coverage:
file: 'coverage-file'
format: 'clover'
| Add PHPUnit stop on failure flag | Add PHPUnit stop on failure flag
| YAML | mit | klever/justgiving-api-sdk |
0106e767ed12cc585e0bddd832dc6d8956851941 | events/france/20170401-jdll.yml | events/france/20170401-jdll.yml | name: JDLL 2017
start: 2017-04-01-10:00:00
end: 2017-04-02-18:00:00
added: 2016-12-21-15:30:00
place: Maison Pour Tous - Salle des Rancy
address: 249 rue Vendôme 69003 Lyon
link: http://www.jdll.org/
cfp: http://www.jdll.org/jdll-presentation-generale/participer/formulaire-de-proposition/ | name: JDLL 2017
start: 2017-04-01-10:00:00
end: 2017-04-02-18:00:00
added: 2016-12-21-15:30:00
place: Maison Pour Tous - Salle des Rancy
address: 249 rue Vendome 69003 Lyon
link: http://www.jdll.org/
cfp: http://www.jdll.org/jdll-presentation-generale/participer/formulaire-de-proposition/
| Remove special char from JDLL event | Remove special char from JDLL event | YAML | agpl-3.0 | hackerevents/hackerevents,hackerevents/hackerevents,frankrousseau/hackerevents,frankrousseau/hackerevents |
a4c00622c9505984f5709d503dac5b5db1261cde | recipes/contextlib2/meta.yaml | recipes/contextlib2/meta.yaml | {%set name = "contextlib2" %}
{% set version = "0.5.4" %}
{%set hash_type = "sha256" %}
{%set hash_val = "710626cde569f51a87f216ff757fe60f5cd13ae8f8114706590510cd5649ce88" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash_val }}
build:
script: python setup.py install
number: 0
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- contextlib2
about:
home: http://contextlib2.readthedocs.org
license: PSF
license_family: PSF
license_file: LICENSE.txt
summary: 'Backports and enhancements for the contextlib module'
dev_url: https://github.com/jazzband/contextlib2
doc_url: http://contextlib2.readthedocs.org
| {%set name = "contextlib2" %}
{% set version = "0.5.5" %}
{%set hash_type = "sha256" %}
{%set hash_val = "509f9419ee91cdd00ba34443217d5ca51f5a364a404e1dce9e8979cea969ca48" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash_val }}
build:
script: python setup.py install --single-version-externally-managed --record record.txt
number: 0
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- contextlib2
about:
home: http://contextlib2.readthedocs.org
license: PSF
license_family: PSF
license_file: LICENSE.txt
summary: 'Backports and enhancements for the contextlib module'
dev_url: https://github.com/jazzband/contextlib2
doc_url: http://contextlib2.readthedocs.org
| Update contextlib2 recipe to version 0.5.5 | Update contextlib2 recipe to version 0.5.5
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
f1bf86b26a04be6cc9c8fa93c96506f10befa1b7 | .github/ISSUE_TEMPLATE/config.yml | .github/ISSUE_TEMPLATE/config.yml | blank_issues_enabled: false
contact_links:
- name: Feature Request
url: https://github.com/microsoft/vscode-python/discussions/categories/ideas
about: For ideas to improve the extension
- name: Pylance
url: https://github.com/microsoft/pylance-release/issues
about: For issues relating to the Pylance language server extension
- name: Debugpy
url: https://github.com/microsoft/debugpy/issues
about: For issues relating to the debugpy debugger
- name: Jupyter
url: https://github.com/microsoft/vscode-jupyter/issues
about: For issues relating to the Jupyter extension
- name: Help/Support
url: https://github.com/microsoft/vscode-python/discussions/categories/q-a
about: Having trouble with the extension? Need help getting something to work?
| blank_issues_enabled: false
contact_links:
- name: Feature Request
url: https://github.com/microsoft/vscode-python/discussions/categories/ideas
about: For ideas to improve the extension
- name: Pylance
url: https://github.com/microsoft/pylance-release/issues
about: For issues relating to the Pylance language server extension
- name: Debugpy
url: https://github.com/microsoft/debugpy/issues
about: For issues relating to the debugpy debugger
- name: Jupyter
url: https://github.com/microsoft/vscode-jupyter/issues
about: For issues relating to the Jupyter extension
- name: Help/Support
url: https://github.com/microsoft/vscode-python/discussions/categories/q-a
about: Having trouble with the extension? Need help getting something to work?
- name: Chat
url: https://aka.ms/python-discord
about: You can ask for help or chat in the `#vscode` channel of our microsoft-python Discord server
| Add our Discord server as a place to get help | Add our Discord server as a place to get help | YAML | mit | DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode |
2fac940098d4d5d7c2431f5fd97c094581adc884 | recipes/estscan/3.0/meta.yaml | recipes/estscan/3.0/meta.yaml | package:
name: estscan
version: "3.0"
source:
fn: estscan-3.0.tar.gz
url: https://sourceforge.net/projects/estscan/files/estscan/3.0/estscan-3.0.tar.gz
md5: 1252c862b41b03b59687f5ba148b77cd
build:
number: 0
skip: True #[osx]
requirements:
build:
- gcc
run:
- blast-legacy
- gnuplot
- perl-estscan1
- perl-estscan2
- r
test:
commands:
- estscan -v 2>&1 | grep '3.0'
- estscan -h 2>&1 | grep 'Available'
about:
home: http://estscan.sourceforge.net
license: 'open source'
summary: 'Detects coding regions in DNA sequences even if they are of low quality'
| package:
name: estscan
version: "3.0"
source:
fn: estscan-3.0.tar.gz
url: https://sourceforge.net/projects/estscan/files/estscan/3.0/estscan-3.0.tar.gz
md5: 1252c862b41b03b59687f5ba148b77cd
build:
number: 0
skip: True #[osx]
requirements:
build:
- gcc
test:
commands:
- estscan -v 2>&1 | grep '3.0'
- estscan -h 2>&1 | grep 'Available'
about:
home: http://estscan.sourceforge.net
license: 'open source'
summary: 'Detects coding regions in DNA sequences even if they are of low quality'
| Remove unnecessary run dependencies for estscan version 3.0 recipe | Remove unnecessary run dependencies for estscan version 3.0 recipe
| YAML | mit | chapmanb/bioconda-recipes,rob-p/bioconda-recipes,abims-sbr/bioconda-recipes,oena/bioconda-recipes,oena/bioconda-recipes,mcornwell1957/bioconda-recipes,acaprez/recipes,oena/bioconda-recipes,npavlovikj/bioconda-recipes,pinguinkiste/bioconda-recipes,bioconda/recipes,dmaticzka/bioconda-recipes,gvlproject/bioconda-recipes,gvlproject/bioconda-recipes,hardingnj/bioconda-recipes,ThomasWollmann/bioconda-recipes,blankenberg/bioconda-recipes,ivirshup/bioconda-recipes,shenwei356/bioconda-recipes,saketkc/bioconda-recipes,dmaticzka/bioconda-recipes,bow/bioconda-recipes,ostrokach/bioconda-recipes,HassanAmr/bioconda-recipes,peterjc/bioconda-recipes,ThomasWollmann/bioconda-recipes,jfallmann/bioconda-recipes,lpantano/recipes,martin-mann/bioconda-recipes,rvalieris/bioconda-recipes,Luobiny/bioconda-recipes,HassanAmr/bioconda-recipes,CGATOxford/bioconda-recipes,zachcp/bioconda-recipes,gvlproject/bioconda-recipes,colinbrislawn/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,saketkc/bioconda-recipes,peterjc/bioconda-recipes,jasper1918/bioconda-recipes,zachcp/bioconda-recipes,bow/bioconda-recipes,blankenberg/bioconda-recipes,colinbrislawn/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,saketkc/bioconda-recipes,gregvonkuster/bioconda-recipes,jasper1918/bioconda-recipes,keuv-grvl/bioconda-recipes,bow/bioconda-recipes,matthdsm/bioconda-recipes,oena/bioconda-recipes,gvlproject/bioconda-recipes,pinguinkiste/bioconda-recipes,joachimwolff/bioconda-recipes,mdehollander/bioconda-recipes,saketkc/bioconda-recipes,xguse/bioconda-recipes,bioconda/recipes,mdehollander/bioconda-recipes,omicsnut/bioconda-recipes,abims-sbr/bioconda-recipes,colinbrislawn/bioconda-recipes,rvalieris/bioconda-recipes,guowei-he/bioconda-recipes,guowei-he/bioconda-recipes,jasper1918/bioconda-recipes,colinbrislawn/bioconda-recipes,rvalieris/bioconda-recipes,martin-mann/bioconda-recipes,bioconda/bioconda-recipes,joachimwolff/bioconda-recipes,daler/bioconda-recipes,jfallmann/bioconda-recipes,joachimwolff/bioconda-recipes,martin-mann/bioconda-recipes,bebatut/bioconda-recipes,chapmanb/bioconda-recipes,hardingnj/bioconda-recipes,daler/bioconda-recipes,peterjc/bioconda-recipes,ostrokach/bioconda-recipes,dmaticzka/bioconda-recipes,abims-sbr/bioconda-recipes,zwanli/bioconda-recipes,phac-nml/bioconda-recipes,jfallmann/bioconda-recipes,bioconda/bioconda-recipes,shenwei356/bioconda-recipes,keuv-grvl/bioconda-recipes,bebatut/bioconda-recipes,dkoppstein/recipes,matthdsm/bioconda-recipes,npavlovikj/bioconda-recipes,pinguinkiste/bioconda-recipes,xguse/bioconda-recipes,phac-nml/bioconda-recipes,guowei-he/bioconda-recipes,HassanAmr/bioconda-recipes,ivirshup/bioconda-recipes,rvalieris/bioconda-recipes,roryk/recipes,npavlovikj/bioconda-recipes,hardingnj/bioconda-recipes,HassanAmr/bioconda-recipes,saketkc/bioconda-recipes,ostrokach/bioconda-recipes,dmaticzka/bioconda-recipes,phac-nml/bioconda-recipes,ivirshup/bioconda-recipes,ostrokach/bioconda-recipes,saketkc/bioconda-recipes,cokelaer/bioconda-recipes,acaprez/recipes,ostrokach/bioconda-recipes,bioconda/bioconda-recipes,bow/bioconda-recipes,peterjc/bioconda-recipes,gregvonkuster/bioconda-recipes,zwanli/bioconda-recipes,CGATOxford/bioconda-recipes,CGATOxford/bioconda-recipes,mcornwell1957/bioconda-recipes,ivirshup/bioconda-recipes,JenCabral/bioconda-recipes,bow/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,chapmanb/bioconda-recipes,acaprez/recipes,gregvonkuster/bioconda-recipes,martin-mann/bioconda-recipes,matthdsm/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,Luobiny/bioconda-recipes,omicsnut/bioconda-recipes,dkoppstein/recipes,phac-nml/bioconda-recipes,ThomasWollmann/bioconda-recipes,shenwei356/bioconda-recipes,zachcp/bioconda-recipes,abims-sbr/bioconda-recipes,keuv-grvl/bioconda-recipes,hardingnj/bioconda-recipes,omicsnut/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,JenCabral/bioconda-recipes,mdehollander/bioconda-recipes,lpantano/recipes,dmaticzka/bioconda-recipes,chapmanb/bioconda-recipes,bioconda/bioconda-recipes,oena/bioconda-recipes,daler/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,ThomasWollmann/bioconda-recipes,gregvonkuster/bioconda-recipes,acaprez/recipes,lpantano/recipes,shenwei356/bioconda-recipes,gvlproject/bioconda-recipes,dmaticzka/bioconda-recipes,omicsnut/bioconda-recipes,daler/bioconda-recipes,colinbrislawn/bioconda-recipes,blankenberg/bioconda-recipes,jfallmann/bioconda-recipes,guowei-he/bioconda-recipes,phac-nml/bioconda-recipes,jasper1918/bioconda-recipes,rob-p/bioconda-recipes,peterjc/bioconda-recipes,mdehollander/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,bioconda/recipes,bebatut/bioconda-recipes,dkoppstein/recipes,jasper1918/bioconda-recipes,daler/bioconda-recipes,zachcp/bioconda-recipes,lpantano/recipes,zwanli/bioconda-recipes,peterjc/bioconda-recipes,keuv-grvl/bioconda-recipes,npavlovikj/bioconda-recipes,omicsnut/bioconda-recipes,martin-mann/bioconda-recipes,abims-sbr/bioconda-recipes,JenCabral/bioconda-recipes,ostrokach/bioconda-recipes,xguse/bioconda-recipes,ivirshup/bioconda-recipes,keuv-grvl/bioconda-recipes,cokelaer/bioconda-recipes,abims-sbr/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,joachimwolff/bioconda-recipes,CGATOxford/bioconda-recipes,roryk/recipes,colinbrislawn/bioconda-recipes,pinguinkiste/bioconda-recipes,rvalieris/bioconda-recipes,CGATOxford/bioconda-recipes,daler/bioconda-recipes,ivirshup/bioconda-recipes,zwanli/bioconda-recipes,ThomasWollmann/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,matthdsm/bioconda-recipes,Luobiny/bioconda-recipes,mdehollander/bioconda-recipes,HassanAmr/bioconda-recipes,keuv-grvl/bioconda-recipes,bebatut/bioconda-recipes,rob-p/bioconda-recipes,Luobiny/bioconda-recipes,mcornwell1957/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,chapmanb/bioconda-recipes,rob-p/bioconda-recipes,JenCabral/bioconda-recipes,xguse/bioconda-recipes,pinguinkiste/bioconda-recipes,JenCabral/bioconda-recipes,mcornwell1957/bioconda-recipes,gvlproject/bioconda-recipes,cokelaer/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,HassanAmr/bioconda-recipes,guowei-he/bioconda-recipes,joachimwolff/bioconda-recipes,CGATOxford/bioconda-recipes,hardingnj/bioconda-recipes,blankenberg/bioconda-recipes,pinguinkiste/bioconda-recipes,matthdsm/bioconda-recipes,matthdsm/bioconda-recipes,zwanli/bioconda-recipes,zwanli/bioconda-recipes,cokelaer/bioconda-recipes,rvalieris/bioconda-recipes,bow/bioconda-recipes,JenCabral/bioconda-recipes,roryk/recipes,mcornwell1957/bioconda-recipes,mdehollander/bioconda-recipes,xguse/bioconda-recipes,ThomasWollmann/bioconda-recipes,joachimwolff/bioconda-recipes |
6956ac0e98612fa8f8f4ab08b4cdd25ae4cbdb73 | .github/workflows/automerge.yml | .github/workflows/automerge.yml | name: Merge me test dependencies!
on:
workflow_run:
types:
- completed
workflows:
# List all required workflow names here.
- 'Run tests'
- 'Test build package'
- 'Run linters'
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is often a desired behavior to merge only when a workflow execution
# succeeds. This can be changed as needed.
if: ${{ github.event.workflow_run.conclusion == 'success' }}
name: Merge me!
uses: ridedott/merge-me-action@v2.9.27
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to
# a protected branch must be used. This secret can have an arbitrary
# name, as an example, this repository uses `DOTTBOTT_TOKEN`.
#
# When using a custom token, it is recommended to leave the following
# comment for other developers to be aware of the reasoning behind it:
#
# This must be used as GitHub Actions token does not support pushing
# to protected branches.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_METHOD: MERGE
PRESET: DEPENDABOT_MINOR
ENABLED_FOR_MANUAL_CHANGES: 'true'
| name: Merge me test dependencies!
on:
workflow_run:
types:
- completed
workflows:
# List all required workflow names here.
- 'Run tests'
- 'Test build package'
- 'Run linters'
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is often a desired behavior to merge only when a workflow execution
# succeeds. This can be changed as needed.
if: ${{ github.event.workflow_run.conclusion == 'success' }}
name: Merge me!
uses: ridedott/merge-me-action@v2.9.31
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to
# a protected branch must be used. This secret can have an arbitrary
# name, as an example, this repository uses `DOTTBOTT_TOKEN`.
#
# When using a custom token, it is recommended to leave the following
# comment for other developers to be aware of the reasoning behind it:
#
# This must be used as GitHub Actions token does not support pushing
# to protected branches.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_METHOD: MERGE
PRESET: DEPENDABOT_MINOR
ENABLED_FOR_MANUAL_CHANGES: 'true'
| Bump ridedott/merge-me-action from 2.9.27 to 2.9.31 | Bump ridedott/merge-me-action from 2.9.27 to 2.9.31
| YAML | mit | fizyk/pyramid_localize |
9c18175f98afe5324d236f49919e8ad911ffcced | .github/workflows/build-rpm.yml | .github/workflows/build-rpm.yml | name: RPM Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build RPM package
id: rpm
uses: naveenrajm7/rpmbuild@v1.0.0
with:
spec_file: "apel-ssm.spec"
- name: Upload artifact
uses: actions/upload-artifact@v2.2.4
with:
name: Binary RPM
path: ${{ steps.rpm.outputs.rpm_dir_path }}
| name: RPM Build
on: push
jobs:
build:
runs-on: ubuntu-latest
env:
# This is so that our tar file ends up added as a volume to the rpmbuild container
RPMDIR: /home/runner/work/_temp/_github_home/rpmbuild
VERSION: 3.2.1-1
# Can't refer to the VERSION env above within the env block unfortunately
SSMDIR: apel-ssm-3.2.1-1
steps:
- uses: actions/checkout@v2
# Copied over from the ssm-build-rpm.sh script
- run: wget --no-check-certificate https://github.com/apel/ssm/archive/$VERSION.tar.gz -O $VERSION
- run: tar xzvf $VERSION
- run: mv ssm-$VERSION $SSMDIR
- run: tar czvf $SSMDIR.tar.gz $SSMDIR
- run: sudo mkdir -p $RPMDIR/SOURCES
- run: sudo cp $SSMDIR.tar.gz $RPMDIR/SOURCES
- name: build RPM package
id: rpm
uses: naveenrajm7/rpmbuild@v1.0.0
with:
spec_file: "apel-ssm.spec"
- name: Upload artifact
uses: actions/upload-artifact@v2.2.4
with:
name: Binary and Source RPMs
path: |
${{ steps.rpm.outputs.rpm_dir_path }}
${{ steps.rpm.outputs.source_rpm_dir_path }}
| Add env and setup, and include SRPM in artifact | Add env and setup, and include SRPM in artifact
| YAML | apache-2.0 | tofu-rocketry/ssm,apel/ssm,apel/ssm,tofu-rocketry/ssm |
c1abc4160f457febbb7a19f4a321a8c422b54f82 | .github/workflows/lint_python.yml | .github/workflows/lint_python.yml | name: lint_python
on: [pull_request, push]
jobs:
lint_python:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10-dev']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install bandit mypy pyupgrade safety tox
- run: bandit --recursive --skip B105,B110,B311,B605,B607 --exclude ./.tox .
if: ${{ matrix.python >= '3.8' }}
- run: tox -e lint
- run: tox -e py
- run: mypy --ignore-missing-imports . || true # Need Python >= 3.6
- run: shopt -s globstar && pyupgrade --py3-only **/*.py # --py36-plus
- run: safety check
| name: lint_python
on: [pull_request, push]
jobs:
lint_python:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10-dev']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install bandit mypy pyupgrade safety tox
- run: bandit --recursive --skip B105,B110,B311,B605,B607 --exclude ./.tox .
if: ${{ matrix.python >= '3.8' }}
- run: tox -e lint
- run: tox -e py
- run: mypy --ignore-missing-imports . || true # Need Python >= 3.6
- run: shopt -s globstar && pyupgrade --py3-only **/*.py # --py36-plus
- run: safety check
- run: tox -e build
- run: tox -e doc
| Build package and docs in CI | Build package and docs in CI
Add extra steps in CI to build package and documentation.
This makes sure the package can build and the doc generates fine
on each new push/PR.
| YAML | mit | burnash/gspread |
f0d9c2d1ac988eaa5d41a239acacfeacf255e242 | .github/workflows/npm-publish.yml | .github/workflows/npm-publish.yml | name: npm publish
on: push
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
| name: npm publish
on:
push:
branches:
- 'master'
paths:
- 'package.json'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
| Update github workflow to only publish when package.json changes in master | Update github workflow to only publish when package.json changes in master
| YAML | mit | onshape/grunt-xgettext,onshape/grunt-xgettext |
5d3ddcb893de8852c912e22ec2bb492c43186680 | packages/ya/yarl.yaml | packages/ya/yarl.yaml | homepage: http://github.com/blackheaven/yarl
changelog-type: ''
hash: 8932145d5452bdc4b6d84ee1c864721ec3e873c7a91655e3c509cccbb8c8b741
test-bench-deps:
base: -any
hspec: -any
hspec-core: -any
criterion: -any
yarl: -any
deepseq: -any
hspec-discover: -any
maintainer: gautier.difolco@gmail.com
synopsis: Yet another recrds libraries
changelog: ''
basic-deps:
base: ==4.*
all-versions:
- 0.1.0.0
author: Gautier DI FOLCO
latest: 0.1.0.0
description-type: haddock
description: Yet another recrds libraries (with getField support)
license-name: ISC
| homepage: http://github.com/blackheaven/yarl
changelog-type: ''
hash: 0dbd118a1de6b461d2b0a94fe42a50962ee05cf50ef852b4f6f260464176a158
test-bench-deps:
base: -any
hspec: -any
hspec-core: -any
criterion: -any
yarl: -any
deepseq: -any
hspec-discover: -any
maintainer: gautier.difolco@gmail.com
synopsis: Yet another records libraries
changelog: ''
basic-deps:
base: ==4.*
all-versions:
- 0.1.0.0
- 0.1.0.1
author: Gautier DI FOLCO
latest: 0.1.0.1
description-type: haddock
description: Yet another records libraries (with getField support)
license-name: ISC
| Update from Hackage at 2022-09-10T15:12:22Z | Update from Hackage at 2022-09-10T15:12:22Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
41b8d89e75c1dff465db990d2a685c7f5910c98c | roles/newrelic/tasks/main.yml | roles/newrelic/tasks/main.yml | ---
# This playbook configures newrelic monitoring service
- name: add newrelic repo key
apt_key:
url: https://download.newrelic.com/548C16BF.gpg
id: 548C16BF
state: present
become: yes
- name: add newrelic repo
apt_repository:
repo: 'deb http://apt.newrelic.com/debian/ newrelic non-free'
state: present
become: yes
- name: install newrelic
apt: pkg=newrelic-sysmond state=present update_cache=yes cache_valid_time=3600
become: yes
- name: set license key
shell: nrsysmond-config --set license_key={{newrelic_license_key}}
become: yes
- name: stop newrelic if already running
shell: /etc/init.d/newrelic-sysmond stop
become: yes
ignore_errors: yes
- name: start newrelic
shell: /etc/init.d/newrelic-sysmond start
become: yes
| ---
# This playbook configures newrelic monitoring service
- name: add newrelic repo key
apt_key:
url: https://download.newrelic.com/548C16BF.gpg
id: 548C16BF
state: present
become: yes
- name: add newrelic repo
apt_repository:
repo: 'deb http://apt.newrelic.com/debian/ newrelic non-free'
state: present
become: yes
- name: install newrelic
apt: pkg=newrelic-sysmond state=present update_cache=yes cache_valid_time=3600
become: yes
- name: set newrelic license key
shell: nrsysmond-config --set license_key={{newrelic_license_key}}
become: yes
- name: stop newrelic daemon if already running
shell: /etc/init.d/newrelic-sysmond stop
become: yes
ignore_errors: yes
- name: start newrelic daemon
shell: /etc/init.d/newrelic-sysmond start
become: yes
| Add clarification on newrelic role | Add clarification on newrelic role
| YAML | bsd-3-clause | ellisonbg/jupyterhub-deploy-teaching,ellisonbg/jupyterhub-deploy-teaching,jupyterhub/jupyterhub-deploy-teaching,jupyterhub/jupyterhub-deploy-teaching |
d2128e360fdfef5a494a1482a112a2c4f2d01241 | drupal-console-compose.yml | drupal-console-compose.yml | #
# Drupal Console tooling.
#
drupal-console:
image: drupalconsole/console:master
command: 'true'
volumes:
- $KALABOX_APP_ROOT:/app
- $KALABOX_APP_ROOT/config/drupal-console:/root
working_dir: /app
stdin_open: true
tty: true
| #
# Drupal Console tooling.
#
drupal-console:
image: drupalconsole/console:master
command: 'true'
volumes:
- $KALABOX_APP_ROOT/code:/app
- $KALABOX_APP_ROOT/config/drupal-console:/root
working_dir: /app
stdin_open: true
tty: true
| Fix path to Drupal app | Fix path to Drupal app
| YAML | mit | bmcclure/kalabox-plugin-drupal-console,bmcclure/kalabox-plugin-drupal-console |
45d90cd5e89e54c806e399a2e632d9df29daec71 | packages/fs/fswatch.yaml | packages/fs/fswatch.yaml | homepage: https://github.com/kelemzol/watch
changelog-type: markdown
hash: abc4dda0b761f90a4e5e04b07409ab5bf43db405b882ad55ccbe72a734ff0436
test-bench-deps: {}
maintainer: '-'
synopsis: File System watching tool with cli and slave functionalities.
changelog: ! "# Revision history for fswatch\r\n\r\n## 0.1.0.0 -- YYYY-mm-dd\r\n\r\n*
First version. Released on an unsuspecting world.\r\n"
basic-deps:
haskeline: ==0.7.*
base: ! '>=4.9 && <4.12'
process: ! '>=1.4'
fswatch: -any
optparse-applicative: ! '>=0.13.2'
fsnotify: ! '>=0.2.1'
directory: ! '>=1.3.0'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
author: Zoltan Kelemen
latest: '0.1.0.4'
description-type: haddock
description: File System watching tool with cli and slave lib (with os process) functionalities.
license-name: BSD3
| homepage: https://github.com/kelemzol/watch
changelog-type: markdown
hash: 719ed01e6fcc3498f6d14d59a762217002a6494e099343542aad809606cab2f7
test-bench-deps: {}
maintainer: '-'
synopsis: File System watching tool with cli and slave functionalities.
changelog: ! "# Revision history for fswatch\r\n\r\n## 0.1.0.0 -- YYYY-mm-dd\r\n\r\n*
First version. Released on an unsuspecting world.\r\n"
basic-deps:
haskeline: ==0.7.*
base: ! '>=4.9 && <4.12'
process: ! '>=1.4'
fswatch: -any
optparse-applicative: ! '>=0.13.2'
fsnotify: ! '>=0.3.0.1'
directory: ! '>=1.3.0'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
author: Zoltan Kelemen
latest: '0.1.0.5'
description-type: haddock
description: File System watching tool with cli and slave lib (with os process) functionalities.
license-name: BSD3
| Update from Hackage at 2018-07-09T05:30:21Z | Update from Hackage at 2018-07-09T05:30:21Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a8f71520d29d7be4bd5c5ddb9d9fb5cc19f82a88 | dev-environment.yml | dev-environment.yml | ---
- hosts: all
pre_tasks:
- name: Update apt cache it if hasn't been updated within the last day
apt: update_cache=yes cache_valid_time=86400
sudo: yes
- name: Install Ubuntu packages
apt: pkg={{ item }}
sudo: yes
with_items:
- git
roles:
- vim
- bash-aliases
| ---
- hosts: all
pre_tasks:
- name: Update apt cache it if hasn't been updated within the last day
apt: update_cache=yes cache_valid_time=86400
sudo: yes
- name: Install Ubuntu packages
apt: pkg={{ item }}
sudo: yes
with_items:
- git
- python
- python-dev
- python-pip
- name: Install Python-related packages
pip: name={{ item }}
sudo: yes
with_items:
- pyzmq
- tornado
- ipython
- jsonschema
#- numpy
#- scipy
#- matplotlib
roles:
- vim
- bash-aliases
| Add task to install Python-related packages. | Add task to install Python-related packages.
| YAML | unlicense | maxalbert/ansible-playbooks |
10469232a645d7c8dea5da111e97060f5d5ef5de | packages/bs/bson-generic.yaml | packages/bs/bson-generic.yaml | homepage: ''
changelog-type: ''
hash: 77f9bef13fac3f4fe3aacfcba563ebb9b1ec708853c080048be41253582e0255
test-bench-deps: {}
maintainer: the.palmik+maintainer@gmail.com
synopsis: Generic functionality for BSON
changelog: ''
basic-deps:
base: ==4.6.*
text: ==0.11.*
ghc-prim: ==0.3.*
bson: ==0.2.*
all-versions:
- '0.0.4'
- '0.0.5'
- '0.0.5.1'
- '0.0.6'
- '0.0.7'
- '0.0.8'
author: Petr Pilař
latest: '0.0.8'
description-type: haddock
description: ! 'This package offers easy conversion from and to BSON data type for
most of user defined data types.
The interface may change at will.'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 16b3ccae47367de96ef86e1be4a6c9ea2f862971bd316027fd04d73dcb396f9e
test-bench-deps: {}
maintainer: the.palmik+maintainer@gmail.com
synopsis: Generic functionality for BSON
changelog: ''
basic-deps:
base: ==4.8.*
text: ==1.2.1.*
ghc-prim: ==0.4.*
bson: ==0.3.*
all-versions:
- '0.0.4'
- '0.0.5'
- '0.0.5.1'
- '0.0.6'
- '0.0.7'
- '0.0.8'
- '0.0.8.1'
author: Petr Pilař
latest: '0.0.8.1'
description-type: haddock
description: ! 'This package offers easy conversion from and to BSON data type for
most of user defined data types.
The interface may change at will.'
license-name: BSD3
| Update from Hackage at 2016-01-09T17:15:31+0000 | Update from Hackage at 2016-01-09T17:15:31+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
f722ac1e5af5bfbf4305116d1d6b2f8038dfa28b | packages/ra/random-class.yaml | packages/ra/random-class.yaml | homepage: ''
changelog-type: ''
hash: 0f1b870f661faa8554d966588cca6c47e8268fdb565d57277c675ca1917a9746
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Class of random value generation
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
transformers: -any
primitive: -any
all-versions:
- '0.1.0.0'
- '0.1.1.0'
author: M Farkas-Dyck
latest: '0.1.1.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 3d5bc52eef73f051634961035599bf08a670c9dc5d9b9b4cd370fc8710c9e169
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Class of random value generation
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
util: ! '>=0.1.2 && <0.2'
transformers: -any
primitive: -any
all-versions:
- '0.1.2.0'
author: M Farkas-Dyck
latest: '0.1.2.0'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2017-12-09T03:11:13Z | Update from Hackage at 2017-12-09T03:11:13Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9cc492ffd6ca6be5a62f670df606ed5ea282f23d | packages/re/regex-compat.yaml | packages/re/regex-compat.yaml | homepage: ''
changelog-type: markdown
hash: 2a48a304687f39ce5277d160e5f54c441c7d28ef0426bfc6c0275b9cacad119f
test-bench-deps: {}
maintainer: hvr@gnu.org
synopsis: Replaces/Enhances "Text.Regex"
changelog: |+
See also http://pvp.haskell.org/faq
## 0.95.2.0
- Declare `Text.Regex` module `Trustworthy` under SafeHaskell
basic-deps:
base: ! '>=4.3 && <4.14'
array: ! '>=0.3 && <0.6'
regex-base: ==0.94.*
regex-posix: ==0.96.*
all-versions:
- '0.71'
- 0.71.0.1
- '0.90'
- '0.91'
- '0.92'
- 0.93.1
- 0.95.1
- 0.95.2.0
author: Christopher Kuklewicz
latest: 0.95.2.0
description-type: haddock
description: |-
One module compat layer over <//hackage.haskell.org/package/regex-posix regex-posix> to replace "Text.Regex".
See also <https://wiki.haskell.org/Regular_expressions> for more information.
license-name: BSD-3-Clause
| homepage: ''
changelog-type: markdown
hash: 2eb608f9370c6b6c8ffacad059a6f74099192b73cc74ba4b321ee650e44f53b4
test-bench-deps: {}
maintainer: hvr@gnu.org
synopsis: Replaces/Enhances "Text.Regex"
changelog: |+
See also http://pvp.haskell.org/faq
## 0.95.2.0
- Declare `Text.Regex` module `Trustworthy` under SafeHaskell
basic-deps:
base: '>=4.3 && <4.15'
array: '>=0.3 && <0.6'
regex-base: ==0.94.*
regex-posix: ==0.96.*
all-versions:
- '0.71'
- 0.71.0.1
- '0.90'
- '0.91'
- '0.92'
- 0.93.1
- 0.95.1
- 0.95.2.0
author: Christopher Kuklewicz
latest: 0.95.2.0
description-type: haddock
description: |-
One module compat layer over <//hackage.haskell.org/package/regex-posix regex-posix> to replace "Text.Regex".
See also <https://wiki.haskell.org/Regular_expressions> for more information.
license-name: BSD-3-Clause
| Update from Hackage at 2020-04-09T19:04:39Z | Update from Hackage at 2020-04-09T19:04:39Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f6bbeabae49cdab95ffb75e80df2f7058ebd5df3 | packages/hp/hpg.yaml | packages/hp/hpg.yaml | homepage: https://git.alokat.org/hpg
changelog-type: ''
hash: 95b39553fbfc685e035a705f7110f4185bcdcb42041dc6217d368f90e446d446
test-bench-deps: {}
maintainer: fritjof@alokat.org
synopsis: 'no'
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
random: -any
all-versions:
- '0.2'
author: Fritjof Bornebusch
latest: '0.2'
description-type: haddock
description: ! 'hpg is a free ISC licensed password generator.
It can create passwords based on the following
characters:
* upper case letters
* lower case letters
* special characters
* numbers
The password length is limited to 2^16 due to
performance issues.'
license-name: ISC
| homepage: https://git.alokat.org/hpg
changelog-type: ''
hash: 5950e9c1c6a091ccf8da9547c2743534bf77bcbfabff95ef9254ed022edc88de
test-bench-deps: {}
maintainer: fritjof@alokat.org
synopsis: 'no'
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
random: -any
all-versions:
- '0.2'
- '0.3'
author: Fritjof Bornebusch
latest: '0.3'
description-type: haddock
description: the haskell password generator.
license-name: ISC
| Update from Hackage at 2017-04-28T21:35:57Z | Update from Hackage at 2017-04-28T21:35:57Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a933b0a4111e1b27e4f45049ecb28cca1fbcef6d | packages/ta/tax.yaml | packages/ta/tax.yaml | homepage: https://github.com/frasertweedale/hs-tax
changelog-type: ''
hash: 70712a80e5e066bfe4789b11564ed694b9bd31e9a6aefc328dffe7f87903909c
test-bench-deps: {}
maintainer: frase@frase.id.au
synopsis: Types and combinators for taxes
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
semigroups: ! '>=0.16'
dollaridoos: ! '>=0.1'
all-versions:
- '0.1.0.0'
author: Fraser Tweedale
latest: '0.1.0.0'
description-type: haddock
description: ! 'This library provides combinators for constructing taxes. It is based
on
the <https://hackage.haskell.org/package/dollaridoos dollaridoos> library.'
license-name: AGPL-3
| homepage: https://github.com/frasertweedale/hs-tax
changelog-type: ''
hash: ae713230baec3b5d139543e3c1f23222713584519d0d9db484e1330ed910c2b2
test-bench-deps: {}
maintainer: frase@frase.id.au
synopsis: Types and combinators for taxes
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
semigroups: ! '>=0.16'
dollaridoos: ! '>=0.1'
profunctors: ! '>=5.1'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Fraser Tweedale
latest: '0.2.0.0'
description-type: haddock
description: ! 'This library provides combinators for constructing taxes. It is based
on
the <https://hackage.haskell.org/package/dollaridoos dollaridoos> library.'
license-name: AGPL-3
| Update from Hackage at 2018-08-23T09:25:05Z | Update from Hackage at 2018-08-23T09:25:05Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ce2e75796175c3c36adb531f19783e2e132931e6 | exercises/raindrops/metadata.yml | exercises/raindrops/metadata.yml | ---
blurb: "Write a program that converts a number to a string, the contents of which depend on the number's factors."
source: "A variation on a famous interview question intended to weed out potential candidates."
source_url: "http://jumpstartlab.com"
| ---
blurb: "Convert a number to a string, the contents of which depend on the number's factors."
source: "A variation on a famous interview question intended to weed out potential candidates."
source_url: "http://jumpstartlab.com"
| Remove "write a program" from raindrops exercise | Remove "write a program" from raindrops exercise
| YAML | mit | petertseng/x-common,ErikSchierboom/x-common,rpottsoh/x-common,jmluy/x-common,kgengler/x-common,jmluy/x-common,jmluy/x-common,rpottsoh/x-common,Vankog/problem-specifications,exercism/x-common,ErikSchierboom/x-common,Vankog/problem-specifications,exercism/x-common,kgengler/x-common,petertseng/x-common |
38848e6176b969415a2ee0217d81f10794eaa0ff | data/sites/hmrc.yml | data/sites/hmrc.yml | ---
site: hmrc
whitehall_slug: hm-revenue-customs
host: www.hmrc.gov.uk
redirection_date: 28th February 2013
tna_timestamp: 20121219134751
title: HM Revenue & Customs
furl: www.gov.uk/hmrc
homepage: https://www.gov.uk/government/organisations/hm-revenue-customs
aliases:
- hmrc.gov.uk
options: --query-string tickdpmt:dates
| ---
site: hmrc
whitehall_slug: hm-revenue-customs
host: www.hmrc.gov.uk
redirection_date: 28th February 2013
tna_timestamp: 20140109143644
title: HM Revenue & Customs
furl: www.gov.uk/hmrc
homepage: https://www.gov.uk/government/organisations/hm-revenue-customs
aliases:
- hmrc.gov.uk
options: --query-string tickdpmt:dates
| Update HMRC TNA timestamp to last-known-good | Update HMRC TNA timestamp to last-known-good
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
ab36089f5a2598effa5364b015c6ca0e05762bcc | recipes/cloudpickle/meta.yaml | recipes/cloudpickle/meta.yaml | {% set version = "0.2.1" %}
package:
name: cloudpickle
version: {{ version }}
source:
fn: cloudpickle-{{ version }}.tar.gz
url: https://pypi.io/packages/source/c/cloudpickle/cloudpickle-{{ version }}.tar.gz
md5: d6c92acdfa253a50b2ef86a1b6443e39
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- cloudpickle
about:
home: https://github.com/cloudpipe/cloudpickle
license: BSD 3-Clause
summary: Extended pickling support for Python objects
| {% set version = "0.2.2" %}
{% set hash = "e1b0a9b3ed8cc941439a74e4dcaee408" %}
package:
name: cloudpickle
version: {{ version }}
source:
fn: cloudpickle-{{ version }}.tar.gz
url: https://pypi.io/packages/source/c/cloudpickle/cloudpickle-{{ version }}.tar.gz
md5: {{ hash }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- cloudpickle
about:
home: https://github.com/cloudpipe/cloudpickle
license: BSD 3-Clause
summary: Extended pickling support for Python objects
| Update cloudpickle recipe to version 0.2.2 | Update cloudpickle recipe to version 0.2.2
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
ad0cdf5e6fbc6213a8a0f7cf2bc34dabfc9512d6 | recipes/graphframes/meta.yaml | recipes/graphframes/meta.yaml | {% set name = "graphframes" %}
{% set version = "0.6" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 869aff3f4bf76a609a6bf4399c9c319c9a0280badd676750a49400e940f1adfa
patches:
- belief_propagation.patch
build:
number: 0
noarch: python
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- pip
- python
- pyspark
run:
- nose
- numpy
- python
- pyspark
test:
imports:
- graphframes
- graphframes.examples
commands:
- pip check
requires:
- pip
about:
home: https://github.com/graphframes/graphframes
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: "GraphFrames: DataFrame-based Graphs"
doc_url: https://pypi.org/project/graphframes/#description
dev_url: https://github.com/graphframes/graphframes
extra:
recipe-maintainers:
- JennaLipscomb
- oblute
| {% set name = "graphframes" %}
{% set version = "0.6" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 869aff3f4bf76a609a6bf4399c9c319c9a0280badd676750a49400e940f1adfa
patches:
- belief_propagation.patch
build:
number: 0
noarch: python
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- pip
- python
- pyspark
run:
- nose
- numpy
- python
- pyspark
test:
imports:
- graphframes
- graphframes.examples
about:
home: https://github.com/graphframes/graphframes
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: "GraphFrames: DataFrame-based Graphs"
doc_url: https://pypi.org/project/graphframes/#description
dev_url: https://github.com/graphframes/graphframes
extra:
recipe-maintainers:
- JennaLipscomb
- oblute
| Remove the pip check and requires pip lines | Remove the pip check and requires pip lines
| YAML | bsd-3-clause | ocefpaf/staged-recipes,igortg/staged-recipes,goanpeca/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,patricksnape/staged-recipes,johanneskoester/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,SylvainCorlay/staged-recipes,johanneskoester/staged-recipes,ReimarBauer/staged-recipes,SylvainCorlay/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,kwilcox/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes |
379d1ae73454dd702ff95be40079e4c98accad7e | recipes/lmfit-0.9.0/meta.yaml | recipes/lmfit-0.9.0/meta.yaml | package:
name: lmfit
version: 0.9.0
source:
git_url: https://github.com/lmfit/lmfit-py.git
git_tag : 0.9.0
build:
number: 0
requirements:
build:
- python
- setuptools
- numpy
- scipy
run:
- python
- numpy
- scipy
test:
imports:
- lmfit
about:
home: http://lmfit.github.io/lmfit-py/
license: BSD
| package:
name: lmfit
version: 0.9.0
source:
git_url: https://github.com/lmfit/lmfit-py.git
git_tag : 0.9.0
build:
number: 0
requirements:
build:
- python
- numpy
- scipy
run:
- python
- numpy
- scipy
- ipython
- ipywidgets
- pandas
- matplotlib
test:
imports:
- lmfit
about:
home: http://lmfit.github.io/lmfit-py/
license: BSD
| Add optional dependencies to lmfit 0.9.0 | Add optional dependencies to lmfit 0.9.0
| YAML | bsd-3-clause | NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes |
c7015845bca76563e339a257a6f9fbb571bdca90 | json_serializable/pubspec.yaml | json_serializable/pubspec.yaml | name: json_serializable
version: 2.1.0-dev
author: Dart Team <misc@dartlang.org>
description: >-
Automatically generate code for converting to and from JSON by annotating
Dart classes.
homepage: https://github.com/dart-lang/json_serializable
environment:
sdk: '>=2.1.1 <3.0.0'
dependencies:
analyzer: '>=0.33.3 <0.36.0'
build: '>=0.12.6 <2.0.0'
build_config: '>=0.2.6 <0.4.0'
# Use a tight version constraint to ensure that a constraint on
# `json_annotation` properly constrains all features it provides.
json_annotation: '>=2.1.0 <2.2.0'
meta: ^1.1.0
path: ^1.3.2
source_gen: ^0.9.0
dev_dependencies:
build_runner: ^1.0.0
build_verify: ^1.1.0
build_web_compilers: ^1.0.0
collection: ^1.14.0
dart_style: ^1.2.0
logging: ^0.11.3+1
pub_semver: ^1.4.0
source_gen_test: ^0.1.0
test: ^1.6.0
yaml: ^2.1.13
| name: json_serializable
version: 2.1.0
author: Dart Team <misc@dartlang.org>
description: >-
Automatically generate code for converting to and from JSON by annotating
Dart classes.
homepage: https://github.com/dart-lang/json_serializable
environment:
sdk: '>=2.1.1 <3.0.0'
dependencies:
analyzer: '>=0.33.3 <0.36.0'
build: '>=0.12.6 <2.0.0'
build_config: '>=0.2.6 <0.4.0'
# Use a tight version constraint to ensure that a constraint on
# `json_annotation` properly constrains all features it provides.
json_annotation: '>=2.1.0 <2.2.0'
meta: ^1.1.0
path: ^1.3.2
source_gen: ^0.9.0
dev_dependencies:
build_runner: ^1.0.0
build_verify: ^1.1.0
build_web_compilers: ^1.0.0
collection: ^1.14.0
dart_style: ^1.2.0
logging: ^0.11.3+1
pub_semver: ^1.4.0
source_gen_test: ^0.1.0
test: ^1.6.0
yaml: ^2.1.13
| Prepare to release json_serializable v2.1.0 | Prepare to release json_serializable v2.1.0
| YAML | bsd-3-clause | google/json_serializable.dart,google/json_serializable.dart |
51b33b0107757ab12bca5daa0ab4db5cbece4700 | .doc_gen/metadata/cognito-identity_metadata.yaml | .doc_gen/metadata/cognito-identity_metadata.yaml | # zexi 0.4.0
cognito-identity_ListIdentityPools:
title: List &COGID; pools
title_abbrev: List identity pools
synopsis: get a list of &COGID; pools
category:
languages:
Swift:
versions:
- sdk_version: 1
github: swift/example_code/cognito-identity/FindOrCreateIdentityPool
sdkguide: sdk-for-swift/latest/developer-guide/getting-started.html
excerpts:
- description: Find the ID of an identity pool given its name.
snippet_tags:
- cognitoidentity.swift.get-pool-id
- description: Get the ID of an existing identity pool or create it if it doesn't already exist.
snippet_tags:
- cognitoidentity.swift.get-or-create-pool-id
services:
cognito-identity: {createIdentityPool, listIdentityPools}
cognito-identity_CreateIdentityPool:
title: Create a new &COGID; with a specified name
title_abbrev: Create an identity pool
synopsis: find the &COGID; with the given name, creating it if it's not found.
category:
languages:
Swift:
versions:
- sdk_version: 1
github: swift/example_code/cognito-identity/FindOrCreateIdentityPool
sdkguide: sdk-for-swift/latest/developer-guide/getting-started.html
excerpts:
- description: Create a new identity pool.
snippet_tags:
- cognitoidentity.swift.create-identity-pool
services:
cognito-identity: {createIdentityPool, listIdentityPools}
| # zexi 0.4.0
cognito-identity_ListIdentityPools:
title: List &COGID; pools
title_abbrev: List identity pools
synopsis: get a list of &COGID; pools.
category:
languages:
Swift:
versions:
- sdk_version: 1
github: swift/example_code/cognito-identity/FindOrCreateIdentityPool
sdkguide: sdk-for-swift/latest/developer-guide/getting-started.html
excerpts:
- description: Find the ID of an identity pool given its name.
snippet_tags:
- cognitoidentity.swift.get-pool-id
- description: Get the ID of an existing identity pool or create it if it doesn't already exist.
snippet_tags:
- cognitoidentity.swift.get-or-create-pool-id
services:
cognito-identity: {createIdentityPool, listIdentityPools}
cognito-identity_CreateIdentityPool:
title: Create a new &COGID; with a specified name
title_abbrev: Create an identity pool
synopsis: find the &COGID; with the given name, creating it if it's not found.
category:
languages:
Swift:
versions:
- sdk_version: 1
github: swift/example_code/cognito-identity/FindOrCreateIdentityPool
sdkguide: sdk-for-swift/latest/developer-guide/getting-started.html
excerpts:
- description: Create a new identity pool.
snippet_tags:
- cognitoidentity.swift.create-identity-pool
services:
cognito-identity: {createIdentityPool, listIdentityPools}
| Add missing punctuation to Swift metadata | Add missing punctuation to Swift metadata
| YAML | apache-2.0 | awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples,awsdocs/aws-doc-sdk-examples |
ca7f8c743d293c4016f1aaa25205640d06f2a8d6 | recipes/bedops/meta.yaml | recipes/bedops/meta.yaml | build:
number: 0
about:
home: http://bedops.readthedocs.io
license: GPLv2
summary: High-performance genomic feature operations.
package:
name: bedops
version: 2.4.24
source:
url: https://github.com/bedops/bedops/archive/v2.4.24.tar.gz
fn: bedops-2.4.24.tar.gz
sha256: 071d6c418271e7e5d33f540d0091000c02d799d64ff57c79b87d92d64c7d8609
requirements:
build:
- gcc
run:
- libgcc
test:
commands:
- bedops --help
- gtf2bed --help
| build:
number: 0
about:
home: http://bedops.readthedocs.io
license: GPLv2
summary: High-performance genomic feature operations.
package:
name: bedops
version: 2.4.25
source:
url: https://github.com/bedops/bedops/archive/v2.4.25.tar.gz
fn: bedops-2.4.25.tar.gz
sha256: e7056bb6d4b92162121527a3444d546a1bad8345e64a49e089bf4ec06476dd09
requirements:
build:
- gcc
run:
- libgcc
test:
commands:
- bedops --help
- gtf2bed --help
| Update recipe to BEDOPS v2.4.25 | Update recipe to BEDOPS v2.4.25
| YAML | mit | martin-mann/bioconda-recipes,bebatut/bioconda-recipes,peterjc/bioconda-recipes,dmaticzka/bioconda-recipes,matthdsm/bioconda-recipes,colinbrislawn/bioconda-recipes,colinbrislawn/bioconda-recipes,keuv-grvl/bioconda-recipes,rob-p/bioconda-recipes,rvalieris/bioconda-recipes,bioconda/bioconda-recipes,matthdsm/bioconda-recipes,rob-p/bioconda-recipes,blankenberg/bioconda-recipes,dkoppstein/recipes,BIMSBbioinfo/bioconda-recipes,matthdsm/bioconda-recipes,Luobiny/bioconda-recipes,zachcp/bioconda-recipes,acaprez/recipes,npavlovikj/bioconda-recipes,jasper1918/bioconda-recipes,zachcp/bioconda-recipes,chapmanb/bioconda-recipes,oena/bioconda-recipes,bioconda/recipes,Luobiny/bioconda-recipes,Luobiny/bioconda-recipes,CGATOxford/bioconda-recipes,JenCabral/bioconda-recipes,chapmanb/bioconda-recipes,daler/bioconda-recipes,dkoppstein/recipes,rob-p/bioconda-recipes,chapmanb/bioconda-recipes,ostrokach/bioconda-recipes,guowei-he/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,guowei-he/bioconda-recipes,zachcp/bioconda-recipes,roryk/recipes,rvalieris/bioconda-recipes,xguse/bioconda-recipes,acaprez/recipes,ostrokach/bioconda-recipes,saketkc/bioconda-recipes,cokelaer/bioconda-recipes,rob-p/bioconda-recipes,matthdsm/bioconda-recipes,ivirshup/bioconda-recipes,bioconda/bioconda-recipes,bebatut/bioconda-recipes,peterjc/bioconda-recipes,keuv-grvl/bioconda-recipes,mdehollander/bioconda-recipes,jfallmann/bioconda-recipes,gvlproject/bioconda-recipes,ivirshup/bioconda-recipes,phac-nml/bioconda-recipes,npavlovikj/bioconda-recipes,HassanAmr/bioconda-recipes,martin-mann/bioconda-recipes,abims-sbr/bioconda-recipes,jfallmann/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,chapmanb/bioconda-recipes,martin-mann/bioconda-recipes,joachimwolff/bioconda-recipes,keuv-grvl/bioconda-recipes,daler/bioconda-recipes,ostrokach/bioconda-recipes,gvlproject/bioconda-recipes,bebatut/bioconda-recipes,JenCabral/bioconda-recipes,bebatut/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,HassanAmr/bioconda-recipes,peterjc/bioconda-recipes,rvalieris/bioconda-recipes,acaprez/recipes,oena/bioconda-recipes,phac-nml/bioconda-recipes,rvalieris/bioconda-recipes,jasper1918/bioconda-recipes,oena/bioconda-recipes,colinbrislawn/bioconda-recipes,JenCabral/bioconda-recipes,ostrokach/bioconda-recipes,HassanAmr/bioconda-recipes,omicsnut/bioconda-recipes,mdehollander/bioconda-recipes,gregvonkuster/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,gvlproject/bioconda-recipes,JenCabral/bioconda-recipes,chapmanb/bioconda-recipes,joachimwolff/bioconda-recipes,mdehollander/bioconda-recipes,oena/bioconda-recipes,oena/bioconda-recipes,colinbrislawn/bioconda-recipes,hardingnj/bioconda-recipes,colinbrislawn/bioconda-recipes,peterjc/bioconda-recipes,daler/bioconda-recipes,blankenberg/bioconda-recipes,xguse/bioconda-recipes,jasper1918/bioconda-recipes,mdehollander/bioconda-recipes,HassanAmr/bioconda-recipes,bow/bioconda-recipes,guowei-he/bioconda-recipes,mcornwell1957/bioconda-recipes,ivirshup/bioconda-recipes,lpantano/recipes,ostrokach/bioconda-recipes,saketkc/bioconda-recipes,daler/bioconda-recipes,hardingnj/bioconda-recipes,JenCabral/bioconda-recipes,abims-sbr/bioconda-recipes,martin-mann/bioconda-recipes,rvalieris/bioconda-recipes,bow/bioconda-recipes,omicsnut/bioconda-recipes,abims-sbr/bioconda-recipes,mcornwell1957/bioconda-recipes,joachimwolff/bioconda-recipes,gregvonkuster/bioconda-recipes,roryk/recipes,shenwei356/bioconda-recipes,phac-nml/bioconda-recipes,jasper1918/bioconda-recipes,jasper1918/bioconda-recipes,dkoppstein/recipes,ivirshup/bioconda-recipes,npavlovikj/bioconda-recipes,omicsnut/bioconda-recipes,npavlovikj/bioconda-recipes,CGATOxford/bioconda-recipes,mdehollander/bioconda-recipes,keuv-grvl/bioconda-recipes,zachcp/bioconda-recipes,gregvonkuster/bioconda-recipes,lpantano/recipes,daler/bioconda-recipes,ostrokach/bioconda-recipes,martin-mann/bioconda-recipes,shenwei356/bioconda-recipes,xguse/bioconda-recipes,peterjc/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,shenwei356/bioconda-recipes,blankenberg/bioconda-recipes,Luobiny/bioconda-recipes,HassanAmr/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,roryk/recipes,hardingnj/bioconda-recipes,dmaticzka/bioconda-recipes,bioconda/recipes,hardingnj/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,matthdsm/bioconda-recipes,joachimwolff/bioconda-recipes,CGATOxford/bioconda-recipes,saketkc/bioconda-recipes,mcornwell1957/bioconda-recipes,dmaticzka/bioconda-recipes,abims-sbr/bioconda-recipes,dmaticzka/bioconda-recipes,cokelaer/bioconda-recipes,abims-sbr/bioconda-recipes,omicsnut/bioconda-recipes,saketkc/bioconda-recipes,joachimwolff/bioconda-recipes,bow/bioconda-recipes,CGATOxford/bioconda-recipes,mcornwell1957/bioconda-recipes,jfallmann/bioconda-recipes,mcornwell1957/bioconda-recipes,ivirshup/bioconda-recipes,jfallmann/bioconda-recipes,blankenberg/bioconda-recipes,bioconda/bioconda-recipes,rvalieris/bioconda-recipes,lpantano/recipes,gvlproject/bioconda-recipes,saketkc/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,hardingnj/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,gregvonkuster/bioconda-recipes,bow/bioconda-recipes,shenwei356/bioconda-recipes,daler/bioconda-recipes,acaprez/recipes,BIMSBbioinfo/bioconda-recipes,bioconda/bioconda-recipes,phac-nml/bioconda-recipes,joachimwolff/bioconda-recipes,bioconda/recipes,phac-nml/bioconda-recipes,peterjc/bioconda-recipes,mdehollander/bioconda-recipes,dmaticzka/bioconda-recipes,JenCabral/bioconda-recipes,xguse/bioconda-recipes,abims-sbr/bioconda-recipes,HassanAmr/bioconda-recipes,CGATOxford/bioconda-recipes,gvlproject/bioconda-recipes,omicsnut/bioconda-recipes,dmaticzka/bioconda-recipes,keuv-grvl/bioconda-recipes,guowei-he/bioconda-recipes,CGATOxford/bioconda-recipes,matthdsm/bioconda-recipes,guowei-he/bioconda-recipes,colinbrislawn/bioconda-recipes,cokelaer/bioconda-recipes,cokelaer/bioconda-recipes,gvlproject/bioconda-recipes,ivirshup/bioconda-recipes,saketkc/bioconda-recipes,bow/bioconda-recipes,xguse/bioconda-recipes,lpantano/recipes,bow/bioconda-recipes,keuv-grvl/bioconda-recipes |
0c7f985a53c6263e3955dc833a6d5bfdd6d01295 | recipes/racket/meta.yaml | recipes/racket/meta.yaml | {% set version = "6.12" %}
package:
name: racket
version: {{version}}
source:
fn: racket-{{ version }}.tar.gz
url: https://github.com/racket/racket/archive/v{{ version }}.tar.gz
sha256: c98f8d8f8dd62abdef9906adf7b1ce60b37c852b4111700c06bf0c2d290dd588
build:
number: 0
skip: true # [win]
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
test:
commands:
- racket -e "\"hello world\""
about:
home: http://racket-lang.org/
license: LGPL 3
license_file: racket/src/COPYING_LESSER.txt
summary: The Racket Programming Language
extra:
recipe-maintainers:
- insertinterestingnamehere
| {% set version = "6.12" %}
package:
name: racket
version: {{version}}
source:
fn: racket-{{ version }}.tar.gz
url: https://github.com/racket/racket/archive/v{{ version }}.tar.gz
sha256: c98f8d8f8dd62abdef9906adf7b1ce60b37c852b4111700c06bf0c2d290dd588
build:
number: 0
skip: true # [win]
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
test:
commands:
- racket -e "\"hello world\""
# Run tests.
# Adapted from https://github.com/racket/racket/blob/master/.travis.yml
- raco pkg install --auto racket-test db-test unstable-flonum-lib net-test
- raco test -l tests/racket/test
- racket -l tests/racket/contract/all
- raco test -l tests/json/json
- raco test -l tests/file/main
- raco test -l tests/net/head
- raco test -l tests/net/uri-codec
- raco test -l tests/net/url
- raco test -l tests/net/url-port
- raco test -l tests/net/encoders
- raco test -l tests/openssl/basic
- raco test -l tests/openssl/https
- raco test -l tests/match/main
- raco test -l tests/zo-path
- raco test -l tests/xml/test
- raco test -l tests/db/all-tests
- raco test -c tests/stxparse
about:
home: http://racket-lang.org/
license: LGPL 3
license_file: racket/src/COPYING_LESSER.txt
summary: The Racket Programming Language
extra:
recipe-maintainers:
- insertinterestingnamehere
| Expand tests run to confirm package is working. | Expand tests run to confirm package is working.
| YAML | bsd-3-clause | ceholden/staged-recipes,jjhelmus/staged-recipes,barkls/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,scopatz/staged-recipes,mcs07/staged-recipes,synapticarbors/staged-recipes,igortg/staged-recipes,ocefpaf/staged-recipes,sodre/staged-recipes,ReimarBauer/staged-recipes,hadim/staged-recipes,mcs07/staged-recipes,jakirkham/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,barkls/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,ocefpaf/staged-recipes,rmcgibbo/staged-recipes,goanpeca/staged-recipes,cpaulik/staged-recipes,petrushy/staged-recipes,isuruf/staged-recipes,mariusvniekerk/staged-recipes,shadowwalkersb/staged-recipes,SylvainCorlay/staged-recipes,rmcgibbo/staged-recipes,birdsarah/staged-recipes,chrisburr/staged-recipes,pmlandwehr/staged-recipes,stuertz/staged-recipes,patricksnape/staged-recipes,dschreij/staged-recipes,shadowwalkersb/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,asmeurer/staged-recipes,pmlandwehr/staged-recipes,dschreij/staged-recipes,petrushy/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes,Juanlu001/staged-recipes,igortg/staged-recipes,isuruf/staged-recipes,rvalieris/staged-recipes,jakirkham/staged-recipes,sodre/staged-recipes,basnijholt/staged-recipes,jochym/staged-recipes,jochym/staged-recipes,goanpeca/staged-recipes,basnijholt/staged-recipes,asmeurer/staged-recipes,ReimarBauer/staged-recipes,chrisburr/staged-recipes,birdsarah/staged-recipes,jjhelmus/staged-recipes,sodre/staged-recipes,rvalieris/staged-recipes,cpaulik/staged-recipes,synapticarbors/staged-recipes,Juanlu001/staged-recipes,ceholden/staged-recipes |
eee0f7795d1da18931b27b15abcf17287b02b3af | _data/messages.yaml | _data/messages.yaml | # This will appear on the site in the order as it is
# listed here, so add new items on top
- content: Everything up and running
status: green
timestamp: 2015-04-09 12:00 +0200
| # This will appear on the site in the order as it is
# listed here, so add new items on top
- content: This is a test of rss feed hooks
status: green
timestamp: 2015-04-09 17:40 +0200
- content: Everything up and running
status: green
timestamp: 2015-04-09 12:00 +0200
| Add rss feed test message | Add rss feed test message
| YAML | mit | frigg/status.frigg.io |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.