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
147b6bccf01b3f720764e4da2226a149da205f9d
recipes/pyudev/meta.yaml
recipes/pyudev/meta.yaml
{% set name = "pyudev" %} {% set version = "0.23.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyudev-{{ version }}.tar.gz sha256: 32ae3585b320a51bc283e0a04000fd8a25599edb44541e2f5034f6afee5d15cc build: noarch: python script: {{ PYTHON }} -m pip install . -vv number: 0 requirements: host: - pip - python run: - python - six test: imports: - pyudev commands: - pip check requires: - pip about: home: http://pyudev.readthedocs.org/ summary: A libudev binding doc_url: https://pythonhosted.org/pyudev/ license: LGPL-2.1-only license_file: COPYING extra: recipe-maintainers: - ruben-arts
{% set name = "pyudev" %} {% set version = "0.23.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyudev-{{ version }}.tar.gz sha256: 32ae3585b320a51bc283e0a04000fd8a25599edb44541e2f5034f6afee5d15cc build: noarch: python script: {{ PYTHON }} -m pip install . -vv number: 0 requirements: host: - pip - python >=3.6 run: - python >=3.6 - six test: imports: - pyudev commands: - pip check requires: - pip about: home: http://pyudev.readthedocs.org/ summary: A libudev binding doc_url: https://pythonhosted.org/pyudev/ license: LGPL-2.1-only license_file: COPYING extra: recipe-maintainers: - ruben-arts
Revert "remove python version constraints"
Revert "remove python version constraints" This reverts commit 7d3529b97eea3c2bff31a36b6e017afccaacddee.
YAML
bsd-3-clause
jakirkham/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes
c84586866aff1de888220dcfd60861f75e8e4f3a
roles/fun/tasks/main.yml
roles/fun/tasks/main.yml
- name: Ensure ppas are installed apt_repository: repo: "{{ item }}" state: "present" codename: "xenial" with_items: "{{ ppas }}" become: True - name: Update cache apt: update_cache: True become: True - name: Install fun packages package: name: "{{ item }}" state: present with_items: "{{ packages }}" become: True
- name: Ensure ppas are installed apt_repository: repo: "{{ item }}" state: "present" codename: "xenial" update_cache: True with_items: "{{ ppas }}" become: True - name: Install fun packages package: name: "{{ item }}" state: present with_items: "{{ packages }}" become: True
Fix cache for fun ppa
Fix cache for fun ppa
YAML
apache-2.0
mansonjesus/ansible-playbooks
8e034fb1127283381269f302804166ea1fde4b1b
docker-compose.yml
docker-compose.yml
web: build: . ports: - "8080:80" links: - mysql env_file: - env volumes: - .:/var/chippin - ./src/var/connect:/var/www/htdocs/var/connect mysql: image: mysql:5.6.23 env_file: - env #selenium: #image: selenium/standalone-chrome #ports: #- "4444:4444"
web: build: . ports: - "80:80" links: - mysql env_file: - env volumes: - .:/var/chippin - ./src/var/connect:/var/www/htdocs/var/connect mysql: image: mysql:5.6.23 env_file: - env #selenium: #image: selenium/standalone-chrome #ports: #- "4444:4444"
Correct the port bound locally
Correct the port bound locally
YAML
mit
Chippin/magento-chippin,Chippin/magento-chippin,Chippin/magento-chippin
b0425ea48c4ee7141d0cfbb3975e83fea5319ad2
docker-compose.yml
docker-compose.yml
version: '3' services: rosie: build: context: rosie volumes: - /tmp/serenata-data:/tmp/serenata-data - ./rosie:/code django: image: serenata/django depends_on: - elm - postgres - tasks environment: - NEW_RELIC_APP_NAME=Jarbas (Django); Jarbas (Combined) env_file: - .env hostname: django ports: - "8000:8000" volumes: - .:/code - ./contrib/data:/mnt/data tasks: image: serenata/django environment: - NEW_RELIC_APP_NAME=Jarbas (Celery); Jarbas (Combined) env_file: - .env depends_on: - queue command: ["newrelic-admin", "run-program", "celery", "worker", "--app", "jarbas"] volumes: - .:/code hostname: tasks elm: command: ["npm", "run", "watch"] image: serenata/elm volumes: - ./jarbas:/code/jarbas hostname: elm queue: image: rabbitmq:3.7.3-alpine hostname: queue postgres: image: postgres:10.3-alpine env_file: - .env volumes: - ./db:/var/lib/postgresql ports: - "5432:5432" research: build: context: research volumes: - ./research:/mnt/code hostname: research command: ["jupyter", "notebook"]
version: '3' services: rosie: build: context: rosie volumes: - /tmp/serenata-data:/tmp/serenata-data - ./rosie:/code django: image: serenata/django depends_on: - elm - postgres - tasks environment: - NEW_RELIC_APP_NAME=Jarbas (Django); Jarbas (Combined) env_file: - .env hostname: django ports: - "8000:8000" volumes: - .:/code - ./contrib/data:/mnt/data tasks: image: serenata/django environment: - NEW_RELIC_APP_NAME=Jarbas (Celery); Jarbas (Combined) env_file: - .env depends_on: - queue command: ["newrelic-admin", "run-program", "celery", "worker", "--app", "jarbas"] volumes: - .:/code hostname: tasks elm: command: ["npm", "run", "watch"] image: serenata/elm volumes: - ./jarbas:/code/jarbas hostname: elm queue: image: rabbitmq:3.7.3-alpine hostname: queue postgres: image: postgres:10.3-alpine env_file: - .env volumes: - ./db:/var/lib/postgresql ports: - "5432:5432" research: build: context: research volumes: - ./research:/mnt/code hostname: research
Clean up research container command
Clean up research container command
YAML
mit
datasciencebr/serenata-de-amor,datasciencebr/serenata-de-amor
7a2c77b885d7d41ffbaaca610bc21cc8611744a7
kubernetes-in/client-pod.yaml
kubernetes-in/client-pod.yaml
kind: Pod apiVersion: v1beta1 id: &name client labels: name: *name desiredState: manifest: version: v1beta1 containers: - name: *name registry: %docker_registry% image: %docker_image_prefix%/openstack-client env: - key: OS_USERNAME value: demo - key: OS_TENANT_NAME value: demo - key: OS_PASSWORD value: %demo_user_password% restartPolicy: never: {}
kind: Pod apiVersion: v1beta1 id: &name client labels: name: *name desiredState: manifest: version: v1beta1 containers: - name: *name registry: %docker_registry% image: %docker_image_prefix%/openstack-client env: - key: OS_USERNAME value: demo - key: OS_TENANT_NAME value: demo - key: OS_PASSWORD value: %demo_user_password% command: ["/bin/sh -c 'while :; do sleep 86400; done'"] restartPolicy: never: {}
Make 'client' pod just loop forever
Make 'client' pod just loop forever This pod is a poor hack anyway - giving a 'loop forever' command means we can attach to it interactively.
YAML
apache-2.0
anguslees/kube-openstack,anguslees/kube-openstack
178e18c0b0090192ec6cf1449023bf14c0eab8c9
exercises/proverb/metadata.yml
exercises/proverb/metadata.yml
--- blurb: "For want of a horseshoe nail, a kingdom was lost, or so the saying goes. Write a program that outputs the full text of this proverbial rhyme." source: "Wikipedia" source_url: "http://en.wikipedia.org/wiki/For_Want_of_a_Nail"
--- blurb: "For want of a horseshoe nail, a kingdom was lost, or so the saying goes. Output the full text of this proverbial rhyme." source: "Wikipedia" source_url: "http://en.wikipedia.org/wiki/For_Want_of_a_Nail"
Remove "write a program" from proverb exercise
Remove "write a program" from proverb exercise
YAML
mit
kgengler/x-common,ErikSchierboom/x-common,exercism/x-common,Vankog/problem-specifications,exercism/x-common,ErikSchierboom/x-common,Vankog/problem-specifications,petertseng/x-common,petertseng/x-common,rpottsoh/x-common,jmluy/x-common,rpottsoh/x-common,jmluy/x-common,kgengler/x-common,jmluy/x-common
e3c149e9ce17ef007e0a6a950472ad2f6334ff60
.bazelci/presubmit.yml
.bazelci/presubmit.yml
--- x_defaults: # YAML has a feature for "repeated nodes", BazelCI is fine with extra nodes # it doesn't know about; so that is used to avoid repeating common subparts. common: &common platform: macos build_targets: - "tools/..." - "test/..." test_targets: - "tools/..." - "test/..." - "examples/..." # NOTE: To avoid listing the same things for build_flags/test_flags for each # of these tasks, they are listed in the .bazelrc instead. tasks: macos_last_green: name: "Last Green Bazel" bazel: last_green <<: *common buildifier: version: latest # TODO(b/140759502): Remove native-cc from this list. # TODO(b/140759593): Remove native-py from this list. # Disable 'bzl-visibility' since it doesn't work properly. # https://github.com/bazelbuild/buildtools/issues/718 # TODO(b/155657940): Remove unnamed-macro from this list. warnings: -native-cc,-native-py,-bzl-visibility,-unnamed-macro
--- x_defaults: # YAML has a feature for "repeated nodes", BazelCI is fine with extra nodes # it doesn't know about; so that is used to avoid repeating common subparts. common: &common platform: macos build_targets: - "tools/..." - "test/..." test_targets: - "tools/..." - "test/..." - "examples/..." # NOTE: To avoid listing the same things for build_flags/test_flags for each # of these tasks, they are listed in the .bazelrc instead. tasks: macos_last_green: name: "Last Green Bazel" bazel: last_green <<: *common buildifier: version: latest # TODO(b/140759502): Remove native-cc from this list. # TODO(b/140759593): Remove native-py from this list. # Disable 'bzl-visibility' since it doesn't work properly. # https://github.com/bazelbuild/buildtools/issues/718 # TODO(b/155657940): Remove unnamed-macro from this list. # TODO(b/158011388): Remove skylark-{comment,docstring} from this list. warnings: -native-cc,-native-py,-bzl-visibility,-unnamed-macro,-skylark-comment,-skylark-docstring
Disable new buildifier warnings `-skylark-comment` and `-skylark-docstring` until we can clean up the code.
Disable new buildifier warnings `-skylark-comment` and `-skylark-docstring` until we can clean up the code. RELNOTES: None. PiperOrigin-RevId: 314376109
YAML
apache-2.0
bazelbuild/rules_apple,bazelbuild/rules_apple,bazelbuild/rules_apple,bazelbuild/rules_apple
7249801346105fdf2e274d5f6c54abb2ef7430d3
metadata/com.hardcodecoder.pulsemusic.yml
metadata/com.hardcodecoder.pulsemusic.yml
Categories: - Multimedia License: GPL-3.0-only AuthorName: Ashutosh Patoa SourceCode: https://github.com/HardcodeCoder/PulseMusic IssueTracker: https://github.com/HardcodeCoder/PulseMusic/issues Changelog: https://github.com/HardcodeCoder/PulseMusic/releases AutoName: Pulse Music RepoType: git Repo: https://github.com/HardcodeCoder/PulseMusic Builds: - versionName: 4.0.5 versionCode: 210040005 commit: v4.0.5 subdir: app gradle: - yes - versionName: 4.0.6 versionCode: 210040006 commit: v4.0.6 subdir: app gradle: - yes - versionName: 4.1.0 versionCode: 210040100 commit: v4.1.0 subdir: app gradle: - yes - versionName: 4.1.1 versionCode: 210040101 commit: v4.1.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 4.1.1 CurrentVersionCode: 210040101
Categories: - Multimedia License: GPL-3.0-only AuthorName: Ashutosh Patoa SourceCode: https://github.com/HardcodeCoder/PulseMusic IssueTracker: https://github.com/HardcodeCoder/PulseMusic/issues Changelog: https://github.com/HardcodeCoder/PulseMusic/releases AutoName: Pulse Music RepoType: git Repo: https://github.com/HardcodeCoder/PulseMusic Builds: - versionName: 4.0.5 versionCode: 210040005 commit: v4.0.5 subdir: app gradle: - yes - versionName: 4.0.6 versionCode: 210040006 commit: v4.0.6 subdir: app gradle: - yes - versionName: 4.1.0 versionCode: 210040100 commit: v4.1.0 subdir: app gradle: - yes - versionName: 4.1.1 versionCode: 210040101 commit: v4.1.1 subdir: app gradle: - yes - versionName: 4.2.1 versionCode: 210040201 commit: v4.2.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 4.2.1 CurrentVersionCode: 210040201
Update Pulse Music to 4.2.1 (210040201)
Update Pulse Music to 4.2.1 (210040201)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
c3ccf8e8baa4551b4c1b2196c68dcf63cbe75348
metadata/com.outerworldapps.wairtonow.yml
metadata/com.outerworldapps.wairtonow.yml
Categories: - Navigation License: GPL-2.0-only AuthorName: Mike Rieker WebSite: https://www.outerworldapps.com SourceCode: https://github.com/mrieker/WairToNow IssueTracker: https://github.com/mrieker/WairToNow/issues Changelog: https://github.com/mrieker/WairToNow/releases AutoName: WairToNow RepoType: git Repo: https://github.com/mrieker/WairToNow.git Builds: - versionName: 4.11.3 versionCode: 41103 commit: v4.11.3 subdir: app gradle: - yes - versionName: '5.0' versionCode: 50000 commit: v5.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '5.0' CurrentVersionCode: 50000
Categories: - Navigation License: GPL-2.0-only AuthorName: Mike Rieker WebSite: https://www.outerworldapps.com SourceCode: https://github.com/mrieker/WairToNow IssueTracker: https://github.com/mrieker/WairToNow/issues Changelog: https://github.com/mrieker/WairToNow/releases AutoName: WairToNow RepoType: git Repo: https://github.com/mrieker/WairToNow.git Builds: - versionName: 4.11.3 versionCode: 41103 commit: v4.11.3 subdir: app gradle: - yes - versionName: '5.0' versionCode: 50000 commit: v5.0 subdir: app gradle: - yes - versionName: '5.1' versionCode: 50100 commit: v5.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '5.1' CurrentVersionCode: 50100
Update WairToNow to 5.1 (50100)
Update WairToNow to 5.1 (50100)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
b7faf84d51495407073bcd3fbece37184eeb83e4
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: "/static/admin" webhook_url: sections: - type: directory path: projects label: Projects create: documents match: "**/*.md" templates: - project - type: directory path: journal label: Journal create: documents match: "**/*.md" templates: - journal - type: document path: data/theme.json label: Theme config upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" instant_preview: true build: preview_command: gridsome build publish_command: gridsome build preview_output_directory: dist output_directory: dist instant_preview_command: gridsome develop install_dependencies_command: nom install preview_docker_image: node:10 mount_path: "/srv"
--- new_page_extension: md auto_deploy: false admin_path: "/static/admin" webhook_url: sections: - type: directory path: projects label: Projects create: documents match: "**/*.md" templates: - project - type: directory path: journal label: Journal create: documents match: "**/*.md" templates: - journal - type: document path: data/theme.json label: Theme config upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" instant_preview: true build: preview_command: gridsome build publish_command: gridsome build preview_output_directory: dist output_directory: dist instant_preview_command: gridsome develop install_dependencies_command: npm install preview_docker_image: node:10 mount_path: "/srv"
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
gatsbimantico/blog,gatsbimantico/blog,wkadwaikar/wkadwaikar.github.io,wkadwaikar/wkadwaikar.github.io
3cfa1b35e7901444b264b9e3f696b0f51984181c
.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.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200 use_front_matter_path: true file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:' build: preview_command: hugo -E -F -D -b $DEPLOY_URL -d public publish_command: hugo -d public preview_env: - HUGO_ENV=staging - HUGO_VERSION=0.55.6 publish_env: - HUGO_ENV=production - HUGO_VERSION=0.52 preview_output_directory: public output_directory: public instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk -d public preview_docker_image: forestryio/hugo:latest mount_path: "/srv" version: '0.52'
--- 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.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200 use_front_matter_path: true file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:' instant_preview: true build: preview_command: hugo -E -F -D -b $DEPLOY_URL -d public publish_command: hugo -d public preview_env: - HUGO_ENV=staging - HUGO_VERSION=0.55.6 publish_env: - HUGO_ENV=production - HUGO_VERSION=0.52 preview_output_directory: public output_directory: public instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk -d public preview_docker_image: forestryio/hugo:latest mount_path: "/srv" version: '0.52'
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
27c0ce6525e9539cb67123dbc71fa7cf03045e8e
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: "/static/admin" webhook_url: sections: - type: directory path: projects label: Projects create: documents match: "**/*.md" templates: - project - type: directory path: journal label: Journal create: documents match: "**/*.md" templates: - journal - type: document path: data/theme.json label: Theme config upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_command: gridsome build publish_command: gridsome build preview_output_directory: dist output_directory: dist instant_preview_command: gridsome develop
--- new_page_extension: md auto_deploy: false admin_path: "/static/admin" webhook_url: sections: - type: directory path: projects label: Projects create: documents match: "**/*.md" templates: - project - type: directory path: journal label: Journal create: documents match: "**/*.md" templates: - journal - type: document path: data/theme.json label: Theme config upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" instant_preview: true build: preview_command: gridsome build publish_command: gridsome build preview_output_directory: dist output_directory: dist instant_preview_command: gridsome develop
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
gatsbimantico/blog,wkadwaikar/wkadwaikar.github.io,gatsbimantico/blog,wkadwaikar/wkadwaikar.github.io
d8a2bc60032b8b20e0c417ae2a5a1c4a8007c6e7
packages/ae/aeson-filthy.yaml
packages/ae/aeson-filthy.yaml
homepage: https://github.com/deviant-logic/aeson-filthy changelog-type: '' hash: a860bae39af53741e006baf2fcb2672be8a6d33326aba500772fa8c4bcfd03d0 test-bench-deps: bytestring: -any base: -any time: -any unordered-containers: -any text: -any doctest: ! '>=0.8' aeson: -any maintainer: [email protected] synopsis: Several newtypes and combinators for dealing with less-than-cleanly JSON input. changelog: '' basic-deps: bytestring: -any base: ! '>=4.8 && <5.0' time: -any unordered-containers: -any text: -any aeson: -any all-versions: - '0.1' - 0.1.1 - 0.1.2 - 0.1.3 author: Alec Heller latest: 0.1.3 description-type: haddock description: A little library of newtypes to help with parsing indiscriminately encoded JSON. license-name: BSD-3-Clause
homepage: https://github.com/deviant-logic/aeson-filthy changelog-type: '' hash: 9105da4cc27c38bc269e300536627c3dbc0e5dddad6ceb19e01fc7cac3774a93 test-bench-deps: bytestring: -any base: -any time: -any unordered-containers: -any text: -any doctest: ! '>=0.8' aeson: -any maintainer: [email protected] synopsis: Several newtypes and combinators for dealing with less-than-cleanly JSON input. changelog: '' basic-deps: bytestring: -any base: ! '>=4.8 && <5.0' time: -any unordered-containers: -any text: -any aeson: -any all-versions: - '0.1' - 0.1.1 - 0.1.2 - 0.1.3 - 0.1.4 author: Alec Heller latest: 0.1.4 description-type: haddock description: A little library of newtypes to help with parsing indiscriminately encoded JSON. license-name: BSD-3-Clause
Update from Hackage at 2019-12-08T22:39:31Z
Update from Hackage at 2019-12-08T22:39:31Z
YAML
mit
commercialhaskell/all-cabal-metadata
3917d4bfb2ec55ee1ee0d83da9a6fafab66f261a
packages/cd/cdeps.yaml
packages/cd/cdeps.yaml
homepage: '' changelog-type: '' hash: 7ba1be7f9be38c97726b204d482280466d3c223ae9c680ae0829eec71ec3cce2 test-bench-deps: base: -any hspec: -any cdeps: -any maintainer: [email protected] synopsis: Extract dependencies from C code. changelog: '' basic-deps: bytestring: -any base: ! '>=4.9 && <5' text: -any filepath: -any array: -any cdeps: -any optparse-applicative: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.1.0' - '0.1.1.1' author: Vanessa McHale latest: '0.1.1.1' description-type: markdown description: ! '# cdeps This package provides the ability to extract C dependencies from source code. It can be used with [shake](https://shakebuild.com) or for other purposes. ' license-name: BSD3
homepage: '' changelog-type: '' hash: 9c101712135eb41c896c1c5a5932f7c875d2f06db064d2b6f1b9e626b7be4750 test-bench-deps: base: -any hspec: -any cdeps: -any maintainer: [email protected] synopsis: Extract dependencies from C code. changelog: '' basic-deps: bytestring: -any base: ! '>=4.9 && <5' text: -any filepath: -any array: -any cdeps: -any optparse-applicative: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.1.0' - '0.1.1.1' - '0.1.1.2' author: Vanessa McHale latest: '0.1.1.2' description-type: markdown description: ! '# cdeps This package provides the ability to extract C dependencies from source code. It can be used with [shake](https://shakebuild.com) or for other purposes. ' license-name: BSD3
Update from Hackage at 2018-05-12T23:38:40Z
Update from Hackage at 2018-05-12T23:38:40Z
YAML
mit
commercialhaskell/all-cabal-metadata
a28f9dadbc7bfb5dfc703ee4d65ed21b94322439
packages/li/liquidhaskell-cabal-demo.yaml
packages/li/liquidhaskell-cabal-demo.yaml
homepage: https://github.com/spinda/liquidhaskell-cabal-demo#readme changelog-type: '' hash: 0a3a66fc1eb11bdec090fa153a515e73befe9292ba19a7a25f90fb698ff4fd14 test-bench-deps: {} maintainer: Michael Smith <[email protected]> synopsis: Demo of Liquid Haskell integration for Cabal and stack changelog: '' basic-deps: base: ! '>=4.8 && <5' liquidhaskell-cabal: ! '>=0.2' all-versions: - 0.1.1.0 - 0.2.0.0 author: Michael Smith latest: 0.2.0.0 description-type: haddock description: |- Please see the <https://github.com/spinda/liquidhaskell-cabal-demo/blob/0.2.0.0/README.md README> on GitHub for more information. license-name: BSD-3-Clause
homepage: https://github.com/spinda/liquidhaskell-cabal-demo#readme changelog-type: '' hash: cd6cfc54e1eb79c01bcb2b4db39e24cd9c6a7b742c03d5004dda9abcf9157d76 test-bench-deps: {} maintainer: Michael Smith <[email protected]> synopsis: Demo of Liquid Haskell integration for Cabal and stack changelog: '' basic-deps: base: ! '>=4.8 && <5' liquidhaskell-cabal: ! '>=0.2' all-versions: - 0.1.1.0 - 0.2.0.0 - 0.2.0.1 author: Michael Smith latest: 0.2.0.1 description-type: haddock description: |- Please see the <https://github.com/spinda/liquidhaskell-cabal-demo/blob/0.2.0.1/README.md README> on GitHub for more information. license-name: BSD-3-Clause
Update from Hackage at 2019-04-12T23:29:31Z
Update from Hackage at 2019-04-12T23:29:31Z
YAML
mit
commercialhaskell/all-cabal-metadata
27081f0e6d07bd7e39916da0e778cccb28c7bb09
packages/di/differential.yaml
packages/di/differential.yaml
homepage: http://github.com/GregorySchwartz/differential#readme changelog-type: '' hash: 6e00d999b0c90a0d1a4d819d94fafd8248a4e841723b0f86518bb3128b28482f test-bench-deps: {} maintainer: [email protected] synopsis: Finds out whether an entity comes from different distributions (statuses). changelog: '' basic-deps: bytestring: -any lens-aeson: -any optparse-generic: -any base: ! '>=4.7 && <5' text: -any text-show: -any containers: -any lens: -any cassava: -any foldl: -any sparse-linear-algebra: -any statistics: -any deepseq: -any scientific: -any inline-r: -any aeson: -any differential: -any vector: -any all-versions: - 0.1.1.0 author: Gregory W. Schwartz latest: 0.1.1.0 description-type: haddock description: Uses statistical tests to find whether an entity comes from one or two distributions. license-name: GPL-3.0-only
homepage: http://github.com/GregorySchwartz/differential#readme changelog-type: '' hash: 69aeebecc18d969096569d672590cb73a98520b27066935171d80fac33b080de test-bench-deps: {} maintainer: [email protected] synopsis: Finds out whether an entity comes from different distributions (statuses). changelog: '' basic-deps: bytestring: -any lens-aeson: -any optparse-generic: -any base: ! '>=4.7 && <5' text: -any text-show: -any containers: -any lens: -any cassava: -any foldl: -any sparse-linear-algebra: -any statistics: -any deepseq: -any scientific: -any inline-r: -any aeson: -any differential: -any vector: -any all-versions: - 0.1.1.0 - 0.1.2.0 author: Gregory W. Schwartz latest: 0.1.2.0 description-type: haddock description: Uses statistical tests to find whether an entity comes from one or two distributions. license-name: GPL-3.0-only
Update from Hackage at 2019-06-13T13:55:46Z
Update from Hackage at 2019-06-13T13:55:46Z
YAML
mit
commercialhaskell/all-cabal-metadata
d60252fff372501c6c14d854dd0b004ed01a8b4d
metadata/io.mainframe.hacs.yml
metadata/io.mainframe.hacs.yml
AntiFeatures: - NonFreeNet Categories: - Internet License: MIT AuthorName: Holger Cremer AuthorEmail: [email protected] AuthorWebSite: https://mainframe.io/ SourceCode: https://github.com/ktt-ol/hacs IssueTracker: https://github.com/ktt-ol/hacs/issues Changelog: https://github.com/ktt-ol/hacs/blob/HEAD/CHANGELOG.md AutoName: HACS Description: An app for our "keyholder" to view and manage the door states of the hackspace. It uses an mqtt service to get the current status and sends door commands per ssh. RepoType: git Repo: https://github.com/ktt-ol/hacs Builds: - versionName: 2.6.5 versionCode: 36 commit: 2.6.5 subdir: app gradle: - yes - versionName: 2.6.7 versionCode: 37 commit: 2.6.7 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 2.6.7 CurrentVersionCode: 37
AntiFeatures: - NonFreeNet Categories: - Internet License: MIT AuthorName: Holger Cremer AuthorEmail: [email protected] AuthorWebSite: https://mainframe.io/ SourceCode: https://github.com/ktt-ol/hacs IssueTracker: https://github.com/ktt-ol/hacs/issues Changelog: https://github.com/ktt-ol/hacs/blob/HEAD/CHANGELOG.md AutoName: HACS Description: An app for our "keyholder" to view and manage the door states of the hackspace. It uses an mqtt service to get the current status and sends door commands per ssh. RepoType: git Repo: https://github.com/ktt-ol/hacs Builds: - versionName: 2.6.5 versionCode: 36 commit: 2.6.5 subdir: app gradle: - yes - versionName: 2.6.7 versionCode: 37 commit: 2.6.7 subdir: app gradle: - yes - versionName: 2.7.3 versionCode: 41 commit: 2.7.3 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 2.7.3 CurrentVersionCode: 41
Update HACS to 2.7.3 (41)
Update HACS to 2.7.3 (41)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
184d7d43ae4081320447658eff4500b8eb81686c
recipes/humann2/meta.yaml
recipes/humann2/meta.yaml
about: home: 'http://huttenhower.sph.harvard.edu/humann2' summary: "HUMAnN is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data" package: name: humann2 version: '0.6.1' build: number: 0 skip: True # [osx] source: fn: humann2_v0.6.1.tar.gz md5: fae7549ac333b973badf7e99805d50d1 url: https://bitbucket.org/biobakery/humann2/downloads/humann2_v0.6.1.tar.gz requirements: build: - python 2.7* - setuptools run: - python 2.7* - bowtie2 >=2.2.5 - metaphlan2 >=2.2.0 - diamond >=0.7.10 test: commands: - humann2 --version - humann2_join_tables -h - humann2_merge_abundance_tables -h - humann2_reduce_table -h - humann2_regroup_table -h - humann2_rename_table -h - humann2_renorm_table -h - humann2_rna_dna_norm -h - humann2_split_table -h
about: home: 'http://huttenhower.sph.harvard.edu/humann2' summary: "HUMAnN is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data" package: name: humann2 version: '0.6.1' build: number: 0 skip: True # [osx or not py27] source: fn: humann2_v0.6.1.tar.gz md5: fae7549ac333b973badf7e99805d50d1 url: https://bitbucket.org/biobakery/humann2/downloads/humann2_v0.6.1.tar.gz requirements: build: - python - setuptools run: - python - bowtie2 >=2.2.5 - metaphlan2 >=2.2.0 - diamond >=0.7.10 test: commands: - humann2 --version - humann2_join_tables -h - humann2_merge_abundance_tables -h - humann2_reduce_table -h - humann2_regroup_table -h - humann2_rename_table -h - humann2_renorm_table -h - humann2_rna_dna_norm -h - humann2_split_table -h
Generalize python requirements but limit build
Generalize python requirements but limit build
YAML
mit
jfallmann/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,pinguinkiste/bioconda-recipes,Luobiny/bioconda-recipes,zachcp/bioconda-recipes,rvalieris/bioconda-recipes,omicsnut/bioconda-recipes,matthdsm/bioconda-recipes,yesimon/bioconda-recipes,mdehollander/bioconda-recipes,peterjc/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,colinbrislawn/bioconda-recipes,keuv-grvl/bioconda-recipes,dmaticzka/bioconda-recipes,JenCabral/bioconda-recipes,CGATOxford/bioconda-recipes,phac-nml/bioconda-recipes,colinbrislawn/bioconda-recipes,guowei-he/bioconda-recipes,omicsnut/bioconda-recipes,oena/bioconda-recipes,pinguinkiste/bioconda-recipes,rvalieris/bioconda-recipes,ThomasWollmann/bioconda-recipes,xguse/bioconda-recipes,zwanli/bioconda-recipes,jfallmann/bioconda-recipes,gregvonkuster/bioconda-recipes,phac-nml/bioconda-recipes,matthdsm/bioconda-recipes,ostrokach/bioconda-recipes,martin-mann/bioconda-recipes,acaprez/recipes,daler/bioconda-recipes,phac-nml/bioconda-recipes,zwanli/bioconda-recipes,zachcp/bioconda-recipes,JenCabral/bioconda-recipes,shenwei356/bioconda-recipes,acaprez/recipes,jasper1918/bioconda-recipes,ThomasWollmann/bioconda-recipes,saketkc/bioconda-recipes,shenwei356/bioconda-recipes,peterjc/bioconda-recipes,rob-p/bioconda-recipes,peterjc/bioconda-recipes,lpantano/recipes,rob-p/bioconda-recipes,oena/bioconda-recipes,matthdsm/bioconda-recipes,abims-sbr/bioconda-recipes,dmaticzka/bioconda-recipes,oena/bioconda-recipes,guowei-he/bioconda-recipes,bioconda/bioconda-recipes,mcornwell1957/bioconda-recipes,omicsnut/bioconda-recipes,roryk/recipes,npavlovikj/bioconda-recipes,gvlproject/bioconda-recipes,bebatut/bioconda-recipes,pinguinkiste/bioconda-recipes,chapmanb/bioconda-recipes,matthdsm/bioconda-recipes,bow/bioconda-recipes,cokelaer/bioconda-recipes,rvalieris/bioconda-recipes,chapmanb/bioconda-recipes,rob-p/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,zwanli/bioconda-recipes,phac-nml/bioconda-recipes,pinguinkiste/bioconda-recipes,mcornwell1957/bioconda-recipes,omicsnut/bioconda-recipes,jasper1918/bioconda-recipes,gvlproject/bioconda-recipes,ostrokach/bioconda-recipes,ivirshup/bioconda-recipes,xguse/bioconda-recipes,bow/bioconda-recipes,dmaticzka/bioconda-recipes,saketkc/bioconda-recipes,bebatut/bioconda-recipes,zwanli/bioconda-recipes,omicsnut/bioconda-recipes,mdehollander/bioconda-recipes,mcornwell1957/bioconda-recipes,lpantano/recipes,BIMSBbioinfo/bioconda-recipes,joachimwolff/bioconda-recipes,HassanAmr/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,CGATOxford/bioconda-recipes,zachcp/bioconda-recipes,daler/bioconda-recipes,peterjc/bioconda-recipes,npavlovikj/bioconda-recipes,abims-sbr/bioconda-recipes,blankenberg/bioconda-recipes,pinguinkiste/bioconda-recipes,jfallmann/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,CGATOxford/bioconda-recipes,blankenberg/bioconda-recipes,jasper1918/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,colinbrislawn/bioconda-recipes,npavlovikj/bioconda-recipes,colinbrislawn/bioconda-recipes,ostrokach/bioconda-recipes,abims-sbr/bioconda-recipes,martin-mann/bioconda-recipes,cokelaer/bioconda-recipes,martin-mann/bioconda-recipes,bow/bioconda-recipes,abims-sbr/bioconda-recipes,colinbrislawn/bioconda-recipes,colinbrislawn/bioconda-recipes,ostrokach/bioconda-recipes,mdehollander/bioconda-recipes,HassanAmr/bioconda-recipes,acaprez/recipes,zachcp/bioconda-recipes,Luobiny/bioconda-recipes,daler/bioconda-recipes,daler/bioconda-recipes,lpantano/recipes,acaprez/recipes,gvlproject/bioconda-recipes,ThomasWollmann/bioconda-recipes,rvalieris/bioconda-recipes,chapmanb/bioconda-recipes,hardingnj/bioconda-recipes,saketkc/bioconda-recipes,shenwei356/bioconda-recipes,abims-sbr/bioconda-recipes,yesimon/bioconda-recipes,abims-sbr/bioconda-recipes,joachimwolff/bioconda-recipes,bow/bioconda-recipes,bioconda/bioconda-recipes,mdehollander/bioconda-recipes,rvalieris/bioconda-recipes,bow/bioconda-recipes,bioconda/bioconda-recipes,bow/bioconda-recipes,martin-mann/bioconda-recipes,bioconda/recipes,zwanli/bioconda-recipes,bebatut/bioconda-recipes,joachimwolff/bioconda-recipes,bioconda/recipes,oena/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,zwanli/bioconda-recipes,gvlproject/bioconda-recipes,CGATOxford/bioconda-recipes,roryk/recipes,HassanAmr/bioconda-recipes,keuv-grvl/bioconda-recipes,keuv-grvl/bioconda-recipes,hardingnj/bioconda-recipes,hardingnj/bioconda-recipes,saketkc/bioconda-recipes,chapmanb/bioconda-recipes,dmaticzka/bioconda-recipes,joachimwolff/bioconda-recipes,daler/bioconda-recipes,ThomasWollmann/bioconda-recipes,ostrokach/bioconda-recipes,rob-p/bioconda-recipes,gvlproject/bioconda-recipes,dkoppstein/recipes,mcornwell1957/bioconda-recipes,yesimon/bioconda-recipes,jfallmann/bioconda-recipes,oena/bioconda-recipes,HassanAmr/bioconda-recipes,ThomasWollmann/bioconda-recipes,HassanAmr/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,joachimwolff/bioconda-recipes,rvalieris/bioconda-recipes,pinguinkiste/bioconda-recipes,gvlproject/bioconda-recipes,ivirshup/bioconda-recipes,dkoppstein/recipes,blankenberg/bioconda-recipes,JenCabral/bioconda-recipes,matthdsm/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,bebatut/bioconda-recipes,CGATOxford/bioconda-recipes,hardingnj/bioconda-recipes,saketkc/bioconda-recipes,gregvonkuster/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,shenwei356/bioconda-recipes,hardingnj/bioconda-recipes,mcornwell1957/bioconda-recipes,ThomasWollmann/bioconda-recipes,ostrokach/bioconda-recipes,CGATOxford/bioconda-recipes,Luobiny/bioconda-recipes,yesimon/bioconda-recipes,ivirshup/bioconda-recipes,blankenberg/bioconda-recipes,matthdsm/bioconda-recipes,xguse/bioconda-recipes,dmaticzka/bioconda-recipes,dmaticzka/bioconda-recipes,dkoppstein/recipes,jasper1918/bioconda-recipes,JenCabral/bioconda-recipes,mdehollander/bioconda-recipes,guowei-he/bioconda-recipes,bioconda/recipes,JenCabral/bioconda-recipes,gregvonkuster/bioconda-recipes,Luobiny/bioconda-recipes,xguse/bioconda-recipes,cokelaer/bioconda-recipes,ivirshup/bioconda-recipes,cokelaer/bioconda-recipes,joachimwolff/bioconda-recipes,mdehollander/bioconda-recipes,peterjc/bioconda-recipes,roryk/recipes,saketkc/bioconda-recipes,keuv-grvl/bioconda-recipes,npavlovikj/bioconda-recipes,gregvonkuster/bioconda-recipes,keuv-grvl/bioconda-recipes,JenCabral/bioconda-recipes,lpantano/recipes,ivirshup/bioconda-recipes,ivirshup/bioconda-recipes,bioconda/bioconda-recipes,keuv-grvl/bioconda-recipes,martin-mann/bioconda-recipes,chapmanb/bioconda-recipes,jasper1918/bioconda-recipes,HassanAmr/bioconda-recipes,guowei-he/bioconda-recipes,peterjc/bioconda-recipes,phac-nml/bioconda-recipes,daler/bioconda-recipes,xguse/bioconda-recipes,guowei-he/bioconda-recipes
f70caf7c4f35a072c13f15639cf4ea617ab5a472
recipes/libavif/meta.yaml
recipes/libavif/meta.yaml
{% set name = "libavif" %} {% set version = "0.9.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/AOMediaCodec/libavif/archive/refs/tags/v{{ version }}.tar.gz sha256: ea1603fc18e7dd20cf01f0b405156576886ecb5df84db8c0e87187cd2f8a00f4 patches: - install-tests.patch build: number: 0 requirements: build: - cmake - {{ compiler('c') }} - nasm - ninja - meson host: - aom # - svt-av1 # TODO: linking error with this optional library test: source_files: - tests/data commands: - aviftest tests/data/ about: home: https://github.com/AOMediaCodec/libavif license: BSD-2-Clause license_family: BSD license_file: LICENSE summary: 'A friendly, portable C implementation of the AV1 Image File Format' description: | This library aims to be a friendly, portable C implementation of the AV1 Image File Format, as described here <https://aomediacodec.github.io/av1-avif/>. extra: recipe-maintainers: - carterbox - hmaarrfk
{% set name = "libavif" %} {% set version = "0.9.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/AOMediaCodec/libavif/archive/refs/tags/v{{ version }}.tar.gz sha256: ea1603fc18e7dd20cf01f0b405156576886ecb5df84db8c0e87187cd2f8a00f4 patches: - install-tests.patch build: run_exports: - {{ pin_subpackage('libavif', min_pin='x.x.x', max_pin='x') }} number: 0 requirements: build: - cmake - {{ compiler('c') }} - nasm - ninja - meson host: - aom # - svt-av1 # TODO: linking error with this optional library test: source_files: - tests/data commands: - aviftest tests/data/ about: home: https://github.com/AOMediaCodec/libavif license: BSD-2-Clause license_family: BSD license_file: LICENSE summary: 'A friendly, portable C implementation of the AV1 Image File Format' description: | This library aims to be a friendly, portable C implementation of the AV1 Image File Format, as described here <https://aomediacodec.github.io/av1-avif/>. extra: recipe-maintainers: - carterbox - hmaarrfk
Add run export because this is a library
NEW: Add run export because this is a library
YAML
bsd-3-clause
ReimarBauer/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,stuertz/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,hadim/staged-recipes,mariusvniekerk/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes
89d23072552d8666c82be9bc0b1ae11742a107fc
_config-dev.yml
_config-dev.yml
# stakx configuration file for building the site in development mode import: - _config.yml debug: true
# stakx configuration file for building the site in development mode import: - _config.yml debug: true scss: style: expanded sourcemap: true
Build Sass with sourcemap + expanded in dev mode
Build Sass with sourcemap + expanded in dev mode
YAML
mit
BZFlag-Dev/bzflag.org,BZFlag-Dev/bzflag.org,BZFlag-Dev/bzflag.org
0a4d2952db2901646417d4d1e859c0bf3409495c
recipes/ghc-bootstrap/meta.yaml
recipes/ghc-bootstrap/meta.yaml
{% set name = "ghc-bootstrap" %} {% set version = "8.2.2" %} package: name: {{ name|lower }} version: {{ version }} source: - url: https://downloads.haskell.org/~ghc/{{ version }}/ghc-{{ version }}-x86_64-deb7-linux.tar.xz sha256: "cd7afbca54edf9890da9f432c63366556246c85c1198e40c99df5af01c555834" build: number: 0 skip: True # [not linux] requirements: build: - {{ compiler('c') }} - {{ compiler('cxx') }} - binutils_impl_linux-64 - binutils - xz host: - gmp about: home: https://haskell.org/ghc/ license: BSD 3-Clause license_family: BSD license_file: LICENSE summary: 'Feedstock for bootstraping ghc-feedstock for Glorious Glasgow Haskell Compilation System from source' doc_url: https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/ dev_url: https://github.com/ghc/ghc extra: recipe-maintainers: - eggzilla
{% set name = "ghc-bootstrap" %} {% set version = "8.2.2" %} package: name: {{ name|lower }} version: {{ version }} source: - url: https://downloads.haskell.org/~ghc/{{ version }}/ghc-{{ version }}-x86_64-deb7-linux.tar.xz sha256: "cd7afbca54edf9890da9f432c63366556246c85c1198e40c99df5af01c555834" build: number: 0 skip: True # [not linux] requirements: build: - {{ compiler('c') }} - {{ compiler('cxx') }} - xz host: - gmp about: home: https://haskell.org/ghc/ license: BSD 3-Clause license_family: BSD license_file: LICENSE summary: 'Feedstock for bootstraping ghc-feedstock for Glorious Glasgow Haskell Compilation System from source' doc_url: https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/ dev_url: https://github.com/ghc/ghc extra: recipe-maintainers: - eggzilla
Remove binutils from build section
Remove binutils from build section
YAML
bsd-3-clause
sodre/staged-recipes,jochym/staged-recipes,kwilcox/staged-recipes,jakirkham/staged-recipes,jjhelmus/staged-recipes,dschreij/staged-recipes,patricksnape/staged-recipes,stuertz/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,igortg/staged-recipes,hadim/staged-recipes,synapticarbors/staged-recipes,conda-forge/staged-recipes,sodre/staged-recipes,chrisburr/staged-recipes,igortg/staged-recipes,jochym/staged-recipes,ceholden/staged-recipes,jjhelmus/staged-recipes,jakirkham/staged-recipes,scopatz/staged-recipes,ceholden/staged-recipes,patricksnape/staged-recipes,sodre/staged-recipes,basnijholt/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,cpaulik/staged-recipes,mcs07/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,goanpeca/staged-recipes,petrushy/staged-recipes,isuruf/staged-recipes,petrushy/staged-recipes,basnijholt/staged-recipes,isuruf/staged-recipes,SylvainCorlay/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,ReimarBauer/staged-recipes,asmeurer/staged-recipes,birdsarah/staged-recipes,mariusvniekerk/staged-recipes,dschreij/staged-recipes,rmcgibbo/staged-recipes,Juanlu001/staged-recipes,asmeurer/staged-recipes,synapticarbors/staged-recipes,SylvainCorlay/staged-recipes,chrisburr/staged-recipes,Juanlu001/staged-recipes,rmcgibbo/staged-recipes,cpaulik/staged-recipes,scopatz/staged-recipes,mcs07/staged-recipes
fa44c429b200c0ba146a76c341c67a536a8e5857
package.yaml
package.yaml
name: travis-meta-yaml version: 0.0.1.0 synopsis: .travis.yml preprocessor description: .travis.yml preprocessor author: Oleg Grenrus <[email protected]> maintainer: Oleg Grenrus <[email protected]> license: BSD3 github: phadej/travis-meta-yaml category: Development extra-source-files: - README.md - fixtures/*.yml ghc-options: -Wall dependencies: - base >=4.7 && <4.9 - aeson - bytestring - lens-aeson - lens - text - regex-applicative - yaml library: source-dirs: - src executables: travis-meta-yaml: main: Main.hs source-dirs: cli dependencies: - travis-meta-yaml - optparse-applicative tests: tests: main: Tests.hs source-dirs: - tests dependencies: - extra - file-embed - travis-meta-yaml - tasty - tasty-quickcheck
name: travis-meta-yaml version: 0.0.1.0 synopsis: .travis.yml preprocessor description: .travis.yml preprocessor author: Oleg Grenrus <[email protected]> maintainer: Oleg Grenrus <[email protected]> license: BSD3 github: phadej/travis-meta-yaml category: Development extra-source-files: - README.md - fixtures/*.yml - .travis.yml - .travis.meta.yml ghc-options: -Wall dependencies: - base >=4.7 && <4.9 - aeson - bytestring - lens-aeson - lens - text - regex-applicative - yaml library: source-dirs: - src executables: travis-meta-yaml: main: Main.hs source-dirs: cli dependencies: - travis-meta-yaml - optparse-applicative tests: tests: main: Tests.hs source-dirs: - tests dependencies: - extra - file-embed - travis-meta-yaml - tasty - tasty-quickcheck
Add .travis.yml and .travis.meta.yml to extra-source-files
Add .travis.yml and .travis.meta.yml to extra-source-files
YAML
bsd-3-clause
phadej/travis-meta-yaml
68377d8a42f971be30239b2e8af7c5d8c33259e5
packages/ha/hashable-time.yaml
packages/ha/hashable-time.yaml
homepage: '' changelog-type: '' hash: f4ae3695480b34de7383ae931e180876e0170bf58ce3122d6c52c423d0df818f test-bench-deps: {} maintainer: Alexey Karakulov <[email protected]> synopsis: Hashable instances for Data.Time changelog: '' basic-deps: base: ! '>=4.7 && <4.13' time: ! '>=1.5' hashable: ! '>=1.2.3.3 && <=1.3' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.2' - '0.2.0.1' author: Alexey Karakulov <[email protected]> latest: '0.2.0.1' description-type: markdown description: ! '# hashable-time ' license-name: BSD3
homepage: '' changelog-type: '' hash: 7a90ab319f1b5261fc4f649830ad4c6526f99141f766387c8740cbd6c52bfe0c test-bench-deps: {} maintainer: Alexey Karakulov <[email protected]> synopsis: Hashable instances for Data.Time changelog: '' basic-deps: base: ! '>=4.7 && <4.13' time: ! '>=1.5' hashable: ! '>=1.2.3.3 && <=1.3' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.2' - '0.2.0.1' - '0.2.0.2' author: Alexey Karakulov <[email protected]> latest: '0.2.0.2' description-type: markdown description: ! '# hashable-time [![Build Status](https://secure.travis-ci.org/w3rs/hashable-time.svg?branch=master)](http://travis-ci.org/w3rs/hashable-time) https://hackage.haskell.org/package/hashable-time Hashable instances for types in `Data.Time`. ' license-name: BSD3
Update from Hackage at 2018-09-26T13:27:21Z
Update from Hackage at 2018-09-26T13:27:21Z
YAML
mit
commercialhaskell/all-cabal-metadata
a3a3e890ee4995bede74198887072daa231fb2c8
packages/spacedoc/spacedoc.yml
packages/spacedoc/spacedoc.yml
input: _docs/pages/**/*.{pug,md} output: docs theme: - _docs/theme - spacedoc-theme-default themeOptions: title: Spacedoc nav: docs: Docs plugins.html: Plugins 'https://github.com/spacedoc/spacedoc': GitHub
input: _docs/pages/**/*.{pug,md} output: docs adapters: - ../spacedoc-js - ../spacedoc-json - ../spacedoc-sass theme: - _docs/theme - spacedoc-theme-default debug: true themeOptions: title: Spacedoc nav: docs: Docs plugins.html: Plugins 'https://github.com/spacedoc/spacedoc': GitHub
Update configuration of Spacedoc documentation to enable adapters and debugging
Update configuration of Spacedoc documentation to enable adapters and debugging
YAML
mit
spacedoc/spacedoc,spacedoc/spacedoc
5ee80572dd653ba632a0e479b4b0483ffc5f714d
packages/fo/foundation-edge.yaml
packages/fo/foundation-edge.yaml
homepage: https://github.com/haskell-foundation/foundation-edge changelog-type: '' hash: dced4e5c9dd77f07fd41a9f0a135adad30e987ad95e7c27a0031d4fd788ddb9f test-bench-deps: {} maintainer: [email protected] synopsis: foundation's edge with the conventional set of packages changelog: '' basic-deps: bytestring: -any base: ! '>=4 && <5' foundation: -any all-versions: - '0.0.1' author: Vincent Hanquez <[email protected]> latest: '0.0.1' description-type: markdown description: ! 'Foundation-edge =============== This package is useful to convert to and from, types and data structure commonly found in the haskell ecosystem. For now, edge support the following packages: * bytestring (incomplete) And planning to add support to: * text * vector If you think edge would benefits from other packages, open an issue (or even better a PR) with suggestion of what to add. ' license-name: BSD3
homepage: https://github.com/haskell-foundation/foundation-edge changelog-type: '' hash: 278ede6bb8fb241eeae0871a187fb65e2009a956dc70dc261a9b59c03318f92a test-bench-deps: {} maintainer: [email protected] synopsis: foundation's edge with the conventional set of packages changelog: '' basic-deps: bytestring: -any text: -any foundation: ! '>=0.0.7' all-versions: - '0.0.1' - '0.0.2' author: Vincent Hanquez <[email protected]> latest: '0.0.2' description-type: markdown description: ! 'Foundation-edge =============== This package is useful to convert to and from, types and data structure commonly found in the haskell ecosystem. For now, edge support the following packages: * bytestring (initial) * text (initial) And planning to add support to: * vector If you think edge would benefits from other packages, open an issue (or even better a PR) with suggestion of what to add. ' license-name: BSD3
Update from Hackage at 2017-04-25T12:58:13Z
Update from Hackage at 2017-04-25T12:58:13Z
YAML
mit
commercialhaskell/all-cabal-metadata
f45cda72ee6c96ea330100c31bb3bed7275618cd
recipes/git-history/meta.yaml
recipes/git-history/meta.yaml
{% set name = "git-history" %} {% set version = "0.6.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/git-history-{{ version }}.tar.gz sha256: e423a96916ef8b7d5504efc9e378e54aa86ccbb0136dc7846ac9c04593f0caca build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv entry_points: - git-history=git_history.cli:cli requirements: host: - pip - python >=3.6 run: - click - gitpython - python >=3.6 - sqlite-utils >=3.19 test: imports: - git_history commands: - pip check - git-history --help requires: - pip about: home: https://github.com/simonw/git-history summary: Tools for analyzing Git history using SQLite license: Apache-2.0 license_file: LICENSE extra: recipe-maintainers: - thewchan
{% set name = "git-history" %} {% set version = "0.6.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/git-history-{{ version }}.tar.gz sha256: e423a96916ef8b7d5504efc9e378e54aa86ccbb0136dc7846ac9c04593f0caca build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv entry_points: - git-history=git_history.cli:cli requirements: host: - pip - python >=3.6 run: - click - gitpython - python >=3.6 - sqlite-utils >=3.19 test: imports: - git_history commands: - pip check - git-history --help requires: - pip - gitpython about: home: https://github.com/simonw/git-history summary: Tools for analyzing Git history using SQLite license: Apache-2.0 license_file: LICENSE extra: recipe-maintainers: - thewchan
Add gitpython to test dependencies
Add gitpython to test dependencies
YAML
bsd-3-clause
hadim/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,ReimarBauer/staged-recipes,goanpeca/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes
15e8e5ad2f809df97688dd6d352e880f8b473143
node_roles.yaml
node_roles.yaml
fuel-plugin-detach-swift: # Role name name: "Set here the name for the role. This name will be displayed in the Fuel web UI" # Role description description: "Write description for your role" # If primaty then during orchestration this role will be # splitted into primary-role and role has_primary: false # Assign public IP to node if true public_ip_required: false # Weight that will be used to sort out the # roles on the Fuel web UI weight: 1000
fuel-plugin-detach-swift-proxy: name: "Swift-Proxy" description: "Proxy swift node" has_primary: false public_ip_required: false weight: 1000 fuel-plugin-detach-swift-object: name: "Swift-Object" description: "Object swift node" has_primary: false public_ip_required: false weight: 1000
Add proxy and object role
Add proxy and object role
YAML
apache-2.0
ddepaoli3/fuel-plugin-detach-swift
e7b82c4357164b504b6d794c5be5614c0399d949
pubspec.yaml
pubspec.yaml
name: crc32 version: 0.1.0 description: A cyclic redundancy check calculator for Dart written in pure Dart. author: Kai Sellgren <[email protected]> homepage: http://github.com/kaisellgren/CRC32 dependencies: unittest: sdk: unittest
name: crc32 version: 0.1.0 description: A cyclic redundancy check calculator for Dart written in pure Dart. author: Kai Sellgren <[email protected]> homepage: http://github.com/kaisellgren/CRC32 dependencies: unittest: any
Use unittest from pub.dartlang.org .
Use unittest from pub.dartlang.org .
YAML
mit
kaisellgren/CRC32
828aa9fdab085088516a813341d850b77f3d3742
pubspec.yaml
pubspec.yaml
name: bagl description: Basic Graphics Library for Dart. version: 0.4.0 author: R.S. Schermer <[email protected]> homepage: https://github.com/RSSchermer/bagl.dart documentation: environment: sdk: '>=1.0.0 <2.0.0' dependencies: rl_matrix: '>= 0.6.2 <0.7.0' collection: '>= 1.9.0 <1.10.0' quiver: '>=0.22.0<0.23.0' dev_dependencies: test: '>=0.12.0 <0.13.0' browser: '>=0.10.0 <0.11.0' dart_to_js_script_rewriter: '^0.1.0'
name: bagl description: Basic Graphics Library for Dart. version: 0.5.0 author: R.S. Schermer <[email protected]> homepage: https://github.com/RSSchermer/bagl.dart documentation: environment: sdk: '>=1.0.0 <2.0.0' dependencies: rl_matrix: '>= 0.6.2 <0.7.0' collection: '>= 1.9.0 <1.10.0' quiver: '>=0.22.0<0.23.0' dev_dependencies: test: '>=0.12.0 <0.13.0' browser: '>=0.10.0 <0.11.0' dart_to_js_script_rewriter: '^0.1.0'
Bump minor version, update change log
Bump minor version, update change log
YAML
bsd-3-clause
RSSchermer/bagl.dart,RSSchermer/bagl.dart
28a7c4727995ce36afb71c8c6a9ecdb4390bba35
bitbucket-pipelines.yml
bitbucket-pipelines.yml
# This is a sample build configuration for Javascript. # Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples. # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Docker Hub as your build environment. image: node:4.6.0 pipelines: default: - step: script: # Modify the commands below to build your repository. - npm install - npm test
# This is a sample build configuration for Javascript. # Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples. # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Docker Hub as your build environment. image: node-jdk-chrome-firefox pipelines: default: - step: script: # Modify the commands below to build your repository. - npm install - npm test
Change to a more modern image
Change to a more modern image
YAML
mit
jonathanweiss/sk-progress-circle,jonathanweiss/sk-progress-circle
30f328c98a29b2f476c1cb44af447fa8332072f4
metadata/es.ideotec.wdnotes.yml
metadata/es.ideotec.wdnotes.yml
Categories: - Writing - Internet License: GPL-3.0-only AuthorName: Ideotec AuthorEmail: [email protected] AuthorWebSite: https://blog.ideotec.es/ SourceCode: https://gitlab.com/ideotec/wdnotes IssueTracker: https://gitlab.com/ideotec/wdnotes/issues AutoName: WD Notes RepoType: git Repo: https://gitlab.com/ideotec/wdnotes.git Builds: - versionName: 1.0.1 versionCode: 2 commit: v1.0.1 output: build/app/outputs/apk/release/app-release-unsigned.apk srclibs: - [email protected] rm: - ios prebuild: echo "flutter.sdk=$$flutter$$" >> ../local.properties build: - $$flutter$$/bin/flutter config --no-analytics - $$flutter$$/bin/flutter packages pub get - $$flutter$$/bin/flutter build apk AutoUpdateMode: Version UpdateCheckMode: Tags ^v.*$ UpdateCheckData: pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+ CurrentVersion: 1.0.1 CurrentVersionCode: 2
Categories: - Writing - Internet License: GPL-3.0-only AuthorName: Ideotec AuthorEmail: [email protected] AuthorWebSite: https://blog.ideotec.es/ SourceCode: https://gitlab.com/ideotec/wdnotes IssueTracker: https://gitlab.com/ideotec/wdnotes/issues AutoName: WD Notes RepoType: git Repo: https://gitlab.com/ideotec/wdnotes.git Builds: - versionName: 1.0.1 versionCode: 2 commit: v1.0.1 output: build/app/outputs/apk/release/app-release-unsigned.apk srclibs: - [email protected] rm: - ios prebuild: echo "flutter.sdk=$$flutter$$" >> ../local.properties build: - $$flutter$$/bin/flutter config --no-analytics - $$flutter$$/bin/flutter packages pub get - $$flutter$$/bin/flutter build apk - versionName: 1.0.2 versionCode: 3 commit: 1ddd3f7e1ba211386cd2486dd7cc11124ab2c704 output: build/app/outputs/apk/release/app-release-unsigned.apk srclibs: - [email protected] rm: - ios prebuild: echo "flutter.sdk=$$flutter$$" >> ../local.properties build: - $$flutter$$/bin/flutter config --no-analytics - $$flutter$$/bin/flutter packages pub get - $$flutter$$/bin/flutter build apk AutoUpdateMode: Version UpdateCheckMode: Tags ^v.*$ UpdateCheckData: pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+ CurrentVersion: 1.0.2 CurrentVersionCode: 3
Update WD Notes to 1.0.2 (3)
Update WD Notes to 1.0.2 (3)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
44cdd1b0762db7c8087fdf5ca5ac6b353682096b
roles/spark/defaults/main.yml
roles/spark/defaults/main.yml
spark: version: 2.1.1 hadoop_version: 2.7 working_dir: /tmp/spark/data master_port: 7077 worker_work_port: 65000 master_ui_port: 8080 worker_ui_port: 8085 download_location: https://archive.apache.org/dist/spark/ user: "spark" # the name of the (OS)user created for spark user_groups: [] # Optional list of (OS)groups the new spark user should belong to user_shell: "/bin/false" # the spark user's default shell env_extras: {} defaults_extras: {}
spark: version: 2.2.0 hadoop_version: 2.7 working_dir: /tmp/spark/data master_port: 7077 worker_work_port: 65000 master_ui_port: 8080 worker_ui_port: 8085 download_location: https://archive.apache.org/dist/spark/ user: "spark" # the name of the (OS)user created for spark user_groups: [] # Optional list of (OS)groups the new spark user should belong to user_shell: "/bin/false" # the spark user's default shell env_extras: {} defaults_extras: {}
Update Spark to release 2.2.0
Update Spark to release 2.2.0
YAML
apache-2.0
lresende/spark-cluster-install
85869d177e9676d0be5ae9cdddfd005c374838c1
config/kubernetes/sig-instrumentation/teams.yaml
config/kubernetes/sig-instrumentation/teams.yaml
teams: sig-instrumentation-leads: description: "" members: - dashpole - dgrisonnet - ehashman - logicalhan privacy: closed sig-instrumentation-approvers: description: "" members: - brancz - dashpole - dgrisonnet - ehashman - logicalhan - RainbowMango - serathius privacy: closed sig-instrumentation-members: description: "" members: - brancz - CatherineF-dev - coffeepac - dashpole - dgrisonnet - dims - ehashman - erain - lilic - logicalhan - pohly - RainbowMango - s-urbaniak - serathius - tariq1890 - yangjunmyfm192085 - YoyinZyc - yuzhiquan privacy: closed kube-state-metrics-admins: description: Admin access to the kube-state-metrics repo members: - dgrisonnet - fpetkovski - mrueg privacy: closed kube-state-metrics-maintainers: description: Write access to the kube-state-metrics repo members: - dgrisonnet - fpetkovski - mrueg privacy: closed
teams: sig-instrumentation-leads: description: "" members: - dashpole - dgrisonnet - ehashman - logicalhan privacy: closed sig-instrumentation-approvers: description: "" members: - brancz - dashpole - dgrisonnet - ehashman - logicalhan - RainbowMango - serathius privacy: closed sig-instrumentation-members: description: "" members: - brancz - CatherineF-dev - coffeepac - dashpole - dgrisonnet - dims - ehashman - erain - lilic - logicalhan - pohly - RainbowMango - RichaBanker - s-urbaniak - serathius - tariq1890 - yangjunmyfm192085 - YoyinZyc - yuzhiquan privacy: closed kube-state-metrics-admins: description: Admin access to the kube-state-metrics repo members: - dgrisonnet - fpetkovski - mrueg privacy: closed kube-state-metrics-maintainers: description: Write access to the kube-state-metrics repo members: - dgrisonnet - fpetkovski - mrueg privacy: closed
Add RichaBanker as sig instrumentation member
Add RichaBanker as sig instrumentation member
YAML
apache-2.0
kubernetes/org,kubernetes/org,kubernetes/org
b288e524f062e677e079322867c1d7e859a40e27
.buildkite/docker-compose.yml
.buildkite/docker-compose.yml
version: '2.1' services: agent: image: golang:1.10 working_dir: /go/src/github.com/buildkite/agent volumes: - ./:/go/src/github.com/buildkite/agent:cached environment: - BUILDKITE_BUILD_NUMBER - BUILDKITE_JOB_ID - "BUILDKITE_AGENT_TAGS=queue=default" - "BUILDKITE_BUILD_PATH=/buildkite"
version: '2.1' services: agent: image: golang:1.10 working_dir: /go/src/github.com/buildkite/agent volumes: - ../:/go/src/github.com/buildkite/agent:cached environment: - BUILDKITE_BUILD_NUMBER - BUILDKITE_JOB_ID - "BUILDKITE_AGENT_TAGS=queue=default" - "BUILDKITE_BUILD_PATH=/buildkite"
Adjust volume mount for new dir
Adjust volume mount for new dir
YAML
mit
buildkite/agent,buildkite/agent,buildkite/agent
4ca2671ef07c0bbeffa1d1711268c665e2d8ac5a
.github/workflows/node.js.yml
.github/workflows/node.js.yml
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Node.js CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [16.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci - run: npm test
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Tests on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [16.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci - run: npm test
Update name of tests action.
Update name of tests action.
YAML
mit
grimmdude/MidiWriterJS
679de33af3c36bf54ddad1809be529b4b4b2495f
.github/workflows/node.js.yml
.github/workflows/node.js.yml
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Node.js CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x, 15.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run build --if-present - run: npm test
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Node.js CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x, 15.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run build --if-present - run: npm test
Update actions/setup-node action to v2
Update actions/setup-node action to v2
YAML
mit
gliviu/log-color-highlight
0600d97e06d662eb9caf6a598b847afb59cdce2b
.github/workflows/nodebug.yml
.github/workflows/nodebug.yml
name: No Assertions on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: jobs: ndebug: name: No Assertions uses: steinwurf/nodebug-action/.github/workflows/[email protected] with: extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
name: No Assertions on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: jobs: ndebug: name: No Assertions uses: steinwurf/nodebug-action/.github/workflows/[email protected] with: extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
Update No Assertions to new version 5.0.1
Update No Assertions to new version 5.0.1
YAML
bsd-3-clause
steinwurf/petro,steinwurf/petro
5f93c637b768c8769e93c86700d5e73c57c9cabb
.github/workflows/release.yml
.github/workflows/release.yml
name: Build, Test, and Publish on release on: release: types: [published] branches: [main] jobs: build: name: Build, test and publish runs-on: ubuntu-latest steps: - uses: actions/checkout@master - uses: actions/setup-node@v1 with: node-version: 12 registry-url: 'https://registry.npmjs.org' - run: npm install - run: npm test - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
name: Build, Test, and Publish on release on: release: types: [published] branches: [main] jobs: build: name: Build, test and publish runs-on: ubuntu-latest steps: - uses: actions/checkout@master - uses: actions/setup-node@v2 with: node-version: 12 registry-url: 'https://registry.npmjs.org' - run: npm install - run: npm test - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
Update actions/setup-node action to v2
Update actions/setup-node action to v2
YAML
mit
zrrrzzt/gpagespeed
e43f08aa0a2ac9e8ddf2acceec5785fc38cd5862
packages/ta/takusen-oracle.yaml
packages/ta/takusen-oracle.yaml
homepage: https://github.com/paulrzcz/takusen-oracle.git changelog-type: '' hash: 190dd0c67192544e37dca66aafb2cf452c5d23c29b6e54f2deaca40dec901225 test-bench-deps: {} maintainer: [email protected] synopsis: Database library with left-fold interface for Oracle. changelog: '' basic-deps: base: ! '>=4.5 && <5' time: -any old-time: -any mtl: -any random: -any QuickCheck: ==2.* all-versions: - '0.9.0' - '0.9.1' - '0.9.2' - '0.9.3' author: Alistair Bayley, Oleg Kiselyov, Pavel Ryzhov latest: '0.9.3' description-type: haddock description: ! 'Takusen-Oracle is a Oracle access library. Like HSQL and HDBC, we support arbitrary SQL statements (currently strings, extensible to anything that can be converted to a string). It is based on original Takusen library. It was just upgraded to support Oracle 11gR2/12c instant client and GHC 7.4.2 and higher.' license-name: BSD3
homepage: https://github.com/paulrzcz/takusen-oracle.git changelog-type: '' hash: 32c09ed374b11cbff2b678782dd4074ac884cc2ae6e180a206023e33a4232d4f test-bench-deps: {} maintainer: [email protected] synopsis: Database library with left-fold interface for Oracle. changelog: '' basic-deps: base: ! '>=4.5 && <5' time: -any old-time: -any mtl: -any random: -any QuickCheck: ==2.* all-versions: - '0.9.0' - '0.9.1' - '0.9.2' - '0.9.3' - '0.9.4.1' author: Alistair Bayley, Oleg Kiselyov, Pavel Ryzhov latest: '0.9.4.1' description-type: haddock description: ! 'Takusen-Oracle is a Oracle access library. Like HSQL and HDBC, we support arbitrary SQL statements (currently strings, extensible to anything that can be converted to a string). It is based on original Takusen library. It was just upgraded to support Oracle 11gR2/12c instant client and GHC 7.4.2 and higher.' license-name: BSD3
Update from Hackage at 2016-11-08T15:01:09Z
Update from Hackage at 2016-11-08T15:01:09Z
YAML
mit
commercialhaskell/all-cabal-metadata
1ff834e55ac7cc8327d0a1798bec978df2f185aa
roles/etcd/tasks/auxiliary/drop_etcdctl.yml
roles/etcd/tasks/auxiliary/drop_etcdctl.yml
--- - name: Install etcd for etcdctl package: name=etcd{{ '-' + etcd_version if etcd_version is defined else '' }} state=present when: not openshift_is_atomic | bool register: result until: result is succeeded - name: Configure etcd profile.d aliases template: dest: "/etc/profile.d/etcdctl.sh" src: etcdctl.sh.j2 mode: 0755 owner: root group: root
--- - name: Install etcd for etcdctl package: name=etcd{{ '-' + etcd_version if etcd_version is defined else '' }} state=present when: not openshift_is_containerized | bool register: result until: result is succeeded - name: Configure etcd profile.d aliases template: dest: "/etc/profile.d/etcdctl.sh" src: etcdctl.sh.j2 mode: 0755 owner: root group: root
Use openshift_is_containerized instead of openshift_is_atomic when installing etcd
Use openshift_is_containerized instead of openshift_is_atomic when installing etcd This allows non-Atomic hosts to be used to install containerized etcd
YAML
apache-2.0
abutcher/openshift-ansible,rhdedgar/openshift-ansible,rjhowe/openshift-ansible,miminar/openshift-ansible,sosiouxme/openshift-ansible,twiest/openshift-ansible,aveshagarwal/openshift-ansible,jwhonce/openshift-ansible,maxamillion/openshift-ansible,anpingli/openshift-ansible,gburges/openshift-ansible,rjhowe/openshift-ansible,ewolinetz/openshift-ansible,mwoodson/openshift-ansible,miminar/openshift-ansible,rhdedgar/openshift-ansible,nak3/openshift-ansible,abutcher/openshift-ansible,markllama/openshift-ansible,maxamillion/openshift-ansible,tagliateller/openshift-ansible,markllama/openshift-ansible,liggitt/openshift-ansible,jwhonce/openshift-ansible,sosiouxme/openshift-ansible,abutcher/openshift-ansible,gburges/openshift-ansible,maxamillion/openshift-ansible,akubicharm/openshift-ansible,liggitt/openshift-ansible,sdodson/openshift-ansible,twiest/openshift-ansible,abutcher/openshift-ansible,ewolinetz/openshift-ansible,miminar/openshift-ansible,tagliateller/openshift-ansible,aveshagarwal/openshift-ansible,twiest/openshift-ansible,markllama/openshift-ansible,akram/openshift-ansible,akubicharm/openshift-ansible,twiest/openshift-ansible,tagliateller/openshift-ansible,sdodson/openshift-ansible,mwoodson/openshift-ansible,bparees/openshift-ansible,rjhowe/openshift-ansible,maxamillion/openshift-ansible,miminar/openshift-ansible,rjhowe/openshift-ansible,ewolinetz/openshift-ansible,liggitt/openshift-ansible,aveshagarwal/openshift-ansible,openshift/openshift-ansible,anpingli/openshift-ansible,jwhonce/openshift-ansible,jwhonce/openshift-ansible,akubicharm/openshift-ansible,wbrefvem/openshift-ansible,sosiouxme/openshift-ansible,miminar/openshift-ansible,sdodson/openshift-ansible,maxamillion/openshift-ansible,aveshagarwal/openshift-ansible,ewolinetz/openshift-ansible,akram/openshift-ansible,markllama/openshift-ansible,akubicharm/openshift-ansible,sosiouxme/openshift-ansible,openshift/openshift-ansible,abutcher/openshift-ansible,tagliateller/openshift-ansible,liggitt/openshift-ansible,tagliateller/openshift-ansible,wbrefvem/openshift-ansible,rjhowe/openshift-ansible,wbrefvem/openshift-ansible,wbrefvem/openshift-ansible,aveshagarwal/openshift-ansible,sdodson/openshift-ansible,sosiouxme/openshift-ansible,twiest/openshift-ansible,wbrefvem/openshift-ansible,bparees/openshift-ansible,nak3/openshift-ansible,liggitt/openshift-ansible,markllama/openshift-ansible,jwhonce/openshift-ansible,kwoodson/openshift-ansible,ewolinetz/openshift-ansible,kwoodson/openshift-ansible,akubicharm/openshift-ansible,sdodson/openshift-ansible
10ff3ffa62730022f6f3d5c14a315a1ad8d3d530
_config_master.yml
_config_master.yml
image_server_url: https://tunnel1.cmlteam.com resources_server_url: https://tunnel1.cmlteam.com
image_server_url: https://next.cmlteam.com resources_server_url: https://next.cmlteam.com
Fix img and resources URLs for test
CML-126: Fix img and resources URLs for test
YAML
apache-2.0
xonixx/cml-site-jekyll,xonixx/cml-site-jekyll,xonixx/cml-site-jekyll,xonixx/cml-site-jekyll,xonixx/cml-site-jekyll
724a04e4f012ba8e77635eb3c3204188d934f7ad
packages/da/data-forest.yaml
packages/da/data-forest.yaml
homepage: https://github.com/chris-martin/haskell-libraries changelog-type: '' hash: af0b12f29566365f8ac735e942198965dc62dc667fff5ca3ec8e6d3a6f6a2880 test-bench-deps: base: ! '>=4.9 && <4.10' doctest: -any forest: -any maintainer: Chris Martin <[email protected]> synopsis: A simple multi-way tree data structure. changelog: '' basic-deps: base: ! '>=4.9 && <4.10' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' author: Chris Martin <[email protected]> latest: '0.1.0.2' description-type: haddock description: In some contexts, forests (collections of zero or more trees) are more important than trees. The /data-forest/ library provides a @Tree@ type much like the one from the popular /containers/ library, but it also provides a @Forest@ type with its own @Functor@ and @Foldable@ instances. license-name: Apache-2.0
homepage: https://github.com/chris-martin/haskell-libraries changelog-type: '' hash: 65ac44d5c7b6bd0ad091f1d3d8e9839cbfef62e9e865c6620f3c67c4923da8d8 test-bench-deps: data-forest: -any base: ! '>=4.9 && <4.10' doctest: -any maintainer: Chris Martin <[email protected]> synopsis: A simple multi-way tree data structure. changelog: '' basic-deps: base: ! '>=4.9 && <4.10' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' author: Chris Martin <[email protected]> latest: '0.1.0.3' description-type: haddock description: In some contexts, forests (collections of zero or more trees) are more important than trees. The /data-forest/ library provides a @Tree@ type much like the one from the popular /containers/ library, but it also provides a @Forest@ type with its own @Functor@ and @Foldable@ instances. license-name: Apache-2.0
Update from Hackage at 2017-04-27T07:13:12Z
Update from Hackage at 2017-04-27T07:13:12Z
YAML
mit
commercialhaskell/all-cabal-metadata
601fd00f641b14fb45e041fd344f04dd8661404e
packages/pa/parsec-free.yaml
packages/pa/parsec-free.yaml
homepage: https://github.com/jwiegley/parsec-free changelog-type: '' hash: 25574a4c785345571644a4fb502d453b98e6023f9d9b6a3812a9d3874d0035ea test-bench-deps: {} maintainer: [email protected] synopsis: Parsec API encoded as a deeply-embedded DSL, for debugging and analysis changelog: '' basic-deps: free: -any bytestring: -any base: ! '>=4 && <5' text: ! '>=0.2 && <1.3' parsec: ! '>=3.1.11' mtl: -any transformers: ! '>=0.4 && <0.6' all-versions: - '3.1.11.1' author: John Wiegley latest: '3.1.11.1' description-type: haddock description: Parsec API encoded as a deeply-embedded DSL, for debugging and analysis license-name: MIT
homepage: https://github.com/jwiegley/parsec-free changelog-type: '' hash: 8a48a4dba31c9b375f82bce517b4f81decfaf0f8bce0fa5b923c8e7a19a3327f test-bench-deps: {} maintainer: [email protected] synopsis: Parsec API encoded as a deeply-embedded DSL, for debugging and analysis changelog: '' basic-deps: free: -any bytestring: -any base: ! '>=4 && <5' text: ! '>=0.2 && <1.3' parsec: ! '>=3.1.11' mtl: -any transformers: ! '>=0.4 && <0.6' all-versions: - '3.1.11.1' - '3.1.11.2' author: John Wiegley latest: '3.1.11.2' description-type: haddock description: Parsec API encoded as a deeply-embedded DSL, for debugging and analysis license-name: MIT
Update from Hackage at 2016-10-10T05:13:11+00:00
Update from Hackage at 2016-10-10T05:13:11+00:00
YAML
mit
commercialhaskell/all-cabal-metadata
38d6a344209b34e11e1ea77d8f9a0e46d89a75b3
recipes/jupyter_conda/meta.yaml
recipes/jupyter_conda/meta.yaml
{% set name = "jupyter_conda" %} {% set version = "2.3.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: f536d9290443c8a978aeca87847a05682da0caab79d09e1cf6d797a7d6f48f6c build: number: 0 script: "{{ PYTHON }} -m pip install . --no-deps -vv" requirements: build: - python - setuptools - notebook >=4.3.1 host: - python - pip run: - python - notebook >=4.3.1 - nb_conda_kernels >=2.0.0 - packaging - requests test: imports: - jupyter_conda about: home: https://github.com/fcollonval/jupyter_conda license: BSD-3-Clause license_family: BSD license_file: LICENSE summary: Conda environment and package access extension from within Jupyter extra: recipe-maintainers: - fcollonval
{% set name = "jupyter_conda" %} {% set version = "2.3.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: f536d9290443c8a978aeca87847a05682da0caab79d09e1cf6d797a7d6f48f6c build: number: 0 script: "{{ PYTHON }} -m pip install . --no-deps -vv" requirements: host: - python - pip - notebook >=4.3.1 run: - python - notebook >=4.3.1 - nb_conda_kernels >=2.0.0 - packaging - requests test: imports: - jupyter_conda about: home: https://github.com/fcollonval/jupyter_conda license: BSD-3-Clause license_family: BSD license_file: LICENSE summary: Conda environment and package access extension from within Jupyter extra: recipe-maintainers: - fcollonval
Correct host - build conflict
Correct host - build conflict
YAML
bsd-3-clause
kwilcox/staged-recipes,asmeurer/staged-recipes,asmeurer/staged-recipes,igortg/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,rmcgibbo/staged-recipes,hadim/staged-recipes,rmcgibbo/staged-recipes,petrushy/staged-recipes,conda-forge/staged-recipes,sodre/staged-recipes,SylvainCorlay/staged-recipes,mcs07/staged-recipes,cpaulik/staged-recipes,scopatz/staged-recipes,birdsarah/staged-recipes,mcs07/staged-recipes,johanneskoester/staged-recipes,synapticarbors/staged-recipes,isuruf/staged-recipes,patricksnape/staged-recipes,jakirkham/staged-recipes,jjhelmus/staged-recipes,synapticarbors/staged-recipes,sodre/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,chrisburr/staged-recipes,jochym/staged-recipes,ceholden/staged-recipes,johanneskoester/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,jjhelmus/staged-recipes,cpaulik/staged-recipes,jochym/staged-recipes,isuruf/staged-recipes,basnijholt/staged-recipes,dschreij/staged-recipes,goanpeca/staged-recipes,dschreij/staged-recipes,Juanlu001/staged-recipes,petrushy/staged-recipes,mariusvniekerk/staged-recipes,Juanlu001/staged-recipes,kwilcox/staged-recipes,birdsarah/staged-recipes,ocefpaf/staged-recipes,igortg/staged-recipes,ReimarBauer/staged-recipes,sodre/staged-recipes,chrisburr/staged-recipes,jakirkham/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,ceholden/staged-recipes,basnijholt/staged-recipes
945df392f2e3d1224cb30a375731972e9a6a03da
recipes/radio_beam/meta.yaml
recipes/radio_beam/meta.yaml
{% set name = "radio_beam" %} {% set version = "0.2" %} {% set hash_type = "sha256" %} {% set hash_value = "3b3b3cfcc17d61df469c9e45d7f7fc993b902f3f2c076279071fd984a6e5763d" %} package: name: radio-beam version: '{{ version }}' source: fn: '{{ name }}-{{ version }}.tar.gz' url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz '{{ hash_type }}': '{{ hash_value }}' build: number: 0 script: python -m pip install --no-deps --ignore-installed . noarch: python requirements: build: - python - pip - astropy - numpy >=1.9.0 run: - python - astropy - numpy >=1.9.0 test: imports: - radio_beam about: home: https://github.com/radio-astro-tools/radio-beam license: BSD 3-clause license_family: BSD license_file: LICENSE.rst summary: Tools for Beam I/O and Manipulation extra: recipe-maintainers: - mwcraig - bsipocz - keflavich
{% set name = "radio_beam" %} {% set version = "0.2" %} {% set hash_type = "sha256" %} {% set hash_value = "3b3b3cfcc17d61df469c9e45d7f7fc993b902f3f2c076279071fd984a6e5763d" %} package: name: radio-beam version: '{{ version }}' source: fn: '{{ name }}-{{ version }}.tar.gz' url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz '{{ hash_type }}': '{{ hash_value }}' build: number: 0 script: python setup.py install --offline --single-version-externally-managed --record=record.txt requirements: build: - python - pip - astropy - numpy >=1.9.0 run: - python - astropy - numpy >=1.9.0 test: imports: - radio_beam about: home: https://github.com/radio-astro-tools/radio-beam license: BSD 3-clause license_family: BSD license_file: LICENSE.rst summary: Tools for Beam I/O and Manipulation extra: recipe-maintainers: - mwcraig - bsipocz - keflavich
Include offline and no-git options
Include offline and no-git options
YAML
bsd-3-clause
kwilcox/staged-recipes,jjhelmus/staged-recipes,patricksnape/staged-recipes,synapticarbors/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,chrisburr/staged-recipes,basnijholt/staged-recipes,jjhelmus/staged-recipes,dschreij/staged-recipes,rmcgibbo/staged-recipes,kwilcox/staged-recipes,mcs07/staged-recipes,isuruf/staged-recipes,shadowwalkersb/staged-recipes,mariusvniekerk/staged-recipes,barkls/staged-recipes,chrisburr/staged-recipes,sodre/staged-recipes,jochym/staged-recipes,isuruf/staged-recipes,stuertz/staged-recipes,ceholden/staged-recipes,Juanlu001/staged-recipes,jakirkham/staged-recipes,shadowwalkersb/staged-recipes,jochym/staged-recipes,barkls/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,igortg/staged-recipes,jakirkham/staged-recipes,mcs07/staged-recipes,dschreij/staged-recipes,conda-forge/staged-recipes,ceholden/staged-recipes,patricksnape/staged-recipes,johanneskoester/staged-recipes,petrushy/staged-recipes,asmeurer/staged-recipes,guillochon/staged-recipes,asmeurer/staged-recipes,basnijholt/staged-recipes,johanneskoester/staged-recipes,scopatz/staged-recipes,rvalieris/staged-recipes,goanpeca/staged-recipes,stuertz/staged-recipes,guillochon/staged-recipes,hadim/staged-recipes,pmlandwehr/staged-recipes,sodre/staged-recipes,SylvainCorlay/staged-recipes,cpaulik/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,mariusvniekerk/staged-recipes,rvalieris/staged-recipes,Juanlu001/staged-recipes,rmcgibbo/staged-recipes,cpaulik/staged-recipes,pmlandwehr/staged-recipes,synapticarbors/staged-recipes,birdsarah/staged-recipes,SylvainCorlay/staged-recipes,ReimarBauer/staged-recipes,ReimarBauer/staged-recipes,sodre/staged-recipes
cdf94cea9a47bc7c89c7239620cb1f01a16d224f
recipes/removestar/meta.yaml
recipes/removestar/meta.yaml
{% set name = "removestar" %} {% set version = "1.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: ece95f52afa7fb293767b39bba2fc1f0ffa12a711dea7676128f2b6f31668af9 build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" entry_points: - removestar = removestar.__main__:main requirements: host: - python >= 3.6 - pip run: - python >= 3.6 - pyflakes test: imports: - removestar commands: - removestar --help about: home: https://asmeurer.com/removestar license: MIT license_family: MIT license_file: LICENSE summary: | removestar is a tool to automatically replace 'import *' in Python files with explicit imports. description: | removestar is a tool to automatically replace 'import *' in Python files with explicit imports. doc_url: https://asmeurer.com/removestar dev_url: https://github.com/asmeurer/removestar extra: recipe-maintainers: - asmeurer
{% set name = "removestar" %} {% set version = "1.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: ece95f52afa7fb293767b39bba2fc1f0ffa12a711dea7676128f2b6f31668af9 build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" entry_points: - removestar = removestar.__main__:main requirements: host: - python >=3.6 - pip run: - python >=3.6 - pyflakes test: imports: - removestar commands: - removestar --help about: home: https://asmeurer.com/removestar license: MIT license_family: MIT license_file: LICENSE summary: | removestar is a tool to automatically replace 'import *' in Python files with explicit imports. description: | removestar is a tool to automatically replace 'import *' in Python files with explicit imports. doc_url: https://asmeurer.com/removestar dev_url: https://github.com/asmeurer/removestar extra: recipe-maintainers: - asmeurer
Remove spaces from the version restriction
Remove spaces from the version restriction
YAML
bsd-3-clause
igortg/staged-recipes,jochym/staged-recipes,petrushy/staged-recipes,chrisburr/staged-recipes,chrisburr/staged-recipes,asmeurer/staged-recipes,isuruf/staged-recipes,jochym/staged-recipes,mariusvniekerk/staged-recipes,asmeurer/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,mariusvniekerk/staged-recipes,mcs07/staged-recipes,hadim/staged-recipes,isuruf/staged-recipes,mcs07/staged-recipes,patricksnape/staged-recipes,scopatz/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,birdsarah/staged-recipes,conda-forge/staged-recipes,stuertz/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,Juanlu001/staged-recipes,petrushy/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,Juanlu001/staged-recipes,dschreij/staged-recipes,synapticarbors/staged-recipes,birdsarah/staged-recipes,conda-forge/staged-recipes,synapticarbors/staged-recipes,dschreij/staged-recipes,ocefpaf/staged-recipes,igortg/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes,patricksnape/staged-recipes,stuertz/staged-recipes
85005ca5c8a7ba6434263c33f17e937ba17b60bc
roles/knowhow/tasks/main.yml
roles/knowhow/tasks/main.yml
--- - name: Install Node.js packages action: npm name={{ item }} state=latest global=yes with_items: - gulp - ember-cli - name: Create app directories action: file path={{ item }} state=directory with_items: - /u/apps/knowhow/frontend - /u/apps/knowhow/backend
--- - name: Install Node.js packages action: npm name={{ item }} state=latest global=yes with_items: - gulp - ember-cli - name: Create app directories action: file path={{ item }} state=directory with_items: - /u/apps/knowhow/frontend - /u/apps/knowhow/backend - name: Check out app repositories action: git repo={{ item.repo }} dest={{ item.dest }} update=no with_items: - repo: [email protected]:Pitt-CSC/knowhow-frontend.git dest: /u/apps/knowhow/frontend - repo: [email protected]:Pitt-CSC/knowhow-backend.git dest: /u/apps/knowhow/backend
Check out repositories for Knowhow
Check out repositories for Knowhow
YAML
mit
RitwikGupta/ansible,RitwikGupta/ansible,Pitt-CSC/ansible,Pitt-CSC/ansible,Pitt-CSC/ansible,RitwikGupta/ansible
f25aa224cc51a81a5d78abe6e4662d4761ac1c2e
resource-server/circle.yml
resource-server/circle.yml
test: override: - mvn verify deployment: staging: branch: master commands: - curl -X POST https://circleci.com/api/v1/project/osiam/connector4java-integration-tests/tree/master?circle-token=$CIRCLE_TOKEN - > curl -H "Content-Type: application/json" --data '{"source_type": "Branch", "source_name": "master"}' -X POST https://registry.hub.docker.com/u/osiamorg/osiam/trigger/${DOCKER_HUB_TRIGGER_TOKEN}/
test: override: - mvn verify deployment: staging: branch: master commands: # de-activated as we don't build the artifacts on CircleCI, yet. Re-activate this when we do. #- curl -X POST https://circleci.com/api/v1/project/osiam/connector4java-integration-tests/tree/master?circle-token=$CIRCLE_TOKEN - > curl -H "Content-Type: application/json" --data '{"source_type": "Branch", "source_name": "master"}' -X POST https://registry.hub.docker.com/u/osiamorg/osiam/trigger/${DOCKER_HUB_TRIGGER_TOKEN}/
Disable triggering of ITs on CircleCI after build
Disable triggering of ITs on CircleCI after build The internal CI will do this until we build and deploy our artifacts on CircleCI.
YAML
mit
tkrille/osiam-osiam,fwilhe/osiam,fwilhe/osiam,osiam/osiam,tkrille/osiam-osiam,tkrille/osiam-osiam,osiam/osiam,osiam/osiam,fwilhe/osiam
b17bc5f63d2fd45e1c080b5e013861ee53aa73c0
starkit_env27.yml
starkit_env27.yml
name: starkit channels: - conda-forge dependencies: - python=2.7.15 - numpy=1.12 - scipy=1.0 - pandas - pytables - h5py=2.6 - matplotlib - astropy=2 - numexpr=2.6 - pytest=3.0 - pyyaml=3.12 - tqdm=4 - jupyter # RTD requirements - nbformat - nbsphinx - nbconvert - sphinx==1.5.6 #Coverage requirements - coverage=3.7.1 - requests=2.9.1 - docopt=0.6.2 - pytest-cov=2.2.1 - pip: - sphinx_bootstrap_theme - coveralls - numpydoc - docutils
name: starkit channels: - conda-forge dependencies: - python=2.7.15 - numpy=1.12 - scipy=1.0 - pandas - pytables - h5py=2.6 - matplotlib - astropy=2 - numexpr=2.6 - pytest=3.0 - pyyaml=3.12 - tqdm=4 - jupyter # RTD requirements - nbformat - nbsphinx==0.3.5 - nbconvert - sphinx==1.5.6 #Coverage requirements - coverage=3.7.1 - requests=2.9.1 - docopt=0.6.2 - pytest-cov=2.2.1 - pip: - sphinx_bootstrap_theme - coveralls - numpydoc - docutils
Set nbsphinx to v0.3.5 to remove extension error
Set nbsphinx to v0.3.5 to remove extension error
YAML
bsd-3-clause
wkerzendorf/wsynphot
d455eb7243fa9900f973ebb36312f589fe0071bc
packages/cl/clit.yaml
packages/cl/clit.yaml
homepage: https://github.com/vmchale/command-line-tweeter#readme changelog-type: '' hash: 2d7d1bff40eb1457f3a00b70c9458fccdb0d41d52ac74798721ead7fdc150099 test-bench-deps: {} maintainer: [email protected] synopsis: Post tweets from stdin changelog: '' basic-deps: http-client: -any bytestring: -any split: -any base: ! '>=4.7 && <5' authenticate-oauth: -any clit: -any http-client-tls: -any optparse-applicative: <0.13.0.0 http-types: -any aeson: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.1.0' author: Vanessa McHale latest: '0.1.1.0' description-type: haddock description: a Command Line Interface Tweeter license-name: BSD3
homepage: https://github.com/vmchale/command-line-tweeter#readme changelog-type: '' hash: f09c7ef7d3c60f67faa057b959d92da50d8a039f6b19be3474279d766a2940d0 test-bench-deps: {} maintainer: [email protected] synopsis: Post tweets from stdin changelog: '' basic-deps: http-client: -any bytestring: -any split: -any base: ! '>=4.7 && <5' authenticate-oauth: -any clit: -any http-client-tls: -any optparse-applicative: <0.13.0.0 http-types: -any aeson: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.1.0' - '0.1.1.1' author: Vanessa McHale latest: '0.1.1.1' description-type: haddock description: a Command Line Interface Tweeter license-name: BSD3
Update from Hackage at 2016-12-21T07:00:40Z
Update from Hackage at 2016-12-21T07:00:40Z
YAML
mit
commercialhaskell/all-cabal-metadata
0cea4982eeb29221a33d43b3e3d21f7cf752337e
recipes/tabula-java/meta.yaml
recipes/tabula-java/meta.yaml
{% set name = "tabula-java" %} {% set version = "1.0.2" %} {% set sha256 = "b410500479e329cb5847003f2101f1293a5e2050ee4b0095fc4cf072e9e4bae2" %} package: name: {{ name|lower }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://github.com/tabulapdf/{{ name }}/archive/v{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 requirements: build: - openjdk - maven - gettext - posix # [win] - m2-gettext # [win] run: - openjdk test: commands: - tabula --help - tabula --version | grep -s {{ version }} # {unix} about: home: http://github.com/tabula-pdf/tabula-java license: MIT license_family: MIT license_file: LICENSE summary: 'A library and CLI for extracting tables from PDF files.' dev_url: https://github.com/tabulapdf/tabula extra: recipe-maintainers: - sodre - CurtLH
{% set name = "tabula-java" %} {% set version = "1.0.2" %} {% set sha256 = "b410500479e329cb5847003f2101f1293a5e2050ee4b0095fc4cf072e9e4bae2" %} package: name: {{ name|lower }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://github.com/tabulapdf/{{ name }}/archive/v{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 requirements: build: - openjdk - maven run: - openjdk test: commands: - tabula --help - tabula --version | grep -s {{ version }} # {unix} about: home: http://github.com/tabula-pdf/tabula-java license: MIT license_family: MIT license_file: LICENSE summary: 'A library and CLI for extracting tables from PDF files.' dev_url: https://github.com/tabulapdf/tabula extra: recipe-maintainers: - sodre - CurtLH
Remove gettext and posix dependencies
Remove gettext and posix dependencies
YAML
bsd-3-clause
rvalieris/staged-recipes,ceholden/staged-recipes,scopatz/staged-recipes,scopatz/staged-recipes,jjhelmus/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,stuertz/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,rmcgibbo/staged-recipes,igortg/staged-recipes,jjhelmus/staged-recipes,cpaulik/staged-recipes,cpaulik/staged-recipes,ReimarBauer/staged-recipes,hadim/staged-recipes,sodre/staged-recipes,chrisburr/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,hadim/staged-recipes,SylvainCorlay/staged-recipes,isuruf/staged-recipes,barkls/staged-recipes,rvalieris/staged-recipes,ocefpaf/staged-recipes,Juanlu001/staged-recipes,shadowwalkersb/staged-recipes,mcs07/staged-recipes,jakirkham/staged-recipes,ceholden/staged-recipes,igortg/staged-recipes,Juanlu001/staged-recipes,petrushy/staged-recipes,rmcgibbo/staged-recipes,jakirkham/staged-recipes,patricksnape/staged-recipes,kwilcox/staged-recipes,pmlandwehr/staged-recipes,synapticarbors/staged-recipes,birdsarah/staged-recipes,SylvainCorlay/staged-recipes,basnijholt/staged-recipes,chrisburr/staged-recipes,mariusvniekerk/staged-recipes,dschreij/staged-recipes,sodre/staged-recipes,petrushy/staged-recipes,barkls/staged-recipes,shadowwalkersb/staged-recipes,conda-forge/staged-recipes,asmeurer/staged-recipes,pmlandwehr/staged-recipes,mcs07/staged-recipes,patricksnape/staged-recipes,jochym/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes,synapticarbors/staged-recipes,basnijholt/staged-recipes,isuruf/staged-recipes,asmeurer/staged-recipes,kwilcox/staged-recipes,ReimarBauer/staged-recipes,dschreij/staged-recipes,sodre/staged-recipes
56fde3f7e2de2e1c4eb51193cb650122f32e92bd
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: run lint run: | make lint - name: run solutions run: | make run
name: CI on: [push] jobs: build: runs-on: ubuntu-18.04 steps: - name: Checkout code uses: actions/checkout@v2 - name: run lint run: | make lint - name: run solutions run: | make run
Rollback ubuntu version for CI
Rollback ubuntu version for CI
YAML
mit
deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground
26cc4e8e19f9f4a14e2b6f04725dfa21fb8a7469
rpm/harbour-file-browser.yaml
rpm/harbour-file-browser.yaml
Name: harbour-file-browser Summary: File Browser for Sailfish OS Version: 1.1 Release: 0 Group: Qt/Qt License: Public domain Sources: - '%{name}-%{version}.tar.bz2' Description: |- File Browser for Sailfish OS. Browse the local file system. Configure: none Builder: qtc5 PkgConfigBR: - Qt5Core - Qt5Qml - Qt5Quick - sailfishapp Requires: - libsailfishapp Files: # Do not include whole %{_datadir}/applications as that would include tests too - '%{_datadir}/icons/hicolor/86x86/apps/%{name}.png' - '%{_datadir}/applications/%{name}.desktop' - '%{_datadir}/%{name}/qml' - '%{_bindir}/%{name}' PkgBR: []
Name: harbour-file-browser Summary: File Browser for Sailfish OS Version: 1.1 Release: 1 Group: Qt/Qt License: Public domain Sources: - '%{name}-%{version}.tar.bz2' Description: |- File Browser for Sailfish OS. Browse files on the phone. Configure: none Builder: qtc5 PkgConfigBR: - Qt5Core - Qt5Qml - Qt5Quick - sailfishapp NoAutoReqProv: yes Requires: - libsailfishapp Files: # Do not include whole %{_datadir}/applications as that would include tests too # the following defattr will cause two defattrs in .spec file, how to get only one? - '%defattr(644,root,root,755)' # default permissions for all files and folders - '%{_datadir}/icons/hicolor/86x86/apps/%{name}.png' - '%{_datadir}/applications/%{name}.desktop' - '%{_datadir}/%{name}/qml' - '%attr(755,root,root) %{_bindir}/%{name}' # permission to run the exeutable PkgBR: []
Set file permissions as requested by Harbour
Set file permissions as requested by Harbour
YAML
unlicense
0312birdzhang/harbour-file-browser,0312birdzhang/harbour-file-browser,karip/harbour-file-browser,karip/harbour-file-browser,alinelena/harbour-file-browser,karip/harbour-file-browser,0312birdzhang/harbour-file-browser,0312birdzhang/harbour-file-browser,alinelena/harbour-file-browser,alinelena/harbour-file-browser
22d25da7fc6c4ad4749cf096b8fc9681c0a9aaad
Tests/SwiftLintFrameworkTests/Resources/ProjectMock/Level1/Level2/custom_rules_only.yml
Tests/SwiftLintFrameworkTests/Resources/ProjectMock/Level1/Level2/custom_rules_only.yml
custom_rules: no_abcd: name: "Don't use abcd" regex: 'abcd'
custom_rules: no_abcd: name: "Don't use abcd" regex: 'abcd'
Add newline at end of yml test file
Add newline at end of yml test file
YAML
mit
realm/SwiftLint,realm/SwiftLint,realm/SwiftLint,realm/SwiftLint
dfeec1d54b2bdaaf1e2d73470f04b80bdc01cb09
recipes/font-ttf-dejavu-sans-mono-feedstock/meta.yaml
recipes/font-ttf-dejavu-sans-mono-feedstock/meta.yaml
{% set version = '2.37' %} package: name: font-ttf-dejavu-sans-mono version: {{ version }} source: url: https://sourceforge.net/projects/dejavu/files/dejavu/{{ version }}/dejavu-sans-ttf-{{ version }}.zip sha256: 5c6e497a2f36552cb5ffb112c413a6af39c0f3c47653662b90b4fa6499822fd7 build: number: 0 noarch: generic test: requires: # dummy to have at least one test env requirement - bzip2 commands: - test -f ${PREFIX}/fonts/DejaVuSans.ttf # [unix] about: home: https://dejavu-fonts.github.io/ summary: Monospace font for pretty code listings with many mathematical and other symbols description: | DejaVu fonts are a font family based on the Vera Fonts. Its purpose is to provide a wider range of characters while maintaining the original look and feel through the process of collaborative development Monospace font for pretty code listings. Next to that, DejaVu contains a lot of mathematical and other symbols, arrows, braille patterns, etc license: BSD-3-Clause license_family: BSD license_file: LICENSE extra: recipe-maintainers: - dbast
{% set version = '2.37' %} package: name: font-ttf-dejavu-sans-mono version: {{ version }} source: url: https://sourceforge.net/projects/dejavu/files/dejavu/{{ version }}/dejavu-sans-ttf-{{ version }}.zip sha256: 5c6e497a2f36552cb5ffb112c413a6af39c0f3c47653662b90b4fa6499822fd7 build: number: 0 noarch: generic test: requires: # dummy to have at least one test env requirement - bzip2 commands: - test -f ${PREFIX}/fonts/DejaVuSans.ttf # [unix] about: home: https://dejavu-fonts.github.io/ summary: Monospace font for pretty code listings with many mathematical and other symbols description: | DejaVu fonts are a font family based on the Vera Fonts. Its purpose is to provide a wider range of characters while maintaining the original look and feel through the process of collaborative development Monospace font for pretty code listings. Next to that, DejaVu contains a lot of mathematical and other symbols, arrows, braille patterns, etc license: Public Domain, BSD-3-Clause license_family: OTHER license_file: LICENSE extra: recipe-maintainers: - dbast
Make dejavu-sans-mono license more explicit
Make dejavu-sans-mono license more explicit
YAML
bsd-3-clause
ocefpaf/staged-recipes,scopatz/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,igortg/staged-recipes,petrushy/staged-recipes,hadim/staged-recipes,Juanlu001/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,scopatz/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,synapticarbors/staged-recipes,mariusvniekerk/staged-recipes,petrushy/staged-recipes,SylvainCorlay/staged-recipes,isuruf/staged-recipes,stuertz/staged-recipes,kwilcox/staged-recipes,dschreij/staged-recipes,asmeurer/staged-recipes,dschreij/staged-recipes,patricksnape/staged-recipes,mcs07/staged-recipes,chrisburr/staged-recipes,kwilcox/staged-recipes,synapticarbors/staged-recipes,patricksnape/staged-recipes,isuruf/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,hadim/staged-recipes,mariusvniekerk/staged-recipes,SylvainCorlay/staged-recipes,Juanlu001/staged-recipes,asmeurer/staged-recipes,ReimarBauer/staged-recipes,chrisburr/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,ReimarBauer/staged-recipes,mcs07/staged-recipes,jakirkham/staged-recipes,birdsarah/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes
ee47331da6a9a88dbef3899050c22d26bf665b8d
_data/events.yml
_data/events.yml
churchwide: - date: 2016-07-18 end-date: 2016-07-24 name: Student Mission Trip Summer 2016 grades-6-12: - date: 2016-07-18 end-date: 2016-07-24 name: Student Mission Trip Summer 2016
churchwide: - date: 2016-08-13 name: Men's Breakfast and Building Renovation grades-6-12: -
Remove MT from calendar and add men's breakfast
Remove MT from calendar and add men's breakfast
YAML
mit
Mountainview-WebDesign/lifestonechurch,Mountainview-WebDesign/lifestonechurch,Mountainview-WebDesign/lifestonechurch
bc9dc0232d44db87b67bb2811c59958f80b73ae3
conda-recipes/smurff-0.10.3/meta.yaml
conda-recipes/smurff-0.10.3/meta.yaml
package: name: smurff version: 0.10.3 source: git_url: https://github.com/ExaScience/smurff git_rev: v0.10.3 requirements: build: - cmake - {{ compiler('cxx') }} - {{ compiler('c') }} - llvm-openmp # [osx] host: - eigen3 - mkl-devel 2017.* - boost - cython >=0.25 - python - setuptools - numpy run: - intel-openmp 2017.* - mkl 2017.* - llvm-openmp # [osx] - libboost - python - numpy - scipy - pandas test: commands: - $PREFIX/libexec/tests imports: - smurff about: home: https://github.com/ExaScience/smurff license: MIT
package: name: smurff version: 0.10.3 source: git_url: https://github.com/ExaScience/smurff git_rev: v0.10.3 requirements: build: - cmake - {{ compiler('cxx') }} - {{ compiler('c') }} - llvm-openmp # [osx] host: - eigen3 - llvm-openmp # [osx] - mkl-devel 2017.* - boost - cython >=0.25 - python - setuptools - numpy run: - intel-openmp 2017.* - mkl 2017.* - llvm-openmp # [osx] - libboost - python - numpy - scipy - pandas test: commands: - $PREFIX/libexec/tests imports: - smurff about: home: https://github.com/ExaScience/smurff license: MIT
Fix conda recipe for osx
Fix conda recipe for osx
YAML
mit
ExaScience/smurff,ExaScience/smurff,ExaScience/smurff,ExaScience/smurff,ExaScience/smurff,ExaScience/smurff
99d164a8aabd19ff54b396836ccc9af0dbfb884b
metadata/nl.eventinfra.wifisetup.yml
metadata/nl.eventinfra.wifisetup.yml
Categories: - Connectivity License: Apache-2.0 SourceCode: https://github.com/EventInfra/wifisetup IssueTracker: https://github.com/EventInfra/wifisetup/issues AutoName: 35C3 Wifi Setup Description: | This app creates a secure profile with CA certificate checking (Let's Encrypt) and certificate subject verification (radius.c3noc.net), with simply 35c3/35c3 as credentials. RepoType: git Repo: https://github.com/EventInfra/wifisetup.git Builds: - versionName: '0.25' versionCode: 20181222 commit: 867323075f00c2bc64f726ce30281c50b0186883 subdir: app patch: - 0001-add-google-repo.patch gradle: - yes prebuild: rm local.properties AutoUpdateMode: None UpdateCheckMode: RepoManifest CurrentVersion: '0.25' CurrentVersionCode: 20181222
Categories: - Connectivity License: Apache-2.0 SourceCode: https://github.com/EventInfra/wifisetup IssueTracker: https://github.com/EventInfra/wifisetup/issues AutoName: CCC Camp 2019 Wifi Setup Description: | This app creates a secure profile with CA certificate checking (Let's Encrypt) and certificate subject verification (radius.c3noc.net), with simply 35c3/35c3 as credentials. RepoType: git Repo: https://github.com/EventInfra/wifisetup.git Builds: - versionName: '0.25' versionCode: 20181222 commit: 867323075f00c2bc64f726ce30281c50b0186883 subdir: app patch: - 0001-add-google-repo.patch gradle: - yes prebuild: rm local.properties AutoUpdateMode: None UpdateCheckMode: RepoManifest CurrentVersion: '0.26' CurrentVersionCode: 20190813
Update CV of CCC Camp 2019 Wifi Setup to 0.26 (20190813)
Update CV of CCC Camp 2019 Wifi Setup to 0.26 (20190813)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
19218f27e49985503fe80ed577b3bdc7029f3410
benchmark.yaml
benchmark.yaml
database: "projects/computelabs/instances/hello/databases/db" queries: - name: "Benchmark1" sql: "select * from tweets" optimizers: - "1" - "2" - name: "Benchmark2" sql: "select * from tweets where likes > 5000 limit 100" optimizers: - "1" - "2" - name: "Benchmark3" sql: "select * from tweets where likes > 1 limit 100" optimizers: - "2"
database: "projects/YOUR_PROJECT_NAME/instances/YOUR_SPANNER_INSTANCE/databases/YOUR_SPANNER_DB" queries: - name: "Benchmark1" sql: "select * from tweets" optimizers: - "1" - "2" - name: "Benchmark2" sql: "select * from tweets where likes > 5000 limit 100" optimizers: - "1" - "2" - name: "Benchmark3" sql: "select * from tweets where likes > 1 limit 100" optimizers: - "2"
Add placeholders for db string configuration
Add placeholders for db string configuration
YAML
apache-2.0
cloudspannerecosystem/spanner-bench
9cd2c842396164ea4440bf86df37e0e9db015fd4
.github/workflows/dotnet-core.yml
.github/workflows/dotnet-core.yml
name: .NET Core on: push: branches: [ dotnet ] pull_request: branches: [ dotnet ] jobs: build: strategy: matrix: os: ['ubuntu-latest', 'windows-latest', 'macos-latest'] runs-on: ${{ matrix.os }} steps: - name: Checkout LightningQueues uses: actions/checkout@v2 with: path: LightningQueues - name: Checkout lmdb uses: actions/checkout@v2 with: repository: LMDB/lmdb ref: mdb.master path: lmdb if: matrix.os == 'ubuntu-latest' - name: Build lmdb native lib working-directory: ${{ runner.workspace }}/lmdb/libraries/liblmdb run: make && export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${{ runner.workspace }}/lmdb/libraries/liblmdb/ if: matrix.os == 'ubuntu-latest' - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.101 - name: Install dependencies working-directory: ${{ runner.workspace }}/LightningQueues run: dotnet restore - name: Build working-directory: ${{ runner.workspace }}/LightningQueues run: dotnet build --configuration Release --no-restore - name: Test working-directory: ${{ runner.workspace }}/LightningQueues run: dotnet test -f netcoreapp3.1 --no-restore --verbosity normal
name: .NET Core on: push: branches: [ dotnet ] pull_request: branches: [ dotnet ] jobs: build: strategy: matrix: os: ['ubuntu-latest', 'windows-latest', 'macos-latest'] runs-on: ${{ matrix.os }} steps: - name: Checkout LightningQueues uses: actions/checkout@v2 with: path: LightningQueues - name: Checkout lmdb uses: actions/checkout@v2 with: repository: LMDB/lmdb ref: mdb.master path: lmdb if: matrix.os == 'ubuntu-latest' - name: Build lmdb native lib working-directory: ${{ runner.workspace }}/lmdb/libraries/liblmdb run: pwd && make && export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${{ runner.workspace }}/lmdb/libraries/liblmdb/ if: matrix.os == 'ubuntu-latest' - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.101 - name: Install dependencies working-directory: ${{ runner.workspace }}/LightningQueues run: dotnet restore - name: Build working-directory: ${{ runner.workspace }}/LightningQueues run: dotnet build --configuration Release --no-restore - name: Test working-directory: ${{ runner.workspace }}/LightningQueues run: dotnet test -f netcoreapp3.1 --no-restore --verbosity normal
Print pwd to help troubleshoot
Print pwd to help troubleshoot
YAML
mit
LightningQueues/LightningQueues,LightningQueues/LightningQueues
2736ce37530f031f056acb1f9e31d50610343e4a
.scripts/verify-pull-request.yaml
.scripts/verify-pull-request.yaml
# Node.js # Build a general Node.js project with npm. # Add steps that analyze code, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: none pool: vmImage: 'ubuntu-latest' steps: - task: NodeTool@0 inputs: versionSpec: '13.x' displayName: 'Install Node.js' - script: | npm install -g npm npx @microsoft/rush update npx @microsoft/rush rebuild # Tests are disabled for now, failures to be investigated (Azure/autorest#3400) #npx @microsoft/rush test displayName: 'Rush install, build and test' - task: UsePythonVersion@0 inputs: versionSpec: '3.x' displayName: Install Python 3 - script: | npm install @microsoft.azure/autorest.testserver --no-save npm install -g @autorest/compare@~0.3.0 displayName: Install autorest-compare - script: autorest-compare --compare:.scripts/regression-compare.yaml --language:python displayName: Regression Test - @autorest/python - script: autorest-compare --compare:.scripts/regression-compare.yaml --language:typescript displayName: Regression Test - @autorest/typescript
# Node.js # Build a general Node.js project with npm. # Add steps that analyze code, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: none pool: vmImage: 'ubuntu-latest' steps: - task: NodeTool@0 inputs: versionSpec: '14.x' displayName: 'Install Node.js' - script: | npm install -g npm npx @microsoft/rush update npx @microsoft/rush rebuild # Tests are disabled for now, failures to be investigated (Azure/autorest#3400) #npx @microsoft/rush test displayName: 'Rush install, build and test' - task: UsePythonVersion@0 inputs: versionSpec: '3.x' displayName: Install Python 3 - script: | npm install @microsoft.azure/autorest.testserver --no-save npm install -g @autorest/compare@~0.3.0 displayName: Install autorest-compare - script: autorest-compare --compare:.scripts/regression-compare.yaml --language:python displayName: Regression Test - @autorest/python - script: autorest-compare --compare:.scripts/regression-compare.yaml --language:typescript displayName: Regression Test - @autorest/typescript
Use node 14 in build
Use node 14 in build
YAML
mit
Azure/autorest,Azure/autorest,jhendrixMSFT/autorest,jhendrixMSFT/autorest,Azure/autorest,jhendrixMSFT/autorest,Azure/autorest,jhendrixMSFT/autorest
02b8c9a535bf01451cace8693fab1f55e90e98f7
k8s/deployment.yaml
k8s/deployment.yaml
apiVersion: apps/v1 kind: Deployment metadata: name: trifid spec: template: spec: securityContext: runAsUser: 65534 runAsGroup: 65534 containers: - name: trifid image: trifid imagePullPolicy: Always ports: - name: http containerPort: 8080 protocol: TCP livenessProbe: httpGet: path: /health port: http readinessProbe: httpGet: path: /health port: http
apiVersion: apps/v1 kind: Deployment metadata: name: trifid spec: template: spec: securityContext: runAsUser: 65534 runAsGroup: 65534 containers: - name: trifid image: trifid imagePullPolicy: Always ports: - name: http containerPort: 8080 protocol: TCP livenessProbe: httpGet: path: / port: http readinessProbe: httpGet: path: / port: http
Change the probes to /
k8s: Change the probes to /
YAML
mit
gontch/gont.ch,gontch/gont.ch-site
53af449e1292c89793219bafb5a7dd55de468f85
packages/he/hexpat-streamparser.yaml
packages/he/hexpat-streamparser.yaml
homepage: '' changelog-type: '' hash: b957af97fdfa5b04e183b7c8ad07526afe42b707a15fa6ff2e5eae60f42c075e test-bench-deps: {} maintainer: [email protected] synopsis: '' changelog: '' basic-deps: bytestring: '>=0.10 && <0.11' List: '>=0.6 && <0.7' base: '>=4.9 && <5' parser-combinators: '>=1.2 && <1.3' text: '>=1.2 && <1.3' mtl: '>=2.2 && <2.3' hexpat: '>=0.20 && <0.21' transformers: '>=0.5 && <0.6' all-versions: - 0.0.1 - 0.0.2 author: '' latest: 0.0.2 description-type: haddock description: streaming xml parser combinators using hexpat license-name: BSD-3-Clause
homepage: '' changelog-type: '' hash: 2f971a4474283531036793a7aecd6e9fad4a4055e36d0d51651b52412dbcb3c5 test-bench-deps: base: '>=4 && <5' hspec: -any hexpat: '>=0.20 && <0.21' hexpat-streamparser: ==0.1.0 maintainer: [email protected] synopsis: '' changelog: '' basic-deps: bytestring: '>=0.10 && <0.11' List: '>=0.6 && <0.7' base: '>=4.9 && <5' parser-combinators: '>=1.2 && <1.3' text: '>=1.2 && <1.3' mtl: '>=2.2 && <2.3' hexpat: '>=0.20 && <0.21' transformers: '>=0.5 && <0.6' all-versions: - 0.0.1 - 0.0.2 - 0.1.0 author: '' latest: 0.1.0 description-type: haddock description: streaming xml parser combinators using hexpat license-name: BSD-3-Clause
Update from Hackage at 2021-03-14T18:46:46Z
Update from Hackage at 2021-03-14T18:46:46Z
YAML
mit
commercialhaskell/all-cabal-metadata
1e4dd515534e2367c6c310ee1a68527c51cd887b
packages/li/liquidhaskell-cabal.yaml
packages/li/liquidhaskell-cabal.yaml
homepage: https://github.com/spinda/liquidhaskell-cabal#readme changelog-type: '' hash: ee8a8f84126ef198b42d782ba29a1461b7385132f91047df05624891d8bc2de9 test-bench-deps: {} maintainer: Michael Smith <[email protected]> synopsis: Liquid Haskell integration for Cabal and Stack changelog: '' basic-deps: Cabal: -any base: ! '>=4.4 && <5' filepath: ! '>=1.3 && <1.5' directory: -any all-versions: - 0.1.1.0 - 0.2.0.0 - 0.2.1.0 author: Michael Smith latest: 0.2.1.0 description-type: haddock description: |- Provides support for checking projects using Cabal and/or stack with LiquidHaskell. Please see the <https://github.com/spinda/liquidhaskell-cabal/blob/0.2.1.0/README.md README> on GitHub for setup and usage instructions. license-name: BSD-3-Clause
homepage: https://github.com/spinda/liquidhaskell-cabal#readme changelog-type: '' hash: 74f9916eda1569d5d4a73c467b7a02895bf625ee9361829175bf89c121a3e630 test-bench-deps: {} maintainer: Michael Smith <[email protected]> synopsis: Liquid Haskell integration for Cabal and Stack changelog: '' basic-deps: Cabal: ==2.4.* base: ! '>=4.8 && <5' filepath: ! '>=1.3 && <1.5' directory: -any all-versions: - 0.1.1.0 - 0.2.0.0 - 0.2.1.0 author: Michael Smith latest: 0.2.1.0 description-type: haddock description: |- Provides support for checking projects using Cabal and/or stack with LiquidHaskell. Please see the <https://github.com/spinda/liquidhaskell-cabal/blob/0.2.1.0/README.md README> on GitHub for setup and usage instructions. license-name: BSD-3-Clause
Update from Hackage at 2019-05-31T23:33:54Z
Update from Hackage at 2019-05-31T23:33:54Z
YAML
mit
commercialhaskell/all-cabal-metadata
1079932b52f4826d5a3b54e263e416ed9a7311ae
packages/va/validity-scientific.yaml
packages/va/validity-scientific.yaml
homepage: https://github.com/NorfairKing/validity#readme changelog-type: '' hash: 7c615607c7ceae65487e3f411d7a7b3a846eea7f77a1a1d519c6b06aa63e4e7a test-bench-deps: {} maintainer: [email protected] synopsis: Validity instances for scientific changelog: '' basic-deps: base: ! '>=4.7 && <5' validity: ! '>=0.5 && <0.6' scientific: -any all-versions: - '0.0.0.0' - '0.1.0.0' - '0.2.0.0' author: Tom Sydney Kerckhove latest: '0.2.0.0' description-type: haddock description: Please see README.md license-name: MIT
homepage: https://github.com/NorfairKing/validity#readme changelog-type: '' hash: 75a25f217eec58883d7b414067d2e83f80322784b4e7a8b3627d30c4a814d788 test-bench-deps: {} maintainer: [email protected] synopsis: Validity instances for scientific changelog: '' basic-deps: base: ! '>=4.7 && <5' validity: ! '>=0.5' scientific: -any all-versions: - '0.0.0.0' - '0.1.0.0' - '0.2.0.0' - '0.2.0.1' author: Tom Sydney Kerckhove latest: '0.2.0.1' description-type: haddock description: Please see README.md license-name: MIT
Update from Hackage at 2018-05-09T23:23:32Z
Update from Hackage at 2018-05-09T23:23:32Z
YAML
mit
commercialhaskell/all-cabal-metadata
2a9f668f0a2738b1db20934805b289877f3abab6
.golangci.yml
.golangci.yml
linters: enable: - gocyclo - golint - misspell - unused linters-settings: gocyclo: # minimal code complexity to report, 30 by default (but we recommend 10-20) min-complexity: 16 golint: # minimal confidence for issues, default is 0.8 min-confidence: 0.8 issues: # List of regexps of issue texts to exclude, empty list by default. # But independently from this option we use default exclude patterns, # it can be disabled by `exclude-use-default: false`. To list all # excluded by default patterns execute `golangci-lint run --help` exclude: - SA5008 # ignore staticcheck for go-flags
linters: enable: - gocyclo - golint - misspell - unused linters-settings: gocyclo: # minimal code complexity to report, 30 by default (but we recommend 10-20) min-complexity: 16 golint: # minimal confidence for issues, default is 0.8 min-confidence: 0.8 issues: # List of regexps of issue texts to exclude, empty list by default. # But independently from this option we use default exclude patterns, # it can be disabled by `exclude-use-default: false`. To list all # excluded by default patterns execute `golangci-lint run --help` exclude: - SA5008 # ignore staticcheck for go-flags run: skip-dirs: - iphlpapi - package - test
Exclude some directories from GolangCI-Lint
Exclude some directories from GolangCI-Lint Signed-off-by: Christoph Heiss <[email protected]>
YAML
bsd-2-clause
cybertec-postgresql/vip-manager,cybertec-postgresql/vip-manager
463bf8b163a12da6a17ca3b0c07b5f1d882ac401
recipes/cmdline_provenance/meta.yaml
recipes/cmdline_provenance/meta.yaml
{% set name = "cmdline_provenance" %} {% set version = "0.2.1" %} package: name: "{{ name|lower }}" version: {{ version }} source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" sha256: "7abbffd72676c8bed10713790fb46cef44538d709085d6e1e7007d089f4b030d" build: number: 0 noarch: python script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vvv" requirements: host: - python - pip run: - python - gitpython test: imports: - cmdline_provenance commands: python -c "import cmdline_provenance; assert cmdline_provenance.__version__ == '{{ version }}'" about: home: https://github.com/DamienIrving/cmdline_provenance license: MIT license_family: MIT license_file: LICENSE summary: Utilities for capturing the history of commands used to produce a given output doc_url: http://cmdline-provenance.readthedocs.io/en/latest/ dev_url: https://github.com/DamienIrving/cmdline_provenance extra: recipe-maintainers: - znicholls - DamienIrving
{% set name = "cmdline_provenance" %} {% set version = "0.2.1" %} package: name: "{{ name|lower }}" version: {{ version }} source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" sha256: "7abbffd72676c8bed10713790fb46cef44538d709085d6e1e7007d089f4b030d" build: number: 0 noarch: python script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vvv" requirements: host: - python - pip run: - python - gitpython test: requires: - git imports: - cmdline_provenance commands: python -c "import cmdline_provenance; assert cmdline_provenance.__version__ == '{{ version }}'" about: home: https://github.com/DamienIrving/cmdline_provenance license: MIT license_family: MIT license_file: LICENSE summary: Utilities for capturing the history of commands used to produce a given output doc_url: http://cmdline-provenance.readthedocs.io/en/latest/ dev_url: https://github.com/DamienIrving/cmdline_provenance extra: recipe-maintainers: - znicholls - DamienIrving
Add git to test requirements
Add git to test requirements
YAML
bsd-3-clause
asmeurer/staged-recipes,conda-forge/staged-recipes,stuertz/staged-recipes,scopatz/staged-recipes,goanpeca/staged-recipes,SylvainCorlay/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,petrushy/staged-recipes,jakirkham/staged-recipes,jochym/staged-recipes,scopatz/staged-recipes,patricksnape/staged-recipes,igortg/staged-recipes,petrushy/staged-recipes,jochym/staged-recipes,dschreij/staged-recipes,Juanlu001/staged-recipes,Juanlu001/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,asmeurer/staged-recipes,kwilcox/staged-recipes,ocefpaf/staged-recipes,dschreij/staged-recipes,chrisburr/staged-recipes,igortg/staged-recipes,hadim/staged-recipes,patricksnape/staged-recipes,kwilcox/staged-recipes,birdsarah/staged-recipes,birdsarah/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,chrisburr/staged-recipes
3bac3492e2bd66a549d3b0aead2edd9d18d641ca
recipes/dotnet-interactive/meta.yaml
recipes/dotnet-interactive/meta.yaml
{% set name = "dotnet-interactive" %} {% set version = "1.0.157409" %} {% set commit = "6dfc99911743a633b5edbac09a8c5fe5e5e9f980" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/dotnet/interactive/archive/{{ commit }}.zip sha256: cc2de6715bc7c977b3ab7bf95b8ef12ce63494ac0e29f48a6eef06a8dc75596b build: skip: true # [not win] number: 0 requirements: build: - dotnet >=5.0.100 run: - dotnet >=5.0.100 test: commands: - dotnet interactive --version about: home: https://github.com/dotnet/interactive license: MIT license_file: License.txt summary: '.NET Interactive takes the power of .NET and embeds it into your interactive experiences' extra: recipe-maintainers: - dhirschfeld
{% set name = "dotnet-interactive" %} {% set version = "1.0.157409" %} {% set commit = "6dfc99911743a633b5edbac09a8c5fe5e5e9f980" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/dotnet/interactive/archive/{{ commit }}.zip sha256: cc2de6715bc7c977b3ab7bf95b8ef12ce63494ac0e29f48a6eef06a8dc75596b build: skip: true # [not win] number: 0 requirements: build: - dotnet >=5.0.100 run: - {{ pin_compatible('dotnet', max_pin="x") }} test: commands: - dotnet interactive --version about: home: https://github.com/dotnet/interactive license: MIT license_file: License.txt summary: '.NET Interactive takes the power of .NET and embeds it into your interactive experiences' extra: recipe-maintainers: - dhirschfeld
Apply max pin on run dep
Apply max pin on run dep
YAML
bsd-3-clause
jochym/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,patricksnape/staged-recipes,kwilcox/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,SylvainCorlay/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,igortg/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,scopatz/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes
55242cfdfdc615a4183d08946277f5a477b4196a
metadata/de.moekadu.metronome.yml
metadata/de.moekadu.metronome.yml
Categories: - Science & Education License: GPL-3.0-or-later SourceCode: https://github.com/thetwom/toc2 IssueTracker: https://github.com/thetwom/toc2/issues AutoName: Metronome RepoType: git Repo: https://github.com/thetwom/toc2 Builds: - versionName: 1.4.0 versionCode: 11 commit: v1.4.0 subdir: app gradle: - yes - versionName: 1.5.0 versionCode: 12 commit: v1.5.0 subdir: app gradle: - yes - versionName: 1.5.1 versionCode: 13 commit: v1.5.1 subdir: app gradle: - yes - versionName: 1.6.0 versionCode: 14 commit: v1.6.0 subdir: app gradle: - yes - versionName: 1.6.1 versionCode: 15 commit: v1.6.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags .*[0-9]$ CurrentVersion: 1.6.1 CurrentVersionCode: 15
Categories: - Science & Education License: GPL-3.0-or-later SourceCode: https://github.com/thetwom/toc2 IssueTracker: https://github.com/thetwom/toc2/issues AutoName: Metronome RepoType: git Repo: https://github.com/thetwom/toc2 Builds: - versionName: 1.4.0 versionCode: 11 commit: v1.4.0 subdir: app gradle: - yes - versionName: 1.5.0 versionCode: 12 commit: v1.5.0 subdir: app gradle: - yes - versionName: 1.5.1 versionCode: 13 commit: v1.5.1 subdir: app gradle: - yes - versionName: 1.6.0 versionCode: 14 commit: v1.6.0 subdir: app gradle: - yes - versionName: 1.6.1 versionCode: 15 commit: v1.6.1 subdir: app gradle: - yes - versionName: 1.6.2 versionCode: 16 commit: v1.6.2 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags .*[0-9]$ CurrentVersion: 1.6.2 CurrentVersionCode: 16
Update Metronome to 1.6.2 (16)
Update Metronome to 1.6.2 (16)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
aa4efbb3d64ee973abaeb654a0ec46ca9ecec68e
script/vsts/release-branch-build.yml
script/vsts/release-branch-build.yml
trigger: - master - 1.* # VSTS only supports wildcards at the end phases: - phase: GetReleaseVersion steps: # This has to be done separately because VSTS inexplicably # exits the script block after `npm install` completes. - script: | cd script\vsts npm install displayName: npm install - script: node script\vsts\get-release-version.js name: Version # Import OS-specific build definitions - template: platforms/windows.yml - template: platforms/macos.yml - template: platforms/linux.yml
trigger: - master - 1.* # VSTS only supports wildcards at the end phases: - phase: GetReleaseVersion steps: # This has to be done separately because VSTS inexplicably # exits the script block after `npm install` completes. - script: | cd script\vsts npm install displayName: npm install - script: node script\vsts\get-release-version.js name: Version # Import OS-specific build definitions #- template: platforms/windows.yml - template: platforms/macos.yml - template: platforms/linux.yml
Disable Windows release build on VSTS until issues are fixed
Disable Windows release build on VSTS until issues are fixed
YAML
mit
t9md/atom,Mokolea/atom,liuderchi/atom,liuderchi/atom,liuderchi/atom,stinsonga/atom,stinsonga/atom,brettle/atom,stinsonga/atom,PKRoma/atom,brettle/atom,atom/atom,stinsonga/atom,brettle/atom,andrewleverette/atom,PKRoma/atom,Mokolea/atom,andrewleverette/atom,atom/atom,t9md/atom,andrewleverette/atom,t9md/atom,liuderchi/atom,atom/atom,Mokolea/atom,PKRoma/atom
abbbd29455c983b704eba1124e2cafbdb9ba85b7
.travis.yml
.travis.yml
language: python python: - "2.5" - "2.6" - "2.7" install: "pip install pytest coveralls --use-mirrors" script: "coverage run $(which py.test) panglery" after_success: "coveralls"
language: python python: - "2.4" - "2.5" - "2.6" - "2.7" install: - pip install pytest coverage --use-mirrors - if [ "$(python --version 2>&1)" '>' "Python 2.6" ]; then pip install coveralls --use-mirrors; fi script: - coverage run $(which py.test) panglery after_success: - if [ "$(python --version 2>&1)" '>' "Python 2.6" ]; then coveralls; fi
Add another python; only use coveralls on 2.6+.
Add another python; only use coveralls on 2.6+.
YAML
mit
habnabit/panglery
419853ed0319fd1b9cf634921b04bef1c8bbb54a
.travis.yml
.travis.yml
language: php php: - 7.0 - 7.1 sudo: false before_install: - if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi install: travis_retry composer install --no-interaction --prefer-dist --no-suggest script: vendor/bin/phpunit --verbose
language: php php: - 7.0 - 7.1 services: - mysql addons: apt: sources: - mysql-5.7-trusty packages: - mysql-server dist: trusty sudo: required env: - LARAVEL_VERSION=5.4.* before_script: - composer self-update - composer require "laravel/framework:${LARAVEL_VERSION}" - mysql -e 'create database antvel_testing;' before_install: - if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi install: travis_retry composer install --no-interaction --prefer-dist --no-suggest script: vendor/bin/phpunit --verbose
Update trivis file to work with mysql 5.7
Update trivis file to work with mysql 5.7
YAML
mit
ant-vel/Shop
92281e30599accfabdb22d78858777f4a0a77955
pubspec.yaml
pubspec.yaml
"name" : "dart_pbkdf2" "version" : "0.2.1" "author" : "Robin Harper <[email protected]>" "description" : "PBKDF2 implementation in Dart" "homepage" : "https://github.com/cabrel/dart-pbkdf2" "dependencies" : "crypto" : ">=0.9.0" "fixnum" : ">=0.9.0" "utf" : ">=0.9.0" "unittest" : ">=0.9.0" "sequence_zip" : ">=0.9.0"
"name" : "dart_pbkdf2" "version" : "0.2.2" "author" : "Robin Harper <[email protected]>" "description" : "PBKDF2 implementation in Dart" "homepage" : "https://github.com/cabrel/dart-pbkdf2" "dependencies" : "crypto" : ">=0.9.0" "fixnum" : ">=0.9.0" "utf" : ">=0.9.0" "unittest" : ">=0.9.0" "sequence_zip" : ">=0.9.0"
Support for strings or byte arrays passed into the generate method.
Support for strings or byte arrays passed into the generate method. v0.2.2
YAML
mit
zerklabs/dart-pbkdf2,zerklabs/dart-pbkdf2
253ae908f28ed1d5b85825976ace73d729a2c0eb
meta/main.yml
meta/main.yml
--- galaxy_info: author: Ivan Casco description: Ansible role for installing and configuring Xcode. license: Apache 2.0 min_ansible_version: 1.9 - name: GenericUNIX versions: - all - any - development - system dependencies: []
--- galaxy_info: author: Ivan Casco description: Ansible role for installing and configuring Xcode. license: Apache 2.0 min_ansible_version: 1.9 platforms: - name: GenericUNIX versions: - all - any - development - system dependencies: []
Fix yml error including platforms.
Fix yml error including platforms.
YAML
apache-2.0
ivancasco/ansible-role-xcode
6cac0101eaf214a137e9e68cf4a0d965c7e81342
templates/t-extend-download-binaries.yml
templates/t-extend-download-binaries.yml
parameters: - name: enableDownload type: boolean default: true - name: packages type: object default: - name: name default: "" - name: download_location default: "" - name: unpack_location default: "$(Build.BinariesDirectory)" - name: url default: "" - name: archive default: "zip" - name: clean type: boolean default: true jobs: - job: DownloadBinaries displayName: Download Build Binaries steps: - checkout: none - ${{ each package in parameters.packages }}: - bash: | curl -Lk -o ${{package.download_location}} \ ${{package.url}} displayName: 'Download ${{package.name}}' - ${{ if eq(package.archive,'zip') }}: - bash: | echo Unzipping to ${{package.unpack_location}} unzip -qq -d ${{package.unpack_location}} ${{package.download_location}} chmod -R u+x ${{package.unpack_location}} ls -ltr ${{package.download_location}} displayName: 'Unzip ${{package.name}}' - ${{ if coalesce(package.clean,true) }}: - bash: | rm -rf ${{package.download_location}} displayName: 'Clean ${{package.name}}'
parameters: - name: enableDownload type: boolean default: true - name: packages type: object default: - name: name default: "" - name: download_location default: "" - name: unpack_location default: "$(Build.BinariesDirectory)" - name: url default: "" - name: archive default: "zip" - name: clean type: boolean default: true jobs: - job: DownloadBinaries displayName: Download Build Binaries steps: - checkout: none - ${{ each package in parameters.packages }}: - bash: | curl -Lk -o ${{package.download_location}} \ ${{package.url}} displayName: 'Download ${{package.name}}' - ${{ if eq(package.archive,'zip') }}: - bash: | echo Unzipping to ${{package.unpack_location}} unzip -qq -d ${{package.unpack_location}} ${{package.download_location}} chmod -R u+x ${{package.unpack_location}} ls -ltr ${{package.unpack_location}} displayName: 'Unzip ${{package.name}}' - ${{ if coalesce(package.clean,true) }}: - bash: | rm -rf ${{package.download_location}} displayName: 'Clean ${{package.name}}'
Rearrange to allow binaries been kept
Rearrange to allow binaries been kept
YAML
apache-2.0
utPLSQL/utPLSQL-demo-project
34eafa13dfb21dbb7f2c6c1b76eda3589582906f
.github/workflows/ci.yml
.github/workflows/ci.yml
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: ci on: push: branches: - master pull_request: branches: - '*' jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: [3.10.0] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Dependencies run: | python -m pip install --upgrade pip pip install poetry poetry config virtualenvs.create false poetry install - name: Linter run: | pylint fs/onedrivefs/ tests/ - name: Tests env: GRAPH_API_CLIENT_ID: ${{ secrets.GRAPH_API_CLIENT_ID }} GRAPH_API_CLIENT_SECRET: ${{ secrets.GRAPH_API_CLIENT_SECRET }} GRAPH_API_TOKEN_READONLY: ${{ secrets.GRAPH_API_TOKEN_READONLY }} NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} run: | pytest --cov=fs --reruns 2 --only-rerun requests.exceptions.HTTPError coverage xml - name: Coverage uses: codecov/[email protected] with: token: ${{ secrets.CODECOV_TOKEN }}
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: ci on: push: branches: - master pull_request: branches: - '*' jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: [3.10.0] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Dependencies run: | python -m pip install --upgrade pip pip install poetry poetry config virtualenvs.create false poetry install - name: Linter run: | pylint fs/onedrivefs/ tests/ - name: Tests env: GRAPH_API_CLIENT_ID: ${{ secrets.GRAPH_API_CLIENT_ID }} GRAPH_API_CLIENT_SECRET: ${{ secrets.GRAPH_API_CLIENT_SECRET }} GRAPH_API_TOKEN_READONLY: ${{ secrets.GRAPH_API_TOKEN_READONLY }} NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} run: | pytest --cov=fs --reruns 2 --only-rerun requests.exceptions.HTTPError coverage xml - name: Coverage uses: codecov/[email protected]
Upgrade codecov uploader to account for bash uploader deprecation
Upgrade codecov uploader to account for bash uploader deprecation
YAML
mit
rkhwaja/fs.onedrivefs
e75f62fb467eb983d3b77faca21afda9fea7b922
metadata.yaml
metadata.yaml
# Plugin name name: influxdb_grafana # Human-readable name for your plugin title: The InfluxDB-Grafana Server Plugin # Plugin version version: '0.9.0' # Description description: Deploy InfluxDB server and the Grafana web interface. # Required fuel version fuel_version: ['7.0', '8.0'] # Specify license of your plugin licenses: ['Apache License Version 2.0'] # Specify author or company name authors: ['Mirantis Inc.'] # A link to the plugin's page homepage: 'https://github.com/openstsack/fuel-plugin-influxdb-grafana' # Specify a group which your plugin implements, possible options: # network, storage, storage::cinder, storage::glance, hypervisor groups: ['monitoring'] # The plugin is compatible with releases in the list releases: - os: ubuntu version: 2015.1.0-8.0 mode: ['ha'] deployment_scripts_path: deployment_scripts/ repository_path: repositories/ubuntu - os: ubuntu version: 2015.1.0-7.0 mode: ['ha'] deployment_scripts_path: deployment_scripts/ repository_path: repositories/ubuntu # Version of plugin package package_version: '3.0.0'
# Plugin name name: influxdb_grafana # Human-readable name for your plugin title: The InfluxDB-Grafana Server Plugin # Plugin version version: '0.9.0' # Description description: Deploy InfluxDB server and the Grafana web interface. # Required fuel version fuel_version: ['7.0', '8.0'] # Specify license of your plugin licenses: ['Apache License Version 2.0'] # Specify author or company name authors: ['Mirantis Inc.'] # A link to the plugin's page homepage: 'https://github.com/openstsack/fuel-plugin-influxdb-grafana' # Specify a group which your plugin implements, possible options: # network, storage, storage::cinder, storage::glance, hypervisor groups: ['monitoring'] # The plugin is compatible with releases in the list releases: - os: ubuntu version: 2015.1.0-8.0 mode: ['ha'] deployment_scripts_path: deployment_scripts/ repository_path: repositories/ubuntu # Version of plugin package package_version: '3.0.0'
Remove support for MOS 7.0
Remove support for MOS 7.0 Change-Id: Ida94ad4401ba21e56f436eb19ad91837822cb9f7
YAML
apache-2.0
stackforge/fuel-plugin-influxdb-grafana,stackforge/fuel-plugin-influxdb-grafana,stackforge/fuel-plugin-influxdb-grafana,stackforge/fuel-plugin-influxdb-grafana
54e742bec8ef4eff45ca6a5246f1ae73b9ab8779
deployment/ansible/roles/configure/tasks/main.yml
deployment/ansible/roles/configure/tasks/main.yml
--- # Copyright 2022 Samsung Corporation # # 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, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - name: configure CLI changed_when: false command: "{{ dcld.path }} config {{ item.key }} {{ item.value }} --home {{ dcl_home }}" with_dict: "{{ client }}" - name: tasks applied to type specific block: - name: load node type specific default config values include_vars: file: "{{ type }}.yml" hash_behaviour: merge - name: update node type specific config values include_tasks: "{{ type }}.yml" - name: setup TOMLs files include_tasks: setup.yml loop_control: loop_var: toml loop: - config - app when: type is defined
--- # Copyright 2022 Samsung Corporation # # 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, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - name: configure CLI changed_when: false command: "{{ dcld.path }} config {{ item.key }} {{ item.value }} --home {{ dcl_home }}" with_dict: "{{ client }}" - name: tasks applied to type specific block: - name: load node type specific default config values include_vars: file: "{{ type }}.yml" hash_behaviour: merge - name: update node type specific config values include_tasks: "{{ type }}.yml" - name: setup TOMLs files include_tasks: setup.yml loop_control: loop_var: toml loop: - config - app when: type is defined
Fix ansible linter error on trailing spaces
Fix ansible linter error on trailing spaces
YAML
apache-2.0
zigbee-alliance/distributed-compliance-ledger,zigbee-alliance/distributed-compliance-ledger,zigbee-alliance/distributed-compliance-ledger,zigbee-alliance/distributed-compliance-ledger,zigbee-alliance/distributed-compliance-ledger,zigbee-alliance/distributed-compliance-ledger
5cf87731e1113f4fb2f54f0da0b0160913fe547c
.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-6-x86_64: - el-6-x86_64 el-7-x86_64: - el-7-x86_64 sles-11-x86_64: - sles-11-x86_64 sles-12-x86_64: - sles-12-x86_64 ubuntu-14.04-x86_64: - ubuntu-14.04-x86_64 ubuntu-16.04-x86_64: - ubuntu-16.04-x86_64 - ubuntu-18.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 builder-to-testers-map: el-6-x86_64: - el-6-x86_64 el-7-x86_64: - el-7-x86_64 sles-11-x86_64: - sles-11-x86_64 sles-12-x86_64: - sles-12-x86_64 ubuntu-16.04-x86_64: - ubuntu-16.04-x86_64 - ubuntu-18.04-x86_64
Remove Ubuntu 14.04 from build matrix
Remove Ubuntu 14.04 from build matrix Ubuntu 14.04 hits end of life at the end of April 2019. Let's stop building it. Signed-off-by: Mark Anderson <[email protected]>
YAML
apache-2.0
chef/chef-server,chef/chef-server,chef/chef-server,chef/chef-server,chef/chef-server,chef/chef-server
48df242fffb25049c72e208aea4826177ff5fe8e
.github/workflows/apidiff.yaml
.github/workflows/apidiff.yaml
name: Run apidiff on: [ pull_request ] jobs: apidiff: runs-on: ubuntu-latest if: github.base_ref steps: - name: Install Go uses: actions/setup-go@v2 with: go-version: 1.16.x - name: Add GOBIN to PATH run: echo "PATH=$(go env GOPATH)/bin:$PATH" >>$GITHUB_ENV - name: Install dependencies run: GO111MODULE=off go get golang.org/x/exp/cmd/apidiff - name: Checkout old code uses: actions/checkout@v2 with: ref: ${{ github.base_ref }} path: "old" - name: Checkout new code uses: actions/checkout@v2 with: path: "new" - name: APIDiff run: ./_tools/apidiff.sh -d ../old working-directory: "new"
name: Run apidiff on: [ pull_request ] jobs: apidiff: runs-on: ubuntu-latest if: github.base_ref steps: - name: Install Go uses: actions/setup-go@v2 with: go-version: 1.18.x - name: Add GOBIN to PATH run: echo "PATH=$(go env GOPATH)/bin:$PATH" >>$GITHUB_ENV - name: Install dependencies run: GO111MODULE=off go get golang.org/x/exp/cmd/apidiff - name: Checkout old code uses: actions/checkout@v2 with: ref: ${{ github.base_ref }} path: "old" - name: Checkout new code uses: actions/checkout@v2 with: path: "new" - name: APIDiff run: ./_tools/apidiff.sh -d ../old working-directory: "new"
Bump Go version for GH actions
Bump Go version for GH actions
YAML
apache-2.0
go-logr/zapr,go-logr/zapr
2e25fdfa8c671e658706f7dd88157d69fb83d128
playbook.yml
playbook.yml
--- - hosts: 127.0.0.1 roles: - osx - homebrew - appstore - fish - git - nvm - pip - virtualenv - bin
--- - hosts: 127.0.0.1 roles: - osx - homebrew - appstore - fish - git - nvm - react - pip - virtualenv - bin
Fix react not install bug
Fix react not install bug
YAML
mit
badboy99tw/macbook-playbook
09819838c8b34f7005828706b3d8c080c2504ef3
pubspec.yaml
pubspec.yaml
name: polymer_expressions version: 0.10.0-pre.1.dev author: Polymer.dart Authors <[email protected]> description: An expressive custom binding syntax for HTML templates homepage: http://www.dartlang.org/polymer-dart/ dependencies: browser: ">=0.10.0 <0.11.0" observe: ">=0.10.0-pre.0 <0.11.0" template_binding: ">=0.10.0-pre.0 <0.11.0" dev_dependencies: unittest: ">=0.10.0 <0.11.0" benchmark_harness: ">=1.0.0 <2.0.0" environment: sdk: ">=1.2.0 <2.0.0"
name: polymer_expressions version: 0.10.0-pre.1 author: Polymer.dart Authors <[email protected]> description: An expressive custom binding syntax for HTML templates homepage: http://www.dartlang.org/polymer-dart/ dependencies: browser: ">=0.10.0 <0.11.0" observe: ">=0.10.0-pre.0 <0.11.0" template_binding: ">=0.10.0-pre.0 <0.11.0" dev_dependencies: unittest: ">=0.10.0 <0.11.0" benchmark_harness: ">=1.0.0 <2.0.0" environment: sdk: ">=1.2.0 <2.0.0"
Prepare to push another pre-release
Prepare to push another pre-release [email protected] Review URL: https://codereview.chromium.org//216723004 git-svn-id: b50203376db0bced10cb74915ae3e7a3ab7c1213@34543 260f80e4-7a28-3924-810f-c04153c831b5
YAML
bsd-3-clause
dart-archive/polymer-expressions,dart-archive/polymer-expressions
4611529e18bfde5119d84539675ee11abcf4de4a
.github/workflows/phpstan-evaluate-pr.yml
.github/workflows/phpstan-evaluate-pr.yml
name: phpstan-evaluate-pr on: pull_request: {} jobs: evaluate-pr: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: php-actions/composer@v6 with: php_version: "8.0" php_extensions: zip intl gd - name: Download artifact uses: dawidd6/action-download-artifact@v2 with: workflow: .github/workflows/phpstan-generate-baseline.yml workflow_conclusion: success name: phpstan-baseline.neon - name: phpstan run: | php vendor/bin/phpstan analyse --level=7 --error-format=github --configuration=phpstan.use-baseline.neon
name: phpstan-evaluate-pr on: pull_request: {} jobs: evaluate-pr: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: php-actions/composer@v6 with: php_version: "8.0" php_extensions: zip intl gd - name: Download artifact uses: dawidd6/action-download-artifact@v2 with: workflow: .github/workflows/phpstan-generate-baseline.yml workflow_conclusion: success commit: ${{github.event.pull_request.base.sha}} name: phpstan-baseline.neon - name: phpstan run: | php vendor/bin/phpstan analyse --level=7 --error-format=github --configuration=phpstan.use-baseline.neon
Use destination branch for phpstan in Pull Requests
Use destination branch for phpstan in Pull Requests
YAML
agpl-3.0
CatoTH/antragsgruen,CatoTH/antragsgruen,CatoTH/antragsgruen,CatoTH/antragsgruen,CatoTH/antragsgruen
77b8ba5616e9dc063126962c361b9082011d396e
pubspec.yaml
pubspec.yaml
name: intl version: 0.15.0 author: Dart Team <[email protected]> description: Contains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues. homepage: https://github.com/dart-lang/intl environment: sdk: '>=1.12.0 <2.0.0' documentation: http://www.dartdocs.org/documentation/intl/latest dependencies: path: '>=0.9.0 <2.0.0' dev_dependencies: fixnum: '>=0.9.0 <0.11.0' unittest: '>=0.10.0 <0.12.0' transformers: - $dart2js: $exclude: - test/date_time_format_file_even_test.dart - test/date_time_format_file_odd_test.dart - test/find_default_locale_standalone_test.dart
name: intl version: 0.15.1-dev author: Dart Team <[email protected]> description: Contains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues. homepage: https://github.com/dart-lang/intl environment: sdk: '>=1.12.0 <2.0.0' documentation: http://www.dartdocs.org/documentation/intl/latest dependencies: path: '>=0.9.0 <2.0.0' dev_dependencies: fixnum: '>=0.9.0 <0.11.0' unittest: '>=0.10.0 <0.12.0' transformers: - $dart2js: $exclude: - test/date_time_format_file_even_test.dart - test/date_time_format_file_odd_test.dart - test/find_default_locale_standalone_test.dart
Add an analysis_options file for intl_translation and intl
Add an analysis_options file for intl_translation and intl ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=152513699
YAML
bsd-3-clause
dart-lang/intl
52c33b90708d5f33d949b5677a8d7c349c86fc11
pubspec.yaml
pubspec.yaml
name: dart_amqp description: > Dart AMQP client implementing protocol version 0.9.1 version: 0.0.9 author: Achilleas Anagnostopoulos homepage: https://github.com/achilleasa/dart_amqp dependencies: logging: ">=0.9.3 <0.12.0" dev_dependencies: unittest: any mock: ">=0.11.0+2 <0.12.0" http: ">=0.11.1+1 <0.12.0" xml: ">=2.2.3 <3.0.0" coverage: "^0.7.0" dart_codecov_generator: "^0.4.0"
name: dart_amqp description: > Dart AMQP client implementing protocol version 0.9.1 version: 0.0.9 author: Achilleas Anagnostopoulos homepage: https://github.com/achilleasa/dart_amqp environment: sdk: '>=1.0.0 <2.0.0' dependencies: logging: ">=0.9.3 <0.12.0" dev_dependencies: unittest: any mock: ">=0.11.0+2 <0.12.0" http: ">=0.11.1+1 <0.12.0" xml: ">=2.2.3 <3.0.0" coverage: "^0.7.0" dart_codecov_generator: "^0.4.0"
Add SDK constraint for dart2 pre-releases
Add SDK constraint for dart2 pre-releases The constraint follows the Dart2 [guidelines](https://www.dartlang.org/dart-2#upper-constraints-on-the-sdk-version). As per the guidelines a new package version with `< 3.0.0` must be pushed when dart2 stable is out.
YAML
mit
achilleasa/dart_amqp
07f9cd804327480973613f045b417fc1f2bd3245
pubspec.yaml
pubspec.yaml
name: gcloud version: 0.2.0+11 author: Dart Team <[email protected]> description: Dart gcloud APIs homepage: https://github.com/dart-lang/gcloud environment: sdk: '>=1.9.1 <2.0.0' dependencies: crypto: '>=0.9.0 <0.10.0' googleapis: '>=0.2.0 <0.21.0' googleapis_beta: '>=0.10.0 <0.23.0' http: '>=0.11.0 <0.12.0' dev_dependencies: googleapis_auth: '>=0.1.1 <0.3.0' http_parser: '>=0.0.2+5 <2.0.0' mime: '>=0.9.0+3 <0.10.0' unittest: '>=0.11.0 <0.12.0' transformers: - $dart2js: $include: []
name: gcloud version: 0.2.0+12 author: Dart Team <[email protected]> description: Dart gcloud APIs homepage: https://github.com/dart-lang/gcloud environment: sdk: '>=1.9.1 <2.0.0' dependencies: crypto: '>=0.9.0 <0.10.0' googleapis: '>=0.2.0 <0.25.0' googleapis_beta: '>=0.10.0 <0.25.0' http: '>=0.11.0 <0.12.0' dev_dependencies: googleapis_auth: '>=0.1.1 <0.3.0' http_parser: '>=0.0.2+5 <2.0.0' mime: '>=0.9.0+3 <0.10.0' unittest: '>=0.11.0 <0.12.0' transformers: - $dart2js: $include: []
Update dependencies on googleapis/googlepais_beta packages
Update dependencies on googleapis/googlepais_beta packages Closes #38 [email protected] BUG= https://github.com/dart-lang/gcloud/issues/38 Review URL: https://codereview.chromium.org//1877763003 .
YAML
bsd-3-clause
dart-lang/gcloud
db329ef340e23941ef8379a6b8236d1681607ff7
.appveyor.yml
.appveyor.yml
# TODO: Maybe add caching cache: - '%HOMEPATH%\.cargo -> .appveyor.yml' environment: EXAMPLES: console membership turbo_blank VERBOSE: true # This isn't expected to pass yet #- EXAMPLES="duration" matrix: # 32-bit - RUBY_VERSION: 23 RUST_HOST: i686-pc-windows-msvc # 64-bit - RUBY_VERSION: 23-x64 RUST_HOST: x86_64-pc-windows-msvc install: - set PATH=C:\Ruby%RUBY_VERSION%\bin;C:\Ruby%RUBY_VERSION%\DevKit\bin;C:\Ruby%RUBY_VERSION%\DevKit\mingw\bin;%HOMEPATH%\.cargo\bin;%APPVEYOR_BUILD_FOLDER%\ruby\windows_build;%PATH% - echo %PATH% - set HELIX_ROOT=%APPVEYOR_BUILD_FOLDER% - IF NOT EXIST %HOMEPATH%\.cargo\bin (curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly --default-host %RUST_HOST% -y) - bash ./scripts/ci-install test_script: - bash ./scripts/ci-test build: off
# TODO: Maybe add caching cache: - '%HOME%\.cargo -> .appveyor.yml' environment: EXAMPLES: console membership turbo_blank VERBOSE: true # This isn't expected to pass yet #- EXAMPLES="duration" matrix: # 32-bit - RUBY_VERSION: 23 RUST_HOST: i686-pc-windows-msvc # 64-bit - RUBY_VERSION: 23-x64 RUST_HOST: x86_64-pc-windows-msvc install: - set PATH=C:\Ruby%RUBY_VERSION%\bin;C:\Ruby%RUBY_VERSION%\DevKit\bin;C:\Ruby%RUBY_VERSION%\DevKit\mingw\bin;%HOME%\.cargo\bin;%APPVEYOR_BUILD_FOLDER%\ruby\windows_build;%PATH% - echo %PATH% - set HELIX_ROOT=%APPVEYOR_BUILD_FOLDER% - IF NOT EXIST %HOME%\.cargo\bin (curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly --default-host %RUST_HOST% -y) - bash ./scripts/ci-install test_script: - bash ./scripts/ci-test build: off
Fix Cargo path on AppVeyor
Fix Cargo path on AppVeyor
YAML
isc
tildeio/turboruby,tildeio/turboruby,tildeio/turboruby,tildeio/helix,tildeio/turboruby,tildeio/helix,tildeio/helix,tildeio/helix
bcf1c1565b39c34a7faf00aecdf24f53352a9c9f
src/modules/kdenlive/filter_wave.yml
src/modules/kdenlive/filter_wave.yml
schema_version: 0.1 type: filter identifier: wave title: Wave version: 1 copyright: Leny Grisel, Jean-Baptiste Mardelle creator: Leny Grisel, Jean-Baptiste Mardelle license: LGPLv2.1 language: en tags: - Video
schema_version: 0.2 type: filter identifier: wave title: Wave version: 2 copyright: Leny Grisel, Jean-Baptiste Mardelle creator: Leny Grisel, Jean-Baptiste Mardelle license: LGPLv2.1 language: en tags: - Video parameters: - identifier: start title: Amplitude argument: yes type: float description: > If an end amplitude is provided, then this is the starting amplitude, and amplitude is interpolated over the duration of the filter from start to end amplitude. If the keyframable property "wave" is provided, then this is ignored, and "wave" is used instead. This parameter also affects the pulsation period and the phase length. mutable: yes default: 10 minimum: 1 - identifier: end title: End amplitude type: float mutable: yes minimum: 1 - identifier: wave title: Amplitude type: float description: If this value is set, values for properties "start" and "end" are ignored. mutable: yes minimum: 1 - identifier: speed title: Speed type: integer mutable: yes default: 5 - identifier: deformX title: Deform horizontally? type: boolean mutable: yes default: 1 - identifier: deformY title: Deform vertically? type: boolean mutable: yes default: 1
Improve service metadata/documentation for wave filter.
Improve service metadata/documentation for wave filter.
YAML
lgpl-2.1
siddharudh/mlt,wideioltd/mlt,xzhavilla/mlt,j-b-m/mlt,mltframework/mlt,siddharudh/mlt,j-b-m/mlt,j-b-m/mlt,siddharudh/mlt,xzhavilla/mlt,zzhhui/mlt,siddharudh/mlt,mltframework/mlt,j-b-m/mlt,anba8005/mlt,anba8005/mlt,zzhhui/mlt,mltframework/mlt,mltframework/mlt,siddharudh/mlt,wideioltd/mlt,anba8005/mlt,j-b-m/mlt,anba8005/mlt,anba8005/mlt,wideioltd/mlt,zzhhui/mlt,zzhhui/mlt,xzhavilla/mlt,wideioltd/mlt,anba8005/mlt,anba8005/mlt,xzhavilla/mlt,anba8005/mlt,anba8005/mlt,xzhavilla/mlt,wideioltd/mlt,mltframework/mlt,siddharudh/mlt,wideioltd/mlt,siddharudh/mlt,wideioltd/mlt,xzhavilla/mlt,mltframework/mlt,mltframework/mlt,zzhhui/mlt,wideioltd/mlt,j-b-m/mlt,siddharudh/mlt,zzhhui/mlt,wideioltd/mlt,mltframework/mlt,j-b-m/mlt,xzhavilla/mlt,mltframework/mlt,siddharudh/mlt,xzhavilla/mlt,xzhavilla/mlt,zzhhui/mlt,zzhhui/mlt,mltframework/mlt,zzhhui/mlt,j-b-m/mlt,j-b-m/mlt,j-b-m/mlt
13a3a5ec166ba10aa90f5b854c780b9468c76e69
buildspec.yml
buildspec.yml
--- version: 0.1 phases: install: commands: - echo Installing as $(whoami) - npm install - $(npm bin)/bower install --allow-root build: commands: - $(npm bin)/gulp build - $(npm bin)/gulp test - $(npm bin)/gulp document post_build: commands: # Update Api - aws lambda update-function-code --function-name "${REKT_CREATE_REVIEW_LAMBDA_ARN}" --zip-file "fileb://$(pwd)/dist/aws/lambda-api-gateway.zip" - aws apigateway put-rest-api --fail-on-warnings --mode overwrite --rest-api-id "${REKT_API_ID}" --body "file://$(pwd)/dist/site/swagger.yml" # TODO deploy api # Update Website - aws s3 sync dist/site "s3://${REKT_WEBSITE_BUCKET}" artifacts: discard-paths: no files: - dist/**/*
--- version: 0.1 phases: install: commands: - echo Installing as $(whoami) - npm install - $(npm bin)/bower install --allow-root build: commands: - $(npm bin)/gulp build - $(npm bin)/gulp test - $(npm bin)/gulp document post_build: commands: # Update Api - aws lambda update-function-code --function-name "${REKT_CREATE_REVIEW_LAMBDA_ARN}" --zip-file "fileb://$(pwd)/dist/aws/lambda-api-gateway.zip" - aws lambda update-function-code --function-name "${REKT_GET_REVIEW_LAMBDA_ARN}" --zip-file "fileb://$(pwd)/dist/aws/lambda-api-gateway.zip" - aws apigateway put-rest-api --fail-on-warnings --mode overwrite --rest-api-id "${REKT_API_ID}" --body "file://$(pwd)/dist/site/swagger.yml" # TODO deploy api # Update Website - aws s3 sync dist/site "s3://${REKT_WEBSITE_BUCKET}" artifacts: discard-paths: no files: - dist/**/*
Update GetReview lambda after build
Update GetReview lambda after build
YAML
mit
brianto/rekt,brianto/rekt,brianto/rekt,brianto/rekt,brianto/rekt
8b7ea9c3562c64c31384a7b352e97df7b25c16fd
tasks/ubuntu.yml
tasks/ubuntu.yml
- fail: msg="The XTraDB Playbook does not support Ubuntu" - name: "Install python-mysqldb" apt: > name=python-mysqldb state=installed tags: - statsd # # This needs to execute AFTER common. # - name: "Change MySQL Daemon user password" mysql_user: > name=debian-sys-maint password={{ daemon_user_pass }} priv=mysql.*:SELECT tags: - statsd
- fail: msg="The XTraDB Playbook does not support Ubuntu" - name: "Install python-mysqldb" apt: > name=python-mysqldb state=installed tags: - statsd - pkgs # # This needs to execute AFTER common. # - name: "Change MySQL Daemon user password" mysql_user: > name=debian-sys-maint password={{ daemon_user_pass }} priv=mysql.*:SELECT tags: - statsd
Add the missing pkgs and repos tags
Add the missing pkgs and repos tags
YAML
mit
AerisCloud/ansible-statsd,tokyowizard/ansible-statsd
dfaa330a94bdd3b09f381f5509f16902ec3beffb
.github/workflows/upload-doc.yml
.github/workflows/upload-doc.yml
name: Upload documentation on: push: branches: - master jobs: build: runs-on: ubuntu-latest if: github.repository == 'actix/actix-web' steps: - uses: actions/checkout@master - name: Install Rust uses: actions-rs/toolchain@v1 with: toolchain: stable-x86_64-unknown-linux-gnu profile: minimal override: true - name: check build uses: actions-rs/cargo@v1 with: command: doc args: --no-deps --all-features - name: Tweak HTML run: echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html - name: Upload documentation run: | git clone https://github.com/davisp/ghp-import.git ./ghp-import/ghp_import.py -n -p -f -m "Documentation upload" -r https://${{ secrets.GITHUB_TOKEN }}@github.com/"${{ github.repository }}.git" target/doc
name: Upload documentation on: push: branches: - master jobs: build: runs-on: ubuntu-latest if: github.repository == 'actix/actix-web' steps: - uses: actions/checkout@master - name: Install Rust uses: actions-rs/toolchain@v1 with: toolchain: stable-x86_64-unknown-linux-gnu profile: minimal override: true - name: check build uses: actions-rs/cargo@v1 with: command: doc args: --no-deps --workspace --all-features - name: Tweak HTML run: echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html - name: Upload documentation run: | git clone https://github.com/davisp/ghp-import.git ./ghp-import/ghp_import.py -n -p -f -m "Documentation upload" -r https://${{ secrets.GITHUB_TOKEN }}@github.com/"${{ github.repository }}.git" target/doc
Deploy all the workspace crates' docs
Deploy all the workspace crates' docs
YAML
apache-2.0
actix/actix-web,actix/actix-web,actix/actix-web
e08bbc56b72cf7d60cd34bf0b36ef8b0dd65ae53
ansible/roles/web/tasks/setup_nginx.yml
ansible/roles/web/tasks/setup_nginx.yml
--- - name: Install Nginx apt: name=nginx update_cache={{ update_apt_cache }} state=installed tags: packages - name: Create the Nginx configuration file template: src=nginx_site_config.jinja dest=/etc/nginx/sites-available/{{ application_name }} backup=yes notify: reload nginx - name: Ensure that the default site is disabled command: rm /etc/nginx/sites-enabled/default removes=/etc/nginx/sites-enabled/default notify: reload nginx - name: Ensure that the application site is enabled command: ln -s /etc/nginx/sites-available/{{ application_name }} /etc/nginx/sites-enabled/{{ application_name }} creates=/etc/nginx/sites-enabled/{{ application_name }} notify: reload nginx - name: Ensure Nginx service is started service: name=nginx state=started enabled=yes
--- - name: Install Nginx apt: name=nginx update_cache={{ update_apt_cache }} state=installed tags: packages - name: Create the Nginx configuration file template: src=nginx_site_config.jinja dest=/etc/nginx/sites-available/{{ application_name }} backup=yes notify: reload nginx - name: Ensure that the default site is disabled action: file path=/etc/nginx/sites-enabled/default state=absent notify: reload nginx - name: Ensure that the application site is enabled action: file src=/etc/nginx/sites-available/{{ application_name }} dest=/etc/nginx/sites-enabled/{{ application_name }} state=link notify: reload nginx - name: Ensure Nginx service is started service: name=nginx state=started enabled=yes
Replace ansible nginx symlink provisions
Replace ansible nginx symlink provisions
YAML
apache-2.0
patrickspencer/compass-python,patrickspencer/compass,patrickspencer/compass,patrickspencer/compass,patrickspencer/compass,patrickspencer/compass-python,patrickspencer/compass-python,patrickspencer/compass-python,patrickspencer/compass-python,patrickspencer/compass
cec9152c2d7c66b3e528ea051c490d728701755c
test/stack.yaml
test/stack.yaml
resolver: nightly-2018-06-16 packages: [foo, bar, baz] ghc-options: "$locals": -Werror -Wunused-binds -Wunused-imports -Wno-missing-home-modules
# Upgrade the resolver semi-regularly so that in Appveyor the "stack init" # and the below resolver can share at least the compiler resolver: nightly-2018-08-21 packages: [foo, bar, baz] ghc-options: "$locals": -Werror -Wunused-binds -Wunused-imports -Wno-missing-home-modules
Upgrade the test resolver in weeder
Upgrade the test resolver in weeder
YAML
bsd-3-clause
ndmitchell/weeder
70686f21fb7a62884c71ecb68c75d9b04801c292
test-environment.yml
test-environment.yml
name: skantest dependencies: - python>=3.6* - setuptools>=19.6* - numba>=0.29 - numpy>=1.11* - numpydoc>=0.5* - scipy>=0.18* - scikit-image>=0.12* - networkx>=1.11* - matplotlib>=1.5* - pandas>=0.18* - openpyxl>=2.4* - xlrd>=1.0* - pytest>=3* - coverage>=4.0 - pytest-cov>=2.2 - click>=0.5 - pip: - hypothesis>=3.6 - imageio>=2.0 - tqdm>=4.11 - nose>=1.3 - nb2plots>=0.5 - sphinx_rtd_theme - seaborn>=0.9
name: skantest dependencies: - python>=3.6* - setuptools>=19.6* - numba>=0.29 - numpy>=1.11* - numpydoc>=0.5* - scipy>=1.0* - scikit-image>=0.14* - networkx>=2.0* - matplotlib>=3.0.2* - pandas>=0.24* - openpyxl>=2.4* - xlrd>=1.0* - pytest>=3* - coverage>=4.0 - pytest-cov>=2.2 - click>=0.5 - pip: - hypothesis>=3.6 - imageio>=2.0 - tqdm>=4.11 - nose>=1.3 - nb2plots>=0.5 - sphinx_rtd_theme - seaborn>=0.9
Update dependencies in conda env
Update dependencies in conda env
YAML
bsd-3-clause
jni/skan
5673c91b08721bd6493a1f94f6438c331c63750e
.appveyor.yml
.appveyor.yml
version: 2.0.{build} # select image with MinGW-w64 available image: Visual Studio 2015 clone_folder: c:\projects\sif environment: global: PATH: C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin;C:\msys64\usr\bin;$(PATH) CXX: g++ CC: gcc GCOV: gcov MAKE: make install: # show all env vars #- set # display available tools - '%CC% --version' - pwd build_script: - cmd /c build_all.bat artifacts: - path: obj32\*.exe name: built sif2
version: 2.0.{build} # select image with MinGW-w64 available image: Visual Studio 2013 clone_folder: c:\projects\sif environment: global: PATH: C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin;C:\msys64\usr\bin;$(PATH) CXX: g++ CC: gcc GCOV: gcov MAKE: make install: # show all env vars #- set # display available tools - '%CC% --version' - pwd build_script: - cmd /c build_all.bat artifacts: - path: obj32\*.exe name: built sif2
Use Visual Studio 2013 as AppVeyor image
Use Visual Studio 2013 as AppVeyor image
YAML
mit
goriy/sif,goriy/sif
49312cb233ce31c897687e6c39f2fc1a3e3579e0
.appveyor.yml
.appveyor.yml
# Sharpmake AppVeyor CI configuration image: Visual Studio 2017 platform: - Any CPU configuration: - Debug - Release before_build: - cmd: bootstrap.bat for: - matrix: only: - configuration: Debug build_script: - CompileSharpmake.bat Sharpmake.sln Debug "Any CPU" - matrix: only: - configuration: Release build_script: - CompileSharpmake.bat Sharpmake.sln Release "Any CPU" after_test: - cmd: python regression_test.py
# Sharpmake AppVeyor CI configuration image: - Visual Studio 2017 - macOS skip_commits: files: - docs/* platform: - Any CPU configuration: - Debug - Release before_build: - cmd: bootstrap.bat - sh: ./bootstrap.sh build_script: - cmd: CompileSharpmake.bat Sharpmake.sln "%CONFIGURATION%" "%PLATFORM%" - sh: msbuild -t:build -restore Sharpmake.sln /p:Configuration=\"$CONFIGURATION\" /p:Platform=\"$PLATFORM\" /nologo /v:m test: assemblies: - 'Sharpmake.UnitTests\bin\*\Sharpmake.UnitTests.dll' after_test: - cmd: python regression_test.py
Add macOS to AppVeyor CI, and various improvements
Add macOS to AppVeyor CI, and various improvements - Remove the matrix in favor of a single build_scripts section that use environment variables - Skip the CI for commits where all files are in the docs directory - Ease unit-tests discovery
YAML
apache-2.0
ubisoftinc/Sharpmake,ubisoftinc/Sharpmake,ubisoftinc/Sharpmake
021a526bbd759caa154e87d995cb265271ae0dab
.appveyor.yml
.appveyor.yml
version: 1.0.{build} init: - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) pull_requests: do_not_increment_build_number: true image: Visual Studio 2015 environment: APPVEYOR_SAVE_CACHE_ON_ERROR: true cache: - c:\projects\vcpkg\installed -> bigtable\api\ci\install-windows.ps1 install: - git submodule update --init --recursive - powershell -exec bypass bigtable\api\ci\install-windows.ps1 build_script: - powershell -exec bypass bigtable\api\ci\build-windows.ps1 on_finish: - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
version: 1.0.{build} pull_requests: do_not_increment_build_number: true image: Visual Studio 2015 environment: APPVEYOR_SAVE_CACHE_ON_ERROR: true cache: - c:\projects\vcpkg\installed -> bigtable\api\ci\install-windows.ps1 install: - git submodule update --init --recursive - powershell -exec bypass bigtable\api\ci\install-windows.ps1 build_script: - powershell -exec bypass bigtable\api\ci\build-windows.ps1
Remove RDP debugging now that builds work.
Remove RDP debugging now that builds work.
YAML
apache-2.0
GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples
5172ce1894e20b98faeb70dda1d64bdfd5f94620
.appveyor.yml
.appveyor.yml
version: 0.4.0.{build} branches: only: - master - travis environment: matrix: - TARGET: Python34 ARCH: 32 - TARGET: Python34-x64 ARCH: 64 - TARGET: Python36 ARCH: 32 - TARGET: Python36-x64 ARCH: 64 install: - cmd: echo Testing sciter%ARCH% with %TARGET%. - cmd: echo Current directory is %APPVEYOR_BUILD_FOLDER% - cmd: set PATH=C:\%TARGET%;C:\projects\deps;%PATH%; - python --version - mkdir ..\deps - curl -so "..\deps\sciter.dll" "https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin/%ARCH%/sciter.dll" build_script: - cmd: cd - python setup.py install test_script: - cmd: cd - python tests\test_value.py
version: 0.4.0.{build} branches: only: - master - travis environment: matrix: - TARGET: Python34 ARCH: 32 - TARGET: Python34-x64 ARCH: 64 - TARGET: Python35 ARCH: 32 - TARGET: Python35-x64 ARCH: 64 - TARGET: Python36 ARCH: 32 - TARGET: Python36-x64 ARCH: 64 install: - cmd: echo Testing sciter%ARCH% with %TARGET%. - cmd: echo Current directory is %APPVEYOR_BUILD_FOLDER% - cmd: set PATH=C:\%TARGET%;C:\projects\deps;%PATH%; - python --version - mkdir ..\deps - curl -so "..\deps\sciter.dll" "https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin/%ARCH%/sciter.dll" build_script: - cmd: cd - python setup.py install test_script: - cmd: cd - python tests\test_value.py
Add 3.5 & 3.7 versions to test against.
chore: Add 3.5 & 3.7 versions to test against.
YAML
mit
pravic/pysciter
f7112c4417b94a66d111509b32bd0464069dd61f
.appveyor.yml
.appveyor.yml
image: - Visual Studio 2017 environment: matrix: - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python35-x64" - PYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python37-x64" allow_failures: - PYTHON: "C:\\Python37-x64" install: - "%PYTHON%\\python.exe -m pip install --upgrade setuptools pip" - "%PYTHON%\\python.exe -m pip --version" - "git --version" - "%PYTHON%\\python.exe -m pip install --upgrade .[test]" # Installs python testing-related packages - "%PYTHON%\\python.exe -m pip install --upgrade -r requirements.txt" # Gets FuzzManager, lithium-reducer from GitHub - "choco install codecov" build: off test_script: - "%PYTHON%\\python.exe -m pytest --flake8 --pylint --cov-report xml setup.py src/" # Uncomment and replace the line above to test everything once compilation tests work on AppVeyor # - "%PYTHON%\\python.exe -m pytest --flake8 --pylint -p no:cov setup.py src/" # - "%PYTHON%\\python.exe -m pytest -p no:flake8 -p no:pylint --cov-report xml" # on_success: # - "codecov -f coverage.xml" skip_branch_with_pr: true
image: - Visual Studio 2017 environment: matrix: - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python35-x64" - PYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python37-x64" install: - "%PYTHON%\\python.exe -m pip install --upgrade setuptools pip" - "%PYTHON%\\python.exe -m pip --version" - "git --version" - "%PYTHON%\\python.exe -m pip install --upgrade .[test]" # Installs python testing-related packages - "%PYTHON%\\python.exe -m pip install --upgrade -r requirements.txt" # Gets FuzzManager, lithium-reducer from GitHub - "choco install codecov" build: off test_script: - "%PYTHON%\\python.exe -m pytest --flake8 --pylint --cov-report xml setup.py src/" # Uncomment and replace the line above to test everything once compilation tests work on AppVeyor # - "%PYTHON%\\python.exe -m pytest --flake8 --pylint -p no:cov setup.py src/" # - "%PYTHON%\\python.exe -m pytest -p no:flake8 -p no:pylint --cov-report xml" # on_success: # - "codecov -f coverage.xml" skip_branch_with_pr: true
Revert "Allow Python 3.7 build on AppVeyor to fail until our version of pylint is updated to support it."
Revert "Allow Python 3.7 build on AppVeyor to fail until our version of pylint is updated to support it." This reverts commit f5ef765bb5f3d00306260dcdf4b29bc32cbea19f.
YAML
mpl-2.0
MozillaSecurity/funfuzz,nth10sd/funfuzz,nth10sd/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz,MozillaSecurity/funfuzz
674e10a032a75e3b8b74c06d8a137ae6a24c7a18
.golangci.yml
.golangci.yml
run: build-tags: - e2e skip-dirs: - vendor - pkg/client/clientset/versioned/fake linters-settings: errcheck: exclude: .errcheck.txt linters: enable: - errcheck - gofmt - goimports - gosec - gocritic
run: build-tags: - e2e skip-dirs: - vendor - pkg/client/clientset/(.*)/fake linters-settings: errcheck: exclude: .errcheck.txt linters: enable: - errcheck - gofmt - goimports - gosec - gocritic - golint
Add golint to the linter ๐Ÿš
Add golint to the linter ๐Ÿš And update the skip-dirs list ๐Ÿ‘ผ Signed-off-by: Vincent Demeester <[email protected]>
YAML
apache-2.0
tektoncd/pipeline,tektoncd/pipeline