commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
73ffa34491aeefa4ac1c30b3237267d09b2ac416 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: fpco/stack-build:lts-11.11
steps:
- checkout
- restore_cache:
keys:
- v1-.stack-{{ checksum "stack.yaml" }}-{{ checksum "licensor.cabal" }}
- v1-.stack-{{ checksum "stack.yaml" }}
- v1-.stack-
- run:... | version: 2
jobs:
build:
docker:
- image: fpco/stack-build:lts-11.11
steps:
- checkout
- restore_cache:
keys:
- v1-.stack-{{ checksum "stack.yaml" }}-{{ checksum "package.yaml" }}
- v1-.stack-{{ checksum "stack.yaml" }}
- v1-.stack-
- run:
... | Use hpack in cache key | Use hpack in cache key
| YAML | mit | jpvillaisaza/licensor |
0a2a6dbced2a2bfd15241d12ffdaf340ff7a1594 | .circleci/config.yml | .circleci/config.yml | version: 2.1
defaults: &defaults
working_directory: ~/repo
orbs:
node: circleci/node@2.0.3
jobs:
test:
docker:
- image: "cimg/base:stable"
steps:
- checkout
- node/install:
install-yarn: true
node-version: latest
- run: node --version
- run: yarn test
... | version: 2.1
defaults: &defaults
working_directory: ~/repo
orbs:
node: circleci/node@2.0.3
jobs:
test:
<<: *defaults
executor:
name: node/default
tag: "13"
steps:
- checkout
- node/install-packages:
pkg-manager: yarn
cache-key: yarn.lock
- run: yarn... | Use node installed with orb | Use node installed with orb
| YAML | mit | mdedys/react-text-trimmer |
13e8b0c101b2a6cf420e065cbcdcd85acf5c4ed0 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
ios:
macos:
xcode: 13.0.0
steps:
- checkout
- run:
name: Install React Native dependencies
command: |
brew update
brew install watchman cocoapods || true
brew link --overwrite cocoapods || true
- run:
... | version: 2
jobs:
ios:
macos:
xcode: 13.0.0
steps:
- checkout
- run:
name: Install React Native dependencies
command: |
brew update
brew install watchman cocoapods yarn || true
brew link --overwrite cocoapods || true
- run:
... | Use yarn to install cavy-tester dependencies | Use yarn to install cavy-tester dependencies
| YAML | mit | pixielabs/cavy |
ac5b019c3c86d0ea00cb2e45d44d0b2927dd702f | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: ubuntu:cosmic
steps:
- run:
name: Installing
command: 'apt-get update && apt-get install -y git gcc g++ cmake libboost-all-dev bison qt5-default libsdl2-dev ruby'
- checkout
- run:
name: Submodules
comma... | version: 2
jobs:
build:
docker:
- image: cimg/base:2020.01
steps:
- run:
name: Installing
command: 'sudo apt-get update && sudo apt-get install -y git gcc g++ cmake libboost-all-dev bison qt5-default libsdl1.2-dev libsdl2-dev ruby'
- checkout
- run:
name... | Fix circleci build: use current image, use sudo, add libsdl1.2 | Fix circleci build: use current image, use sudo, add libsdl1.2
| YAML | mit | autc04/executor,autc04/executor,autc04/executor,autc04/executor,autc04/executor,autc04/executor |
d7e2805e502c1e8d5d3b61852fdcd4c6ce1596f3 | images/k8s-cloud-builder/variants.yaml | images/k8s-cloud-builder/variants.yaml | variants:
canary:
CONFIG: 'canary'
KUBE_CROSS_VERSION: 'v1.15.0-rc.1-canary-1'
SKOPEO_VERSION: 'v0.2.0'
cross1.15:
CONFIG: 'cross1.15'
KUBE_CROSS_VERSION: 'v1.15.0-rc.1-1'
SKOPEO_VERSION: 'v0.2.0'
cross1.14:
CONFIG: 'cross1.14'
KUBE_CROSS_VERSION: 'v1.14.6-1'
SKOPEO_VERSION: 'v... | variants:
canary:
CONFIG: 'canary'
KUBE_CROSS_VERSION: 'v1.15.0-rc.1-canary-1'
SKOPEO_VERSION: 'v0.2.0'
cross1.15:
CONFIG: 'cross1.15'
KUBE_CROSS_VERSION: 'v1.15.0-rc.1-1'
SKOPEO_VERSION: 'v0.2.0'
cross1.14:
CONFIG: 'cross1.14'
KUBE_CROSS_VERSION: 'v1.14.7-1'
SKOPEO_VERSION: 'v... | Build on kube-cross:v1.14.7-1 and v1.13.15-1 | k8s-cloud-builder: Build on kube-cross:v1.14.7-1 and v1.13.15-1
Signed-off-by: Stephen Augustus <f96984fef9637085f0559f1484dfd4e99545cd6e@vmware.com>
| YAML | apache-2.0 | kubernetes/release,kubernetes/release |
efd81deb76b31f60ed2694f71bbfe526a08b3875 | botconfig.example.yaml | botconfig.example.yaml | debug: true
debug_console: false
logging:
level: DEBUG
brainstate_location: brainstate.json
plugin_dir: plugins/
plugins:
- shipit
- brew
- deletemessages
- ping
- thequestion
- notebook
plugin_config:
notebook:
file: notebook.docx
append: false
api_token: 'foobar'
| debug: true
debug_console: false
logging:
level: DEBUG
brainstate_location: brainstate.json
plugin_dir: plugins/
plugins:
- shipit
- brew
- deletemessages
- ping
- notebook
plugin_config:
notebook:
file: notebook.docx
append: false
api_token: 'foobar'
| Remove some plugins from the default config | Remove some plugins from the default config
| YAML | bsd-3-clause | ratchetrobotics/espresso |
80fef4a2a0f4ff5c674e2534ef4ae3cef34a3344 | packages/re/resin.yaml | packages/re/resin.yaml | homepage: http://github.com/cartazio/resin
changelog-type: markdown
hash: de8729d82a131d03918bd4ee9b1068a4b63354d3914c2ae9b5748edd10808c0a
test-bench-deps: {}
maintainer: carter at wellposed dot com
synopsis: High performance variable binders
changelog: ! '
# Versions 0.1.0.0 - 0.1.0.2
initial release(s) with onl... | homepage: http://github.com/cartazio/resin
changelog-type: markdown
hash: 830000261b54d0ed9c2a96cb565d8e91c51e07cf8eb41305e56a39264b4de295
test-bench-deps: {}
maintainer: carter at wellposed dot com
synopsis: High performance variable binders
changelog: ! '
# Versions 0.1.0.0 - 0.1.0.2
initial release(s) with onl... | Update from Hackage at 2017-07-24T20:04:38Z | Update from Hackage at 2017-07-24T20:04:38Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d50f6956c77a9372dd2cf12cbfd44581f7670249 | config/application.yml | config/application.yml | defaults: &defaults
token_expiration_time: <%= 1.month %>
max_edit_and_delete_time: <%= 15 * 60 %> # 15 minutes
gravatar_style: 'retro'
gravatar_size: '200'
slack_acccess_token_endpoint: 'https://slack.com/api/oauth.v2.access'
slack_post_message_endpoint: 'https://slack.com/api/chat.postMessage'
slack_con... | defaults: &defaults
token_expiration_time: <%= 1.month %>
max_edit_and_delete_time: <%= 15 * 60 %> # 15 minutes
gravatar_style: 'retro'
gravatar_size: '200'
slack_acccess_token_endpoint: 'https://slack.com/api/oauth.v2.access'
slack_post_message_endpoint: 'https://slack.com/api/chat.postMessage'
slack_con... | Add settings for staging and production | Add settings for staging and production
| YAML | mit | kabisa/kudo-o-matic,kabisa/kudo-o-matic,kabisa/kudo-o-matic |
53838531bea6d106c6515b1aeec41fd86f0e23af | .pre-commit-config.yaml | .pre-commit-config.yaml | ---
default_language_version:
# force all unspecified python hooks to run python3
python: python3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.1.0
hooks:
- id: trailing-whitespace
# Replaces or checks mixed line ending
- id: mixed-line-ending
args: ['--fi... | # We from the Oslo project decided to pin repos based on the
# commit hash instead of the version tag to prevend arbitrary
# code from running in developer's machines. To update to a
# newer version, run `pre-commit autoupdate` and then replace
# the newer versions with their commit hash.
default_language_version:
... | Move flake8 as a pre-commit local target. | Move flake8 as a pre-commit local target.
The goal here is to avoid conflicts between flake8 and hacking version each
2 days.
Inspired from nova's approach[1].
The flake8 version to install will be determined by hacking and
requirements[2] will stay aligned instead of relying on different versions.
[1] https://open... | YAML | apache-2.0 | openstack/stevedore |
8eb14201d9ae725dd27bc78fac57454ad19de43d | jruby-dev/tasks/main.yml | jruby-dev/tasks/main.yml | ---
- name: Check if JRuby is installed
command: stat /opt/jruby-{{ jruby_version }}/bin/jruby
register: jruby_installed
ignore_errors: true
- name: Download JRuby
get_url: url=http://jruby.org.s3.amazonaws.com/downloads/{{ jruby_version }}/jruby-bin-{{ jruby_version }}.tar.gz
dest=/tmp/jruby-{{ jru... | ---
- name: Check if JRuby is installed
command: stat /opt/jruby-{{ jruby_version }}/bin/jruby
register: jruby_installed
ignore_errors: true
- name: Download JRuby
get_url: url=http://s3.amazonaws.com/jruby.org/downloads/{{ jruby_version }}/jruby-bin-{{ jruby_version }}.tar.gz
dest=/tmp/jruby-{{ jru... | Fix URL for JRuby archives. | Fix URL for JRuby archives.
| YAML | mit | tomku/ansible-roles |
5506eac4378112b60481c830ac3087e9cc511f5e | packages/po/pontarius-xmpp-extras.yaml | packages/po/pontarius-xmpp-extras.yaml | homepage: ''
changelog-type: ''
hash: 936311fdaad63ca94f485655f3bf40d99c547eef815bebf261809b3069162a50
test-bench-deps: {}
maintainer: zl29ah@gmail.com
synopsis: XEPs implementation on top of pontarius-xmpp
changelog: ''
basic-deps:
base: '>=4.9 && <4.15'
time: '>=1.8 && <1.9'
text: '>=1.2 && <1.3'
data-default... | homepage: ''
changelog-type: ''
hash: a4739697ea27f32f2bab495c8744d54a47611981856ec29376a775ffa82fe831
test-bench-deps: {}
maintainer: zl29ah@gmail.com
synopsis: XEPs implementation on top of pontarius-xmpp
changelog: ''
basic-deps:
base: '>=4.9 && <4.15'
time: '>=1.8 && <1.11'
text: '>=1.2 && <1.3'
data-defaul... | Update from Hackage at 2020-05-30T05:53:38Z | Update from Hackage at 2020-05-30T05:53:38Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a78c64473e169c67996a9255cf11429b6b54b856 | metadata/fr.bux.rollingdashboard.yml | metadata/fr.bux.rollingdashboard.yml | Categories:
- Games
License: MIT
AuthorName: Bastien Sevajol
AuthorEmail: contact@bux.fr
AuthorWebSite: https://bux.fr
WebSite: https://buxx.github.io/rolling/pages/
SourceCode: https://gitlab.com/sevajol-bastien/rolldash
IssueTracker: https://gitlab.com/sevajol-bastien/rolldash/-/issues
Donate: https://bux.fr
AutoN... | Categories:
- Games
License: MIT
AuthorName: Bastien Sevajol
AuthorEmail: contact@bux.fr
AuthorWebSite: https://bux.fr
WebSite: https://buxx.github.io/rolling/pages/
SourceCode: https://gitlab.com/sevajol-bastien/rolldash
IssueTracker: https://gitlab.com/sevajol-bastien/rolldash/-/issues
Donate: https://bux.fr
AutoN... | Update CurrentVersion of Tableau de bord Rolling to 2.0 (2) | Update CurrentVersion of Tableau de bord Rolling to 2.0 (2)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
8d2413f130c715caaf74ca8a4a84b221aa60e2f3 | packages/ya/yamlparse-applicative.yaml | packages/ya/yamlparse-applicative.yaml | homepage: https://github.com/NorfairKing/yamlparse-applicative#readme
changelog-type: ''
hash: ae3af05f9737ab635b66b699d31539a0d1156424264e312070717e203ed139a4
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: Declaritive configuration parsing with free docs
changelog: ''
basic-deps:
bytestring: -any
path: -a... | homepage: https://github.com/NorfairKing/yamlparse-applicative#readme
changelog-type: ''
hash: 4ab42044eaa9b99971b0101d888f0b8e7f2a819a3b0a20a6a3fc42018ac42ff8
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: Declaritive configuration parsing with free docs
changelog: ''
basic-deps:
bytestring: -any
path: -a... | Update from Hackage at 2021-10-20T15:34:49Z | Update from Hackage at 2021-10-20T15:34:49Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d1b70caa6f778a718c6bec8ad3ad7d63f933a903 | BUILD.yml | BUILD.yml | ---
:MAJOR: 0
:MINOR: 7
:STAMP: 1324795609
:PATCH: 1
:OWNER: delano
:BUILD: "031"
:STORY: Create secret is now via /create which does not redirect to the private URI
| ---
:MAJOR: 0
:MINOR: 7
:STAMP: 1324795609
:PATCH: 2
:OWNER: delano
:BUILD: "000"
:STORY: Create secret is now via /create which does not redirect to the private URI
| Create secret is now via /create which does not redirect to the private URI | Create secret is now via /create which does not redirect to the private URI
| YAML | mit | onetimesecret/onetimesecret,onetimesecret/onetimesecret,onetimesecret/onetimesecret,onetimesecret/onetimesecret,onetimesecret/onetimesecret |
d260c86e59c239b5f310a8bdcf7745d0c6dcd835 | _config.yml | _config.yml | # Site settings
name: Kyle Maxwell
email: yourmom@example.com
description: "So much hacking, so little time"
# testing only
#url: http://localhost:4000
url: "http://xwell.org" # the base hostname & protocol for your site
twitter: kylemaxwell
github: krmaxwell
google: KyleMaxwell
instagram: technoskald
# Build settings... | # Site settings
name: Kyle Maxwell
email: yourmom@example.com
description: "So much hacking, so little time"
# testing only
#url: http://localhost:4000
url: "/" # the base hostname & protocol for your site
twitter: kylemaxwell
github: krmaxwell
google: KyleMaxwell
instagram: technoskald
# Build settings
markdown: redc... | Change URL not to be hardcoded | Change URL not to be hardcoded
| YAML | mit | krmaxwell/krmaxwell.github.io,krmaxwell/krmaxwell.github.io,krmaxwell/krmaxwell.github.io |
6d011dba83442e4c4d1027e021ffccd291495a11 | _config.yml | _config.yml | # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
relative_permalinks: true
# Setup
title: Nicholas Blair
tagline: 'Software Engineer'
url: http://nblair.github.io
baseurl: ''
paginate: ... | # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
relative_permalinks: true
# Setup
title: Nicholas Blair
tagline: 'Software Engineer'
url: http://nblair.github.io
baseurl: ''
paginate: ... | Switch to 'Redcarpet' for markdown | Switch to 'Redcarpet' for markdown
Corrects display of fenced code blocks.
| YAML | mit | nblair/nblair.github.io,nblair/nblair.github.io,nblair/nblair.github.io,nblair/nblair.github.io |
f05d6e5c273e1b248d1e1f48bd070650630e3c51 | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
highlighter: true
# Permalinks
permalink: pretty
# Setup
title: Off by one
tagline: Programming for the rest of us
## url: http://blog.jedd-ahyoung.com
url: http://jedd-ahyoung.github.io/off-by-one
paginate: ... | # Dependencies
markdown: redcarpet
highlighter: true
# Permalinks
permalink: pretty
# Setup
title: Off by one
tagline: Programming for the rest of us
## url: http://blog.jedd-ahyoung.com
url: http://jedd-ahyoung.github.io/off-by-one
paginate: ... | Update config to show correct repo. | Update config to show correct repo.
| YAML | mit | jedd-ahyoung/off-by-one,jedd-ahyoung/off-by-one |
04b6899cf791a2b58ab3946e86c0f0b7530d618a | _config.yml | _config.yml | ---
title: Greg Jordan-Detamore
timezone: UTC
collections:
posts:
title: Posts
output: true
uploads:
title: Uploads
output: true
defaults:
- scope:
path: ''
type: posts
values:
layout: post
email: greg@gregjd.com
description: 'Greg is a developer, data/GIS analyst, and designer intere... | ---
title: Greg Jordan-Detamore
timezone: UTC
collections:
posts:
title: Posts
output: true
uploads:
title: Uploads
output: true
defaults:
- scope:
path: ''
type: posts
values:
layout: post
comments: true
email: greg@gregjd.com
description: 'Greg is a developer, data/GIS analyst, a... | Add DISQUS comments to site config | Add DISQUS comments to site config | YAML | mit | gregjd/gregjd.github.io,gregjd/gregjd.github.io,gregjd/gregjd.github.io |
3b8abf28944300e2625d10a6bd9531f201f69733 | _config.yml | _config.yml | auto: true
author: DigitalGov Search
title: DigitalGov Search
url: http://search.digitalgov.gov
permalink: /blog/:title.html
lsi: false
pygments: true
markdown: rdiscount
exclude: [.gitignore, .rvmrc, Gemfile, Gemfile.lock, README.md, Rakefile, config.rb, sass, vendor]
server: true
# plugin config
paginate_per_page: 1... | auto: true
author: DigitalGov Search
title: DigitalGov Search
url: http://search.digitalgov.gov
permalink: /:categories/:title.html
lsi: false
pygments: true
markdown: rdiscount
exclude: [.gitignore, .rvmrc, Gemfile, Gemfile.lock, README.md, Rakefile, config.rb, sass, vendor]
server: true
# plugin config
paginate_per_... | Set default permalink to /:categories/:title.html | Set default permalink to /:categories/:title.html
| YAML | cc0-1.0 | GSA/search.digitalgov.gov,dawnpm/search.digitalgov.gov,GSA/search.digitalgov.gov,dawnpm/search.digitalgov.gov,GSA/search.digitalgov.gov,dawnpm/search.digitalgov.gov |
f910ab94bf3c59d605f0285c32da5d2fb03a664e | _config.yml | _config.yml | # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
permalink: /blog/:year/:month/:day/:title
# Setup
title: LV
tagline: "Luis Victoria"
description: "My web portfolio"
url: http://luisvictoria.me
baseurl: "http://luisvictoria.me"... | # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
permalink: /blog/:year/:month/:day/:title
# Setup
title: LV
tagline: "Luis Victoria"
description: "My web portfolio"
url: http://luisvictoria.me
baseurl: http://luisvictoria.me
p... | Remove quotation marks from baseurl config | Remove quotation marks from baseurl config
| YAML | mit | LV/lv.github.io,LV/lv.github.io,LV/lv.github.io |
dc9c2aa16128ae1a4f993dcc513fee2ee82b12d0 | _config.yml | _config.yml | # Site settings
title: "G. BERGERET"
email: "geoffrey.bergeret@gbergeret.org"
description: >
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.
url: "http://gberge... | # Site settings
title: "G. BERGERET"
email: "geoffrey.bergeret@gbergeret.org"
description: >
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.
url: "http://gberge... | Update config file to add repository. | Update config file to add repository.
| YAML | mit | gbergere/gbergere.github.io |
13172cee15f5f9fa3933105d0c76179f9b4c9d82 | _config.yml | _config.yml | name: iotize, 📱 engineer
description: iOS Engineer
meta_description: ""
theme: minima
markdown: kramdown
highlighter: rouge
gems: [jekyll-paginate]
paginate: 20
baseurl: /
domain_name: 'http://iotize.github.com'
# Details for the RSS feed generator
url: 'http://iotize.github.com'
author: 'Ryan Davi... | name: iotize, 📱 engineer
description: iOS Engineer
meta_description: ""
theme: minima
markdown: kramdown
highlighter: rouge
gems: [jekyll-paginate]
paginate: 20
baseurl: /
domain_name: 'http://iotize.github.com'
# Details for the RSS feed generator
url: 'http://iotize.github.com'
author: 'Ryan Davi... | Remove defaults key from config | Remove defaults key from config
| YAML | mit | iotize/iotize.github.io |
e9401628e5c288b03e39ad7c9fd4b47bb4db0455 | _config.yml | _config.yml | # top level stuff you probably don't need to touch
highlighter: pygments
markdown: rdiscount
rdiscount:
extensions: [smart]
permalink: /:title.html
paginate: 5
gems: [jekyll-paginate]
port: 3000
safe: true
# edit here to achieve your personal greatness
url: http://username.github.io/
baseurl: /sustain/
title: Chris... | # top level stuff you probably don't need to touch
highlighter: rouge
markdown: kramdown
rdiscount:
extensions: [smart]
permalink: /:title.html
paginate: 5
gems: [jekyll-paginate]
port: 3000
safe: true
# edit here to achieve your personal greatness
url: http://username.github.io/
baseurl: /sustain/
title: Chris Tur... | Update jekyll to use kramdown and rouge | Update jekyll to use kramdown and rouge
| YAML | mit | andykitchen/andykitchen.github.io,guarani/guarani.github.io,rajatdixit/website,aarrigo/sustain,lazyfrosch/website,egd-io/egd-io.github.io,aarrigo/sustain,nellshamrell/nellshamrell.github.io,apraditya/mochfaisalkarim,kyleoliveira/kyleoliveira.github.io,guarani/guarani.github.io,kyleoliveira/kyleoliveira.github.io,jaimev... |
c0b843a3731f471cd3d3d646013e58283d02f8a8 | _config.yml | _config.yml | safe: true
markdown: kramdown
highlighter: pygments
permalink: /:title.html
relative_permalinks: false
default_theme: ribbon
default_width: 792
default_lang: en
default_body_class: list
author:
name: Julien Tanguy
url: http://julien.jhome.fr
company:
name: Sounderbox
url: http://sounderb... | safe: true
markdown: kramdown
highlighter: rouge
permalink: /:title.html
relative_permalinks: false
default_theme: ribbon
default_width: 792
default_lang: en
default_body_class: list
author:
name: Julien Tanguy
url: http://julien.jhome.fr
company:
name: Sounderbox
url: http://sounderbox.... | Change highliter to github's new default | Change highliter to github's new default
| YAML | mit | jtanguy/elm-intro,jtanguy/elm-intro |
d1c921fb53ce682ee938cf36050c82892078a1d9 | packages/la/lazy-priority-queue.yaml | packages/la/lazy-priority-queue.yaml | homepage: ''
changelog-type: ''
hash: 59d86fd160a7fd030c9d99d4fe984ec64a18821e34cfa4f6df1dd67144495092
test-bench-deps:
base: -any
lazy-priority-queue: -any
doctest: '>=0.8'
lens: -any
maintainer: mblazevic@stilo.com
synopsis: Lazy-Spined Monadic Priority Queues
changelog: ''
basic-deps:
base: <5
lazy-prior... | homepage: ''
changelog-type: ''
hash: 59d86fd160a7fd030c9d99d4fe984ec64a18821e34cfa4f6df1dd67144495092
test-bench-deps:
base: -any
lazy-priority-queue: -any
doctest: '>=0.8'
lens: -any
maintainer: mblazevic@stilo.com
synopsis: Lazy-Spined Monadic Priority Queues
changelog: ''
basic-deps:
base: <5
lazy-prior... | Update from Hackage at 2021-12-18T14:44:45Z | Update from Hackage at 2021-12-18T14:44:45Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1385387ff501806a7a8c1a452ab34012c4a0658c | metadata/com.timenotclocks.bookcase.yml | metadata/com.timenotclocks.bookcase.yml | Categories:
- Reading
License: GPL-3.0-only
SourceCode: https://github.com/fenimore/badreads
IssueTracker: https://github.com/fenimore/badreads/issues
AutoName: Badreads
RepoType: git
Repo: https://github.com/fenimore/badreads
Builds:
- versionName: 0.0.4
versionCode: 4
commit: v0.0.4
subdir: app
... | Categories:
- Reading
License: GPL-3.0-only
SourceCode: https://github.com/fenimore/badreads
IssueTracker: https://github.com/fenimore/badreads/issues
AutoName: Badreads
RepoType: git
Repo: https://github.com/fenimore/badreads
Builds:
- versionName: 0.0.4
versionCode: 4
commit: v0.0.4
subdir: app
... | Update Badreads to 0.0.6 (6) | Update Badreads to 0.0.6 (6)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
0454e48e207b7c8de207a4430fcba55f1d01b529 | .php-censor.yml | .php-censor.yml | build_settings:
ignore:
- vendor
- tests
setup:
composer:
action: install
test:
php_unit:
config:
- phpunit.xml.dist
coverage: true
php_cs_fixer:
args: '--allow-risky=yes'
errors: true
report_errors: true
config: .php... | build_settings:
ignore:
- vendor
- tests
setup:
composer:
action: install
test:
php_unit:
config:
- phpunit.xml.dist
coverage: true
php_cs_fixer:
args: '--allow-risky=yes'
errors: true
report_errors: true
config: .php... | Add languages folder to copy & paste ignore | Add languages folder to copy & paste ignore
| YAML | bsd-2-clause | php-censor/php-censor,corpsee/php-censor,php-censor/php-censor,php-censor/php-censor,corpsee/php-censor,corpsee/php-censor |
5a3d55069fefe113a109b3e00b2139dd2875eb91 | packages/ti/timemap.yaml | packages/ti/timemap.yaml | homepage: ''
changelog-type: ''
hash: ea5823154da0139bcb643a280d07ec5f70bb92aebac50ebe22bfd504fc059290
test-bench-deps:
focus: -any
stm: -any
base: -any
time: -any
unordered-containers: -any
list-t: -any
criterion: -any
containers: -any
quickcheck-instances: -any
tasty-quickcheck: -any
hashable: -... | homepage: ''
changelog-type: ''
hash: 0e4b342aa43aaa96ef4acaca32cd7d0de6e2ec67aa7fb99f0e6552ac2d0a1346
test-bench-deps:
focus: -any
stm: -any
base: -any
time: -any
unordered-containers: -any
list-t: -any
criterion: -any
containers: -any
quickcheck-instances: -any
tasty-quickcheck: -any
hashable: -... | Update from Hackage at 2017-11-24T21:43:02Z | Update from Hackage at 2017-11-24T21:43:02Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e140587261032112e8020d8d53976671f5bef7b9 | .pullreview.yml | .pullreview.yml | ---
rules:
ignore:
- use_a_logger
- extra_blank_line_detected_at_body_end
| ---
rules:
ignore:
- use_a_logger
excludes:
- spec
| Exclude spec from pull review analysis | Exclude spec from pull review analysis
| YAML | mit | agrimm/resume,agrimm/resume,paulfioravanti/resume |
948f2f943f0d37ffa59f96a30c2cb37b59c5d279 | wercker.yml | wercker.yml | box: mitsuse/golang
build:
steps:
- setup-go-workspace
- script:
name: build
code: |
go get -t ./...
- script:
name: test
code: |
go test ./...
after-steps:
- wantedly/pretty-slack-notify:
... | box: golang
build:
steps:
- setup-go-workspace
- script:
name: build
code: |
go get -t ./...
- script:
name: test
code: |
go test ./...
after-steps:
- wantedly/pretty-slack-notify:
webhook... | Use the official docker image. | Use the official docker image.
| YAML | mit | mitsuse/matrix-go,jmptrader/matrix-go |
0e0dc2e8fd6ad77b03e34a3d8fc15231d8330ea3 | zuul/site-variables.yaml | zuul/site-variables.yaml | # This file contains ansible variables that are used by our zuul-executors.
---
# NOTE(ianw): 2019-05 this list of clouds will grow as we provision
# new opendev.org based mirrors, but then eventually be removed once
# all are updated.
zuul_site_mirror_fqdn: >-
{%- if nodepool.region + "." + nodepool.cloud in [ "IAD.... | # This file contains ansible variables that are used by our zuul-executors.
---
# NOTE(ianw): 2019-05 this list of clouds will grow as we provision
# new opendev.org based mirrors, but then eventually be removed once
# all are updated.
zuul_site_mirror_fqdn: >-
{%- if nodepool.region + "." + nodepool.cloud in [ "DFW.... | Switch RAX ORD mirrors to new opendev.org mirrors | Switch RAX ORD mirrors to new opendev.org mirrors
The mirror.ord.rax.opendev.org host is running, with OpenAFS 1.8.3.
This is similar to rax.dfw which has been running without issue since
I78d938eaaec993ac64c7e701a506a108f5c7fb07.
Switch it in.
Depends-On: https://review.opendev.org/663852
Change-Id: I5d9d9d5f2d54c6... | YAML | apache-2.0 | openstack-infra/project-config,openstack-infra/project-config |
cfb5081b24380292f2a2a5ef28737c8018a70bc1 | config/locales/en.yml | config/locales/en.yml | # Files in the config/locales directory are used for internationalization
# and are automatically loaded by Rails. If you want to use locales other
# than English, add the necessary files in this directory.
#
# To use the locales, use `I18n.t`:
#
# I18n.t 'hello'
#
# In views, this is aliased to just `t`:
#
# <... | # Files in the config/locales directory are used for internationalization
# and are automatically loaded by Rails. If you want to use locales other
# than English, add the necessary files in this directory.
#
# To use the locales, use `I18n.t`:
#
# I18n.t 'hello'
#
# In views, this is aliased to just `t`:
#
# <... | Adjust header for user settings page | Adjust header for user settings page
| YAML | mit | rubymonsters/diversity_ticketing,rubymonsters/diversity_ticketing,rubymonsters/diversity_ticketing |
85032bb6a42d7e81ae8921c5abf5a4b36b5e7480 | schemas/stsci.edu/asdf/wcs/step-0.1.0.yaml | schemas/stsci.edu/asdf/wcs/step-0.1.0.yaml | %YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/wcs/step-0.1.0"
tag: "tag:stsci.edu:asdf/wcs/step-0.1.0"
title: >
Describes a single step of a WCS transform pipeline.
description: >
examples: []
type: object
properties:
frame:
description: |
The f... | %YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/wcs/step-0.1.0"
tag: "tag:stsci.edu:asdf/wcs/step-0.1.0"
title: >
Describes a single step of a WCS transform pipeline.
description: >
examples: []
type: object
properties:
frame:
description: |
The f... | Allow frame to be a frame object | Allow frame to be a frame object
| YAML | bsd-3-clause | spacetelescope/asdf-standard |
d747d4e770a612f7328f84e0b96a378c05dc3e07 | .gitlab-ci.yml | .gitlab-ci.yml |
variables:
IMAGE_NAME: emcmongoose/darzee
IMAGE_TAG: $DARZEE_VER
IMAGE_FILE_NAME: build/darzee.tar
CREATED_DARZEE_DOCKERFILE_PATH: $CREATED_DARZEE_DOCKERFILE_PATH
stages:
- build
- deploy
create_dockerfile:
image: java:8-jdk
stage: build
script:
- ./gradlew clean createDockerfile
build_docker_... |
variables:
IMAGE_NAME: emcmongoose/darzee
IMAGE_TAG: $DARZEE_VER
IMAGE_FILE_NAME: build/darzee.tar
CREATED_DARZEE_DOCKERFILE_PATH: $CREATED_DARZEE_DOCKERFILE_PATH
stages:
- build
- deploy
create_dockerfile:
image: java:8-jdk
stage: build
script:
- ./gradlew clean createDockerfile
build_docker_... | Add outputs for .en variables in test purposes. | Add outputs for .en variables in test purposes.
| YAML | mit | emc-mongoose/console,emc-mongoose/console,emc-mongoose/console |
300f4d6c371446e2e23669ef0b314acf66db4389 | COMPLIANCE.yaml | COMPLIANCE.yaml | name: compliance
description: |
This document is used to track a projects PIA and STRA
compliance.
spec:
- name: PIA
status: exempt
last-updated: '2020-01-20T19:03:57.213Z'
- name: STRA
status: exempt
last-updated: '2020-01-20T19:03:57.213Z'
| name: compliance
description: |
This document is used to track a projects PIA and STRA
compliance.
spec:
- name: PIA
status: not-required
last-updated: '2020-04-15T00:13:43.377Z'
- name: STRA
status: not-required
last-updated: '2020-04-15T00:13:43.377Z'
| Rename PIA and STRA status | Rename PIA and STRA status | YAML | apache-2.0 | bcgov/envreportutils |
c7f57cc3f1a71610210376cfe010763b1572963f | tools/cloud-build/project-cleanup.yaml | tools/cloud-build/project-cleanup.yaml | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | Revert "Toggle filestore api as part of nightly cleanup" | Revert "Toggle filestore api as part of nightly cleanup"
This reverts commit db998396ba6438979e065a3a940178f6af965d05.
This reverts commit 67b2dc90e595bd1c8a52afa29aa4fabc460e706e.
| YAML | apache-2.0 | GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit |
5689407f09a6e8106e98ba936b078b5c7bf3476e | packages/ca/canteven-log.yaml | packages/ca/canteven-log.yaml | homepage: https://github.com/SumAll/haskell-canteven-log
changelog-type: ''
hash: f827b78804dd1d2bb07ee1de05925fc0bd63abf4dfed2c0433b35970c1bee5da
test-bench-deps: {}
maintainer: rowens@sumall.com
synopsis: A canteven way of setting up logging for your program.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=... | homepage: https://github.com/SumAll/haskell-canteven-log
changelog-type: ''
hash: 6767376efef731c4789b6a8c06b7dd9226766e732f865260d3ec9890d98389a3
test-bench-deps: {}
maintainer: rowens@sumall.com
synopsis: A canteven way of setting up logging for your program.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=... | Update from Hackage at 2016-10-01T02:51:44+00:00 | Update from Hackage at 2016-10-01T02:51:44+00:00
| YAML | mit | commercialhaskell/all-cabal-metadata |
fbe7b47c9a973c752dee50de3746435aec8e71d2 | .kitchen.yml | .kitchen.yml | ---
driver_plugin: vagrant
platforms:
- name: ubuntu-12.04
driver_config:
box: opscode-ubuntu-12.04
box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_chef-11.4.4.box
require_chef_omnibus: 11.4.4
run_list:
- recipe[apt]
- name: centos-6.4
driver_config:
box: opscode-centos... | ---
driver_plugin: vagrant
platforms:
- name: ubuntu-12.04
driver_config:
box: opscode-ubuntu-12.04
box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_provisionerless.box
require_chef_omnibus: true
customize:
memory: 512
run_list:
- recipe[apt]
- name: centos-6.4
dri... | Update Opscode Vagrant boxes so that they are provisionerless. Now Test Kitchen installs Chef. Also, increase default memory to 512MB. | Update Opscode Vagrant boxes so that they are provisionerless. Now
Test Kitchen installs Chef. Also, increase default memory to 512MB.
| YAML | apache-2.0 | basho-labs/riak-cs-chef-cookbook,ColdFreak/riak-cs-chef-cookbook |
145c56dc0900ee0d01b6e9e83d9dcd066da6080d | .travis.yml | .travis.yml | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
# http://conda.pydata.org/docs/travis.html
- sudo apt-get update
- sudo apt-get install -y pigz tabix
# We do this conditionally because it saves us some downloadin... | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.5"
- "3.6"
- "3.7"
install:
# http://conda.pydata.org/docs/travis.html
- sudo apt-get update
- sudo apt-get install -y pigz tabix
# We do this conditionally because it saves us some downloadin... | Add py3.7 and drop 3.4 from CI | Add py3.7 and drop 3.4 from CI
| YAML | bsd-3-clause | mirnylab/cooler |
8a3bac9364cce9bc4f6c504cf3bfb1e6c951c2d9 | packages/ni/nix-delegate.yaml | packages/ni/nix-delegate.yaml | homepage: ''
changelog-type: ''
hash: 6430972ee691424c0d9a7c9b6fe801cc6fbe7cb3fe9b45c634603919c9b74a99
test-bench-deps: {}
maintainer: opensource@awakenetworks.com
synopsis: Convenient utility for distributed Nix builds
changelog: ''
basic-deps:
base: ! '>=4.7.0.0 && <5'
managed: ! '>=1.0.3 && <1.1'
text: <1.3
... | homepage: ''
changelog-type: ''
hash: 78698051f4ce514c1bf5edc004e90e517e36301b86bb7fd327f25e5268f36d5f
test-bench-deps: {}
maintainer: opensource@awakenetworks.com
synopsis: Convenient utility for distributed Nix builds
changelog: ''
basic-deps:
bytestring: ! '>=0.10.8.1 && <1.0'
base: ! '>=4.7.0.0 && <5'
managed... | Update from Hackage at 2018-11-06T16:35:37Z | Update from Hackage at 2018-11-06T16:35:37Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
5c96ec050f56bd466f05a704078eefd9c0f88437 | .kitchen.yml | .kitchen.yml | ---
driver:
name: docker
use_sudo: false
provisioner:
name: ansible_playbook
playbook: tests/test.yml
ansible_verbose: true
hosts: '*'
require_pip: true
ansible_version: latest
ansible_verbose: true
require_chef_for_busser: false
platforms:
- name: fedora
driver_config:
provision_comma... | ---
driver:
name: docker
use_sudo: false
provisioner:
name: ansible_playbook
playbook: tests/test.yml
ansible_verbose: true
hosts: '*'
require_pip: true
ansible_version: latest
ansible_verbose: true
require_chef_for_busser: false
platforms:
- name: fedora
driver_config:
provision_comma... | Test Kitchen: Lowered maximum number of parallel ssh sessions to 5 | Test Kitchen: Lowered maximum number of parallel ssh sessions to 5
Signed-off-by: Tomas Hozza <2152b765a3a51268598a4503265cd77ce732fa8c@gmail.com>
| YAML | mit | thozza/ansible-gitlab-runner |
35b8082c8a291b8e6b0cba1be484d7cdff3b7bf0 | packages/tr/trasa-server.yaml | packages/tr/trasa-server.yaml | homepage: https://github.com/haskell-trasa/trasa
changelog-type: ''
hash: 986697caef9bf986778374b375efa909b441b0471d15cf910b5aedb5028d14c7
test-bench-deps: {}
maintainer: |-
Andrew Martin <andrew.thaddeus@gmail.com>
Kyle McKean <mckean.kylej@gmail.com>
chessai <chessai1996@gmail.com>
synopsis: Type safe web serve... | homepage: https://github.com/haskell-trasa/trasa
changelog-type: ''
hash: 8750d1a1c621f4dcea65c461d20803eb97d68306a68cc8c676b18cc0d48437e5
test-bench-deps: {}
maintainer: |-
Andrew Martin <andrew.thaddeus@gmail.com>
Kyle McKean <mckean.kylej@gmail.com>
chessai <chessai1996@gmail.com>
synopsis: Type safe web serve... | Update from Hackage at 2019-07-19T15:34:48Z | Update from Hackage at 2019-07-19T15:34:48Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
999a01e78ab93c627115e24b0a7f6af33a373ef6 | .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-7
run_list: apt::default
- name: debian-8.9
run_list: apt::... | 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-7
run_list: apt::default
- name: debian-8
run_list: apt::de... | Use bento slugs in Test Kitchen | Use bento slugs in Test Kitchen
| YAML | apache-2.0 | tas50/chef-sssd_ldap,tas50/chef-sssd_ldap |
f8c3e46ea3ba8132010855176a78288ee3f748b7 | .github/workflows/php.yml | .github/workflows/php.yml | name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.3','7.4']
dependencies: ['normal', 'highest','lowest']
name: PHP ${{ matrix.php-versions }} tests with ${{ matrix.dependencies }} dependencies
steps:
- name: Checkout
... | name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.3','7.4','8.0']
dependencies: ['normal', 'highest','lowest']
name: PHP ${{ matrix.php-versions }} tests with ${{ matrix.dependencies }} dependencies
steps:
- name: Checkout
... | Add PHP 8.0 to github actions | Add PHP 8.0 to github actions
| YAML | mit | pascaldevink/shortuuid |
10f1d98aca5c3c8e685bdd93b752533c84c8ee4e | recipes/gulpio/meta.yaml | recipes/gulpio/meta.yaml | {% set name = "gulpio" %}
{% set version = "533.63" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: cdc8c084bff58bdac25e6050f092ed395d883a9621844ffac0d6d6f394f32a6e
build:
number: 0
ski... | {% set name = "gulpio" %}
{% set version = "533.63" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: cdc8c084bff58bdac25e6050f092ed395d883a9621844ffac0d6d6f394f32a6e
build:
number: 0
ski... | Add python dependency in test | Add python dependency in test
| YAML | bsd-3-clause | jjhelmus/staged-recipes,patricksnape/staged-recipes,ceholden/staged-recipes,jochym/staged-recipes,kwilcox/staged-recipes,stuertz/staged-recipes,igortg/staged-recipes,chrisburr/staged-recipes,scopatz/staged-recipes,mariusvniekerk/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,hadim/staged-recipes,birdsara... |
97b99675b0495fd0afb6d3249109ae5cf07c3293 | .kitchen.yml | .kitchen.yml | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
run_list: apt::default
- name: debian-8.5
run_list: apt::default
- name: fedora-24
run_list: yum::dnf_yum_compat
- name: opensuse-13.2
- name: ope... | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
run_list: apt::default
- name: debian-8.6
run_list: apt::default
- name: fedora-25
run_list: yum::dnf_yum_compat
- name: opensuse-13.2
- name: ope... | Update Test Kitchen platforms to the latest | Update Test Kitchen platforms to the latest
| YAML | apache-2.0 | chef-cookbooks/erlang,opscode-cookbooks/erlang,dosyfier/erlang,opscode-cookbooks/erlang |
02e397ccc8aa099f40f905abdf5bd9ebdf121260 | .gitlab-ci.yml | .gitlab-ci.yml | ---
stages:
- build
- install
- tests
- lint
- doc
- translation
default:
tags:
- yunohost-ci
# All jobs are interruptible by default
interruptible: true
# see: https://docs.gitlab.com/ee/ci/yaml/#switch-between-branch-pipelines-and-merge-request-pipelines
workflow:
rules:
- if: $CI_PIPELI... | ---
stages:
- build
- install
- tests
- lint
- doc
- translation
default:
tags:
- yunohost-ci
# All jobs are interruptible by default
interruptible: true
# see: https://docs.gitlab.com/ee/ci/yaml/#switch-between-branch-pipelines-and-merge-request-pipelines
workflow:
rules:
- if: $CI_PIPELI... | Fix filter on ci branches ... my regex doesn't seem to be working :| | ci: Fix filter on ci branches ... my regex doesn't seem to be working :|
| YAML | agpl-3.0 | YunoHost/yunohost,YunoHost/yunohost,YunoHost/yunohost,YunoHost/yunohost |
4909e7d02e7c1df950643f8091ca2184220b6d47 | labmanager/config.yaml | labmanager/config.yaml | standard_urn_admin_roles:
- Administrator
- SysAdmin
- AccountAdmin
permission_status:
- pending
- granted
- denied
authentication_types:
- oauth1.0
- basic
user_access_level:
- admin
- rlms
- lms
installed_rlms:
weblabd... | standard_urn_admin_roles:
- Administrator
- SysAdmin
- AccountAdmin
permission_status:
- pending
- granted
- denied
authentication_types:
- oauth1.0
- basic
user_access_level:
- admin
- rlms
- lms
#
# XXX
# This should not be ... | Add UNR to yaml, but yamls shouldn't be used for this | Add UNR to yaml, but yamls shouldn't be used for this
| YAML | bsd-2-clause | porduna/labmanager,go-lab/labmanager,porduna/labmanager,morelab/labmanager,labsland/labmanager,go-lab/labmanager,labsland/labmanager,morelab/labmanager,morelab/labmanager,porduna/labmanager,gateway4labs/labmanager,gateway4labs/labmanager,go-lab/labmanager,labsland/labmanager,gateway4labs/labmanager,labsland/labmanager,... |
e3f6fb971fb86821e76d89bb6a426de0dc8de515 | config/ansible/roles/sf-gerritbot/tasks/main.yml | config/ansible/roles/sf-gerritbot/tasks/main.yml | - name: "Configure tmpfiles.d to recreate /var/run/gerritbot after reboot"
lineinfile: dest=/lib/tmpfiles.d/gerritbot.conf state=present create=yes line='d /var/run/gerritbot 0755 gerritbot gerritbot -'
| Fix gerritbot missing /var/run directory after reboot | Fix gerritbot missing /var/run directory after reboot
Change-Id: I5c55d7084f752baae981acebc24ed0f467282fc7
| YAML | apache-2.0 | enovance/software-factory,enovance/software-factory,enovance/software-factory,enovance/software-factory,enovance/software-factory | |
ab1b73f55b3846277df3747872b05dfcb6363a64 | .rubocop.yml | .rubocop.yml | AllCops:
TargetRubyVersion: 2.3
Metrics/BlockLength:
Exclude:
- spec/**/*_spec.rb
Lint/RaiseException:
Enabled: true
Lint/StructNewOverride:
Enabled: true
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true | AllCops:
TargetRubyVersion: 2.3
Metrics/BlockLength:
Exclude:
- spec/**/*_spec.rb
Layout/BlockAlignment:
Exclude:
# This file is causing Rubocop to error - see <https://github.com/octokit/octokit.rb/runs/6779545664>
# for an example
- Guardfile
Lint/RaiseException:
Enabled: true
Lint/StructNewO... | Disable the Layout/BlockAlignment cop for Guardfile, since it is erroring | Disable the Layout/BlockAlignment cop for Guardfile, since it is erroring
| YAML | mit | octokit/octokit.rb,octokit/octokit.rb |
340bc3e2a9494eeffcd50c906000b75081e14eb3 | .rubocop.yml | .rubocop.yml | inherit_gem:
rubocop-govuk:
- config/default.yml
- config/rails.yml
AllCops:
Exclude:
- 'bin/**/*'
- 'config.ru'
- 'tmp/**/*'
- 'db/schema.rb'
- 'lib/tasks/cucumber.rake'
Metrics/BlockLength:
Enabled: false
Naming/VariableNumber:
EnforcedStyle: snake_case
Style/FormatStringToken... | inherit_gem:
rubocop-govuk:
- config/default.yml
- config/rails.yml
AllCops:
Exclude:
- 'bin/**/*'
- 'config.ru'
- 'tmp/**/*'
- 'db/schema.rb'
- 'lib/tasks/cucumber.rake'
Metrics/BlockLength:
Enabled: false
Naming/VariableNumber:
EnforcedStyle: snake_case
Style/FormatStringToken:... | Remove file listed that has now gone | Remove file listed that has now gone
The hope of whoever left this comment has been fulfilled.
| YAML | mit | alphagov/whitehall,alphagov/whitehall,alphagov/whitehall,alphagov/whitehall |
2a8c2a1067f7228febdb94c8a424fb890d68f3a2 | .rubocop.yml | .rubocop.yml | # Allow if (foo = get_foo) style
Lint/AssignmentInCondition:
AllowSafeAssignment: true
# Require lines to fit in pull requests.
Metrics/LineLength:
Max: 92
# Allow and/or for control flow only
Style/AndOr:
EnforcedStyle: conditionals
# Dot at end of line makes it clearer that the line is not done
Style/DotPosi... | # Dot at end of line makes it clearer that the line is not done
Layout/DotPosition:
EnforcedStyle: trailing
# Multi-line assignment should be simply indented. Aligning them makes it even
# harder to keep a sane line length.
Layout/MultilineOperationIndentation:
EnforcedStyle: indented
# Allow if (foo = get_foo) s... | Move cop configurations to their new namespace | Move cop configurations to their new namespace
| YAML | mit | mvz/wait_up |
33354595a405fd820630665bdc8f365beed21bed | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- build
fedora-rawhide:
image: fedora:rawhide
stage: build
before_script:
- dnf update -y && dnf -y install dnf-plugins-core @buildsys-build
- dnf -y builddep folks
script:
# Configure
- ./autogen.sh
# Build
- make -j
# Run tests
- make -j check
| stages:
- build
fedora-latest:
image: fedora:latest
stage: build
before_script:
- dnf update -y && dnf -y install dnf-plugins-core redhat-rpm-config
- dnf -y builddep folks
script:
# Configure
- ./autogen.sh
# Build
- make -j
# Run tests
- make -j check
| Use Fedora 29 rather than Rawhide in CI | ci: Use Fedora 29 rather than Rawhide in CI
Rawhide breaks too much (for example,
https://gitlab.gnome.org/GNOME/folks/-/jobs/141496, where coreutils was
conflicting on upgrade).
Drop installing @buildsys-build, since installing the build deps for
folks does all of that.
Signed-off-by: Philip Withnall <29c2a2ac2a854... | YAML | lgpl-2.1 | GNOME/folks,GNOME/folks,GNOME/folks |
d25f6146e0504e5641c86ae0a06fe46cef389829 | .styleci.yml | .styleci.yml | php:
preset: laravel
disabled:
- unused_use
finder:
not-name:
- index.php
- server.php
js: false
ts: false
css: false
vue: false
py: false
| preset: laravel
disabled:
- unused_use
finder:
not-name:
- index.php
- server.php
| Configure StyleCI to only check PHP | Configure StyleCI to only check PHP
| YAML | agpl-3.0 | zeropingheroes/lanager,zeropingheroes/lanager |
ed70f94093f3562f76d1813c436a3e9afb945750 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: true
admin_path:
webhook_url:
sections:
- type: document
path: FORESTRY-READ.md
label: Welcome - First Steps
read_only: true
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
fro... | ---
new_page_extension: md
auto_deploy: true
admin_path:
webhook_url:
sections:
- type: document
path: FORESTRY-README.md
label: Welcome - First Steps
read_only: true
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
f... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | yajupradhan/yajupradhan.github.io,yajupradhan/yajupradhan.github.io,ykpoh/ykpoh.github.io,rezafaizarahman/rezafaizarahman.github.io,rezafaizarahman/rezafaizarahman.github.io,ykpoh/ykpoh.github.io,ykpoh/ykpoh.github.io |
8e2805d028c99451ba4529cf96ea4b4ba3dd34df | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: directory
path: content/blog
label: Posts
create: documents
match: "**/*"
new_doc_ext: ".md"
upload_dir: static/images
public_path: "/images"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filenam... | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: directory
path: content/tags
label: Tags
create: documents
match: "**/*"
exclude: index.md
new_doc_ext: ".md"
- type: directory
path: content/blog
label: Posts
create: documents
match: "**/*"
new_doc_ext: ... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | Narno/narno.com,Narno/narno.com |
d26fd03e08bc0253f56fc51588173b8d7c7e3ef1 | packages/hr/hriemann.yaml | packages/hr/hriemann.yaml | homepage: https://github.com/shmish111/hriemann
changelog-type: ''
hash: 9fa1c76c54c7a2ffacc03a01b82ef6b92e3d2fc19cfd93f4d604698145a45bc4
test-bench-deps:
hriemann: -any
base: -any
maintainer: shmish111@gmail.com
synopsis: Initial project template from stack
changelog: ''
basic-deps:
bytestring: ==0.10.*
hostna... | homepage: https://github.com/shmish111/hriemann
changelog-type: ''
hash: 09a3000436601ae3cac5c5148bdb321af28e3de13216ff6e0899fc1b68c663a1
test-bench-deps:
hriemann: -any
base: -any
maintainer: shmish111@gmail.com
synopsis: Initial project template from stack
changelog: ''
basic-deps:
bytestring: ==0.10.*
hostna... | Update from Hackage at 2017-03-10T11:54:19Z | Update from Hackage at 2017-03-10T11:54:19Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0e610b58363d236b4a62b8eb51bf59a08496f023 | .github/dependabot.yml | .github/dependabot.yml | version: 2
updates:
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"
| version: 2
updates:
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily" | Add GitHub Actions to Dependabot | Add GitHub Actions to Dependabot
| YAML | mit | maennchen/ZipStream-PHP |
b43679127202f77a19ada287cfd347f85a0920b3 | .decent_ci-MacOS.yaml | .decent_ci-MacOS.yaml | compilers:
- name: clang
cmake_extra_flags: -DBUILD_SAMPLES:BOOL=ON -DBUILD_PACKAGE:BOOL=ON -DBUILD_TESTING:BOOL=ON -DCOMMIT_SHA=$COMMIT_SHA
- name: clang
build_type: Debug
cmake_extra_flags: -DBUILD_SAMPLES:BOOL=ON -DBUILD_PACKAGE:BOOL=ON -DBUILD_TESTING:BOOL=ON -DCOMMIT_SHA=$COMMIT_SHA
skip_packag... | compilers:
- name: clang
cmake_extra_flags: -DBUILD_SAMPLES:BOOL=ON -DBUILD_PACKAGE:BOOL=ON -DBUILD_TESTING:BOOL=ON -DCOMMIT_SHA=$COMMIT_SHA
build_package_generator: TBZ2
- name: clang
build_type: Debug
cmake_extra_flags: -DBUILD_SAMPLES:BOOL=ON -DBUILD_PACKAGE:BOOL=ON -DBUILD_TESTING:BOOL=ON -DCOMM... | Change to TBZ2 for MacOS packages | Change to TBZ2 for MacOS packages
| YAML | bsd-3-clause | bradparks/ChaiScript__cplusplus_scripting_language,kamilzubair/ChaiScript,kamilzubair/ChaiScript,bradparks/ChaiScript__cplusplus_scripting_language,bradparks/ChaiScript__cplusplus_scripting_language,kamilzubair/ChaiScript |
037de19ead3acdd6bf56f00f631eea597b9f1901 | recipes/six/meta.yaml | recipes/six/meta.yaml | {% set name = "six" %}
{% set version = "1.10.0" %}
{% set sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-... | {% set name = "six" %}
{% set version = "1.11.0" %}
{% set sha256 = "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-... | Update six to version 1.11.0 | Update six to version 1.11.0
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
205a15febb0a4a7f2becbf0c29a85646f4ef7bdb | .github/workflows/release-nightly.yml | .github/workflows/release-nightly.yml | name: Publish tfds-nightly to PyPI
on:
# Event manually triggered (in the Github UI)
workflow_dispatch:
inputs:
git-ref:
description: Git ref (e.g. SHA or tag) (Optional)
default: ""
required: false
jobs:
publish-job:
# Prevents action from running on forks.
if: github.... | name: Publish tfds-nightly to PyPI
on:
# Event triggered daily at 00:30 am UTC
schedule:
- cron: '30 0 * * *'
# Event manually triggered (in the Github UI)
workflow_dispatch:
inputs:
git-ref:
description: Git ref (e.g. SHA or tag) (Optional)
default: ""
required: false
... | Add GitHub actions for tfds-nightly PyPI release. | Add GitHub actions for tfds-nightly PyPI release.
PiperOrigin-RevId: 425355162
| YAML | apache-2.0 | tensorflow/datasets,tensorflow/datasets,tensorflow/datasets,tensorflow/datasets,tensorflow/datasets |
13229a501544d7e99c2b42fb96d2e03ed4abb718 | packages/js/JSONb.yaml | packages/js/JSONb.yaml | homepage: http://github.com/solidsnack/JSONb/
changelog-type: ''
hash: 576ab2fd43b789735e6722e6d1812ef1328b215385012d7c10d4ce1205d421e7
test-bench-deps: {}
maintainer: oss@solidsnack.be
synopsis: JSON parser that uses byte strings.
changelog: ''
basic-deps:
bytestring: ! '>=0.9'
base: ! '>=2 && <=5'
bytestring-tr... | homepage: http://github.com/solidsnack/JSONb/
changelog-type: ''
hash: 47b2855a9c5769eadfdbb4eaddca6c66e6de21432d555162f2cc4dcde6e0861a
test-bench-deps: {}
maintainer: oss@solidsnack.be
synopsis: JSON parser that uses byte strings.
changelog: ''
basic-deps:
bytestring: ==0.9.*
base: ! '>=2 && <=5'
bytestring-trie... | Update from Hackage at 2015-07-13T12:39:04+0000 | Update from Hackage at 2015-07-13T12:39:04+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
f02de7d247b2915b1946f3a1f256f4933da85359 | api/config/packages/api_platform.yaml | api/config/packages/api_platform.yaml | api_platform:
title: eCamp v3
version: 1.0.0
show_webby: false
mapping:
paths: ['%kernel.project_dir%/src/Entity']
formats:
jsonhal: [ 'application/hal+json' ]
jsonld: [ 'application/ld+json' ]
jsonapi: [ 'application/vnd.api+json' ]
json: [ 'application/json'... | api_platform:
title: eCamp v3
version: 1.0.0
show_webby: false
mapping:
paths: ['%kernel.project_dir%/src/Entity']
formats:
jsonhal: [ 'application/hal+json' ]
jsonld: [ 'application/ld+json' ]
jsonapi: [ 'application/vnd.api+json' ]
json: [ 'application/json'... | Fix typos in yml config file | Fix typos in yml config file
| YAML | agpl-3.0 | usu/ecamp3,ecamp/ecamp3,pmattmann/ecamp3,pmattmann/ecamp3,pmattmann/ecamp3,usu/ecamp3,usu/ecamp3,ecamp/ecamp3,pmattmann/ecamp3,usu/ecamp3,ecamp/ecamp3,ecamp/ecamp3 |
a2ec911a5b19fabe0bbaacb2ecad4e9597a0cef8 | appveyor.yml | appveyor.yml | version: '{branch} - #{build}'
image: Visual Studio 2015
platform:
- x64
environment:
PYTHON: C:\Python36-x64
BOOST_ROOT: C:\Libraries\boost_1_63_0
install:
- cmd: >-
git submodule update --init --recursive
SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
pip install numpy
echo %PYTHON%
build_sc... | version: '{branch} - #{build}'
image: Visual Studio 2015
platform:
- x64
environment:
PYTHON: C:\Python36-x64
BOOST_ROOT: C:\Libraries\boost_1_63_0
CMAKE_ARCH: x64
install:
- cmd: >-
git submodule update --init --recursive
SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
pip install numpy
echo ... | Set cmake architecture to 64 bit | Set cmake architecture to 64 bit
| YAML | mit | blue-yonder/turbodbc,blue-yonder/turbodbc,blue-yonder/turbodbc,blue-yonder/turbodbc |
4fca87682473f58af670c2546fb4426d34a564b1 | appveyor.yml | appveyor.yml | version: 1.0.{build}
before_build:
- ps: nuget restore
build:
verbosity: minimal
test_script:
- ps: vstest.console /logger:Appveyor /Platform:x64 saya.test\bin\x64\Debug\saya.test.dll | version: 0.1.{build}
branches:
only:
- master
- develop
skip_tags: true
environment:
github_auth_token:
secure: vpAA+FeczAwi89rRnwMJFro97U6516TV0/zns7+oQdcCS9/c/o6Xu6gZVVPkbtNN
configuration:
- Debug
- Release
before_build:
- ps: nuget restore
build:
verbosity: minimal
after_build:
- ps: >-
$Source = ... | Edit release flow on AppVeyor | Edit release flow on AppVeyor
| YAML | mit | sh4/saya,sh4/saya,sh4/saya |
4f2e55450446b9ed758f3be5d70f799dacfd097d | appveyor.yml | appveyor.yml | environment:
matrix:
- PYTHON: "C:\\Python27"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
USE_UNSUPPORTED_CONAN_WITH_PYTHON_2: "1"
TOXENV: "py27-conan-latest"
- PYTHON: "C:\\Python37"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
USE_UNSUPPORTED_CONAN_WITH_PYTHON_2: "1"
... | environment:
matrix:
- PYTHON: "C:\\Python27"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
USE_UNSUPPORTED_CONAN_WITH_PYTHON_2: "1"
TOXENV: "py27-conan-dev"
- PYTHON: "C:\\Python37"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
USE_UNSUPPORTED_CONAN_WITH_PYTHON_2: "1"
... | Add developmen test on Windows | Add developmen test on Windows
Signed-off-by: Uilian Ries <d4bad57018205bdda203549c36d3feb0bfe416a7@gmail.com>
| YAML | mit | conan-io/conan-package-tools |
204b28b612682dd3eca43ead6477984974bc6ab4 | appveyor.yml | appveyor.yml | # appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
# what combinations to test
environment:
matrix:
#node.js
- nodejs_version: 0.10
- nodejs_version: 0.11
- nodejs_version: 0.12
#io.js
- nodejs_version: 2.5.0
install:
- ps: Update... | # appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
# what combinations to test
environment:
matrix:
#node.js
- nodejs_version: 0.10
- nodejs_version: 0.11
- nodejs_version: 0.12
#io.js
- nodejs_version: 2.5.0
install:
- ps: Instal... | Use Install-Product instead of Update-NodeJsInstallation | Use Install-Product instead of Update-NodeJsInstallation
| YAML | apache-2.0 | resin-io/resin-device-operations |
266583db4d1fe3c8ca67f89421092e685b56d268 | appveyor.yml | appveyor.yml | # stolen from https://github.com/jakubroztocil/httpie/blob/master/appveyor.yml
build: false
environment:
matrix:
- PYTHON: "C:/Python37"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
- "set path=%PYTHON%/Scripts;%path%"
- "%PYTHON%/python.exe --version"
- "%PYTHON%/Scripts/pip.exe --version"
install:
... | # based on https://github.com/jakubroztocil/httpie/blob/master/appveyor.yml
build: false
environment:
matrix:
- PYTHON: "C:/Python38"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
- "set path=%PYTHON%/Scripts;%path%"
- "%PYTHON%/python.exe --version"
- "%PYTHON%/Scripts/pip.exe --version"
install:
- ... | Use Python 3.8 for tests on AppVeyor | Use Python 3.8 for tests on AppVeyor
| YAML | mit | getnikola/nikola,getnikola/nikola,okin/nikola,getnikola/nikola,okin/nikola,getnikola/nikola,okin/nikola,okin/nikola |
eaa4d57e71380ffe522487a638288af5b3696343 | appveyor.yml | appveyor.yml | os: Visual Studio 2019
version: 3.0.{build}
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
NUGET_XMLDOC_MODE: skip
branches:
only:
- master
cache:
- src\API\node_modules
- '%APPDATA%\npm\node_modules'
- '%APPDATA%\npm-cache'
install:
- ps: choco install powershell-core -y
- pwsh: npm insta... | os: Visual Studio 2019
version: 3.0.{build}
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
NUGET_XMLDOC_MODE: skip
branches:
only:
- master
cache:
- src\API\node_modules
- '%APPDATA%\npm\node_modules'
- '%APPDATA%\npm-cache'
install:
- ps: choco install powershell-core -y
- ps: npm install... | Revert to ps for npm install | Revert to ps for npm install
Install npm using non-Core PowerShell.
| YAML | mit | martincostello/api,martincostello/api,martincostello/api |
e71f0cf4c13f63c5e8512bccb5b1e09682967915 | appveyor.yml | appveyor.yml | environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\devtools\\appveyor\\run_with_env.cmd"
matrix:
- PY... | environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\devtools\\appveyor\\run_with_env.cmd"
matrix:
- PY... | Switch Appveyor to 64 bit architecture | Switch Appveyor to 64 bit architecture
| YAML | mit | choderalab/openmmtools,choderalab/openmmtools |
fc91d6010bb2f0b76bcdfe722c5777fdface2344 | appveyor.yml | appveyor.yml | version: 0.0.1.{build}
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
cache:
- packages -> **\packages.config
before_build:
- nuget restore
build:
ver... | version: 0.0.1.{build}
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
cache:
- packages -> **\packages.config
before_build:
- nuget restore
build:
ver... | Deploy to local AppVeyor server after build | Deploy to local AppVeyor server after build
| YAML | mit | drussilla/ZohoPeopleClient |
d224446fac0d15cc86ec7f50d19ba4a990570bf2 | appveyor.yml | appveyor.yml | version: 1.0.0
image: Visual Studio 2017
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: Source\**\AssemblyInfo.*
assembly_version: '{version}'
assembly_file_version: '{version}.{build}'
assembly_informational_version: '{version}'
before_build:
- ps: pushd Source
- nuget restore
- p... | version: 1.0.0.{build}
image: Visual Studio 2017
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: Source\**\AssemblyInfo.*
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
before_build:
- ps: pushd Source
- nuget restore
- ps... | Add build number to AppVeyor configuration | Add build number to AppVeyor configuration
| YAML | mit | cmpayments/payments-sdk-net,mvesign/payments-sdk-net |
b1a15c3fdec9b393f8a5a4aa5a85655d9dbe6872 | appveyor.yml | appveyor.yml | # environment variables
environment:
path_to_sln: src/src.sln
skip_tags: true
install:
- choco install gitversion.portable -pre -y
- cinst gitlink -version 2.4.1 -y
- cinst dotnetcore-sdk --pre
image: Visual Studio 2019 Preview
assembly_info:
patch: false
before_build:
- ps: gitversion /l conso... | # environment variables
environment:
path_to_sln: src/src.sln
skip_tags: true
install:
- choco install gitversion.portable -pre -y
- cinst gitlink -version 2.4.1 -y
- cinst dotnetcore-sdk --pre
- dotnet new -i Microsoft.AspNetCore.Blazor.Templates
image: Visual Studio 2019 Preview
assembly_info:
... | Build fix - Install blazor templates | Build fix
- Install blazor templates
| YAML | mit | dazinator/Dotnettency,dazinator/Dotnettency,dazinator/Dotnettency |
3006b8caa1a15fee9ca0daa760fba7d01e61d2f9 | appveyor.yml | appveyor.yml | # AppVeyor.com is a Continuous Integration service to build and run tests under
# Windows
environment:
global:
PYTHON: "C:\\conda"
MINICONDA_VERSION: "latest"
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci-helpers\\appveyor\\windows_sdk.cmd"
PYTHON_ARCH: "64" # needs to be set for CMD_IN_ENV to succe... | # AppVeyor.com is a Continuous Integration service to build and run tests under
# Windows
environment:
global:
PYTHON: "C:\\conda"
MINICONDA_VERSION: "latest"
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci-helpers\\appveyor\\windows_sdk.cmd"
PYTHON_ARCH: "64" # needs to be set for CMD_IN_ENV to succe... | Install the rest of the dependencies for tests | Install the rest of the dependencies for tests
| YAML | bsd-3-clause | barentsen/reproject,barentsen/reproject,astrofrog/reproject,astrofrog/reproject,barentsen/reproject,astrofrog/reproject |
f2f8c18921957f7dac472559e4d344d285dd0158 | appveyor.yml | appveyor.yml | version: '{build}'
image: Windows Server 2019
branches:
only:
- master
clone_depth: 10
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- cinst msys2 --params "/NoUpdate"
- refreshenv
- ridk install 2 3
- gem install ruby-debug-ide
- ps: Install-Product node lt... | version: '{build}'
image: Windows Server 2019
branches:
only:
- master
clone_depth: 10
install:
- ruby --version
- gem --version
- cinst msys2 --params "/NoUpdate"
- refreshenv
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ridk install 2 3
- gem install ruby-debug-ide
- ps: Install-Product node lt... | Set ruby version specific path after running refreshenv | Set ruby version specific path after running refreshenv
| YAML | mit | rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby |
8ee53528ad5a2d2fe6782aae59446a41728347c3 | appveyor.yml | appveyor.yml | version: '{build}'
install:
- git submodule update --init --recursive
nuget:
project_feed: true
disable_publish_on_pr: true
build_script:
- build.cmd Default
test: off
artifacts:
- path: bin/Arachne.*.nupkg
name: nuget
| version: '{build}'
install:
- git submodule update --init --recursive
nuget:
project_feed: true
disable_publish_on_pr: true
build_script:
- build.cmd Default
test: off
artifacts:
- path: bin/Arachne.*.nupkg
name: nuget
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/483150f6f9c28934e89b
| Add AppVeyor webhook for gitter | Add AppVeyor webhook for gitter | YAML | mit | kolektiv/arachne,freya-fs/arachne,panesofglass/arachne |
79879b6c0852cbdb3860837dc6c4284331ad6575 | arararc.yaml | arararc.yaml | !config
preambles:
minimize_runs: |
% arara: pdflatex: {interaction: batchmode, synctex: yes,
% arara: --> options: ["-file-line-error", "-max-print-line=120"]}
% arara: biber if found('log', 'Please \\(re\\)run Biber on the file')
% arara: --> && found('bcf', 'citekey')
% ar... | !config
# Define key to minimize number of runs.
# Note that we always use batchmode since Arara sees pdftex exit code and stops
# without executing further directives only if the exit code of the command was
# not zero (independent of the visibility on the console).
preambles:
minimize_runs: |
% arara: pd... | Add comment about why we use batchmode when defining minimize_runs key | Add comment about why we use batchmode when defining minimize_runs key
| YAML | mit | petobens/dotfiles,petobens/dotfiles,petobens/dotfiles |
aed5b31e1cf79661286bfcaf11f5b7da64d31872 | ansible/lh-radiology.yml | ansible/lh-radiology.yml | ---
- hosts: 'radiology.librehealth.io'
become: true
tasks:
- name: Clone Docker Repository on host
git:
repo: 'https://gitlab.com/librehealth/lh-radiology-docker.git'
dest: '/var/radiology'
update: yes
clone: yes
- name: Start Docker Containers
docker_compose:
... | ---
- hosts: radiology
become: true
tasks:
- name: Clone Docker Repository on host
git:
repo: 'https://gitlab.com/librehealth/lh-radiology-docker.git'
dest: '/var/radiology'
update: yes
clone: yes
- name: Start Docker Containers
community.docker.docker_compose:
... | Update LH Radiology Ansible play | Update LH Radiology Ansible play
| YAML | mpl-2.0 | LibreHealthIO/community-infra,LibreHealthIO/community-infra,LibreHealthIO/community-infra,LibreHealthIO/community-infra,LibreHealthIO/community-infra |
c7367a4bb3529d8cf91ac69eab27b0ef16e0a799 | thermof/parameters/job_parameters.yaml | thermof/parameters/job_parameters.yaml | scheduler: slurm
name: therMOF
nodes: 2
ppn: 12
walltime: 12:00:00
cluster: mpi
queue: idist_big
input: in.thermof
output: lammps_out.txt
| scheduler: slurm
name: therMOF
nodes: 2
ppn: 12
walltime: 12:00:00
cluster: mpi
queue: idist_big
input: in.thermof
output: lammps_out.txt
prefix: job
| Add job submission file prefix. | Add job submission file prefix.
| YAML | mit | kbsezginel/tee_mof,kbsezginel/tee_mof |
91c8c2d70fecba7e4f38bbee6b2e129341f3074a | .expeditor/config.yml | .expeditor/config.yml | # Documentation available at https://expeditor-docs.es.chef.io/
github:
# The file where the MAJOR.MINOR.PATCH version is kept. The version in this file
# is bumped automatically via the `built_in:bump_version` merge_action.
version_file: "VERSION"
# The file where our CHANGELOG is kept. This file is updated a... | # Documentation available at https://expeditor-docs.es.chef.io/
github:
# The file where the MAJOR.MINOR.PATCH version is kept. The version in this file
# is bumped automatically via the `built_in:bump_version` merge_action.
version_file: "VERSION"
# The file where our CHANGELOG is kept. This file is updated a... | Send Expeditor notifications to sa habitat specific channel in Chef Slack | Send Expeditor notifications to sa habitat specific channel in Chef Slack
Signed-off-by: Scott Hain <54f99c3933fb11a028e0e31efcf2f4c9707ec4bf@chef.io>
| YAML | apache-2.0 | habitat-sh/habitat,habitat-sh/habitat,rsertelon/habitat,habitat-sh/habitat,rsertelon/habitat,rsertelon/habitat,habitat-sh/habitat,rsertelon/habitat,rsertelon/habitat,rsertelon/habitat,habitat-sh/habitat,rsertelon/habitat,habitat-sh/habitat,habitat-sh/habitat,habitat-sh/habitat |
cbe3a15a8e53f600d519a17d7eabab1f7d96e2ab | tools/setup_nodes.yml | tools/setup_nodes.yml | ---
- hosts: all
sudo: yes
tasks:
- name: Setup /etc/hosts
copy:
src: /etc/hosts
dest: /etc/hosts
- name: Assign hostname
hostname:
name: "{{ inventory_hostname }}"
- name: Copy setup script
copy:
src: setup_{{ ansible_os_family }}.sh
dest: /tmp/setup.sh
mode:... | ---
- hosts: all
sudo: yes
tasks:
- name: Setup /etc/hosts
copy:
src: /etc/hosts
dest: /etc/hosts
- name: Ensure /etc/hostname is valid for SELinux
command: restorecon -v /etc/hostname
when: ansible_os_family == 'RedHat'
- name: Assign hostname
hostname:
name: "{{ inventory... | Make sure /etc/hostname is valid for SELinux | Make sure /etc/hostname is valid for SELinux
In the gate, it is possible for /etc/hostname to not have a valid
SELinux security conext. So, reset them to default before we update
the hostname to avoid:
TASK: [Assign hostname]
failed: [node1] => {"failed": true}
msg: Command failed rc=1, out=, err=Could not set ... | YAML | apache-2.0 | negronjl/kolla,negronjl/kolla,negronjl/kolla |
e7b3b467c91c3197f946a215da766c22ecc670b3 | templates/2.1.0/release-vars.yml | templates/2.1.0/release-vars.yml | solace_load_version: soltr_8.12.0.1007
bosh_stemcell: "ubuntu-trusty"
bosh_stemcell_version: "3586.26"
solace_service_broker_jar: solace-service-broker-0.0.1135.jar
| solace_load_version: soltr_8.12.0.1007
bosh_stemcell: "ubuntu-trusty"
bosh_stemcell_version: "3586.26"
solace_service_broker_jar: solace-service-broker-0.0.1135.jar
cf_mysql_version: "36.14.0"
| Use a new variable for the cf-mysql release version | Use a new variable for the cf-mysql release version
| YAML | apache-2.0 | SolaceDev/solace-messaging-cf-dev,SolaceDev/solace-messaging-cf-dev |
ea64ac9d68d11bce123af08c9fe2ee7febc46f4a | Resources/translations/messages.en.yml | Resources/translations/messages.en.yml | password_reset_token:
action:
request:
link: Forgot password?
submit: Get link
submitted: Link was sent to e-mail %email%. Check mail:
success: Link successfully sent
title: Get password reset link
user_email: E-mail
... | password_reset_token:
action:
request:
link: Forgot password?
submit: Get link
submitted: Link was sent to e-mail %email%. Check mail:
success: Link successfully sent
title: Get password reset link
user_email: E-mail
... | Move security translations to user bundle. | Move security translations to user bundle.
| YAML | mit | DarvinStudio/DarvinUserBundle,DarvinStudio/DarvinUserBundle |
c5793514c4202ca2fb80ca6655e792357cad7f1b | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
- type: directory
path: _experiments
label: Experiments
create: all
match: "**/*"
- type: directory
path: _portfolio
label: P... | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
- type: directory
path: _experiments
label: Experiments
create: all
match: "**/*"
- type: directory
path: _portfolio
label: P... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | apache-2.0 | Talor-A/talor-a.github.io,Talor-A/talor-a.github.io |
fdf7906888318fb450deadfb981ec81022f899e9 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: document
path: about
label: About
match: "**/*"
- type: directory
path: _events
label: Events
create: all
match: "**/*"
- type: directory
path: _programs
label: Programs
create: none
match: "**/*"
- type: ... | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: document
path: about/**
label: About
- type: directory
path: _events
label: Events
create: all
match: "**/*"
- type: directory
path: _programs
label: Programs
create: none
match: "**/*"
- type: directory
p... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | siggraph-s3/s3-website,siggraph-s3/s3-website,siggraph-s3/s3-website |
0ec716eb20535ed342f113bb022c00a4e28d257c | .forestry/settings.yml | .forestry/settings.yml | ---
upload_path: "/static/uploads/:year:/:month:/:day:"
frontmatter_file_url_template: "/uploads/:year:/:month:/:day:"
body_file_url_template: "/uploads/:year:/:month:/:day:"
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
version: 0.30.2
| ---
upload_path: "/static/blog/uploads/:year:/:month:/:day:"
frontmatter_file_url_template: "/blog/uploads/:year:/:month:/:day:"
body_file_url_template: "/blog/uploads/:year:/:month:/:day:"
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
version: 0.30.2
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | buremba/rakam-landpage,buremba/rakam-landpage |
02b5c40bc4d2c64d79b49bdb27457b342d888e84 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: directory
path: _uploads
label: Uploads
create: all
match: "**/*"
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
front_matte... | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
- type: directory
path: _uploads
label: Uploads
create: all
match: "**/*"
upload_dir: uploads
public_path: "/uploads"
front_matte... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | KleoPetroff/kleopetroff.github.io,KleoPetroff/kleopetroff.github.io,KleoPetroff/kleopetroff.github.io |
20004a5d3558271fd95a0c3561f8c7524bb51e10 | .github/dependabot.yml | .github/dependabot.yml | version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
versioning-strategy: increase-if-necessary
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
| version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
versioning-strategy: increase-if-necessary
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
| Update GH actions less frequently | Update GH actions less frequently
| YAML | mit | forresto/noflo-gum |
25a230c82cd75cc2724d38cdec01374409e83250 | tasks/system_rom.yml | tasks/system_rom.yml | ---
- name: Identifying System ROM device
shell: hp-conrep -s | grep -i family | awk '{print $NF}' | tr A-Z a-z
register: systemrom
- name: Installing firmware RPM for System ROM
yum: name=hp-firmware-system-{{ systemrom.stdout }} state=latest
- name: Firmware path lookup
shell: rpm -ql hp-firmware-sys... | ---
- name: Identifying System ROM device
shell: hp-conrep -s | grep -i family | awk '{print $NF}' | tr A-Z a-z
register: systemrom
- name: Installing firmware RPM for System ROM
yum: name=hp-firmware-system-{{ systemrom.stdout }} state=latest
- name: Firmware path lookup
shell: rpm -ql hp-firmware-sys... | Handle reboot question by sending "n" | Handle reboot question by sending "n"
We really need to have an optional handler to do the reboot here, but
obviously this is risky! Ideally this would happen only when the machine
is first kickstarted.
| YAML | mit | CSC-IT-Center-for-Science/ansible-role-hp-firmware-upgrade |
c6d49d64d7d11287771d40205d18602419ce9088 | packages/hs/hs-rs-notify.yaml | packages/hs/hs-rs-notify.yaml | homepage: https://github.com/NoRedInk/hs-rs-notify#readme
changelog-type: ''
hash: 03b6fa1b614d8c553a8e85f5e48f1e9a33f42d931633d1f30739bfacb95bad70
test-bench-deps:
base: -any
protolude: ! '>=0.1.6 && <0.2'
hs-rs-notify: -any
maintainer: example@example.com
synopsis: Experimental! Wraps this awesome rust library ... | homepage: https://github.com/NoRedInk/hs-rs-notify#readme
changelog-type: ''
hash: 99c0ea1c9dbc2ab52e79777d0b77eaef06c9a93dc431310f4a9914b6a20a734a
test-bench-deps:
base: -any
protolude: ! '>=0.1.6 && <0.2'
hs-rs-notify: -any
maintainer: christoph@noredink.com
synopsis: Experimental! Wraps this awesome rust libra... | Update from Hackage at 2018-02-18T02:37:44Z | Update from Hackage at 2018-02-18T02:37:44Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9d73ed30a705da09e212bd23a6434f1059feca48 | packages/ra/rawstring-qm.yaml | packages/ra/rawstring-qm.yaml | homepage: https://github.com/tolysz/rawstring-qm
changelog-type: text
hash: 4898410f54a902f763ef1f6010b3b47b74fbcc452daf111db3b543ba32233738
test-bench-deps: {}
maintainer: tolysz@gmail.com
synopsis: Simple raw string quotation and dictionary interpolation
changelog: ! '0.2.0
* remove lookup i.e. {} will not work fr... | homepage: https://github.com/tolysz/rawstring-qm
changelog-type: text
hash: d856c4c9407a2bf37aa5c129a34109bdbeec1cecbdcd91f84be9efcb972ab954
test-bench-deps: {}
maintainer: tolysz@gmail.com
synopsis: Simple raw string quotation and dictionary interpolation
changelog: ! '0.2.0
* remove lookup i.e. {} will not work fr... | Update from Hackage at 2016-07-02T22:25:44+0000 | Update from Hackage at 2016-07-02T22:25:44+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
1ce54b43c5e950bd5703e7b0a63fd393868db7fc | packages/sm/smash-optics.yaml | packages/sm/smash-optics.yaml | homepage: https://github.com/emilypi/smash
changelog-type: markdown
hash: d6b65effdb38edf99746e31f02f6234418c4d475fa97f6b94b7a1d7bbd090e68
test-bench-deps: {}
maintainer: emilypi@cohomolo.gy
synopsis: Optics for the `smash` library using `optics-core`
changelog: |
# Revision history for smash-optics
## 0.1.0.0
... | homepage: https://github.com/emilypi/smash
changelog-type: markdown
hash: 149f144409e373ebee68e56128a77f3ff907a4de424576cbcef3980096fdf3cf
test-bench-deps: {}
maintainer: emilypi@cohomolo.gy
synopsis: Optics for the `smash` library
changelog: |
# Revision history for smash-optics
## 0.1.0.0
* First version. Rel... | Update from Hackage at 2020-07-14T02:13:56Z | Update from Hackage at 2020-07-14T02:13:56Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f001295eab76fb367d07fb1d837b6c27bfd42f1e | .github/workflows/cherry-pick.yml | .github/workflows/cherry-pick.yml | name: Cherry pick commit(s)
on:
workflow_dispatch:
inputs:
commit:
description: 'Commit to cherrypick'
required: true
branch:
description: 'Branch to cherry pick to'
required: true
default: 'v5-09-XX'
jobs:
build:
runs-on: ubuntu-latest
steps:... | name: Cherry pick commit(s)
on:
workflow_dispatch:
inputs:
commit:
description: 'Commit to cherrypick'
required: true
branch:
description: 'Branch to cherry pick to'
required: true
default: 'v5-09-XX'
jobs:
build:
runs-on: ubuntu-latest
steps:... | Add workflow to do cherrypicks | Add workflow to do cherrypicks
| YAML | bsd-3-clause | miranov25/AliRoot,alisw/AliRoot,coppedis/AliRoot,alisw/AliRoot,miranov25/AliRoot,coppedis/AliRoot,coppedis/AliRoot,miranov25/AliRoot,coppedis/AliRoot,coppedis/AliRoot,coppedis/AliRoot,alisw/AliRoot,miranov25/AliRoot,miranov25/AliRoot,miranov25/AliRoot,alisw/AliRoot,miranov25/AliRoot,coppedis/AliRoot,alisw/AliRoot,alisw... |
34e44ed9ab30fe4314f37d5e6b0ce9863248cc22 | .github/workflows/pmg-testing.yml | .github/workflows/pmg-testing.yml | name: Pymatgen testing
on: [push]
jobs:
build:
strategy:
max-parallel: 6
matrix:
os: [ubuntu-latest, macOS-latest]
python-version: [3.6, 3.7]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
u... | name: Pymatgen testing
on: [push]
jobs:
build:
strategy:
max-parallel: 6
matrix:
os: [ubuntu-latest, macOS-latest]
python-version: [3.6, 3.7]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
u... | Fix syntax for if conditional | Fix syntax for if conditional | YAML | mit | vorwerkc/pymatgen,fraricci/pymatgen,davidwaroquiers/pymatgen,vorwerkc/pymatgen,richardtran415/pymatgen,mbkumar/pymatgen,gVallverdu/pymatgen,richardtran415/pymatgen,richardtran415/pymatgen,mbkumar/pymatgen,tschaume/pymatgen,gmatteo/pymatgen,gVallverdu/pymatgen,gVallverdu/pymatgen,vorwerkc/pymatgen,tschaume/pymatgen,tsch... |
e0bf70580d1aa6e74757a6814370bbc0e52ad658 | heat-templates/ironic-deployment.yaml | heat-templates/ironic-deployment.yaml | heat_template_version: 2014-10-16
parameters:
config_drive_label:
type: string
default: config-2
discovery_metadata_key:
type: string
default: hardware
flavor:
type: string
default: baremetal
image:
type: string
default: openstack-full
key_name:
type: string
defaul... | heat_template_version: 2014-10-16
parameters:
config_drive_label:
type: string
default: config-2
discovery_metadata_key:
type: string
default: hardware
flavor:
type: string
default: baremetal
image:
type: string
default: openstack-full
key_name:
type: string
defaul... | Add bit to heat template user data script to enable ssh root login | Add bit to heat template user data script to enable ssh root login
| YAML | apache-2.0 | dmsimard/instack-undercloud,bcrochet/instack-undercloud,dpkshetty/instack-undercloud,rdo-management/instack-undercloud,bcrochet/instack-undercloud,eprasad/instack-undercloud,agroup/instack-undercloud,agroup/instack-undercloud,eprasad/instack-undercloud,dmsimard/instack-undercloud,rdo-management/instack-undercloud,dpksh... |
76fd7979837ad3e10d8ca8089ac6c336c5dbfb5d | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: config.yaml
label: Configuration
upload_dir: ''
public_path: ''
front_matter_path: https://res.cl... | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: config.yaml
label: Configuration
upload_dir: ''
public_path: ''
front_matter_path: https://res.cl... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io |
f35262d49b9ef2f67b6123b5d09ab1570a2dd9e4 | _config/extensions.yml | _config/extensions.yml | ---
Name: clear-requirements-extensions
After: 'framework/*','cms/*'
---
Page_Controller:
extensions:
['RequirementsClearer']
| ---
Name: clear-requirements-extensions
---
Page_Controller:
extensions:
['WebOfTalent\ClearRequirements\RequirementsClearer']
| Remove after framework and cms which is borked | MINOR: Remove after framework and cms which is borked
| YAML | bsd-3-clause | gordonbanderson/clearrequirements |
54cc0107e6272e812557a78607a89e7919b80206 | packages/ge/geom2d.yaml | packages/ge/geom2d.yaml | homepage: ''
changelog-type: ''
hash: 2f7a05e255462ca53acd0a81d02f1cbab45e2fa93298f24ffa6f3655d6124c26
test-bench-deps:
base: ==4.8.*
ieee754: ==0.7.*
QuickCheck: ==2.7.*
maintainer: sebastian.jordan.mail@googlemail.com
synopsis: package for geometry in euklidean 2d space
changelog: ''
basic-deps:
base: ! '>=4.... | homepage: ''
changelog-type: ''
hash: b982a2c7c95c3ce257c7de9fc50ca5b62d4e509ec377d28cf67a103397c2b3ad
test-bench-deps:
base: ==4.8.*
ieee754: ==0.7.*
QuickCheck: ==2.7.*
maintainer: sebastian.jordan.mail@googlemail.com
synopsis: package for geometry in euklidean 2d space
changelog: ''
basic-deps:
base: ! '>=4.... | Update from Hackage at 2015-06-03T02:20:58+0000 | Update from Hackage at 2015-06-03T02:20:58+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
f881470d7bccf42d5b421f92ace8891e3858873c | recipes/isort/meta.yaml | recipes/isort/meta.yaml | {% set version = "4.2.5" %}
{% set md5 = "71489ebd936429d5bda2af7ae662ed78" %}
package:
name: isort
version: {{ version }}
source:
fn: isort-{{version}}.tar.gz
url: https://pypi.io/packages/source/i/isort/isort-{{ version }}.tar.gz
md5: {{ md5 }}
build:
script: python setup.py install --single-version-... | {% set version = "4.2.8" %}
{% set md5 = "7b9de538bc7401a5ed180fbc8773c34c" %}
package:
name: isort
version: {{ version }}
source:
fn: isort-{{version}}.tar.gz
url: https://pypi.io/packages/source/i/isort/isort-{{ version }}.tar.gz
md5: {{ md5 }}
build:
script: python setup.py install --single-version-... | Update isort to version 4.2.8 | Update isort to version 4.2.8
Change to noarch python package
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
92943283aa8cd32298a09f59e9db7427b2fa1f75 | playbooks/roles/ubuntu/tasks/main.yml | playbooks/roles/ubuntu/tasks/main.yml | ---
- name: Install libraries using APT
apt: name={{ item }} state=latest
sudo: true
with_items:
- ack-grep
- bash
- curl
- git
- htop
- nmap
- node
- most
- python
- python-pip
# for FASD
- python-pycurl
- python3
- vim
- wget
- zsh
- name: Change ... | ---
- name: Update packages
apt: upgrade=dist update_cache=yes
- name: Install libraries using APT
apt: name={{ item }} state=latest
sudo: true
with_items:
- ack-grep
- bash
- curl
- git
- htop
- nmap
- node
- most
- python
- python-pip
# for FASD
- python-pycurl... | Update packages on Ubuntu machines | Update packages on Ubuntu machines
| YAML | mit | smathson/dotfiles |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.