Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Make it a CMAKE project
cmake_minimum_required (VERSION 2.8) project (wbus) # The version number. set (wbus_VERSION_MAJOR 0) set (wbus_VERSION_MINOR 1) # configure a header file to pass some of the CMake settings # to the source code configure_file ( "${PROJECT_SOURCE_DIR}/wbusConfig.h.in" "${PROJECT_BINARY_DIR}/wbusConfig.h...
Fix another build issue with shared libraries on Linux
add_lldb_library(lldbPluginUnwindAssemblyX86 PLUGIN UnwindAssembly-x86.cpp x86AssemblyInspectionEngine.cpp LINK_LIBS lldbCore lldbSymbol lldbTarget lldbUtility LINK_COMPONENTS Support MC )
add_lldb_library(lldbPluginUnwindAssemblyX86 PLUGIN UnwindAssembly-x86.cpp x86AssemblyInspectionEngine.cpp LINK_LIBS lldbCore lldbSymbol lldbTarget lldbUtility LINK_COMPONENTS Support MC MCDisassembler RuntimeDyld )
Update PaperLaunch to 1.0.10 (12)
Categories:Theming License:Apache-2.0 Web Site: Source Code:https://github.com/devmil/PaperLaunch Issue Tracker:https://github.com/devmil/PaperLaunch/issues Auto Name:PaperLaunch Summary:Side launcher in material design that launches apps with one gesture Description: PaperLaunch is a side launcher. Tired of hopping b...
Categories:Theming License:Apache-2.0 Web Site: Source Code:https://github.com/devmil/PaperLaunch Issue Tracker:https://github.com/devmil/PaperLaunch/issues Auto Name:PaperLaunch Summary:Side launcher in material design that launches apps with one gesture Description: PaperLaunch is a side launcher. Tired of hopping b...
Update 33c3 SCR to 0.8 (8)
Categories:Time License:GPLv3 Web Site:https://github.com/ligi/SCR/blob/HEAD/README.md Source Code:https://github.com/ligi/SCR Issue Tracker:https://github.com/ligi/SCR/issues Auto Name:32c3 SCR Summary:Resolve Schedule conflicts Description: Mark the talks you want to see at 32C3 and prevent schedule conflicts this w...
Categories:Time License:GPLv3 Web Site:https://github.com/ligi/SCR/blob/HEAD/README.md Source Code:https://github.com/ligi/SCR Issue Tracker:https://github.com/ligi/SCR/issues Auto Name:33c3 SCR Summary:Resolve Schedule conflicts Description: Mark the talks you want to see at 32C3 and prevent schedule conflicts this w...
Set minimum CMake version to 3.6
cmake_minimum_required(VERSION 3.7) project(hwcpipe LANGUAGES C CXX) set(PROJECT_FILES instrument.h instruments_stats.h measurement.h instruments_stats.cpp) if(ANDROID) list(APPEND PROJECT_FILES hwc.hpp hwc_names.hpp mali_counter.h mali_counter.cpp) endif()...
cmake_minimum_required(VERSION 3.6) project(hwcpipe LANGUAGES C CXX) set(PROJECT_FILES instrument.h instruments_stats.h measurement.h instruments_stats.cpp) if(ANDROID) list(APPEND PROJECT_FILES hwc.hpp hwc_names.hpp mali_counter.h mali_counter.cpp) endif()...
Add "processes" to NER stoplist.
# # This file contains a list of single-token entities that should not be marked as NEs when seen in lower case # blot prey role cell cells head neck shoulder shoulders hand hands finger fingers hip hips leg legs knee knees ankle ankles foot feet toe toes
# # This file contains a list of single-token entities that should not be marked as NEs when seen in lower case # blot prey role cell cells head neck shoulder shoulders hand hands finger fingers hip hips leg legs knee knees ankle ankles foot feet toe toes processes
Update psycopg2 from 2.7.6.1 to 2.7.7
{% if cookiecutter.use_python3 == 'y' -%} # Wheel 0.25+ needed to install certain packages on CPython 3.5+ # like Pillow and psycopg2 # See http://bitly.com/wheel-building-fails-CPython-35 # Verified bug on Python 3.5.1 wheel==0.32.3 {%- endif %} # Bleeding edge Django django==2.1.5 # Configuration django-environ==0....
{% if cookiecutter.use_python3 == 'y' -%} # Wheel 0.25+ needed to install certain packages on CPython 3.5+ # like Pillow and psycopg2 # See http://bitly.com/wheel-building-fails-CPython-35 # Verified bug on Python 3.5.1 wheel==0.32.3 {%- endif %} # Bleeding edge Django django==2.1.5 # Configuration django-environ==0....
Update pytest from 4.2.0 to 4.4.0
-r requirements.txt -e . pytest==4.2.0 mock==2.0.0
-r requirements.txt -e . pytest==4.4.0 mock==2.0.0
Update to Launchpad Base 5.6.6-2.6.20
# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you m...
# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you m...
Add new package to npm list
ampersand async-you bootlint bower browser-sync browserify browserify-adventure bug-clinic bytewiser casperjs csslint expressworks fixmyjs forever functional-javascript-workshop git-it goingnative grunt gulp introtowebgl jscs jshint jsinspect katon kick-off-koa learnyoucouchdb learnyounode levelmeup lololodash makemeha...
ampersand async-you bootlint bower browser-sync browserify browserify-adventure bug-clinic bytewiser casperjs csslint expressworks fixmyjs forever functional-javascript-workshop git-it goingnative grunt gulp introtowebgl jscs jshint jsinspect katon kick-off-koa learnyoucouchdb learnyounode levelmeup lololodash makemeha...
Add Japanese stop word list
# # This is a stop word list for the Japanese language. # # Sources: # https://github.com/stopwords/japanese-stopwords/blob/master/data/japanese-stopwords.txt # これ それ あれ この その あの ここ そこ あそこ こちら どこ だれ なに なん 何 私 貴方 貴方方 我々 私達 あの人 あのかた 彼女 彼 です あります おります います は が の に を で え から まで より も どの と し それで しかし
Add pytest target to CMake
cmake_minimum_required(VERSION 3.0) project(pybinding) if(NOT PYTHON_VERSION) set(PYTHON_VERSION 3.4) # minimum required version endif() add_subdirectory(cppwrapper) if(NOT CMAKE_LIBRARY_OUTPUT_DIRECTORY) set_target_properties(_pybinding PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}) fore...
cmake_minimum_required(VERSION 3.0) project(pybinding) if(NOT PYTHON_VERSION) set(PYTHON_VERSION 3.4) # minimum required version endif() add_subdirectory(cppwrapper) if(NOT CMAKE_LIBRARY_OUTPUT_DIRECTORY) set_target_properties(_pybinding PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}) fore...
Update coverage package to 6.3.2
# Testing coverage==5.3.1 # Test coverage flake8==3.8.4 # Python linting mypy==0.790 # Static typing syspath==1.1.0 # Manipulating python paths
# Testing coverage==6.3.2 # Test coverage flake8==3.8.4 # Python linting mypy==0.790 # Static typing syspath==1.1.0 # Manipulating python paths
Update django from 3.2.7 to 3.2.9
bleach==4.1.0 Django==3.2.7 django-allauth==0.45.0 django-autoslug==1.9.8 django-background-tasks==1.2.5 django-ckeditor==6.1.0 django-enumfield==2.0.2 django-filter==21.1 django-multiselectfield==0.1.12 django-widget-tweaks==1.4.9 djangorestframework==3.12.4 easy-thumbnails==2.7.2 html5lib==1.1 jsonfield==3.1.0 psycop...
bleach==4.1.0 Django==3.2.9 django-allauth==0.45.0 django-autoslug==1.9.8 django-background-tasks==1.2.5 django-ckeditor==6.1.0 django-enumfield==2.0.2 django-filter==21.1 django-multiselectfield==0.1.12 django-widget-tweaks==1.4.9 djangorestframework==3.12.4 easy-thumbnails==2.7.2 html5lib==1.1 jsonfield==3.1.0 psycop...
Update sphinx from 1.5.3 to 1.5.5
click==6.7 Sphinx==1.5.3 sphinx-rtd-theme==0.2.4 jinja2==2.9.5 pip==9.0.1 wheel==0.29.0 flake8==3.3.0 tox==2.6.0 coverage==4.3.4 pytest==3.0.7 pytest_cov==2.4.0 pytest-runner==2.11.1
click==6.7 Sphinx==1.5.5 sphinx-rtd-theme==0.2.4 jinja2==2.9.5 pip==9.0.1 wheel==0.29.0 flake8==3.3.0 tox==2.6.0 coverage==4.3.4 pytest==3.0.7 pytest_cov==2.4.0 pytest-runner==2.11.1
Update pytest from 3.2.3 to 3.2.5
-r requirements.txt pytest==3.2.3 pytest-mock==1.6.3 pytest-cov==2.5.1 pytest-xdist==1.20.1 coveralls==1.2.0 httpretty==0.8.14 beautifulsoup4==4.6.0 freezegun==0.3.9 flake8==3.5.0
-r requirements.txt pytest==3.2.5 pytest-mock==1.6.3 pytest-cov==2.5.1 pytest-xdist==1.20.1 coveralls==1.2.0 httpretty==0.8.14 beautifulsoup4==4.6.0 freezegun==0.3.9 flake8==3.5.0
Update freezegun from 0.3.9 to 0.3.10
-r requirements.txt pytest==3.4.2 pytest-mock==1.7.1 pytest-cov==2.5.1 pytest-xdist==1.22.2 requests-mock==1.4.0 freezegun==0.3.9 flake8==3.5.0 flake8-print==3.1.0
-r requirements.txt pytest==3.4.2 pytest-mock==1.7.1 pytest-cov==2.5.1 pytest-xdist==1.22.2 requests-mock==1.4.0 freezegun==0.3.10 flake8==3.5.0 flake8-print==3.1.0
Add missing files on root
# Copyright (C) 2008-2013 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # # This program is distributed in the hope that it...
Update dependency pylint to v2.13.1
-r docs/requirements.txt flake8==4.0.1 pylint==2.12.2 pytype==2022.3.21
-r docs/requirements.txt flake8==4.0.1 pylint==2.13.1 pytype==2022.3.21
Update sphinx from 1.7.2 to 1.7.3
coverage==4.5.1 flake8==3.5.0 nose==1.3.7 pep8==1.7.1 pylint==1.8.4 rednose==1.3.0 sphinx==1.7.2 flake8-import-order==0.17.1
coverage==4.5.1 flake8==3.5.0 nose==1.3.7 pep8==1.7.1 pylint==1.8.4 rednose==1.3.0 sphinx==1.7.3 flake8-import-order==0.17.1
Update pytest from 4.3.1 to 4.4.0
-r requirements.txt coverage==4.5.3 coveralls==1.7.0 cssselect==1.0.3 flake8==3.7.7 mock==2.0.0 pytest==4.3.1 pytest-cov==2.6.1 watchdog==0.9.0 git+https://github.com/alphagov/digitalmarketplace-test-utils.git@2.1.2#egg=digitalmarketplace-test-utils==2.1.2
-r requirements.txt coverage==4.5.3 coveralls==1.7.0 cssselect==1.0.3 flake8==3.7.7 mock==2.0.0 pytest==4.4.0 pytest-cov==2.6.1 watchdog==0.9.0 git+https://github.com/alphagov/digitalmarketplace-test-utils.git@2.1.2#egg=digitalmarketplace-test-utils==2.1.2
Update coveralls from 1.5.0 to 1.5.1
# Runtime requirements --requirement requirements.txt # Postgresql database access psycopg2==2.7.5 # Documentation Sphinx==1.8.1 # Testing pytest==3.9.3 pytest-cov==2.6.0 coveralls==1.5.0 # Linting flake8==3.5.0 mccabe==0.6.1 pep8==1.7.1 pyflakes==2.0.0
# Runtime requirements --requirement requirements.txt # Postgresql database access psycopg2==2.7.5 # Documentation Sphinx==1.8.1 # Testing pytest==3.9.3 pytest-cov==2.6.0 coveralls==1.5.1 # Linting flake8==3.5.0 mccabe==0.6.1 pep8==1.7.1 pyflakes==2.0.0
Update faker from 6.5.0 to 6.6.1
-r base.txt django-debug-toolbar==3.2 factory-boy==3.2.0 Faker==6.5.0 flake8-docstrings==1.5.0 flake8==3.8.4 freezegun==1.1.0 isort==5.7.0 pytest-cov==2.11.1 pytest-django==4.1.0 pytest-factoryboy==2.1.0 pytest==6.2.2
-r base.txt django-debug-toolbar==3.2 factory-boy==3.2.0 Faker==6.6.1 flake8-docstrings==1.5.0 flake8==3.8.4 freezegun==1.1.0 isort==5.7.0 pytest-cov==2.11.1 pytest-django==4.1.0 pytest-factoryboy==2.1.0 pytest==6.2.2
Update sphinx from 1.7.0 to 1.7.1
sphinx==1.7.0 alagitpull==0.0.19 releases==1.4.0 sphinx-argparse==0.2.1
sphinx==1.7.1 alagitpull==0.0.19 releases==1.4.0 sphinx-argparse==0.2.1
Update coverage from 5.2 to 5.3
pip==20.0.2 bumpversion==0.6.0 wheel==0.34.2 watchdog==0.10.3 flake8==3.7.9 Sphinx==3.1.2 tox==3.14.6 coverage==5.2 cryptography==2.9.2 PyYAML==5.3.1
pip==20.0.2 bumpversion==0.6.0 wheel==0.34.2 watchdog==0.10.3 flake8==3.7.9 Sphinx==3.1.2 tox==3.14.6 coverage==5.3 cryptography==2.9.2 PyYAML==5.3.1
Update dependency termcolor to v2.1.1
click==8.1.3 future==0.18.2 Jinja2==3.1.2 livereload==2.6.3 lunr==0.6.2 Markdown==3.3.7 # See https://github.com/mkdocs/mkdocs/issues/2892. MarkupSafe==2.1.1 mkdocs==1.4.2 mkdocs-macros-plugin==0.7.0 mkdocs-material==8.5.10 mkdocs-material-extensions==1.1 Pygments==2.13.0 pymdown-extensions==9.8 python-dateutil==2.8.2 ...
click==8.1.3 future==0.18.2 Jinja2==3.1.2 livereload==2.6.3 lunr==0.6.2 Markdown==3.3.7 # See https://github.com/mkdocs/mkdocs/issues/2892. MarkupSafe==2.1.1 mkdocs==1.4.2 mkdocs-macros-plugin==0.7.0 mkdocs-material==8.5.10 mkdocs-material-extensions==1.1 Pygments==2.13.0 pymdown-extensions==9.8 python-dateutil==2.8.2 ...
Update to newer flask version
-e git://github.com/quantopian/datashape.git@bf06a41dc0908baf7c324aeacadba8820468ee78#egg=datashape-dev -e git://github.com/quantopian/odo.git@da7f26d87702f5d293763e8ed54c7e25fd3af38#egg=odo-dev # Keep cytoolz version in sync with toolz version in requirements.txt cytoolz==0.8.2 # Transitive dependencies of blaze: da...
-e git://github.com/quantopian/datashape.git@bf06a41dc0908baf7c324aeacadba8820468ee78#egg=datashape-dev -e git://github.com/quantopian/odo.git@da7f26d87702f5d293763e8ed54c7e25fd3af38#egg=odo-dev # Keep cytoolz version in sync with toolz version in requirements.txt cytoolz==0.8.2 # Transitive dependencies of blaze: da...
Add pytest-runner as a dependency
-r base.txt coverage pytest pytest-cov pytest-sugar tox
-r base.txt coverage pytest pytest-cov pytest-sugar pytest-runner tox
Revert "Revert "Requirements.txt Upgrade (DON'T MERGE YET!)""
Flask gunicorn requests ipwhois python-whois Flask-SQLAlchemy Flask-Login Flask-RESTful flask-wtf honcho investigate passivetotal
aniso8601==1.1.0 click==6.6 dnspython==1.14.0 ez-setup==0.9 Flask==0.11 Flask-Login==0.3.2 Flask-RESTful==0.3.5 Flask-SQLAlchemy==2.1 Flask-WTF==0.12 future==0.15.2 gunicorn==19.6.0 honcho==0.7.1 investigate==1.1.3 ipaddr==2.1.11 ipwhois==0.13.0 itsdangerous==0.24 Jinja2==2.8 MarkupSafe==0.23 passivetotal==1.0.28 pytho...
Bump appdirs from 1.4.0 to 1.4.4
appdirs==1.4.0 cycler==0.10.0 dask==0.13.0 decorator==4.0.11 Django==1.11.29 django-crispy-forms==1.6.1 django-environ==0.4.1 django-flat-responsive==1.2.0 django-model-utils==2.6.1 google-api-python-client==1.6.2 httplib2==0.10.3 matplotlib==2.0.0 networkx==1.11 oauth2client==4.0.0 olefile==0.44 packaging==16.8 Pillow...
appdirs==1.4.4 cycler==0.10.0 dask==0.13.0 decorator==4.0.11 Django==1.11.29 django-crispy-forms==1.6.1 django-environ==0.4.1 django-flat-responsive==1.2.0 django-model-utils==2.6.1 google-api-python-client==1.6.2 httplib2==0.10.3 matplotlib==2.0.0 networkx==1.11 oauth2client==4.0.0 olefile==0.44 packaging==16.8 Pillow...
Bump coveralls from 1.11.1 to 2.0.0
bandit==1.6.2 coverage==5.0.4 coveralls==1.11.1 Flask==1.1.2 Flask-SSLify==0.1.5 Flask-Testing==0.8.0 Flask-SeaSurf==0.2.2 flask-talisman==0.7.0 gunicorn==20.0.4 pycodestyle==2.5.0 pydocstyle==5.0.2 requests==2.23.0 Sphinx==3.0.0 Werkzeug==1.0.1
bandit==1.6.2 coverage==5.0.4 coveralls==2.0.0 Flask==1.1.2 Flask-SSLify==0.1.5 Flask-Testing==0.8.0 Flask-SeaSurf==0.2.2 flask-talisman==0.7.0 gunicorn==20.0.4 pycodestyle==2.5.0 pydocstyle==5.0.2 requests==2.23.0 Sphinx==3.0.0 Werkzeug==1.0.1
Add requirement for requests module
dj-database-url==0.4.1 Django==1.9.8 psycopg2==2.6.2 whitenoise==3.2
dj-database-url==0.4.1 Django==1.9.8 psycopg2==2.6.2 whitenoise==3.2 requests=2.10
Update flask-migrate from 2.1.1 to 2.2.0
Flask==1.0.2 Flask-SQLAlchemy==2.3.2 Flask-Assets==0.12 Flask-Mail==0.9.1 Flask-WTF==0.14.2 Flask-RQ==0.2 git+https://github.com/hasgeek/baseframe git+https://github.com/hasgeek/coaster git+https://github.com/hasgeek/flask-lastuser jsmin==2.2.2 pytz==2018.4 psycopg2==2.7.5 wtforms_json==0.3.3 rq==0.11.0 html2text==2018...
Flask==1.0.2 Flask-SQLAlchemy==2.3.2 Flask-Assets==0.12 Flask-Mail==0.9.1 Flask-WTF==0.14.2 Flask-RQ==0.2 git+https://github.com/hasgeek/baseframe git+https://github.com/hasgeek/coaster git+https://github.com/hasgeek/flask-lastuser jsmin==2.2.2 pytz==2018.4 psycopg2==2.7.5 wtforms_json==0.3.3 rq==0.11.0 html2text==2018...
Add license for OpenSansEmoji font
OpenSansEmoji Font License ========================== 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 w...
Add python dependency for docker_test
-r requirements.txt docker==3.4.1 pytest==3.1.1 python-dateutil==2.5.3 mock==1.0.1
-r requirements.txt docker==3.4.1 pytest==3.1.1 python-dateutil==2.5.3 mock==1.0.1 clingon==0.1.4
Update SolitaireCG to 1.15 (453)
Categories:Games License:Apache2 Web Site:http://solitairecg.sourceforge.net Source Code:http://sourceforge.net/p/solitairecg/code Issue Tracker:http://solitairecg.sourceforge.net/issues.php Auto Name:SolitaireCG Summary:Solitaire Card Games Description: SolitaireCG is an adaptation of Ken Magic's "[[com.kmagic.solita...
Categories:Games License:Apache2 Web Site:http://solitairecg.sourceforge.net Source Code:http://sourceforge.net/p/solitairecg/code Issue Tracker:http://solitairecg.sourceforge.net/issues.php Auto Name:SolitaireCG Summary:Solitaire Card Games Description: SolitaireCG is an adaptation of Ken Magic's "[[com.kmagic.solita...
Update django to 1.9.13 due to security issue
chardet==3.0.4 coreapi==2.3.1 Django==1.9.3 django-angular==0.8.4 django-filter==1.0.4 djangorestframework==3.6.3 django-rest-framework-social-oauth2==1.0.4 drfdocs==0.0.11 Markdown==2.6.8 ply==3.9 psycopg2==2.6.1 Pygments==2.2.0 pyjwkest==1.3.2 scandir==1.3 social-auth-app-django==1.1.0 SQLAlchemy==1.0.12 Unipath==1.1...
chardet==3.0.4 coreapi==2.3.1 Django==1.9.13 django-angular==0.8.4 django-filter==1.0.4 djangorestframework==3.6.3 django-rest-framework-social-oauth2==1.0.4 drfdocs==0.0.11 Markdown==2.6.8 ply==3.9 psycopg2==2.6.1 Pygments==2.2.0 pyjwkest==1.3.2 scandir==1.3 social-auth-app-django==1.1.0 SQLAlchemy==1.0.12 Unipath==1....
Update testinfra from 1.11.1 to 1.12.0
molecule==2.12.1 pytest==3.5.0 python-vagrant==0.5.15 testinfra==1.11.1 tox==3.0.0
molecule==2.12.1 pytest==3.5.0 python-vagrant==0.5.15 testinfra==1.12.0 tox==3.0.0
Upgrade requests to 2.18.2 :tada:
alabaster==0.7.10 Babel==2.4.0 click==6.7 docutils==0.13.1 Flask==0.12.2 Flask-SSLify==0.1.5 gunicorn==19.7.1 imagesize==0.7.1 itsdangerous==0.24 Jinja2==2.9.6 MarkupSafe==1.0 Pygments==2.2.0 pytz==2017.2 requests==2.18.1 six==1.10.0 snowballstemmer==1.2.1 Sphinx==1.6.3 sphinx-rtd-theme==0.2.4 Werkzeug==0.12.2
alabaster==0.7.10 Babel==2.4.0 click==6.7 docutils==0.13.1 Flask==0.12.2 Flask-SSLify==0.1.5 gunicorn==19.7.1 imagesize==0.7.1 itsdangerous==0.24 Jinja2==2.9.6 MarkupSafe==1.0 Pygments==2.2.0 pytz==2017.2 requests==2.18.2 six==1.10.0 snowballstemmer==1.2.1 Sphinx==1.6.3 sphinx-rtd-theme==0.2.4 Werkzeug==0.12.2
Set libpsl-native configuration to release
cmake_minimum_required(VERSION 2.8.11) project(PSL-NATIVE) # Can't use add_compile_options with 2.8.11 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Werror") set(LIBRARY_OUTPUT_PATH "${PROJECT_SOURCE_DIR}/../powershell-unix") # test in BUILD_DIR enable_testing() add_subdirectory(src) add_subdirectory(test...
cmake_minimum_required(VERSION 2.8.11) project(PSL-NATIVE) # Can't use add_compile_options with 2.8.11 set(CMAKE_BUILD_TYPE "Release") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Werror") set(LIBRARY_OUTPUT_PATH "${PROJECT_SOURCE_DIR}/../powershell-unix") # test in BUILD_DIR enable_testing() add_subdire...
Fix iframe.sky layout test failure.
layer at (0,0) size 800x600 RenderView {#document} at (0,0) size 800x600 layer at (0,0) size 800x188 RenderBlock {sky} at (0,0) size 800x188 RenderBlock {div} at (0,0) size 800x188 RenderBlock (anonymous) at (0,0) size 800x19 RenderText {#text} at (0,0) size 76x19 text run at (0,0) width...
layer at (0,0) size 800x600 RenderView {#document} at (0,0) size 800x600 layer at (0,0) size 800x188 RenderBlock {sky} at (0,0) size 800x188 RenderBlock {div} at (0,0) size 800x188 RenderBlock (anonymous) at (0,0) size 800x19 RenderText {#text} at (0,0) size 76x19 text run at (0,0) width...
Update cryptography from 1.8.1 to 1.9
pip==9.0.1 wheel==0.29.0 flake8==3.3.0 tox==2.7.0 coverage==4.4.1 pytest==3.1.0 pytest-cov==2.5.1 Sphinx==1.6.1 sphinx-rtd-theme==0.2.4 boto3==1.4.4 datafs==0.7.1 bumpversion==0.5.3 watchdog==0.8.3 cryptography==1.8.1 h5py==2.7.0 netCDF4==1.2.7 xarray==0.9.5 dask==0.14.3 numpy==1.12.1 scipy==0.19.0 numba==0.33.0 pandas...
pip==9.0.1 wheel==0.29.0 flake8==3.3.0 tox==2.7.0 coverage==4.4.1 pytest==3.1.0 pytest-cov==2.5.1 Sphinx==1.6.1 sphinx-rtd-theme==0.2.4 boto3==1.4.4 datafs==0.7.1 bumpversion==0.5.3 watchdog==0.8.3 cryptography==1.9 h5py==2.7.0 netCDF4==1.2.7 xarray==0.9.5 dask==0.14.3 numpy==1.12.1 scipy==0.19.0 numba==0.33.0 pandas==...
Set gevent to a fixed version
django>=2.2,<2.3 django-debug-toolbar>=1.7 gunicorn=19.9.0 gevent>=1.2.2 psycopg2-binary>=2.7.1 whitenoise>=4.1.2 django-crispy-forms>=1.6.1 django-formtools>=2.0 django-settings-export>=1.2.1 djangorestframework>=3.9,<3.10 djangorestframework-jwt==1.11.0 django-rest-multiple-models==2.1.0 requests==2.21.0 minio>=4.0.1...
django>=2.2,<2.3 django-debug-toolbar>=1.7 gunicorn=19.9.0 gevent=1.2.2 psycopg2-binary>=2.7.1 whitenoise>=4.1.2 django-crispy-forms>=1.6.1 django-formtools>=2.0 django-settings-export>=1.2.1 djangorestframework>=3.9,<3.10 djangorestframework-jwt==1.11.0 django-rest-multiple-models==2.1.0 requests==2.21.0 minio>=4.0.16...
Use pre and post init instead of standard_project per jason's preferences
cmake_minimum_required(VERSION 3.4) include(version.cmake) include("standard/Standard.cmake") standard_project(LeapSerial VERSION ${LeapSerial_VERSION}) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake-modules") include(AddPCH) include(ConditionalSources) set_property(GLOBAL PROPERTY USE_FOLDERS ON) ...
cmake_minimum_required(VERSION 3.4) include(version.cmake) include("standard/Standard.cmake") standard_project_preinit() project(LeapSerial VERSION ${LeapSerial_VERSION}) standard_project_postinit() list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake-modules") include(AddPCH) include(ConditionalSources) ...
Fix incorrect number in pyauto tests that caused them to fail with stricter versions of the phonenumber library. BUG=none TEST=pyauto
# Input profiles for a test which validates that aggregated phone numbers are cleaned. # Used by: chrome/test/functional/autofill.py testCharsStrippedForAggregatedPhoneNumbers [ {'NAME_FIRST': 'Bob', 'NAME_LAST': 'Smith', 'ADDRESS_HOME_LINE1': '123 Cherry Ave', 'ADDRESS_HOME_CITY': 'Mountain View', 'ADDRESS_HOME_S...
# Input profiles for a test which validates that aggregated phone numbers are cleaned. # Used by: chrome/test/functional/autofill.py testCharsStrippedForAggregatedPhoneNumbers [ {'NAME_FIRST': 'Bob', 'NAME_LAST': 'Smith', 'ADDRESS_HOME_LINE1': '123 Cherry Ave', 'ADDRESS_HOME_CITY': 'Mountain View', 'ADDRESS_HOME_S...
Remove sphinx from Python 3 requirements
http://tarballs.openstack.org/ceilometer/ceilometer-master.tar.gz#egg=ceilometer fixtures keystonemiddleware mock psycopg2 sphinx testrepository testscenarios testtools>=0.9.38 WebTest>=2.0.16 doc8 sphinxcontrib-httpdomain
http://tarballs.openstack.org/ceilometer/ceilometer-master.tar.gz#egg=ceilometer fixtures keystonemiddleware mock psycopg2 testrepository testscenarios testtools>=0.9.38 WebTest>=2.0.16 doc8
Update CV of CIDR Calculator to 1.20 (125)
Categories:Science & Education License:Apache2 Web Site: Source Code:https://github.com/rmceoin/cidrcalculator Issue Tracker: Auto Name:CIDR Calculator Summary:Internet routing calculation Description: CIDR (Classless Inter-Domain Routing) Calculator is a simple IP subnet calculator for network engineers to quickly de...
Categories:Science & Education License:Apache2 Web Site: Source Code:https://github.com/rmceoin/cidrcalculator Issue Tracker: Auto Name:CIDR Calculator Summary:Internet routing calculation Description: CIDR (Classless Inter-Domain Routing) Calculator is a simple IP subnet calculator for network engineers to quickly de...
Update note and rename variable
{{alias}}( x ) Computes the hyperbolic arctangent of a number. The domain of `x` is restricted to `[-1,1]`. If `|x| > 1`, the function returns `NaN`. Parameters ---------- x: number Input value. Returns ------- y: number Hyperbolic arctangent (in radians). Ex...
{{alias}}( x ) Computes the hyperbolic arctangent of a number. If `|x| > 1`, the function returns `NaN`. Parameters ---------- x: number Input value. Returns ------- y: number Hyperbolic arctangent (in radians). Examples -------- > var y = {{alias}}( 0.0 ...
Disable ProcessInfoSnapshotMacTest.EffectiveVsRealUserIDTest on Chromium Mac valgrind
# Times out too often # crbug.com/15817 IPCSyncChannelTest.* # Hangs # http://crbug.com/21890 WebDropTargetTest.URL WebDropTargetTest.Data # http://crbug.com/69037 FirefoxImporterTest.Firefox3NSS3Decryptor # Following tests do not pass memcheck test. # See http://crbug.com/30393. NSMenuItemAdditionsTest.TestMOnDiffer...
# Times out too often # crbug.com/15817 IPCSyncChannelTest.* # Hangs # http://crbug.com/21890 WebDropTargetTest.URL WebDropTargetTest.Data # http://crbug.com/69037 FirefoxImporterTest.Firefox3NSS3Decryptor # http://crbug.com/69039 ProcessInfoSnapshotMacTest.EffectiveVsRealUserIDTest # Following tests do not pass memc...
Revert "Whitespace to trigger builders"
... .. . Today's answer to life the universe and everything is 2673! Today's answer to life the universe and everything is 30713! Today's answer to life the universe and everything is 20645!
... .. . Today's answer to life the universe and everything is 2673! Today's answer to life the universe and everything is 30713!
Update pytest-sugar from 0.5.1 to 0.7.1
-r requirements.txt -e . ipdb==0.10.1 pytest==3.0.3 pytest-sugar == 0.5.1
-r requirements.txt -e . ipdb==0.10.1 pytest==3.0.3 pytest-sugar==0.7.1
Update dependency google-api-core to v1.26.0
cachetools==4.2.1 certifi==2020.12.5 chardet==4.0.0 coverage==5.4 google-api-core==1.25.1 google-api-python-client==1.12.8 google-auth==1.25.0 google-auth-httplib2==0.0.4 google-auth-oauthlib==0.4.2 googleapis-common-protos==1.52.0 httplib2==0.19.0 idna==2.10 oauth2client==4.1.3 oauthlib==3.1.0 protobuf==3.14.0 pyasn1=...
cachetools==4.2.1 certifi==2020.12.5 chardet==4.0.0 coverage==5.4 google-api-core==1.26.0 google-api-python-client==1.12.8 google-auth==1.25.0 google-auth-httplib2==0.0.4 google-auth-oauthlib==0.4.2 googleapis-common-protos==1.52.0 httplib2==0.19.0 idna==2.10 oauth2client==4.1.3 oauthlib==3.1.0 protobuf==3.14.0 pyasn1=...
Correct unicode error in the documentation.
% Overview This WebSharper Extension provides a set of classes and functions almost identical to the ones documented in [glMatrix][glmatrix-home]. When used in WebSharper projects, these stub classes delegate the work to the actual classes implemented by the browser. This extension uses types from, and thus de...
% Overview This WebSharper™ Extension provides a set of classes and functions almost identical to the ones documented in [glMatrix][glmatrix-home]. When used in WebSharper™ projects, these stub classes delegate the work to the actual classes implemented by the browser. This extension uses types from, and thus...
Add dependencies required by mozdefbot.py
Jinja2==2.7.2 MarkupSafe==0.19 Pygments==1.6 Sphinx==1.2.2 amqp==1.4.4 anyjson==0.3.3 boto==2.26.1 bottle==0.12.4 configlib==1.0.0 configparser==3.3.0r2 docutils==0.11 elasticutils==0.8.2 futures==2.1.6 glob2==0.4.1 kombu==3.0.13 librabbitmq==1.0.3 pika==0.9.13 pyelasticsearch==0.6.1 pyes==0.90.1 pymongo==2.6.3 python-...
Jinja2==2.7.2 MarkupSafe==0.19 Pygments==1.6 Sphinx==1.2.2 amqp==1.4.4 anyjson==0.3.3 boto==2.26.1 bottle==0.12.4 configlib==1.0.0 configparser==3.3.0r2 docutils==0.11 elasticutils==0.8.2 futures==2.1.6 glob2==0.4.1 kombu==3.0.13 librabbitmq==1.0.3 pika==0.9.13 pyelasticsearch==0.6.1 pyes==0.90.1 pymongo==2.6.3 python-...
Update Pygments package to 2.13.0
# Core packages python-dotenv==0.20.0 # Read environment variables from .env Flask==2.2.2 # Web microframework uWSGI==2.0.20 # Application server syspath==3.0.1 # Modify paths # Features feedgen==0.9.0 # Generate atom feeds flask-sitemap==0.4.0 # Web sitemaps markdown2==2.4.3 ...
# Core packages python-dotenv==0.20.0 # Read environment variables from .env Flask==2.2.2 # Web microframework uWSGI==2.0.20 # Application server syspath==3.0.1 # Modify paths # Features feedgen==0.9.0 # Generate atom feeds flask-sitemap==0.4.0 # Web sitemaps markdown2==2.4.3 ...
Bump jinja2 from 2.10.1 to 2.10.3
bs4 pytz Pillow crayons==0.2.0 html5lib randomcolor jinja2==2.10.1 python-dateutil requests==2.22.0 better_exceptions==0.2.2 git+https://github.com/bibanon/basc-py4chan#egg=basc-py4chan git+https://github.com/randomchars/pushbullet.py#egg=pushbullet.py
bs4 pytz Pillow crayons==0.2.0 html5lib randomcolor jinja2==2.10.3 python-dateutil requests==2.22.0 better_exceptions==0.2.2 git+https://github.com/bibanon/basc-py4chan#egg=basc-py4chan git+https://github.com/randomchars/pushbullet.py#egg=pushbullet.py
Update dependency gunicorn to v20
# Pro-tip: Try not to put anything here. There should be no dependency in # production that isn't in development. -r base.txt Django==2.2.7 # pyup: <2.0 gunicorn==19.9.0 gevent==1.4.0
# Pro-tip: Try not to put anything here. There should be no dependency in # production that isn't in development. -r base.txt Django==2.2.7 # pyup: <2.0 gunicorn==20.0.0 gevent==1.4.0
Update CV of Money Manager Ex to 2.19.2 (718)
Categories:Money License:GPLv2 Web Site:http://www.codelathe.com/mmex Source Code:https://github.com/moneymanagerex/android-money-manager-ex Issue Tracker:https://github.com/moneymanagerex/android-money-manager-ex/issues Auto Name:Money Manager Ex Summary:Money management and expenses tracking Description: A simple an...
Categories:Money License:GPLv2 Web Site:http://www.codelathe.com/mmex Source Code:https://github.com/moneymanagerex/android-money-manager-ex Issue Tracker:https://github.com/moneymanagerex/android-money-manager-ex/issues Auto Name:Money Manager Ex Summary:Money management and expenses tracking Description: A simple an...
Remove dtrace symlink. Fixes IMAGE-811
/usr/bin/mdb /usr/bin/pcred /usr/bin/pfiles /usr/bin/pflags /usr/bin/pldd /usr/bin/prstat /usr/bin/prun /usr/bin/psig /usr/bin/pstack /usr/bin/pstop /usr/bin/ptime /usr/bin/pwait /usr/bin/pwdx /usr/bin/truss /usr/bin/kstat /usr/bin/zonename /usr/sbin/cpustat /usr/sbin/dtrace /usr/sbin/mdata-get /usr/sbin/mdata-put /usr...
/usr/bin/mdb /usr/bin/pcred /usr/bin/pfiles /usr/bin/pflags /usr/bin/pldd /usr/bin/prstat /usr/bin/prun /usr/bin/psig /usr/bin/pstack /usr/bin/pstop /usr/bin/ptime /usr/bin/pwait /usr/bin/pwdx /usr/bin/truss /usr/bin/kstat /usr/bin/zonename /usr/sbin/cpustat /usr/sbin/mdata-get /usr/sbin/mdata-put /usr/sbin/mdata-delet...
Add deprecation warning on langtag extras
# DEPRACATION WARNING The data files here are deprecated and for legacy use only for software that has not been updated. Use: https://github.com/silnrsi/langtags/pub/langtags.json https://github.com/silnrsi/langtags/pub/langtags.txt The data files here will not be updated.
Use C++14 for auto lambda
cmake_minimum_required(VERSION 3.2.2) project(happy-network-train) set(HAPPY_N_TRAIN_TARGET_VERSION "0.0.1" CACHE STRING "happy-network-train version") set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_CXX_COMPILER_ID "Clang") set(CMAKE_CXX_COMPILER "clang++") set(...
cmake_minimum_required(VERSION 3.2.2) project(happy-network-train) set(HAPPY_N_TRAIN_TARGET_VERSION "0.0.1" CACHE STRING "happy-network-train version") set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_CXX_COMPILER_ID "Clang") set(CMAKE_CXX_COMPILER "clang++") set(...
Use new CitrusTest and CitrusXmlTest annotations in documentation and integration tests
package @test.package@; import org.testng.ITestContext; import org.testng.annotations.Test; import com.consol.citrus.testng.AbstractTestNGCitrusTest; /** * @test.description@ * * \@author @test.author@ * \@since @test.creation.date@ */ public class @test.name@ extends AbstractTestNGCitrusTest { \@Test p...
package @test.package@; import org.testng.annotations.Test; import com.consol.citrus.annotations.CitrusXmlTest; import com.consol.citrus.testng.AbstractTestNGCitrusTest; /** * @test.description@ * * \@author @test.author@ * \@since @test.creation.date@ */ \@Test public class @test.name@ extends AbstractTestNGCi...
Update pytest from 3.6.4 to 3.7.1
coverage==4.5.1 flake8==3.5.0 ipdb==0.11 ipython==6.5.0 pytest==3.6.4 pytest-cov==2.5.1 pytest-sugar==0.9.1 PyMySQL>=0.9,<=0.9.2 docker==3.4.1 sphinx==1.7.6 sphinxcontrib-asyncio==0.2.0 sqlalchemy==1.2.10
coverage==4.5.1 flake8==3.5.0 ipdb==0.11 ipython==6.5.0 pytest==3.7.1 pytest-cov==2.5.1 pytest-sugar==0.9.1 PyMySQL>=0.9,<=0.9.2 docker==3.4.1 sphinx==1.7.6 sphinxcontrib-asyncio==0.2.0 sqlalchemy==1.2.10
Update pre-commit from 1.16.1 to 1.17.0
# Database psycopg2-binary==2.8.2 pip==19.1.1 bumpversion==0.5.3 wheel==0.33.4 watchdog==0.9.0 flake8==3.7.7 cryptography==2.7 tox==3.12.1 coverage==4.5.3 Sphinx==2.1.0 pytest-runner==5.1 pytest==4.6.2 pytest-cov==2.7.1 # miscellaneous sphinx_rtd_theme==0.4.3 pre-commit==1.16.1 python-dotenv[cli]==0.10.3
# Database psycopg2-binary==2.8.2 pip==19.1.1 bumpversion==0.5.3 wheel==0.33.4 watchdog==0.9.0 flake8==3.7.7 cryptography==2.7 tox==3.12.1 coverage==4.5.3 Sphinx==2.1.0 pytest-runner==5.1 pytest==4.6.2 pytest-cov==2.7.1 # miscellaneous sphinx_rtd_theme==0.4.3 pre-commit==1.17.0 python-dotenv[cli]==0.10.3
Update coveralls from 1.5.0 to 1.5.1
pytest-django==3.4.3 pytest-cov==2.6.0 coveralls==1.5.0 pip==18.0 twine==1.12.1
pytest-django==3.4.3 pytest-cov==2.6.0 coveralls==1.5.1 pip==18.0 twine==1.12.1
Update coverage from 4.1 to 4.4.1
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==2.6.0 tox==2.7.0 coverage==4.1 Sphinx==1.4.8 cryptography==1.7 PyYAML==3.12 pytest==2.9.2
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==2.6.0 tox==2.7.0 coverage==4.4.1 Sphinx==1.4.8 cryptography==1.7 PyYAML==3.12 pytest==2.9.2
Use native line endings to match println() functionality.
NodeTypeName nt:version Supertypes nt:base mix:referenceable IsMixin false HasOrderableChildNodes false PrimaryItemName null ChildNodeDef Name jcr:frozenNode RequiredPrimaryTypes [nt:frozenNode] DefaultPrimaryType null AutoCreate false Mandatory false OnParentVersion ABORT Pr...
NodeTypeName nt:version Supertypes nt:base mix:referenceable IsMixin false HasOrderableChildNodes false PrimaryItemName null ChildNodeDef Name jcr:frozenNode RequiredPrimaryTypes [nt:frozenNode] DefaultPrimaryType null AutoCreate false Mandatory false OnParentVersion ABORT Protected true Sam...
Update flake8 from 3.7.7 to 3.7.8
-r requirements.txt pytest==4.3.1 pytest-cov==2.6.1 pytest-mock==1.10.2 codecov==2.0.15 coverage==4.5.3 flake8==3.7.7 black==19.3b0
-r requirements.txt pytest==4.3.1 pytest-cov==2.6.1 pytest-mock==1.10.2 codecov==2.0.15 coverage==4.5.3 flake8==3.7.8 black==19.3b0
Bump django from 3.2.8 to 3.2.10
# Django django==3.2.8 django-environ==0.7.0 django-bootstrap-breadcrumbs==0.9.2 # Web serving gunicorn==20.1.0 whitenoise==5.3.0 # Database APIs psycopg2==2.9.1 # Resources WeasyPrint==52.4 Pillow==8.3.2 yattag==1.14.0 tinycss==0.4 # Markdown verto==1.0.1 python-markdown-math==0.6 # Search django-haystack[elastic...
# Django django==3.2.10 django-environ==0.7.0 django-bootstrap-breadcrumbs==0.9.2 # Web serving gunicorn==20.1.0 whitenoise==5.3.0 # Database APIs psycopg2==2.9.1 # Resources WeasyPrint==52.4 Pillow==8.3.2 yattag==1.14.0 tinycss==0.4 # Markdown verto==1.0.1 python-markdown-math==0.6 # Search django-haystack[elasti...
Update xlsxwriter from 1.0.5 to 1.1.0
git+git://github.com/liqd/adhocracy4.git@014e8ef2cc586c93cdffed2631accf08cb93bc30#egg=adhocracy4 bcrypt==3.1.4 brotli==1.0.4 django-capture-tag==1.0 django_csp==3.4 requests==2.19.1 wagtail==1.13.4 # pyup: <2.0 whitenoise==4.0 zeep==3.1.0 # Inherited a4-core requirements bleach==2.1.4 Django==1.11.15 # pyup: <2.0 djan...
git+git://github.com/liqd/adhocracy4.git@014e8ef2cc586c93cdffed2631accf08cb93bc30#egg=adhocracy4 bcrypt==3.1.4 brotli==1.0.4 django-capture-tag==1.0 django_csp==3.4 requests==2.19.1 wagtail==1.13.4 # pyup: <2.0 whitenoise==4.0 zeep==3.1.0 # Inherited a4-core requirements bleach==2.1.4 Django==1.11.15 # pyup: <2.0 djan...
Update websockets requirement from ==9.* to ==10.* in /src
requests>=2.21.0 aiohttp>=3.7.4 websockets==9.* pydantic==1.* tenacity==8.*
requests>=2.21.0 aiohttp>=3.7.4 websockets==10.* pydantic==1.* tenacity==8.*
Complete the removal of FindBison from CMake. Noticed this when browsing some CMake patch backlog...
set(llvm_cmake_builddir "${LLVM_BINARY_DIR}/share/llvm/cmake") set(LLVM_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}) get_property(llvm_libs GLOBAL PROPERTY LLVM_LIBS) foreach(lib ${llvm_libs}) get_property(llvm_lib_deps GLOBAL PROPERTY LLVM_LIB_DEPS_${lib}) set(all_llvm_lib_deps "${all_llvm_lib_deps}\nset_property...
set(llvm_cmake_builddir "${LLVM_BINARY_DIR}/share/llvm/cmake") set(LLVM_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}) get_property(llvm_libs GLOBAL PROPERTY LLVM_LIBS) foreach(lib ${llvm_libs}) get_property(llvm_lib_deps GLOBAL PROPERTY LLVM_LIB_DEPS_${lib}) set(all_llvm_lib_deps "${all_llvm_lib_deps}\nset_property...
Use jrl-cmakemodules macros and install Python files to site-packages.
INCLUDE(../../cmake/python.cmake) # Look for Python 2.7 SET(Python_ADDITIONAL_VERSIONS 2.7) FINDPYTHON() ## Define PYTHON_DISTLIB EXECUTE_PROCESS( COMMAND "${PYTHON_EXECUTABLE}" "-c" "import sys, os; print os.sep.join(['lib', 'python' + sys.version[:3], 'dist-packages'])" OUTPUT_VARIABLE PYTHON_DISTLIB ERROR_...
INCLUDE(../../cmake/python.cmake) # Look for Python 2.7 SET(Python_ADDITIONAL_VERSIONS 2.7) FINDPYTHON() # Create the package in build dir for testing purpose SET(LIBRARY_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/rbdyn) CONFIGURE_FILE(__init__.py ${CMAKE_CURRENT_BINARY_DIR}/rbdyn/__init__.py COPYONLY) SET(OUTPUT_BINDIN...
Add compiler flag to fix error on Mac
cmake_minimum_required(VERSION 3.6) if(COMMAND cmake_policy) cmake_policy(SET CMP0003 NEW) endif(COMMAND cmake_policy) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) set(PROTOBUF_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/deps/protobuf) add_subdirectory(${PROTOBUF_ROOT_DIR}/c...
cmake_minimum_required(VERSION 3.6) if(COMMAND cmake_policy) cmake_policy(SET CMP0003 NEW) endif(COMMAND cmake_policy) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) set(PROTOBUF_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/deps/protobuf) add_subdirectory(${PROTOBUF_ROOT_DIR}/c...
Add missing dependency to libs_RPCServerIOHTTP
cmake_minimum_required(VERSION 3.13) add_library_m7(libs_RPCServer STATIC ${VALIANT_SOURCE_DIR}/libs/RPCServer/rpc_server.cc ) target_link_libraries(libs_RPCServer libs_base-m7_freertos ) add_library_m7(libs_RPCServerIOHTTP STATIC ${VALIANT_SOURCE_DIR}/libs/RPCServer/rpc_server_io_http.cc ) target_link_...
cmake_minimum_required(VERSION 3.13) add_library_m7(libs_RPCServer STATIC ${VALIANT_SOURCE_DIR}/libs/RPCServer/rpc_server.cc ) target_link_libraries(libs_RPCServer libs_base-m7_freertos ) add_library_m7(libs_RPCServerIOHTTP STATIC ${VALIANT_SOURCE_DIR}/libs/RPCServer/rpc_server_io_http.cc ) target_link_...
Bump types-pymysql from 1.0.11 to 1.0.13
# Note: mypy-zope pins the mypy version mypy==0.931 mypy-zope==0.3.5 types-PyMySQL==1.0.11 types-PyYAML==6.0.4
# Note: mypy-zope pins the mypy version mypy==0.931 mypy-zope==0.3.5 types-PyMySQL==1.0.13 types-PyYAML==6.0.4
Update gevent from 1.1.1 to 1.1.2
# Pro-tip: Try not to put anything here. There should be no dependency in # production that isn't in development. -r base.txt # WSGI Handler # ------------------------------------------------ gevent==1.1.1 gunicorn==19.6.0 # Static and Media Storage # ------------------------------------------------ boto==2.42.0 djan...
# Pro-tip: Try not to put anything here. There should be no dependency in # production that isn't in development. -r base.txt # WSGI Handler # ------------------------------------------------ gevent==1.1.2 gunicorn==19.6.0 # Static and Media Storage # ------------------------------------------------ boto==2.42.0 djan...
Update CV of Actor to 1.5.5 (1002)
Categories:Internet License:GPLv2 Web Site: Source Code:https://github.com/actorapp/actor-android-open Issue Tracker:https://github.com/actorapp/actor-android-open/issues Auto Name:Actor Summary:Messaging client Description: Actor syncs across all of your devices and can be used on desktops, tablets and phones alike. ...
Categories:Internet License:GPLv2 Web Site: Source Code:https://github.com/actorapp/actor-android-open Issue Tracker:https://github.com/actorapp/actor-android-open/issues Auto Name:Actor Summary:Messaging client Description: Actor syncs across all of your devices and can be used on desktops, tablets and phones alike. ...
Remove mox3 in test-requirement.txt of senlinclient
# The order of packages is significant, because pip processes them in the order # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. # Hacking already pins down pep8, pyflakes and flake8 hacking<0.11,>=0.10.0 coverage>=3.6 # Apache-2.0 fixtur...
# The order of packages is significant, because pip processes them in the order # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. # Hacking already pins down pep8, pyflakes and flake8 hacking<0.11,>=0.10.0 coverage>=3.6 # Apache-2.0 fixtur...
Update pluggy from 0.8.1 to 0.12.0
-i https://pypi.org/simple atomicwrites==1.2.1 attrs==18.2.0 colorama==0.4.1 coverage==5.0a4 filelock==3.0.10 flake8==3.6.0 mccabe==0.6.1 more-itertools==5.0.0 pluggy==0.8.1 py==1.7.0 pycodestyle==2.4.0 pyflakes==2.0.0 pytest-cov==2.6.1 pytest==4.1.1 six==1.12.0 toml==0.10.0 tox==3.7.0 virtualenv==16.2.0
-i https://pypi.org/simple atomicwrites==1.2.1 attrs==18.2.0 colorama==0.4.1 coverage==5.0a4 filelock==3.0.10 flake8==3.6.0 mccabe==0.6.1 more-itertools==5.0.0 pluggy==0.12.0 py==1.7.0 pycodestyle==2.4.0 pyflakes==2.0.0 pytest-cov==2.6.1 pytest==4.1.1 six==1.12.0 toml==0.10.0 tox==3.7.0 virtualenv==16.2.0
Remove test that does not exist
# Copyright 2017 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
# Copyright 2017 Google Inc. # # 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, ...
Update urllib3 to avoid security vulnerability
# GRPC Python setup requirements coverage>=4.0 cython==0.28.3 enum34>=1.0.4 protobuf>=3.5.0.post1 six>=1.10 wheel>=0.29 futures>=2.2.0 google-auth>=1.0.0 oauth2client==4.1.0 requests>=2.14.2 urllib3==1.22 chardet==3.0.4 certifi==2017.4.17 idna==2.7
# GRPC Python setup requirements coverage>=4.0 cython==0.28.3 enum34>=1.0.4 protobuf>=3.5.0.post1 six>=1.10 wheel>=0.29 futures>=2.2.0 google-auth>=1.0.0 oauth2client==4.1.0 requests>=2.14.2 urllib3>=1.23 chardet==3.0.4 certifi==2017.4.17 idna==2.7
Add expectations for some new conformance tests that are failing.
# No known failures
Recommended.Proto3.TextFormatInput.StringLiteralLongUnicodeEscapesBytes.ProtobufOutput Recommended.Proto3.TextFormatInput.StringLiteralLongUnicodeEscapesBytes.TextFormatOutput Recommended.Proto3.TextFormatInput.StringLiteralLongUnicodeEscapesString.ProtobufOutput Recommended.Proto3.TextFormatInput.StringLiteralLongUnic...
Use libc++ when building with the clang compiler.
cmake_minimum_required(VERSION 2.8) project(bonefish) set(CMAKE_CXX_FLAGS "-std=c++11 -Wall -Werror ${CMAKE_CXX_FLAGS}") if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" AND "${CMAKE_GENERATOR}" STREQUAL "Ninja") set(CMAKE_CXX_FLAGS "-fcolor-diagnostics ${CMAKE_CXX_FLAGS}") endif() if("${CMAKE_CXX_COMPILER_ID}" STRE...
cmake_minimum_required(VERSION 2.8) project(bonefish) set(CMAKE_CXX_FLAGS "-std=c++11 -Wall -Werror ${CMAKE_CXX_FLAGS}") if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") set(CMAKE_CXX_FLAGS "-stdlib=libc++ ${CMAKE_CXX_FLAGS}") if ("${CMAKE_GENERATOR}" STREQUAL "Ninja") set(CMAKE_CXX_FLAGS "-fcolor-diagn...
Add the missing find_package(Boost REQUIRED).
project(QtGstreamer) cmake_minimum_required(VERSION 2.6) set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules) set(QT_DONT_USE_QTGUI 1) set(QT_USE_QTTEST 1) find_package(Qt4 REQUIRED) find_package(Automoc4 REQUIRED) find_package(GStreamer REQUIRED) find_package(GLIB2 REQUIRED) find_package(GObject REQUIRED...
project(QtGstreamer) cmake_minimum_required(VERSION 2.6) set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules) set(QT_DONT_USE_QTGUI 1) set(QT_USE_QTTEST 1) find_package(Qt4 REQUIRED) find_package(Automoc4 REQUIRED) find_package(Boost REQUIRED) find_package(GStreamer REQUIRED) find_package(GLIB2 REQUIRED) ...
Update minimum cmake version to 3.0
cmake_minimum_required(VERSION 2.8) if(MSVC) set(CMAKE_C_FLAGS "/Ox /W3 /wd4996") else() set(CMAKE_C_FLAGS "-O3 -Wall") endif() add_library(emu76489 STATIC emu76489.c)
cmake_minimum_required(VERSION 3.0) if(MSVC) set(CMAKE_C_FLAGS "/Ox /W3 /wd4996") else() set(CMAKE_C_FLAGS "-O3 -Wall") endif() add_library(emu76489 STATIC emu76489.c)
Fix newly found stop sequence problem (in test 3b)
trip_id,arrival_time,departure_time,stop_id,stop_sequence 3b|1,00:01:00,00:01:00,3b1,1 3b|1,00:02:00,00:02:00,3b2,2 3b|2,00:11:00,00:11:00,3b1,3 3b|2,00:12:00,00:12:00,3b2,4
trip_id,arrival_time,departure_time,stop_id,stop_sequence 3b|1,00:01:00,00:01:00,3b1,0 3b|1,00:02:00,00:02:00,3b2,3 3b|2,00:11:00,00:11:00,3b1,1 3b|2,00:12:00,00:12:00,3b2,2
Update wheel from 0.29.0 to 0.30.0
{% if cookiecutter.use_python3 == 'y' -%} # Wheel 0.25+ needed to install certain packages on CPython 3.5+ # like Pillow and psycopg2 # See http://bitly.com/wheel-building-fails-CPython-35 # Verified bug on Python 3.5.1 wheel==0.29.0 {%- endif %} # Bleeding edge Django django==1.11.4 # Configuration django-environ==0...
{% if cookiecutter.use_python3 == 'y' -%} # Wheel 0.25+ needed to install certain packages on CPython 3.5+ # like Pillow and psycopg2 # See http://bitly.com/wheel-building-fails-CPython-35 # Verified bug on Python 3.5.1 wheel==0.30.0 {%- endif %} # Bleeding edge Django django==1.11.4 # Configuration django-environ==0...
Update coverage package to 5.0.4
# Testing coverage==5.0.3 # Test coverage flake8==3.7.9 # Python linting mypy==0.761 # Type checking
# Testing coverage==5.0.4 # Test coverage flake8==3.7.9 # Python linting mypy==0.761 # Type checking
Update djangorestframework from 3.10.3 to 3.11.0
bleach==3.1.0 Django==2.2.10 # pyup: <2.3 django-allauth==0.41.0 django-autoslug==1.9.6 django-background-tasks==1.2.0 django-ckeditor==5.9.0 django-filter==2.2.0 django-multiselectfield==0.1.11 django-widget-tweaks==1.4.5 djangorestframework==3.10.3 easy-thumbnails==2.6 html5lib==1.0.1 jsonfield==2.0.2 psycopg2-binary...
bleach==3.1.0 Django==2.2.10 # pyup: <2.3 django-allauth==0.41.0 django-autoslug==1.9.6 django-background-tasks==1.2.0 django-ckeditor==5.9.0 django-filter==2.2.0 django-multiselectfield==0.1.11 django-widget-tweaks==1.4.5 djangorestframework==3.11.0 easy-thumbnails==2.6 html5lib==1.0.1 jsonfield==2.0.2 psycopg2-binary...
Update django-mptt from 0.8.5 to 0.9.0
django-filter==1.1.0 django-js-reverse==0.7.3 six==1.10.0 djangorestframework==3.7.3 django==1.11.8 # pyup: >=1.11,<2 colorlog==2.6.0 docopt==0.6.2 django-mptt==0.8.7 djangorestframework-csv==2.0.0 tqdm==4.11.2 # progress bars requests==2.18.4 cherrypy==6.2.0 iceqube==0.0.4 porter2stemmer==1.0 unic...
django-filter==1.1.0 django-js-reverse==0.7.3 six==1.10.0 djangorestframework==3.7.3 django==1.11.8 # pyup: >=1.11,<2 colorlog==2.6.0 docopt==0.6.2 django-mptt==0.9.0 djangorestframework-csv==2.0.0 tqdm==4.11.2 # progress bars requests==2.18.4 cherrypy==6.2.0 iceqube==0.0.4 porter2stemmer==1.0 unic...
Update setuptools from 38.5.0 to 38.5.1
m2r==0.1.12 setuptools==38.5.0 sphinx==1.6.7 sphinx-rtd-theme==0.2.4
m2r==0.1.12 setuptools==38.5.1 sphinx==1.6.7 sphinx-rtd-theme==0.2.4
Fix CMake include path for the minimal-printf test
# Copyright (c) 2020 ARM Limited. All rights reserved. # SPDX-License-Identifier: Apache-2.0 cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR) set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../../.. CACHE INTERNAL "") set(TEST_TARGET mbed-platform-minimal-printf-compliance) include(${MBED_PATH}/tools/cmake/mbed_gr...
# Copyright (c) 2020 ARM Limited. All rights reserved. # SPDX-License-Identifier: Apache-2.0 cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR) set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../../../.. CACHE INTERNAL "") set(TEST_TARGET mbed-platform-minimal-printf-compliance) include(${MBED_PATH}/tools/cmake/mbed...
Add an test/app_suite subdir and put default suppressions for known false positives there
# ********************************************************** # Copyright (c) 2011 Google, Inc. All rights reserved. # ********************************************************** # # Dr. Memory: the memory debugger # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU L...
Fix hacking min version to 3.0.1
# The order of packages is significant, because pip processes them in the order # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. hacking>=3.0,<3.1.0 # Apache-2.0 netaddr>=0.7.18 # BSD stestr>=2.0.0 # Apache-2.0 oslotest>=3.2.0 # Apache-2....
# The order of packages is significant, because pip processes them in the order # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. hacking>=3.0.1,<3.1.0 # Apache-2.0 netaddr>=0.7.18 # BSD stestr>=2.0.0 # Apache-2.0 oslotest>=3.2.0 # Apache-...
Update the documentation for upgrading nginx+passenger
# Nginx # ## Install nginx normally passenger-install-nginx-module ## Changes to nginx configuration ## # Up the maximum size allowed for requests (allows us to POST large log files) client_max_body_size 100M; # Increase the http timeout above 60 seconds; necessary for large uploads client_body_timeout 90; # Trans...
# Nginx # ## How to upgrade passenger and nginx # Download the nginx version to be installed cd /Users/square curl http://nginx.org/download/nginx-1.2.4.tar.gz | tar xvz # Install the passenger gem into the 1.9.3@kochiku gemset $ cd ~/kochiku/current $ gem install passenger -v 3.0.18 $ which pa...
Update sh from 1.12.0 to 1.12.3
cookiecutter==1.4.0 flake8==3.2.1 # pyup: != 2.6.0 sh==1.12.0 binaryornot==0.4.0 # Testing pytest==3.0.4 pep8==1.7.0 pyflakes==1.3.0 tox==2.5.0 pytest-cookies==0.2.0
cookiecutter==1.4.0 flake8==3.2.1 # pyup: != 2.6.0 sh==1.12.3 binaryornot==0.4.0 # Testing pytest==3.0.4 pep8==1.7.0 pyflakes==1.3.0 tox==2.5.0 pytest-cookies==0.2.0
Update pytest-xdist from 2.0.0 to 2.1.0
-r requirements.txt beautifulsoup4==4.9.1 pytest==6.0.1 pytest-mock==3.2.0 pytest-xdist==2.0.0 requests-mock==1.8.0 freezegun==0.3.15 flake8==3.8.3 flake8-print==3.1.4
-r requirements.txt beautifulsoup4==4.9.1 pytest==6.0.1 pytest-mock==3.2.0 pytest-xdist==2.1.0 requests-mock==1.8.0 freezegun==0.3.15 flake8==3.8.3 flake8-print==3.1.4
Update pytest-xdist from 1.23.1 to 1.23.2
-r requirements.txt pytest==3.8.1 pytest-mock==1.10.0 pytest-cov==2.6.0 pytest-xdist==1.23.1 requests-mock==1.5.2 freezegun==0.3.10 flake8==3.5.0 flake8-print==3.1.0
-r requirements.txt pytest==3.8.1 pytest-mock==1.10.0 pytest-cov==2.6.0 pytest-xdist==1.23.2 requests-mock==1.5.2 freezegun==0.3.10 flake8==3.5.0 flake8-print==3.1.0
Update docs with better instructions
# Examples for setting up vctools with Apache + WSGI # Ubuntu / RedHat apache2 / httpd # Python 3.4, 3.5 (Ubuntu / RedHat) libapache2-mod-wsgi / mod_wsgi # Python 3.6+ (Ubuntu / RedHat) apache2-dev / httpd-devel Install mod_wsgi via pip3 or pipenv and run the following commands: mod_wsgi-express module-config >...
# Examples for setting up vctools with Apache + WSGI # Ubuntu / RedHat apache2 / httpd # Python 3.4, 3.5 (Ubuntu / RedHat) libapache2-mod-wsgi / mod_wsgi # Python 3.6+ (Ubuntu / RedHat) apache2-dev / httpd-devel Install mod_wsgi via pip3 or pipenv and run the following commands: run: pipenv shell 'mod_wsgi-expr...