Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add contributer to "What's new"
v0.0.3 (TBA) +++++++++++++++++++++++++ New features ############ * It's now possible to have multiple sections for different databases in ``config.ini`` (`PR #7 <https://github.com/oemof/oemof.db/pull/7>`_) Contributors ############ * Uwe Krien * Stephan Günther
v0.0.3 (TBA) +++++++++++++++++++++++++ New features ############ * It's now possible to have multiple sections for different databases in ``config.ini`` (`PR #7 <https://github.com/oemof/oemof.db/pull/7>`_) Contributors ############ * Uwe Krien * Stephan Günther * Guido Pleßmann
Update pytest from 3.8.2 to 3.9.1
vcrpy==1.11.1 pytest==3.8.2 pytest-pep8==1.0.6 pytest-flakes==4.0.0 nose==1.3.7 coverage==4.5.1
vcrpy==1.11.1 pytest==3.9.1 pytest-pep8==1.0.6 pytest-flakes==4.0.0 nose==1.3.7 coverage==4.5.1
Update pytest from 3.3.0 to 3.3.2
flake8==3.5.0 pylint==1.7.5 astroid==1.5.3 coveralls==1.2.0 mock==2.0.0 pytest==3.3.0 pytest-cov==2.5.1 pytest-timeout==1.2.1 pytest-catchlog==1.2.2 pydocstyle==2.1.1 requests_mock==1.3.0
flake8==3.5.0 pylint==1.7.5 astroid==1.5.3 coveralls==1.2.0 mock==2.0.0 pytest==3.3.2 pytest-cov==2.5.1 pytest-timeout==1.2.1 pytest-catchlog==1.2.2 pydocstyle==2.1.1 requests_mock==1.3.0
Update MouseApp to 0.9 (2)
Categories:Internet License:AGPL-3.0 Web Site:https://cerisara.github.io/mousetodon/ Source Code:https://github.com/cerisara/mousetodon Issue Tracker:https://github.com/cerisara/mousetodon/issues Auto Name:MouseApp Summary:Mastodon multi-instances client Description: Mastodon client that supports multiple instances and language detection. It is still in development phase. You may use it for basic interactions (reading, replying, tooting, boosting...) with any mastodon instance, but: * Its GUI is not as nice and user-friendly than other apps; * A few standard features are still missing: following, reblog... On the other hand, it offers nice features that other apps do not have, e.g., fast switching betwee multiple instances and language filtering of toots. . Repo Type:git Repo:https://github.com/cerisara/mousetodon Build:0.8,1 commit=v0.8 Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:0.8 Current Version Code:1
Categories:Internet License:AGPL-3.0 Web Site:https://cerisara.github.io/mousetodon/ Source Code:https://github.com/cerisara/mousetodon Issue Tracker:https://github.com/cerisara/mousetodon/issues Auto Name:MouseApp Summary:Mastodon multi-instances client Description: Mastodon client that supports multiple instances and language detection. It is still in development phase. You may use it for basic interactions (reading, replying, tooting, boosting...) with any mastodon instance, but: * Its GUI is not as nice and user-friendly than other apps; * A few standard features are still missing: following, reblog... On the other hand, it offers nice features that other apps do not have, e.g., fast switching betwee multiple instances and language filtering of toots. . Repo Type:git Repo:https://github.com/cerisara/mousetodon Build:0.8,1 commit=v0.8 Build:0.9,2 commit=v0.9 Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:0.9 Current Version Code:2
Update CV of WREK Online to 1.10 (10)
Categories:Multimedia,Internet License:Apache2 Web Site:https://www.wrek.org Source Code:https://github.com/jselbie/wrekonline Issue Tracker:https://github.com/jselbie/wrekonline/issues Auto Name:WREK Online Summary:Listen to WREK Atlanta 91.1 FM Description: Listen to WREK Atlanta 91.1 FM, the entirely student managed, operated, and engineered radio station of Georgia Tech. The app supports background playback of both the live streams in addition to acrhived recordings from the past week of specialty shows. . Repo Type:git Repo:https://github.com/jselbie/wrekonline Build:1.09,9 commit=eb43fd3d25b002f28637d92cc3d1ba3073cf5896 srclibs=1:UrlImageViewHelper@urlimageviewhelper-1.0.1 rm=libs/* Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.09 Current Version Code:9
Categories:Multimedia,Internet License:Apache2 Web Site:https://www.wrek.org Source Code:https://github.com/jselbie/wrekonline Issue Tracker:https://github.com/jselbie/wrekonline/issues Auto Name:WREK Online Summary:Listen to WREK Atlanta 91.1 FM Description: Listen to WREK Atlanta 91.1 FM, the entirely student managed, operated, and engineered radio station of Georgia Tech. The app supports background playback of both the live streams in addition to acrhived recordings from the past week of specialty shows. . Repo Type:git Repo:https://github.com/jselbie/wrekonline Build:1.09,9 commit=eb43fd3d25b002f28637d92cc3d1ba3073cf5896 srclibs=1:UrlImageViewHelper@urlimageviewhelper-1.0.1 rm=libs/* Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.10 Current Version Code:10
Remove the test files as default targets.
CMAKE_MINIMUM_REQUIRED(VERSION 2.6) PROJECT(Miknet) OPTION(MIK_DEBUG off) if (MIK_DEBUG) ADD_DEFINITIONS(-DMIK_DEBUG=1) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") else() ADD_DEFINITIONS(-DMIK_DEBUG=0) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3") endif() INCLUDE_DIRECTORIES(src/include) FILE(GLOB SRC_MIKNET src/*.c) ADD_LIBRARY(miknet ${SRC_MIKNET}) ADD_EXECUTABLE(servtest servtest.c) ADD_EXECUTABLE(clitest clitest.c) ADD_DEPENDENCIES(servtest miknet) ADD_DEPENDENCIES(clitest miknet) TARGET_LINK_LIBRARIES(servtest miknet) TARGET_LINK_LIBRARIES(clitest miknet) INSTALL(FILES src/include/miknet/miknet.h DESTINATION include/miknet) INSTALL(TARGETS miknet ARCHIVE DESTINATION lib) SET(CMAKE_C_WARNINGS "-Wall") SET(CMAKE_C_FLAGS "${CMAKE_C_WARNINGS} ${CMAKE_C_FLAGS}")
CMAKE_MINIMUM_REQUIRED(VERSION 2.6) PROJECT(Miknet) OPTION(MIK_DEBUG off) OPTION(TESTS off) if (MIK_DEBUG) ADD_DEFINITIONS(-DMIK_DEBUG=1) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") else() ADD_DEFINITIONS(-DMIK_DEBUG=0) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3") endif() INCLUDE_DIRECTORIES(src/include) FILE(GLOB SRC_MIKNET src/*.c) ADD_LIBRARY(miknet ${SRC_MIKNET}) if (TESTS) ADD_EXECUTABLE(servtest servtest.c) ADD_EXECUTABLE(clitest clitest.c) ADD_DEPENDENCIES(servtest miknet) ADD_DEPENDENCIES(clitest miknet) TARGET_LINK_LIBRARIES(servtest miknet) TARGET_LINK_LIBRARIES(clitest miknet) endif() INSTALL(FILES src/include/miknet/miknet.h DESTINATION include/miknet) INSTALL(TARGETS miknet ARCHIVE DESTINATION lib) SET(CMAKE_C_WARNINGS "-Wall") SET(CMAKE_C_FLAGS "${CMAKE_C_WARNINGS} ${CMAKE_C_FLAGS}")
Use CMAKE_CURRENT_SOURCE_DIR so the project can be used as a submodule
cmake_minimum_required(VERSION 2.8.7) enable_testing() include_directories(${CMAKE_SOURCE_DIR}) if (DEFINED NDEBUG) add_definitions(-DNDEBUG=1) endif() set(CMAKE_CXX_FLAGS "-std=c++11 -Wall -pedantic -Wextra -Wfatal-errors") if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") # using Clang set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") # using GCC set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") endif() add_subdirectory(bluetoe) add_subdirectory(tests) add_subdirectory(examples)
cmake_minimum_required(VERSION 2.8.7) enable_testing() include_directories(${CMAKE_CURRENT_SOURCE_DIR}) if (DEFINED NDEBUG) add_definitions(-DNDEBUG=1) endif() set(CMAKE_CXX_FLAGS "-std=c++11 -Wall -pedantic -Wextra -Wfatal-errors") if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") # using Clang set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") # using GCC set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") endif() add_subdirectory(bluetoe) add_subdirectory(tests) add_subdirectory(examples)
Update pytest-cov from 2.9.0 to 2.10.0
codacy-coverage==1.3.11 pytest==5.4.3 pytest-cov==2.9.0 python-coveralls==2.9.3 pytest-flask==1.0.0 pytest-xdist==1.32.0
codacy-coverage==1.3.11 pytest==5.4.3 pytest-cov==2.10.0 python-coveralls==2.9.3 pytest-flask==1.0.0 pytest-xdist==1.32.0
Update CV of Puzzles to 10286.5 (89)
Categories:Games License:MIT Web Site:http://chris.boyle.name/projects/android-puzzles Source Code:https://github.com/chrisboyle/sgtpuzzles Issue Tracker:https://github.com/chrisboyle/sgtpuzzles/issues Auto Name:Puzzles Summary:33 single-player logic games Description: A port of Simon Tatham's Portable Puzzle Collection, a collection of 34 single-player logic games. . Repo Type:git Repo:https://github.com/chrisboyle/sgtpuzzles.git Build:9561.1,72 commit=9561.1 init=sed -i 's/android-8/android-15/g' build.properties && \ rm -f build.xml prebuild=echo -e 'APP_ABI=armeabi x86\nAPP_CFLAGS += -Wno-error=format-security' > jni/Application.mk && \ sed -i '261 i \\t\tpaint.setStyle(Paint.Style.FILL);' src/name/boyle/chris/sgtpuzzles/GameView.java buildjni=yes Maintainer Notes: I've built binaries for x86 but haven't run it on a device; mips doesn't build with ndk-r9c One line sed patch is to fix issue #77; shouldn't be needed in next version . Auto Update Mode:None Update Check Mode:Tags Current Version:10286.3 Current Version Code:86
Categories:Games License:MIT Web Site:http://chris.boyle.name/projects/android-puzzles Source Code:https://github.com/chrisboyle/sgtpuzzles Issue Tracker:https://github.com/chrisboyle/sgtpuzzles/issues Auto Name:Puzzles Summary:33 single-player logic games Description: A port of Simon Tatham's Portable Puzzle Collection, a collection of 34 single-player logic games. . Repo Type:git Repo:https://github.com/chrisboyle/sgtpuzzles.git Build:9561.1,72 commit=9561.1 init=sed -i 's/android-8/android-15/g' build.properties && \ rm -f build.xml prebuild=echo -e 'APP_ABI=armeabi x86\nAPP_CFLAGS += -Wno-error=format-security' > jni/Application.mk && \ sed -i '261 i \\t\tpaint.setStyle(Paint.Style.FILL);' src/name/boyle/chris/sgtpuzzles/GameView.java buildjni=yes Maintainer Notes: I've built binaries for x86 but haven't run it on a device; mips doesn't build with ndk-r9c One line sed patch is to fix issue #77; shouldn't be needed in next version . Auto Update Mode:None Update Check Mode:Tags Current Version:10286.5 Current Version Code:89
Update coverage from 4.5.2 to 4.5.3
-r base.txt # Dependencies which are only for development coverage==4.5.2 django-sslserver==0.20 django-debug-toolbar==1.11
-r base.txt # Dependencies which are only for development coverage==4.5.3 django-sslserver==0.20 django-debug-toolbar==1.11
Update csscompressor from 0.9.4 to 0.9.5
# common requirements # Django Django==2.0 django-extensions==1.9.8 django-braces==1.12.0 django-allauth==0.34.0 # Images Pillow==4.3.0 # Frontend django-compressor==2.2 csscompressor==0.9.4
# common requirements # Django Django==2.0 django-extensions==1.9.8 django-braces==1.12.0 django-allauth==0.34.0 # Images Pillow==4.3.0 # Frontend django-compressor==2.2 csscompressor==0.9.5
Update libdeps corresponding to r262323.
set(LLVM_LINK_COMPONENTS Support ) add_clang_unittest(FormatTests FormatTest.cpp FormatTestJava.cpp FormatTestJS.cpp FormatTestProto.cpp FormatTestSelective.cpp SortIncludesTest.cpp ) target_link_libraries(FormatTests clangBasic clangFormat clangFrontend clangToolingCore )
set(LLVM_LINK_COMPONENTS Support ) add_clang_unittest(FormatTests FormatTest.cpp FormatTestJava.cpp FormatTestJS.cpp FormatTestProto.cpp FormatTestSelective.cpp SortIncludesTest.cpp ) target_link_libraries(FormatTests clangBasic clangFormat clangFrontend clangRewrite clangToolingCore )
Update chardet from 2.3.0 to 3.0.4
alembic==0.9.9 antiorm==1.2.1 appdirs==1.4.3 attrs==17.4.0 boto3==1.4.4 botocore==1.10.3 chardet==2.3.0 codeclimate-test-reporter==0.2.3 coverage==4.5.1 dataset==1.0.8 db==0.1.1 db-sqlite3==0.0.1 ddt==1.1.2 docutils==0.14 funcsigs==1.0.2 futures==3.2.0 jmespath==0.9.3 Mako==1.0.6 MarkupSafe==1.0 more-itertools==4.1.0 normality==0.5.11 nose==1.3.7 packaging==17.1 pluggy==0.6.0 psycopg2==2.7.4 py==1.5.3 pygraphviz==1.3.1 pyparsing==2.2.0 pytest==3.5.0 python-dateutil==2.7.2 python-editor==1.0.3 PyYAML==3.12 requests==2.18.4 s3transfer==0.1.13 six==1.10.0 SQLAlchemy==1.2.6 toolz==0.9.0 tox==3.0.0 transitions==0.6.4 virtualenv==15.2.0
alembic==0.9.9 antiorm==1.2.1 appdirs==1.4.3 attrs==17.4.0 boto3==1.4.4 botocore==1.10.3 chardet==3.0.4 codeclimate-test-reporter==0.2.3 coverage==4.5.1 dataset==1.0.8 db==0.1.1 db-sqlite3==0.0.1 ddt==1.1.2 docutils==0.14 funcsigs==1.0.2 futures==3.2.0 jmespath==0.9.3 Mako==1.0.6 MarkupSafe==1.0 more-itertools==4.1.0 normality==0.5.11 nose==1.3.7 packaging==17.1 pluggy==0.6.0 psycopg2==2.7.4 py==1.5.3 pygraphviz==1.3.1 pyparsing==2.2.0 pytest==3.5.0 python-dateutil==2.7.2 python-editor==1.0.3 PyYAML==3.12 requests==2.18.4 s3transfer==0.1.13 six==1.10.0 SQLAlchemy==1.2.6 toolz==0.9.0 tox==3.0.0 transitions==0.6.4 virtualenv==15.2.0
Update django-model-utils from 3.1.2 to 3.2.0
dj-database-url==0.5.0 Django==1.11.21 django-cors-middleware==1.3.1 django-crispy-forms==1.7.2 django-filter==1.1.0 django-guardian==1.4.9 django-model-utils==3.1.2 djangorestframework==3.9.4 djoser==1.7.0 djangorestframework-jwt==1.11.0 gunicorn==19.9.0 psycopg2-binary==2.8.3 pytz==2019.1 requests==2.22.0 requests-mock==1.6.0 six==1.12.0 whitenoise==3.3.1 celery==4.2.1 django-celery-results==1.0.1 python-dateutil==2.8.0 pyfcm==1.4.7
dj-database-url==0.5.0 Django==1.11.21 django-cors-middleware==1.3.1 django-crispy-forms==1.7.2 django-filter==1.1.0 django-guardian==1.4.9 django-model-utils==3.2.0 djangorestframework==3.9.4 djoser==1.7.0 djangorestframework-jwt==1.11.0 gunicorn==19.9.0 psycopg2-binary==2.8.3 pytz==2019.1 requests==2.22.0 requests-mock==1.6.0 six==1.12.0 whitenoise==3.3.1 celery==4.2.1 django-celery-results==1.0.1 python-dateutil==2.8.0 pyfcm==1.4.7
Update isort from 4.2.15 to 4.3.4
colorama==0.3.9 coverage==4.5.1 crayons==0.1.2 flake8==3.5.0 isort==4.2.15 mccabe==0.6.1 mypy==0.521 py==1.4.34 pycodestyle==2.3.1 pyflakes==1.6.0 pytest==3.2.2 pytest-cov==2.5.1 typed-ast==1.1.0
colorama==0.3.9 coverage==4.5.1 crayons==0.1.2 flake8==3.5.0 isort==4.3.4 mccabe==0.6.1 mypy==0.521 py==1.4.34 pycodestyle==2.3.1 pyflakes==1.6.0 pytest==3.2.2 pytest-cov==2.5.1 typed-ast==1.1.0
Fix awp command for new Python 3 codebase
-e git+https://github.com/caleb531/alfred-workflow-packager.git@e2f8e8c393432d0eca3f28a3c0afb9ccf4353a7d#egg=alfred_workflow_packager attrs==19.3.0 colorama==0.4.3 coverage==5.2.1 flake8==3.8.3 importlib-metadata==1.7.0 isort==5.2.1 jsonschema==3.2.0 mccabe==0.6.1 nose==1.3.7 pycodestyle==2.6.0 pyflakes==2.2.0 pyrsistent==0.16.0 rednose==1.3.0 six==1.15.0 termstyle==0.1.11 zipp==3.1.0
alfred-workflow-packager==1.2.1 attrs==19.3.0 biplist==1.0.3 colorama==0.4.3 coverage==5.2.1 flake8==3.8.3 importlib-metadata==1.7.0 isort==5.2.1 jsonschema==2.6.0 mccabe==0.6.1 nose==1.3.7 pycodestyle==2.6.0 pyflakes==2.2.0 pyrsistent==0.16.0 rednose==1.3.0 six==1.15.0 termstyle==0.1.11 zipp==3.1.0
Update pymongo from 3.3.1 to 3.4.0
-r requirements.txt -e . marshmallow-sqlalchemy >= 0.8.0 marshmallow-peewee >= 1.0.4 peewee >= 2.8.2 mongomock==3.7.0 pymongo==3.3.1 ipdb==0.10.1 pytest==3.0.4 pytest-flask == 0.10.0 pytest-sugar==0.7.1
-r requirements.txt -e . marshmallow-sqlalchemy >= 0.8.0 marshmallow-peewee >= 1.0.4 peewee >= 2.8.2 mongomock==3.7.0 pymongo==3.4.0 ipdb==0.10.1 pytest==3.0.4 pytest-flask == 0.10.0 pytest-sugar==0.7.1
Update django-test-plus from 1.0.18 to 1.0.20
# Local development dependencies go here -r base.txt coverage==4.4.1 django-coverage-plugin==1.5.0 Sphinx==1.6.4 django-extensions==1.9.6 Werkzeug==0.12.2 django-test-plus==1.0.18 factory_boy==2.9.2 django-debug-toolbar==1.8 # improved REPL ipython==5.5.0 # pyup: >=5.3.0,<6.0.0 ipdb==0.10.3 pytest-django==3.1.2 pytest-sugar==0.9.0 # Own stuff django-rosetta==0.7.13 # Codecov pytest-cov==2.5.1 codecov==2.0.9
# Local development dependencies go here -r base.txt coverage==4.4.1 django-coverage-plugin==1.5.0 Sphinx==1.6.4 django-extensions==1.9.6 Werkzeug==0.12.2 django-test-plus==1.0.20 factory_boy==2.9.2 django-debug-toolbar==1.8 # improved REPL ipython==5.5.0 # pyup: >=5.3.0,<6.0.0 ipdb==0.10.3 pytest-django==3.1.2 pytest-sugar==0.9.0 # Own stuff django-rosetta==0.7.13 # Codecov pytest-cov==2.5.1 codecov==2.0.9
Update sphinx from 2.1.2 to 2.2.0
ansible==2.8.3 pip==19.2.2 wheel==0.33.6 watchdog==0.9.0 flake8==3.7.6 tox==3.13.2 coverage==4.5.4 Sphinx==2.1.2 twine==1.12.1 rstcheck==3.3.1 pycodestyle==2.5.0 pylint==2.3.1
ansible==2.8.3 pip==19.2.2 wheel==0.33.6 watchdog==0.9.0 flake8==3.7.6 tox==3.13.2 coverage==4.5.4 Sphinx==2.2.0 twine==1.12.1 rstcheck==3.3.1 pycodestyle==2.5.0 pylint==2.3.1
Remove parametrized (included in seleniumbase)
selenium==3.141.0 seleniumbase==1.36.10 parameterized==0.7.4
selenium==3.141.0 seleniumbase==1.36.10
Add a user dict sample
## ## This file should use UTF-8 encoding ## ## User dictionary format: ## <text>,<token1> <token2> ... <tokenn>,<reading1> <reading2> ... <readingn>,<part-of-speech> ## # Custom segmentation for long entries 日本経済新聞,日本 経済 新聞,ニホン ケイザイ シンブン,カスタム名詞 関西国際空港,関西 国際 空港,カンサイ コクサイ クウコウ,テスト名詞 # Custom reading for former sumo wrestler Asashoryu 朝青龍,朝青龍,アサショウリュウ,カスタム人名
Add Linux-specific baseline for the URL decomposition test.
Test setting the search attribute of the URL in HTMLAnchorElement . On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". Set search without '?' PASS a.href is 'https://www.mydomain.com/path/?value=key' Set search that starts with '?' and contains spaces PASS a.href is 'https://www.mydomain.com/path/?val%20ue=%20key?' Set search to a malformed URL FAIL a.href should be s:www.mydomain.com/path/?%. Was s:www.mydomain.com/path/. Set search containing '#' PASS a.href is 'https://www.mydomain.com/path/?value%23key#hash' Set search to a malformed URL FAIL a.href should be bad:/|/url?value=key. Was bad:/|/url. Set search to null PASS a.href is 'https://www.mydomain.com/path/' Set search to empty string PASS a.href is 'https://www.mydomain.com/path/?' PASS successfullyParsed is true TEST COMPLETE
Install Glibc module.map in the stdlib install component
set(sources module.map ) set(output_dir "${SWIFTLIB_DIR}/glibc") set(commands COMMAND ${CMAKE_COMMAND} "-E" "make_directory" "${output_dir}") set(outputs) foreach(input ${sources}) list(APPEND commands COMMAND "${CMAKE_COMMAND}" "-E" "copy_if_different" "${CMAKE_CURRENT_SOURCE_DIR}/${input}" "${output_dir}/${input}") list(APPEND outputs "${output_dir}/${input}") endforeach() # Put the output dir itself last so that it isn't considered the primary output. list(APPEND outputs "${output_dir}") add_custom_command_target(unused_var ${commands} CUSTOM_TARGET_NAME "copy_glibc_module" OUTPUT "${outputs}" DEPENDS "${sources}" COMMENT "Copying Glibc module to ${output_dir}") swift_install_in_component(stdlib-experimental FILES ${sources} DESTINATION "lib/swift/glibc") add_swift_library(swiftGlibc IS_SDK_OVERLAY Glibc.swift FILE_DEPENDS copy_glibc_module "${SWIFTLIB_DIR}/glibc" INSTALL_IN_COMPONENT stdlib-experimental)
set(sources module.map ) set(output_dir "${SWIFTLIB_DIR}/glibc") set(commands COMMAND ${CMAKE_COMMAND} "-E" "make_directory" "${output_dir}") set(outputs) foreach(input ${sources}) list(APPEND commands COMMAND "${CMAKE_COMMAND}" "-E" "copy_if_different" "${CMAKE_CURRENT_SOURCE_DIR}/${input}" "${output_dir}/${input}") list(APPEND outputs "${output_dir}/${input}") endforeach() # Put the output dir itself last so that it isn't considered the primary output. list(APPEND outputs "${output_dir}") add_custom_command_target(unused_var ${commands} CUSTOM_TARGET_NAME "copy_glibc_module" OUTPUT "${outputs}" DEPENDS "${sources}" COMMENT "Copying Glibc module to ${output_dir}") swift_install_in_component(stdlib FILES ${sources} DESTINATION "lib/swift/glibc") add_swift_library(swiftGlibc IS_SDK_OVERLAY Glibc.swift FILE_DEPENDS copy_glibc_module "${SWIFTLIB_DIR}/glibc" INSTALL_IN_COMPONENT stdlib-experimental)
Add test file for test 14_38, 14_39
first last Input iterators to the initial and final positions of the sequence of elements The range used is first last which contains all the elements between first and last including the element pointed by first but not the element pointed by last pred Unary function that accepts an element in the range as argument and returns a value convertible to bool The value returned indicates whether the element is counted by this function The function shall not modify its argument This can either be a function pointer or a function object Throws if pred throws or if any of the operations on iterators throws Note that invalid arguments cause undefined behavior This kind of iterator has a special state as an end of stream iterator which is acquired if an input operations fails as returned by fail after an operation with the associated stream and is also the resulting value of a default-constructed object
Exclude MidiManagerMacTest.* which hang on Mac Valgrind
# Crashes under Valgrind on Mac, http://crbug.com/247601 VideoCaptureDeviceTest.FakeCapture VideoCaptureDeviceTest.FakeCaptureVariableResolution # Times out under Valgrind, http://crbug.com/389087 VideoFrameSchedulerImplTest.EventualDisplay # Times out under Valgrind, http://crbug.com/444578 PipelineIntegrationTest.*
# Crashes under Valgrind on Mac, http://crbug.com/247601 VideoCaptureDeviceTest.FakeCapture VideoCaptureDeviceTest.FakeCaptureVariableResolution # Times out under Valgrind, http://crbug.com/389087 VideoFrameSchedulerImplTest.EventualDisplay # Times out under Valgrind, http://crbug.com/444578 PipelineIntegrationTest.* # Hangs the whole Mac Valgrind bot: http://crbug.com/462483 MidiManagerMacTest.*
Update ruamel.yaml from 0.15.54 to 0.15.60
Twisted[tls]==18.7.0 beautifulsoup4==4.6.3 lxml==4.2.4 psutil==5.4.7 python-dateutil==2.7.3 ply==3.11 enum34==1.1.6 twitter==1.18.0 requests==2.19.1 pytimeparse==1.1.8 pymysql==0.9.2 pycryptodome==3.6.6 pyasn1==0.4.4 isodate==0.6.0 google-api-python-client==1.7.4 pyxDamerauLevenshtein==1.5 numpy==1.15.0 Cython==0.28.5 git+git://github.com/andreasvc/pyre2.git@7146ce3#egg=re2 parsedatetime==2.4 cryptography==2.3.1 future==0.16.0 six==1.11.0 ruamel.yaml==0.15.54 croniter==0.3.25 SQLAlchemy==1.2.10
Twisted[tls]==18.7.0 beautifulsoup4==4.6.3 lxml==4.2.4 psutil==5.4.7 python-dateutil==2.7.3 ply==3.11 enum34==1.1.6 twitter==1.18.0 requests==2.19.1 pytimeparse==1.1.8 pymysql==0.9.2 pycryptodome==3.6.6 pyasn1==0.4.4 isodate==0.6.0 google-api-python-client==1.7.4 pyxDamerauLevenshtein==1.5 numpy==1.15.0 Cython==0.28.5 git+git://github.com/andreasvc/pyre2.git@7146ce3#egg=re2 parsedatetime==2.4 cryptography==2.3.1 future==0.16.0 six==1.11.0 ruamel.yaml==0.15.60 croniter==0.3.25 SQLAlchemy==1.2.10
Build newer version of boost
RadeonOpenCompute/rocm-cmake@3f43e2d493f24abbab4dc189a9ab12cc3ad33baf --build ROCmSoftwarePlatform/MIOpenGEMM@0eb1257cfaef83ea155aabd67af4437c0028db48 #ROCmSoftwarePlatform/rocBLAS@75b0f4781279ed61f28892ae13da32dc8e5be35d libressl boost@1.58 -DCMAKE_POSITION_INDEPENDENT_CODE=On --build half,https://downloads.sourceforge.net/project/half/half/1.12.0/half-1.12.0.zip -X header -H sha256:cdd70d3bf3fe091b688e7ab3f48471c881a197d2c186c95cca8bf156961fb41c --build
RadeonOpenCompute/rocm-cmake@3f43e2d493f24abbab4dc189a9ab12cc3ad33baf --build ROCmSoftwarePlatform/MIOpenGEMM@0eb1257cfaef83ea155aabd67af4437c0028db48 #ROCmSoftwarePlatform/rocBLAS@75b0f4781279ed61f28892ae13da32dc8e5be35d libressl boost@1.65 -DCMAKE_POSITION_INDEPENDENT_CODE=On --build half,https://downloads.sourceforge.net/project/half/half/1.12.0/half-1.12.0.zip -X header -H sha256:cdd70d3bf3fe091b688e7ab3f48471c881a197d2c186c95cca8bf156961fb41c --build
Remove django-bootstrap3; add django bootstrap-themes; add django-extensions
asgiref==0.11.2 autobahn==0.13.0 -e git+git@github.com:andrewgodwin/channels.git@dfef0c551eda0c1a632f69360b284f32c9e56ecd#egg=channels-master daphne==0.10.1 Django==1.9.5 django-bootstrap3==7.0.1 six==1.10.0 Twisted==16.0.0 txaio==2.2.2 zope.interface==4.1.3
asgiref==0.11.2 autobahn==0.13.0 -e git+git@github.com:andrewgodwin/channels.git@dfef0c551eda0c1a632f69360b284f32c9e56ecd#egg=channels-master daphne==0.10.1 Django==1.9.5 django-bootstrap-themes==3.3.6 django-extensions==1.6.1 six==1.10.0 Twisted==16.0.0 txaio==2.2.2 zope.interface==4.1.3
Update pytest from 3.2.3 to 3.2.4
docker==2.6.1 molecule==1.25.0 pytest==3.2.3 python-vagrant==0.5.15 testinfra==1.9.0 tox==2.9.1
docker==2.6.1 molecule==1.25.0 pytest==3.2.4 python-vagrant==0.5.15 testinfra==1.9.0 tox==2.9.1
Update Browser to 1.8 (11)
Categories:Internet License:GPL-3.0+ Web Site:https://github.com/scoute-dich/browser/blob/HEAD/README.md Source Code:https://github.com/scoute-dich/browser Issue Tracker:https://github.com/scoute-dich/browser/issues Changelog:https://github.com/scoute-dich/browser/blob/HEAD/CHANGELOG.md Auto Name:Browser Summary:Browse the web Description: Simple browser based on Android's WebView. . Repo Type:git Repo:https://github.com/scoute-dich/browser Build:1.4,5 commit=v1.4 subdir=app gradle=yes Build:1.5,6 commit=v1.5 subdir=app gradle=yes Build:1.6,7 commit=v1.6 subdir=app gradle=yes Build:1.7,10 commit=v1.7 subdir=app gradle=yes Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:1.7 Current Version Code:10
Categories:Internet License:GPL-3.0+ Web Site:https://github.com/scoute-dich/browser/blob/HEAD/README.md Source Code:https://github.com/scoute-dich/browser Issue Tracker:https://github.com/scoute-dich/browser/issues Changelog:https://github.com/scoute-dich/browser/blob/HEAD/CHANGELOG.md Auto Name:Browser Summary:Browse the web Description: Simple browser based on Android's WebView. . Repo Type:git Repo:https://github.com/scoute-dich/browser Build:1.4,5 commit=v1.4 subdir=app gradle=yes Build:1.5,6 commit=v1.5 subdir=app gradle=yes Build:1.6,7 commit=v1.6 subdir=app gradle=yes Build:1.7,10 commit=v1.7 subdir=app gradle=yes Build:1.8,11 commit=v1.8 subdir=app gradle=yes Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:1.8 Current Version Code:11
Update CV of AN2Linux to 0.2.0 (3)
Categories:Connectivity License:GPL-3.0 Web Site: Source Code:https://github.com/rootkiwi/an2linuxclient Issue Tracker:https://github.com/rootkiwi/an2linuxclient/issues Auto Name:AN2Linux Summary:Sync Android notifications to a Linux desktop Description: Sync Android notifications encrypted to a Linux desktop with tcp or bluetooth. This is the client part of AN2Linux. . Repo Type:git Repo:https://github.com/rootkiwi/an2linuxclient Build:0.1,1 commit=f58b377ea23049a38be84b4bcf821f296a4ff392 subdir=app gradle=yes Build:0.1.1,2 commit=d7ca07655aea3a6649beee6ab4feeb3825f0a909 subdir=app gradle=yes Auto Update Mode:None Update Check Mode:RepoManifest Current Version:0.1.1 Current Version Code:2
Categories:Connectivity License:GPL-3.0 Web Site: Source Code:https://github.com/rootkiwi/an2linuxclient Issue Tracker:https://github.com/rootkiwi/an2linuxclient/issues Auto Name:AN2Linux Summary:Sync Android notifications to a Linux desktop Description: Sync Android notifications encrypted to a Linux desktop with tcp or bluetooth. This is the client part of AN2Linux. . Repo Type:git Repo:https://github.com/rootkiwi/an2linuxclient Build:0.1,1 commit=f58b377ea23049a38be84b4bcf821f296a4ff392 subdir=app gradle=yes Build:0.1.1,2 commit=d7ca07655aea3a6649beee6ab4feeb3825f0a909 subdir=app gradle=yes Auto Update Mode:None Update Check Mode:RepoManifest Current Version:0.2.0 Current Version Code:3
Update pytest from 5.1.2 to 5.2.0
codacy-coverage==1.3.11 pytest==5.1.2 pytest-cov==2.7.1 python-coveralls==2.9.3 pytest-flask==0.15.0 pytest-xdist==1.29.0
codacy-coverage==1.3.11 pytest==5.2.0 pytest-cov==2.7.1 python-coveralls==2.9.3 pytest-flask==0.15.0 pytest-xdist==1.29.0
Refactor CMake scripts for apps
find_package(Boost COMPONENTS program_options REQUIRED) find_package(OpenCV COMPONENTS highgui photo REQUIRED) include_directories(${CMAKE_CURRENT_LIST_DIR}) add_subdirectory(grabbers) macro(APP_ADD _name) set(_executable ${_name}) add_executable(${_executable} ${_executable}.cpp) target_link_libraries(${_executable} ${LIB_NAME} grabbers opencv_highgui opencv_photo ${Boost_PROGRAM_OPTIONS_LIBRARY} ) endmacro(APP_ADD) if(NOT OpenCV_VERSION VERSION_LESS 3.0.0) APP_ADD(calibrate_radiometric_response) endif()
if(OpenCV_VERSION VERSION_LESS 3.0.0) set(OpenCV_COMPONENTS highgui) else() set(OpenCV_COMPONENTS imgcodecs highgui photo) endif() find_package(OpenCV COMPONENTS ${OpenCV_COMPONENTS} REQUIRED) find_package(Boost COMPONENTS program_options REQUIRED) include_directories(${CMAKE_CURRENT_LIST_DIR}) add_subdirectory(grabbers) macro(APP_ADD _name) set(options) set(one_value_args) set(multi_value_args OPENCV2 OPENCV3 LINK_WITH) cmake_parse_arguments(APP_ADD "${options}" "${one_value_args}" "${multi_value_args}" ${ARGN}) set(_enabled 0) if(NOT APP_ADD_OPENCV2 AND NOT APP_ADD_OPENCV3) set(_enabled 1) endif() if(OpenCV_VERSION VERSION_LESS 3.0.0 AND APP_ADD_OPENCV2) set(_enabled 1) set(_opencv_link ${APP_ADD_OPENCV2}) elseif(NOT OpenCV_VERSION VERSION_LESS 3.0.0 AND APP_ADD_OPENCV3) set(_enabled 1) set(_opencv_link ${APP_ADD_OPENCV3}) endif() if(_enabled) foreach(_lib ${_opencv_link}) list(APPEND APP_ADD_LINK_WITH "opencv_${_lib}") endforeach() set(_executable ${_name}) add_executable(${_executable} ${_executable}.cpp) target_link_libraries(${_executable} ${LIB_NAME} ${APP_ADD_LINK_WITH} ${Boost_PROGRAM_OPTIONS_LIBRARY} ) endif() endmacro(APP_ADD) APP_ADD(calibrate_radiometric_response OPENCV3 highgui photo LINK_WITH grabbers )
Update bandit from 1.4.0 to 1.5.1
pytest<4 pytest-mock==1.10.0 pytest-cov==2.6.0 tox==3.5.3 # coverage codacy-coverage==1.3.11 codecov==2.0.15 coverage==4.5.1 coveralls==1.5.1 # linters bandit==1.4.0 flake8==3.5.0 flake8-colors==0.1.6 flake8-deprecated==1.3 flake8-import-order==0.17.1 flake8-mutable==1.2.0 flake8-print==3.1.0 pep8-naming==0.7.0
pytest<4 pytest-mock==1.10.0 pytest-cov==2.6.0 tox==3.5.3 # coverage codacy-coverage==1.3.11 codecov==2.0.15 coverage==4.5.1 coveralls==1.5.1 # linters bandit==1.5.1 flake8==3.5.0 flake8-colors==0.1.6 flake8-deprecated==1.3 flake8-import-order==0.17.1 flake8-mutable==1.2.0 flake8-print==3.1.0 pep8-naming==0.7.0
Remove a test expectation failure line now that we have a good baseline from upstream.
// This file should almost always be empty. Normally Chromium test expectations // are found in // src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt // // Only add expectations here to temporarily suppress messages on the bots // until the changes can be landed upstream. BUG47259 WIN : http/tests/local/blob/send-data-blob.html = TEXT // I need to do a build on a Hardy box in order to get the baselines to agree. LINUX BUG_AGL : platform/chromium/fast/text/chromium-linux-fontconfig-renderstyle.html = IMAGE TEXT // Quick disabling so I can roll DEPS. dataset isn't implemented so two of these need one bug and domList just needs a chrome specific baseline. BUG_LEVIN : fast/dom/dataset-xhtml.xhtml = TEXT BUG_LEVIN : fast/dom/dataset.html = TEXT BUG_LEVIN : fast/dom/domListEnumeration.html = TEXT // This is a temporary addition until I do the next roll which should fix it. BUG_LEVIN MAC : html5lib/runner.html = TEXT BUG48139 LINUX : fast/js/comparison-operators-less.html = CRASH PASS BUG48144 LINUX : fast/js/activation-object-function-lifetime.html = CRASH PASS
// This file should almost always be empty. Normally Chromium test expectations // are found in // src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt // // Only add expectations here to temporarily suppress messages on the bots // until the changes can be landed upstream. BUG47259 WIN : http/tests/local/blob/send-data-blob.html = TEXT // I need to do a build on a Hardy box in order to get the baselines to agree. LINUX BUG_AGL : platform/chromium/fast/text/chromium-linux-fontconfig-renderstyle.html = IMAGE TEXT // Quick disabling so I can roll DEPS. dataset isn't implemented so two of these need one bug and domList just needs a chrome specific baseline. BUG_LEVIN : fast/dom/dataset-xhtml.xhtml = TEXT BUG_LEVIN : fast/dom/dataset.html = TEXT BUG_LEVIN : fast/dom/domListEnumeration.html = TEXT BUG48139 LINUX : fast/js/comparison-operators-less.html = CRASH PASS BUG48144 LINUX : fast/js/activation-object-function-lifetime.html = CRASH PASS
Add tex packages to biology hub
# Required for PAUP* # Note that this doesn't actually install python2, thankfully libpython2.7 # utils vim less tmux man
# Required for PAUP* # Note that this doesn't actually install python2, thankfully libpython2.7 # utils vim less tmux man # nbconvert texlive-xetex texlive-fonts-recommended texlive-generic-recommended
Use stable gandi API url
[local] # gandi.net API (Production) key apikey = XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX # domain domain = example.com # A-record name (@, dev, home, etc) that will be updated # example is for raspbian.example.com a_name = raspbian # TTL (seconds) ttl = 900 # Production API api = https://dns.beta.gandi.net/api/v5/
[local] # gandi.net API (Production) key apikey = XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX # domain domain = example.com # A-record name (@, dev, home, etc) that will be updated # example is for raspbian.example.com a_name = raspbian # TTL (seconds) ttl = 900 # Production API api = https://dns.api.gandi.net/api/v5/
Update flask-sqlalchemy from 2.1 to 2.2
# Everything needed in production # Flask Flask==0.12 MarkupSafe==0.23 Werkzeug==0.11.15 Jinja2==2.9.5 itsdangerous==0.24 click>=5.0 # Database Flask-SQLAlchemy==2.1 psycopg2==2.6.2 SQLAlchemy==1.1.5 # Migrations Flask-Migrate==2.0.3 # Forms Flask-WTF==0.14.2 WTForms==2.1 # Deployment gunicorn>=19.1.1 # Assets Flask-Assets==0.12 cssmin>=0.2.0 jsmin>=2.0.11 # Auth Flask-Login==0.4.0 Flask-Bcrypt==0.7.1 # Caching Flask-Caching>=1.0.0 # Debug toolbar Flask-DebugToolbar==0.10.1 # Requests requests==2.13.0
# Everything needed in production # Flask Flask==0.12 MarkupSafe==0.23 Werkzeug==0.11.15 Jinja2==2.9.5 itsdangerous==0.24 click>=5.0 # Database Flask-SQLAlchemy==2.2 psycopg2==2.6.2 SQLAlchemy==1.1.5 # Migrations Flask-Migrate==2.0.3 # Forms Flask-WTF==0.14.2 WTForms==2.1 # Deployment gunicorn>=19.1.1 # Assets Flask-Assets==0.12 cssmin>=0.2.0 jsmin>=2.0.11 # Auth Flask-Login==0.4.0 Flask-Bcrypt==0.7.1 # Caching Flask-Caching>=1.0.0 # Debug toolbar Flask-DebugToolbar==0.10.1 # Requests requests==2.13.0
Install oclcrypto-cli with `make install`
file(GLOB LIBOCLCRYPTO_CLI_HEADERS "${CMAKE_SOURCE_DIR}/cli/*.h") file(GLOB LIBOCLCRYPTO_CLI_SOURCES "${CMAKE_SOURCE_DIR}/cli/*.cpp") add_executable(oclcrypto-cli ${LIBOCLCRYPTO_CLI_HEADERS} ${LIBOCLCRYPTO_CLI_SOURCES}) add_definitions(-DBOOST_ALL_NO_LIB) target_link_libraries(oclcrypto-cli oclcrypto )
file(GLOB LIBOCLCRYPTO_CLI_HEADERS "${CMAKE_SOURCE_DIR}/cli/*.h") file(GLOB LIBOCLCRYPTO_CLI_SOURCES "${CMAKE_SOURCE_DIR}/cli/*.cpp") add_executable(oclcrypto-cli ${LIBOCLCRYPTO_CLI_HEADERS} ${LIBOCLCRYPTO_CLI_SOURCES}) add_definitions(-DBOOST_ALL_NO_LIB) target_link_libraries(oclcrypto-cli oclcrypto ) install(TARGETS "oclcrypto-cli" RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} )
Add bluetooth PTS 6.3 PICS file for SM
SM PICS for the PTS tool. PTS version: 6.3 * - different than PTS defaults ^ - field not available on PTS M - mandatory O - optional Connection Roles ------------------------------------------------------------------------------- Parameter Name Selected Description ------------------------------------------------------------------------------- TSPC_SM_1_1 True Master Role (Initiator) (C.1) TSPC_SM_1_2 True Slave Role (Responder) (C.2) ------------------------------------------------------------------------------- Security Properties ------------------------------------------------------------------------------- Parameter Name Selected Description ------------------------------------------------------------------------------- TSPC_SM_2_1 True Authenticated MITM protection (O) TSPC_SM_2_2 True Unauthenticated no MITM protection (C.1) TSPC_SM_2_3 True No security requirements (M) TSPC_SM_2_4 False (*) OOB supported (O) TSPC_SM_2_5 (^) LE Secure Connections (C.2) ------------------------------------------------------------------------------- Encryption Key Size ------------------------------------------------------------------------------- Parameter Name Selected Description ------------------------------------------------------------------------------- TSPC_SM_3_1 True Encryption Key Size Negotiation (M) ------------------------------------------------------------------------------- Pairing Method ------------------------------------------------------------------------------- Parameter Name Selected Description ------------------------------------------------------------------------------- TSPC_SM_4_1 True Just Works (O) TSPC_SM_4_2 True Passkey Entry (C.1) TSPC_SM_4_3 False (*) Out of Band (C.1) ------------------------------------------------------------------------------- Security Initiation ------------------------------------------------------------------------------- Parameter Name Selected Description ------------------------------------------------------------------------------- TSPC_SM_5_1 True Encryption Setup using STK (C.3) TSPC_SM_5_2 True Encryption Setup using LTK (O) TSPC_SM_5_3 True Slave Initiated Security (C.1) TSPC_SM_5_4 True Slave Initiated Security – Master response(C.2) ------------------------------------------------------------------------------- Signing Algorithm ------------------------------------------------------------------------------- Parameter Name Selected Description ------------------------------------------------------------------------------- TSPC_SM_6_1 True Signing Algorithm - Generation (O) TSPC_SM_6_2 True Signing Algorithm - Resolving (O) ------------------------------------------------------------------------------- Key Distribution ------------------------------------------------------------------------------- Parameter Name Selected Description ------------------------------------------------------------------------------- TSPC_SM_7_1 True Encryption Key (C.1) TSPC_SM_7_2 False (*) Identity Key (C.2) TSPC_SM_7_3 True Signing Key (C.3) -------------------------------------------------------------------------------
Update Taskbar to 1.1.9 (57)
Categories:System License:Apache2 Web Site:https://github.com/farmerbb/Taskbar/blob/HEAD/README.md Source Code:https://github.com/farmerbb/Taskbar Issue Tracker:https://github.com/farmerbb/Taskbar/issues Auto Name:Taskbar Summary:Use a start menu to access apps Description: Puts a start menu and recent apps tray on top of your screen accessible at any time, increasing your productivity and turning your Android tablet or phone into a real multitasking machine. . Repo Type:git Repo:https://github.com/farmerbb/Taskbar Build:1.1.8,54 commit=b3131f37ac75814fffb1295434fca8e9c1e0aacd subdir=app gradle=yes Build:1.1.9,56 commit=d344934231bdd0587474a3249aca5302db8708ea subdir=app gradle=yes Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.1.9 Current Version Code:57
Categories:System License:Apache2 Web Site:https://github.com/farmerbb/Taskbar/blob/HEAD/README.md Source Code:https://github.com/farmerbb/Taskbar Issue Tracker:https://github.com/farmerbb/Taskbar/issues Auto Name:Taskbar Summary:Use a start menu to access apps Description: Puts a start menu and recent apps tray on top of your screen accessible at any time, increasing your productivity and turning your Android tablet or phone into a real multitasking machine. . Repo Type:git Repo:https://github.com/farmerbb/Taskbar Build:1.1.8,54 commit=b3131f37ac75814fffb1295434fca8e9c1e0aacd subdir=app gradle=yes Build:1.1.9,56 commit=d344934231bdd0587474a3249aca5302db8708ea subdir=app gradle=yes Build:1.1.9,57 commit=055730f44f68824fba0bd10a6eb2f916476ebe7f subdir=app gradle=yes Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.1.9 Current Version Code:57
Change executable name from fish_gui to video_annotator
# Find the sources for gui file( GLOB GUI_SOURCES "*.cc" ) # Add gui executable if( WIN32 ) add_executable( fish_gui WIN32 ${GUI_SOURCES} ${COMMON_SOURCES} ) target_link_libraries( fish_gui ${OpenCV_LIBS} ${WINDOWS_LIBRARIES} Qt5::Widgets ${QT_THIRD_PARTY_LIBS} ${OPENGL_LIBRARIES} ) set_target_properties( fish_gui PROPERTIES LINK_FLAGS "${LINK_FLAGS} /SUBSYSTEM:WINDOWS" ) elseif( APPLE ) add_executable( fish_gui ${GUI_SOURCES} ) target_link_libraries( fish_gui ${OpenCV_LIBS} ${APPLE_LIBRARIES} Qt5::Widgets Qt5::PrintSupport ${QT_THIRD_PARTY_LIBS} ${OPENGL_LIBRARIES} ) endif() # Add install target install( TARGETS fish_gui DESTINATION . )
# Find the sources for video annotator file( GLOB VIDEO_ANNOTATOR_SOURCES "*.cc" ) # Add video annotator executable if( WIN32 ) add_executable( video_annotator WIN32 ${VIDEO_ANNOTATOR_SOURCES} ${COMMON_SOURCES} ) target_link_libraries( video_annotator ${OpenCV_LIBS} ${WINDOWS_LIBRARIES} Qt5::Widgets ${QT_THIRD_PARTY_LIBS} ${OPENGL_LIBRARIES} ) set_target_properties( video_annotator PROPERTIES LINK_FLAGS "${LINK_FLAGS} /SUBSYSTEM:WINDOWS" ) elseif( APPLE ) add_executable( video_annotator ${VIDEO_ANNOTATOR_SOURCES} ) target_link_libraries( video_annotator ${OpenCV_LIBS} ${APPLE_LIBRARIES} Qt5::Widgets Qt5::PrintSupport ${QT_THIRD_PARTY_LIBS} ${OPENGL_LIBRARIES} ) endif() # Add install target install( TARGETS video_annotator DESTINATION . )
Update header location for JSON update
add_library(NLohmannJson INTERFACE) target_include_directories(NLohmannJson INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src> ) install(TARGETS NLohmannJson EXPORT adios2Exports)
add_library(NLohmannJson INTERFACE) target_include_directories(NLohmannJson INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/single_include/nlohmann> ) install(TARGETS NLohmannJson EXPORT adios2Exports)
Add SNP to plant mine.
allele binding_site cDNA_clone CDS CRM chromosomal_deletion chromosomal_duplication chromosomal_inversion chromosomal_translocation chromosomal_transposition chromosome chromosome_band chromosome_structure_variation EST enhancer exon five_prime_UTR forward_primer gene golden_path_fragment intergenic_region intron mRNA miRNA microarray_oligo natural_transposable_element ncRNA oligo overlapping_EST_set PCR_product point_mutation primer rRNA regulatory_region reverse_primer sequence_collection sequence_feature sequence_variant snRNA snoRNA TF_binding_site tRNA three_prime_UTR transcript transposable_element transposable_element_insertion_site UTR # many-to-many part_of relationships (default is many-to-one) exon.transcript intron.transcript UTR.transcript EST.overlapping_EST_set
allele binding_site cDNA_clone CDS CRM chromosomal_deletion chromosomal_duplication chromosomal_inversion chromosomal_translocation chromosomal_transposition chromosome chromosome_band chromosome_structure_variation EST enhancer exon five_prime_UTR forward_primer gene golden_path_fragment intergenic_region intron mRNA miRNA microarray_oligo natural_transposable_element ncRNA oligo overlapping_EST_set PCR_product point_mutation primer rRNA regulatory_region reverse_primer sequence_collection sequence_feature sequence_variant SNP snRNA snoRNA TF_binding_site tRNA three_prime_UTR transcript transposable_element transposable_element_insertion_site UTR # many-to-many part_of relationships (default is many-to-one) exon.transcript intron.transcript UTR.transcript EST.overlapping_EST_set
Improve a bit the documentation
Put here the channels configuration files. The channel configuration file should match the channel identifier with ".xml" extension. For example for channel "udp" the file is "udp.xml". You can find good documentation on what to put in JGrous configurations files at http://www.jboss.org/community/wiki/JGroups.
Put here the channels configuration files or use embedded JGroups configuration files (recommanded). The channel configuration file should match the channel identifier with ".xml" extension. For example for channel "udp" the file is "udp.xml". You can find the list of embedded JGroups configuration files in the jgroups jar file located in WEB-INF/lib/ folder. You can find detailed documentation on what to put in JGroups configuration files at http://community.jboss.org/wiki/JGroups.
Change from TEST_PROPERTIES to TEST_VARIABLES across all projects
include_directories( ${GSTREAMER_INCLUDE_DIRS} ${GSTREAMER_VIDEO_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR} ) set(KMS_TEST_UTILS_SOURCES kmstestutils.h kmstestutils.c ) add_library(kmstestutils ${KMS_TEST_UTILS_SOURCES}) target_link_libraries(kmstestutils ${GSTREAMER_LIBRARIES} ${GSTREAMER_BASE_LIBRARIES} ${GSTREAMER_SDP_LIBRARIES} ${GSTREAMER_PBUTILS_LIBRARIES} ) include (TestHelpers) set (SUPPRESSIONS "${CMAKE_CURRENT_SOURCE_DIR}/valgrind.supp") set (TEST_PROPERTIES GST_PLUGIN_PATH=${CMAKE_BINARY_DIR} CK_DEFAULT_TIMEOUT=50 ) add_subdirectory(element) # if (${ENABLE_INTEGRATION_TESTS}) # add_subdirectory(integration) # endif() # if (${ENABLE_MEMORY_LEAKS_TESTS}) # add_subdirectory(memory_leaks) # endif()
include_directories( ${GSTREAMER_INCLUDE_DIRS} ${GSTREAMER_VIDEO_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR} ) set(KMS_TEST_UTILS_SOURCES kmstestutils.h kmstestutils.c ) add_library(kmstestutils ${KMS_TEST_UTILS_SOURCES}) target_link_libraries(kmstestutils ${GSTREAMER_LIBRARIES} ${GSTREAMER_BASE_LIBRARIES} ${GSTREAMER_SDP_LIBRARIES} ${GSTREAMER_PBUTILS_LIBRARIES} ) include(TestHelpers) set(TEST_VARIABLES "GST_PLUGIN_PATH=${CMAKE_BINARY_DIR}" "CK_DEFAULT_TIMEOUT=50" ) set(SUPPRESSIONS "${CMAKE_CURRENT_SOURCE_DIR}/valgrind.supp") add_subdirectory(element)
Add "Home connection VS Digital Ocean" bandwidth test results from a while back.
Home connection: 0|hexstream@dynamorph:~/data/projects/lisp/aws$ speedtest-cli Retrieving speedtest.net configuration... Retrieving speedtest.net server list... Testing from [redacted] ([redacted])... Selecting best server based on latency... Hosted by Openface Internet (Montreal, QC) [20.41 km]: 15.606 ms Testing download speed........................................ Download: 10.34 Mbit/s Testing upload speed.................................................. Upload: 1.52 Mbit/s Digital Ocean VPS: root@spike.hexstream.net:~# speedtest-cli Retrieving speedtest.net configuration... Retrieving speedtest.net server list... Testing from Digital Ocean (104.131.177.235)... Selecting best server based on latency... Hosted by fdcservers.net (New York, New York) [0.18 km]: 10.965 ms Testing download speed........................................ Download: 813.69 Mbit/s Testing upload speed.................................................. Upload: 524.78 Mbit/s Download factor: 78.69x Upload factor: 345.25x
Build system - need to prevent re extraction
cmake_minimum_required(VERSION 3.5) project(BPAnalysis) #set(CMAKE_VERBOSE_MAKEFILE on) set(CMAKE_CXX_STANDARD 11) set(SOURCE_FILES src/framework.c include/framework.h src/main.c src/predictors.c include/predictors.h include/statemachine.h src/statemachine.c include/fourcoltwobitbht.h src/fourcoltwobitbht.c.c) message("Extracting trace files... Please wait.") execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/traces) execute_process(COMMAND ${CMAKE_COMMAND} -E tar xzvf ${CMAKE_SOURCE_DIR}/traces/traces.tar.gz -C ${CMAKE_CURRENT_BINARY_DIR}/traces WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/traces) message("Trace files are extracted") add_executable(BPAnalysis ${SOURCE_FILES}) target_link_libraries(BPAnalysis m)
cmake_minimum_required(VERSION 3.5) project(BPAnalysis) #set(CMAKE_VERBOSE_MAKEFILE on) set(CMAKE_CXX_STANDARD 11) set(SOURCE_FILES src/framework.c include/framework.h src/main.c src/predictors.c include/predictors.h include/statemachine.h src/statemachine.c include/fourcoltwobitbht.h src/fourcoltwobitbht.c.c) message("Extracting trace files... Please wait.") execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/traces OUTPUT_QUIET ERROR_QUIET) execute_process(COMMAND ${CMAKE_COMMAND} -E tar xzvf ${CMAKE_SOURCE_DIR}/traces/traces.tar.gz -C ${CMAKE_CURRENT_BINARY_DIR}/traces WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/traces TIMEOUT 10 ERROR_QUIET) message("Trace files are extracted") add_executable(BPAnalysis ${SOURCE_FILES}) target_link_libraries(BPAnalysis m)
Update dependency gevent to v21.1.1
# Pro-tip: Try not to put anything here. There should be no dependency in # production that isn't in development. -r base.txt Django==3.1.5 gevent==21.1.0 gunicorn==20.0.4 raven==6.10.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==3.1.5 gevent==21.1.1 gunicorn==20.0.4 raven==6.10.0
Update setuptools from 40.3.0 to 40.4.1
# ydf/requirements/build.txt # # Requirements necessary to build the ydf package. setuptools==40.3.0
# ydf/requirements/build.txt # # Requirements necessary to build the ydf package. setuptools==40.4.1
Update HW-Manager to 0.81 (15)
Categories:Science & Education,Office License:GPLv2+ Web Site:https://nicoalt.pfweb.eu/projekte/android/ha-manager/ Source Code:https://github.com/AltNico/ha-manager Issue Tracker:https://github.com/AltNico/ha-manager/issues Auto Name:HW-Manager Summary:Manage your homework Description: Make your schoolday easier by keeping the overview over your homework. The target of the project is to keep it easy to manage your homework and do not be bloated like some other apps. . Repo Type:git Repo:https://github.com/AltNico/ha-manager Build:0.61,8 commit=0.61 subdir=HA-Manager Build:0.62,9 commit=0.62 subdir=HA-Manager Build:0.63,10 commit=0.63 subdir=HA-Manager Build:0.65,12 commit=0.65 subdir=HA-Manager Build:0.7,13 commit=0.7 subdir=HA-Manager Build:0.8,14 commit=0.8 subdir=app Auto Update Mode:Version %v Update Check Mode:Tags Current Version:0.8 Current Version Code:14
Categories:Science & Education,Office License:GPLv2+ Web Site:https://nicoalt.pfweb.eu/projekte/android/ha-manager/ Source Code:https://github.com/AltNico/ha-manager Issue Tracker:https://github.com/AltNico/ha-manager/issues Auto Name:HW-Manager Summary:Manage your homework Description: Make your schoolday easier by keeping the overview over your homework. The target of the project is to keep it easy to manage your homework and do not be bloated like some other apps. . Repo Type:git Repo:https://github.com/AltNico/ha-manager Build:0.61,8 commit=0.61 subdir=HA-Manager Build:0.62,9 commit=0.62 subdir=HA-Manager Build:0.63,10 commit=0.63 subdir=HA-Manager Build:0.65,12 commit=0.65 subdir=HA-Manager Build:0.7,13 commit=0.7 subdir=HA-Manager Build:0.8,14 commit=0.8 subdir=app Build:0.81,15 commit=0.81 subdir=app Auto Update Mode:Version %v Update Check Mode:Tags Current Version:0.81 Current Version Code:15
Update the license header text file.
Copyright (C) 2010-2012, FuseSource Corp. All rights reserved. http://fusesource.com The software in this package is published under the terms of the CDDL license a copy of which has been included with this distribution in the license.txt file.
Copyright (C) FuseSource, Inc. http://fusesource.com 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.
Update to avoid requests vulnerability
Flask==0.10.1 Jinja2==2.7.2 MarkupSafe==0.18 Werkzeug==0.9.4 argparse==1.2.1 beautifulsoup4==4.3.2 flake8==2.2.2 gunicorn==19.0.0 itsdangerous==0.23 mccabe==0.2.1 oauthlib==0.6.3 pep8==1.5.7 pyflakes==0.8.1 python-twitter==2.0 requests==2.3.0 requests-oauthlib==0.4.1 simplejson==3.5.3
Flask==0.10.1 Jinja2==2.7.2 MarkupSafe==0.18 Werkzeug==0.9.4 argparse==1.2.1 beautifulsoup4==4.3.2 flake8==2.2.2 gunicorn==19.0.0 itsdangerous==0.23 mccabe==0.2.1 oauthlib==0.6.3 pep8==1.5.7 pyflakes==0.8.1 python-twitter==2.0 requests ~> 2.20.0 requests-oauthlib==0.4.1 simplejson==3.5.3
Update pinned version of django_browserid
Django==1.5.2 django-browserid==0.8 django-recaptcha reportlab django_mobile django-discover-runner pep8 bleach south < 2.0
Django==1.5.2 django-browserid==0.9 django-recaptcha reportlab django_mobile django-discover-runner pep8 bleach south < 2.0
Update pytest from 3.5.1 to 3.6.0
docker==2.7.0 molecule==2.14.0 pytest==3.5.1 python-vagrant==0.5.15 testinfra==1.13.0 tox==3.0.0
docker==2.7.0 molecule==2.14.0 pytest==3.6.0 python-vagrant==0.5.15 testinfra==1.13.0 tox==3.0.0
Upgrade dependency botocore to ==1.4.46
base58==0.2.3 boto3==1.4.0 botocore==1.4.45 docutils==0.12 futures==3.0.5 hjson==2.0.0 jmespath==0.9.0 kappa==0.6.0 lambda-packages==0.8.0 python-dateutil==2.5.3 python-slugify==1.2.0 requests>=2.10.0 six==1.10.0 tqdm==4.8.3 Werkzeug==0.11.10 wheel==0.29.0 wsgi-request-logger==0.4.5
base58==0.2.3 boto3==1.4.0 botocore==1.4.46 docutils==0.12 futures==3.0.5 hjson==2.0.0 jmespath==0.9.0 kappa==0.6.0 lambda-packages==0.8.0 python-dateutil==2.5.3 python-slugify==1.2.0 requests>=2.10.0 six==1.10.0 tqdm==4.8.3 Werkzeug==0.11.10 wheel==0.29.0 wsgi-request-logger==0.4.5
Update pytest from 3.1.2 to 3.1.3
docker==2.4.2 molecule==1.25.0 pymongo==3.4 pytest==3.1.2 python-vagrant==0.5.15 testinfra==1.6.4 tox==2.7.0
docker==2.4.2 molecule==1.25.0 pymongo==3.4 pytest==3.1.3 python-vagrant==0.5.15 testinfra==1.6.4 tox==2.7.0
Update flask-migrate from 2.1.1 to 2.3.0
awesome-slugify==1.6.5 cssmin==0.2.0 Flask==1.0.1 Flask-Analytics==0.6.0 Flask-Assets==0.12 Flask-Mail==0.9.1 Flask-Migrate==2.1.1 Flask-Misaka==0.4.1 Flask-SQLAlchemy==2.3.2 Flask-User==0.6.21 Flask-WTF==0.14.2 pygments==2.2.0
awesome-slugify==1.6.5 cssmin==0.2.0 Flask==1.0.1 Flask-Analytics==0.6.0 Flask-Assets==0.12 Flask-Mail==0.9.1 Flask-Migrate==2.3.0 Flask-Misaka==0.4.1 Flask-SQLAlchemy==2.3.2 Flask-User==0.6.21 Flask-WTF==0.14.2 pygments==2.2.0
Add requirement for spacy v3
spacy scikit-learn numpy scipy intervaltree networkx future bioc>=1.3.1 pytest_socket six sphinx==1.5.5 sphinx_rtd_theme fasteners docstringtest
spacy>=3.0.0 scikit-learn numpy scipy intervaltree networkx future bioc>=1.3.1 pytest_socket six sphinx==1.5.5 sphinx_rtd_theme fasteners docstringtest
Update psycopg2 from 2.6.2 to 2.7.3
alembic==0.9.4 antiorm==1.2.1 appdirs==1.4.3 chardet==3.0.4 codeclimate-test-reporter==0.2.3 coverage==4.4.1 dataset==0.8.0 db==0.1.1 db-sqlite3==0.0.1 ddt==1.1.1 Mako==1.0.7 MarkupSafe==1.0 normality==0.4.4 packaging==16.8 psycopg2==2.6.2 pygraphviz==1.3.1 pyparsing==2.1.10 python-editor==1.0.3 PyYAML==3.12 requests==2.13.0 six==1.10.0 SQLAlchemy==1.1.6 toolz==0.8.2 transitions==0.4.3
alembic==0.9.4 antiorm==1.2.1 appdirs==1.4.3 chardet==3.0.4 codeclimate-test-reporter==0.2.3 coverage==4.4.1 dataset==0.8.0 db==0.1.1 db-sqlite3==0.0.1 ddt==1.1.1 Mako==1.0.7 MarkupSafe==1.0 normality==0.4.4 packaging==16.8 psycopg2==2.7.3 pygraphviz==1.3.1 pyparsing==2.1.10 python-editor==1.0.3 PyYAML==3.12 requests==2.13.0 six==1.10.0 SQLAlchemy==1.1.6 toolz==0.8.2 transitions==0.4.3
Upgrade dependency raven to ==6.1.0
appdirs==1.4.3 contextlib2==0.5.5 Django==1.11.1 django-appconf==1.0.2 django-cacheops==3.2.1 django-compressor==2.1.1 django-debug-toolbar==1.8 django-querycount==0.6.0 freezegun==0.3.9 funcy==1.7.5 packaging==16.8 psycopg2==2.7.1 PyJWT==1.5.0 pyparsing==2.2.0 PySocks==1.6.7 python-dateutil==2.6.0 pytz==2017.2 raven==6.0.0 rcssmin==1.0.6 redis==2.10.5 requests==2.14.2 rjsmin==1.0.12 six==1.10.0 sqlparse==0.2.3 twilio==6.3.0 uWSGI==2.0.15
appdirs==1.4.3 contextlib2==0.5.5 Django==1.11.1 django-appconf==1.0.2 django-cacheops==3.2.1 django-compressor==2.1.1 django-debug-toolbar==1.8 django-querycount==0.6.0 freezegun==0.3.9 funcy==1.7.5 packaging==16.8 psycopg2==2.7.1 PyJWT==1.5.0 pyparsing==2.2.0 PySocks==1.6.7 python-dateutil==2.6.0 pytz==2017.2 raven==6.1.0 rcssmin==1.0.6 redis==2.10.5 requests==2.14.2 rjsmin==1.0.12 six==1.10.0 sqlparse==0.2.3 twilio==6.3.0 uWSGI==2.0.15
Upgrade dependency raven to ==6.4.0
appdirs==1.4.3 autopep8==1.3.3 certifi==2017.7.27.1 chardet==3.0.4 contextlib2==0.5.5 Django==1.11.7 django-appconf==1.0.2 django-cacheops==4.0 django-cors-headers==2.1.0 django-silk==1.0.0 django-taggit==0.22.1 django-taggit-serializer==0.1.5 djangorestframework==3.7.3 djangorestframework-jwt==1.11.0 freezegun==0.3.9 funcy==1.10 idna==2.6 Jinja2==2.10 MarkupSafe==1.0 packaging==16.8 psycopg2==2.7.3 pycodestyle==2.3.1 Pygments==2.2.0 PyJWT==1.5.3 pyparsing==2.2.0 python-dateutil==2.6.1 pytz==2017.3 raven==6.3.0 requests==2.18.4 redis==2.10.6 six==1.11.0 sqlparse==0.2.4 urllib3==1.22 uWSGI==2.0.15
appdirs==1.4.3 autopep8==1.3.3 certifi==2017.7.27.1 chardet==3.0.4 contextlib2==0.5.5 Django==1.11.7 django-appconf==1.0.2 django-cacheops==4.0 django-cors-headers==2.1.0 django-silk==1.0.0 django-taggit==0.22.1 django-taggit-serializer==0.1.5 djangorestframework==3.7.3 djangorestframework-jwt==1.11.0 freezegun==0.3.9 funcy==1.10 idna==2.6 Jinja2==2.10 MarkupSafe==1.0 packaging==16.8 psycopg2==2.7.3 pycodestyle==2.3.1 Pygments==2.2.0 PyJWT==1.5.3 pyparsing==2.2.0 python-dateutil==2.6.1 pytz==2017.3 raven==6.4.0 requests==2.18.4 redis==2.10.6 six==1.11.0 sqlparse==0.2.4 urllib3==1.22 uWSGI==2.0.15
Change pydicom origin to github.com/alexsavio/pydicom.git
#must be separately installed: numpy==1.9.0 scipy==0.14.0 cython==0.21 #https://github.com/alexsavio/pydicom hg+https://code.google.com/p/pydicom/ nibabel==1.3.0 sympy==0.7.5
#must be separately installed: numpy==1.9.0 scipy==0.14.0 cython==0.21 git+https://github.com/alexsavio/pydicom nibabel==1.3.0 sympy==0.7.5
Add pycrypto as a dependency.
gdata>=2.0.18 google-api-python-client>=1.4.1 oauth2client>=1.4.12 python-gflags>=2.0
gdata>=2.0.18 google-api-python-client>=1.4.1 oauth2client>=1.4.12 pycrypto>=2.6.1 python-gflags>=2.0
Update numpy from 1.18.2 to 1.18.3
beautifulsoup4==4.9.0 bcrypt==3.1.7 croniter==0.3.31 Cython==0.29.16 feedparser==5.2.1 git+git://github.com/andreasvc/pyre2.git@7146ce3#egg=re2 google-api-python-client==1.8.0 isodate==0.6.0 jsonpath-ng==1.5.1 lxml==4.5.0 numpy==1.18.2 Pillow==7.1.1 parsedatetime==2.5 psutil==5.7.0 pyhedrals==0.2.0 python-dateutil==2.8.1 pytimeparse==1.1.8 pyxDamerauLevenshtein==1.5.3 requests==2.23.0 ruamel.yaml==0.16.10 Twisted[tls]==20.3.0
beautifulsoup4==4.9.0 bcrypt==3.1.7 croniter==0.3.31 Cython==0.29.16 feedparser==5.2.1 git+git://github.com/andreasvc/pyre2.git@7146ce3#egg=re2 google-api-python-client==1.8.0 isodate==0.6.0 jsonpath-ng==1.5.1 lxml==4.5.0 numpy==1.18.3 Pillow==7.1.1 parsedatetime==2.5 psutil==5.7.0 pyhedrals==0.2.0 python-dateutil==2.8.1 pytimeparse==1.1.8 pyxDamerauLevenshtein==1.5.3 requests==2.23.0 ruamel.yaml==0.16.10 Twisted[tls]==20.3.0
Remove obsolete lines and use the new gluon_add_subdirectory macro
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) find_package(OpenAL 1.8 REQUIRED) find_package(Alure 1.2 REQUIRED) gluon_include_directories(GluonAudio ${GLUONCORE_INCLUDE_DIRS} ${ALURE_INCLUDE_DIRS} ${OPENAL_INCLUDE_DIR} #TODO: Make use of phonon instead of these libs for file input. Saves us another few dependencies. ) if( BUILD_EXAMPLES ) add_subdirectory(examples) endif() set(GluonAudio_SRCS #capture.cpp engine.cpp player.cpp sound.cpp #capturedevice_p.cpp device_p.cpp ) set(GluonAudio_HEADERS #capture.h engine.h gluon_audio_export.h player.h sound.h ) gluon_add_library(GluonAudio SHARED SOURCES ${GluonAudio_SRCS} HEADERS ${GluonAudio_HEADERS} LIBRARIES ${GLUONCORE_LIBRARIES} ${OPENAL_LIBRARY} ${ALURE_LIBRARIES} ) if(BUILD_TESTS) add_subdirectory(tests) endif()
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) find_package(OpenAL 1.8 REQUIRED) find_package(Alure 1.2 REQUIRED) gluon_include_directories(GluonAudio ${GLUONCORE_INCLUDE_DIRS} ${ALURE_INCLUDE_DIRS} ${OPENAL_INCLUDE_DIR} ) set(GluonAudio_SRCS engine.cpp player.cpp sound.cpp device_p.cpp ) set(GluonAudio_HEADERS engine.h gluon_audio_export.h player.h sound.h ) gluon_add_library(GluonAudio SHARED SOURCES ${GluonAudio_SRCS} HEADERS ${GluonAudio_HEADERS} LIBRARIES ${GLUONCORE_LIBRARIES} ${OPENAL_LIBRARY} ${ALURE_LIBRARIES} ) gluon_add_subdirectories(examples tests)
Update django-extensions from 1.7.2 to 1.7.3
-r base.txt django-debug-toolbar==1.5 django-extensions==1.7.2 git+https://github.com/alsoicode/django-medusa django-sendfile==0.3.10 livereload==2.4.1 selenium==2.53.6
-r base.txt django-debug-toolbar==1.5 django-extensions==1.7.3 git+https://github.com/alsoicode/django-medusa django-sendfile==0.3.10 livereload==2.4.1 selenium==2.53.6
Update Darkness Immunity to 1.2.19 (27)
Categories:Theming License:GPL-3.0-only Web Site: Source Code:https://gitlab.com/axet/android-darkness-immunity Issue Tracker:https://gitlab.com/axet/android-darkness-immunity/issues Auto Name:Darkness Immunity Summary:Darkness Immunity Digital Amulet Description: Darkness Immunity Digital Amulet. Works like a charm! Works even when phone is turned off (since values are still presents in current physical reality of phone memory module, you just can't see them when phone has no power). DON'T PANIC! You can handle it all. It just a dream. Love is the only one truth. (reality)<-(lie)<-(love)->(lie)->(reality) . Repo Type:git Repo:https://gitlab.com/axet/android-darkness-immunity.git Build:1.2.17,25 commit=darknessimmunity-1.2.17 subdir=app gradle=yes prebuild=sed -i -e "s/gradleVersion = '3\.3'/gradleVersion = '4.1'/; /jcenter/a\ maven { url 'https://maven.google.com' }" ../build.gradle Auto Update Mode:Version darknessimmunity-%v Update Check Mode:Tags Current Version:1.2.17 Current Version Code:25
Categories:Theming License:GPL-3.0-only Web Site: Source Code:https://gitlab.com/axet/android-darkness-immunity Issue Tracker:https://gitlab.com/axet/android-darkness-immunity/issues Auto Name:Darkness Immunity Summary:Darkness Immunity Digital Amulet Description: Darkness Immunity Digital Amulet. Works like a charm! Works even when phone is turned off (since values are still presents in current physical reality of phone memory module, you just can't see them when phone has no power). DON'T PANIC! You can handle it all. It just a dream. Love is the only one truth. (reality)<-(lie)<-(love)->(lie)->(reality) . Repo Type:git Repo:https://gitlab.com/axet/android-darkness-immunity.git Build:1.2.17,25 commit=darknessimmunity-1.2.17 subdir=app gradle=yes prebuild=sed -i -e "s/gradleVersion = '3\.3'/gradleVersion = '4.1'/; /jcenter/a\ maven { url 'https://maven.google.com' }" ../build.gradle Build:1.2.19,27 commit=darknessimmunity-1.2.19 subdir=app gradle=yes prebuild=sed -i -e "s/gradleVersion = '3\.3'/gradleVersion = '4.1'/; /jcenter/a\ maven { url 'https://maven.google.com' }" ../build.gradle Auto Update Mode:Version darknessimmunity-%v Update Check Mode:Tags Current Version:1.2.19 Current Version Code:27
Update pytest from 3.2.3 to 3.2.4
bumpversion==0.5.3 codecov==2.0.9 pypandoc==1.4 pytest==3.2.3 twine==1.9.1
bumpversion==0.5.3 codecov==2.0.9 pypandoc==1.4 pytest==3.2.4 twine==1.9.1
Update coverage package to 4.5.4
# Testing coverage==4.5.3 # Test coverage flake8==3.7.8 # Python linting mypy==0.720 # Type checking
# Testing coverage==4.5.4 # Test coverage flake8==3.7.8 # Python linting mypy==0.720 # Type checking
Update django-ckeditor from 6.4.1 to 6.4.2
bleach==5.0.0 Django==3.2.13 # pyup: < 3.3 django-allauth==0.51.0 django-autoslug==1.9.8 django-background-tasks==1.2.5 django-ckeditor==6.4.1 django-enumfield==3.0 django-filter==21.1 django-multiselectfield==0.1.12 django-widget-tweaks==1.4.12 djangorestframework==3.13.1 easy-thumbnails==2.8.1 html5lib==1.1 jsonfield==3.1.0 python-dateutil==2.8.2 python-magic==0.4.26 rules==3.3 XlsxWriter==3.0.3
bleach==5.0.0 Django==3.2.13 # pyup: < 3.3 django-allauth==0.51.0 django-autoslug==1.9.8 django-background-tasks==1.2.5 django-ckeditor==6.4.2 django-enumfield==3.0 django-filter==21.1 django-multiselectfield==0.1.12 django-widget-tweaks==1.4.12 djangorestframework==3.13.1 easy-thumbnails==2.8.1 html5lib==1.1 jsonfield==3.1.0 python-dateutil==2.8.2 python-magic==0.4.26 rules==3.3 XlsxWriter==3.0.3
Update django from 2.2.10 to 2.2.11
dj-database-url==0.5.0 django-apiblueprint-view==2.1.1 django-basicauth==0.5.2 django-extensions==2.2.8 django-localflavor==3.0 django-markdown-deux==1.0.5 django==2.2.10 # pyup: >=2.2,<3.0 djangorestframework==3.11.0 djangorestframework-gis==0.15 django-cors-headers==3.2.1 fastkml==0.11 fuzzywuzzy==0.18.0 lxml==4.5.0 marshmallow==3.5.0 psycopg2-binary==2.8.4 pyshp==2.1.0 python-levenshtein==0.12.0 raven==6.10.0 requests==2.23.0 retry==0.9.2 boto==2.49.0 boto3==1.12.2 # pyup: update minor uk-geo-utils==0.9.0 git+git://github.com/DemocracyClub/dc_base_theme.git@0.3.10 git+https://github.com/DemocracyClub/dc_signup_form.git@2.1.0
dj-database-url==0.5.0 django-apiblueprint-view==2.1.1 django-basicauth==0.5.2 django-extensions==2.2.8 django-localflavor==3.0 django-markdown-deux==1.0.5 django==2.2.11 # pyup: >=2.2,<3.0 djangorestframework==3.11.0 djangorestframework-gis==0.15 django-cors-headers==3.2.1 fastkml==0.11 fuzzywuzzy==0.18.0 lxml==4.5.0 marshmallow==3.5.0 psycopg2-binary==2.8.4 pyshp==2.1.0 python-levenshtein==0.12.0 raven==6.10.0 requests==2.23.0 retry==0.9.2 boto==2.49.0 boto3==1.12.2 # pyup: update minor uk-geo-utils==0.9.0 git+git://github.com/DemocracyClub/dc_base_theme.git@0.3.10 git+https://github.com/DemocracyClub/dc_signup_form.git@2.1.0
Add gevent to allow use of async gunicorn workers
appdirs==1.4.3 bcrypt==3.1.3 cffi==1.10.0 Django==1.11 django-crispy-forms==1.6.1 et-xmlfile==1.0.1 gunicorn==19.7.1 jdcal==1.3 lxml==3.7.3 openpyxl==2.4.7 packaging==16.8 pycparser==2.17 PyMySQL==0.7.11 pyparsing==2.2.0 python-dateutil==2.6.0 pytz==2017.2 requests==2.13.0 six==1.10.0 cloudflare==1.5.1 django_slack==5.8.0 django-extensions==1.7.9 fuzzywuzzy==0.15.0
appdirs==1.4.3 bcrypt==3.1.3 cffi==1.10.0 Django==1.11 django-crispy-forms==1.6.1 et-xmlfile==1.0.1 gunicorn==19.7.1 jdcal==1.3 lxml==3.7.3 openpyxl==2.4.7 packaging==16.8 pycparser==2.17 PyMySQL==0.7.11 pyparsing==2.2.0 python-dateutil==2.6.0 pytz==2017.2 requests==2.13.0 six==1.10.0 cloudflare==1.5.1 django_slack==5.8.0 django-extensions==1.7.9 fuzzywuzzy==0.15.0 gevent==1.2.2
Update botocore from 1.8.23 to 1.8.26
boto3==1.5.12 botocore==1.8.23 certifi==2017.11.5 chardet==3.0.4 dj-database-url==0.4.2 dj-static==0.0.6 Django==1.11.7 django-grappelli==2.10.1 django-haystack==2.6.1 django-linkcheck==1.5 django-s3-folder-storage==0.5 django-storages==1.6.5 docutils==0.14 elasticsearch==6.1.1 futures==3.2.0 gunicorn==19.7.1 idna==2.6 jmespath==0.9.3 MySQL-python==1.2.5 newrelic==2.100.0.84 psycopg2==2.7.3.2 python-dateutil==2.6.1 python-ptrace==0.9.3 pyuploadcare==2.2.1 requests==2.18.4 rollbar==0.13.17 s3transfer==0.1.12 simplejson==3.13.2 six==1.11.0 static3==0.7.0 urllib3==1.22 Whoosh==2.7.4
boto3==1.5.12 botocore==1.8.26 certifi==2017.11.5 chardet==3.0.4 dj-database-url==0.4.2 dj-static==0.0.6 Django==1.11.7 django-grappelli==2.10.1 django-haystack==2.6.1 django-linkcheck==1.5 django-s3-folder-storage==0.5 django-storages==1.6.5 docutils==0.14 elasticsearch==6.1.1 futures==3.2.0 gunicorn==19.7.1 idna==2.6 jmespath==0.9.3 MySQL-python==1.2.5 newrelic==2.100.0.84 psycopg2==2.7.3.2 python-dateutil==2.6.1 python-ptrace==0.9.3 pyuploadcare==2.2.1 requests==2.18.4 rollbar==0.13.17 s3transfer==0.1.12 simplejson==3.13.2 six==1.11.0 static3==0.7.0 urllib3==1.22 Whoosh==2.7.4
Upgrade dependency requests to ==2.18.1
coreapi==2.3.1 Django==1.11.2 django-rest-swagger==2.1.2 django-webpack-loader==0.5.0 djangorestframework==3.6.3 djangorestframework-jwt==1.10.0 freezegun==0.3.9 itypes==1.1.0 openapi-codec==1.2.1 psycopg2==2.7.1 PyJWT==1.5.0 python-dateutil==2.6.0 requests==2.18.0 simplejson==3.10.0 six==1.10.0 uritemplate==3.0.0 uWSGI==2.0.15
coreapi==2.3.1 Django==1.11.2 django-rest-swagger==2.1.2 django-webpack-loader==0.5.0 djangorestframework==3.6.3 djangorestframework-jwt==1.10.0 freezegun==0.3.9 itypes==1.1.0 openapi-codec==1.2.1 psycopg2==2.7.1 PyJWT==1.5.0 python-dateutil==2.6.0 requests==2.18.1 simplejson==3.10.0 six==1.10.0 uritemplate==3.0.0 uWSGI==2.0.15
Update python_box from 3.2.2 to 3.2.3
boto3==1.9.38 botocore==1.12.46 Collectfast==0.6.2 dj_database_url==0.5.0 django-debug-toolbar==1.10.1 django-ordered-model==3.1.1 django-s3-folder-storage==0.5 django-storages==1.7.1 Django==2.1.3 docutils==0.14 gunicorn==19.9.0 jmespath==0.9.3 pillow==5.3.0 psycopg2-binary==2.7.6.1 python-dateutil==2.7.5 python-decouple==3.1 python_box==3.2.2 pytz==2018.7 raven==6.9.0 s3transfer==0.1.13 six==1.11.0 six==1.11.0 sqlparse==0.2.4
boto3==1.9.38 botocore==1.12.46 Collectfast==0.6.2 dj_database_url==0.5.0 django-debug-toolbar==1.10.1 django-ordered-model==3.1.1 django-s3-folder-storage==0.5 django-storages==1.7.1 Django==2.1.3 docutils==0.14 gunicorn==19.9.0 jmespath==0.9.3 pillow==5.3.0 psycopg2-binary==2.7.6.1 python-dateutil==2.7.5 python-decouple==3.1 python_box==3.2.3 pytz==2018.7 raven==6.9.0 s3transfer==0.1.13 six==1.11.0 six==1.11.0 sqlparse==0.2.4
Support other django minor versions pre-1.7
coverage == 3.7.1 django >= 1.4, <= 1.6.10 mock < 2.0.0 nose < 2.0.0 python-coveralls == 2.5.0 unittest2 < 1.0.0
coverage == 3.7.1 django>=1.4,< 1.7 mock<2.0.0 nose<2.0.0 python-coveralls==2.5.0 unittest2<1.0.0
Update pytest from 4.4.0 to 4.5.0
cookiecutter==1.6.0 flake8==3.7.5 # pyup: != 2.6.0 sh==1.12.14 binaryornot==0.4.4 # Testing pytest==4.4.0 pep8==1.7.1 pyflakes==2.1.0 tox==3.9.0 pytest-cookies==0.3.0
cookiecutter==1.6.0 flake8==3.7.5 # pyup: != 2.6.0 sh==1.12.14 binaryornot==0.4.4 # Testing pytest==4.5.0 pep8==1.7.1 pyflakes==2.1.0 tox==3.9.0 pytest-cookies==0.3.0
Update tqdm from 4.32.2 to 4.35.0
future==0.17.1 tqdm==4.32.2 networkx==2.3 pytest==5.1.0
future==0.17.1 tqdm==4.35.0 networkx==2.3 pytest==5.1.0
Bump bandit from 1.4.0 to 1.5.0
alabaster==0.7.11 bandit==1.4.0 coverage==4.5.1 coveralls==1.3.0 docutils==0.14 Flask==1.0.2 Flask-SSLify==0.1.5 Flask-Testing==0.7.1 gunicorn==19.9.0 pycodestyle==2.4.0 pydocstyle==2.1.1 requests==2.19.1 Sphinx==1.7.6 Werkzeug==0.14.1
alabaster==0.7.11 bandit==1.5.0 coverage==4.5.1 coveralls==1.3.0 docutils==0.14 Flask==1.0.2 Flask-SSLify==0.1.5 Flask-Testing==0.7.1 gunicorn==19.9.0 pycodestyle==2.4.0 pydocstyle==2.1.1 requests==2.19.1 Sphinx==1.7.6 Werkzeug==0.14.1
Bump django-simple-email-confirmation from 0.22 to 0.23
Django[argon2]==1.11.7 wagtail==1.13.1 # External Libraries requests==2.18.4 # Templates django-compressor==2.2 django-libsass==0.7 wagtailfontawesome==1.1.1 # Scheduled tasks django-kronos==1.0 # User management rules==1.3 django-simple-email-confirmation==0.22 # Logging raven==6.4.0
Django[argon2]==1.11.7 wagtail==1.13.1 # External Libraries requests==2.18.4 # Templates django-compressor==2.2 django-libsass==0.7 wagtailfontawesome==1.1.1 # Scheduled tasks django-kronos==1.0 # User management rules==1.3 django-simple-email-confirmation==0.23 # Logging raven==6.4.0
Update psycopg2 from 2.7.4 to 2.7.5
robotframework==3.0.4 robotframework-selenium2library==3.0.0 robotframework-debuglibrary==1.1.4 Selenium==3.14.0 factory_boy==2.11.1 pytest==3.7.3 pytest-django==3.4.2 psycopg2==2.7.4 mock==2.0.0 zest.releaser==6.12.4 twine==1.9.1 requests==2.18.4
robotframework==3.0.4 robotframework-selenium2library==3.0.0 robotframework-debuglibrary==1.1.4 Selenium==3.14.0 factory_boy==2.11.1 pytest==3.7.3 pytest-django==3.4.2 psycopg2==2.7.5 mock==2.0.0 zest.releaser==6.12.4 twine==1.9.1 requests==2.18.4
Update numpy from 1.16.4 to 1.17.0
# # requirements.txt used for concrete testing environment. # # install_requires in setup.py gives the abstract requirements # used by 'pip install' and 'setup.py install' to install # cxroots as a library. # scipy==1.3.1; python_version > '2.7' scipy==1.2.1; python_version <= '2.7' # pyup: ignore numpy==1.16.4 docrep==0.2.7 mpmath==1.1.0 ### numdifftools git+https://github.com/rparini/numdifftools.git@fix_vstack_futurewarning#egg=numdifftools matplotlib==3.1.1; python_version > '3.5' matplotlib==3.0.3; python_version > '2.7' and python_version <= '3.5' # pyup: ignore matplotlib==2.2.3; python_version <= '2.7' # pyup: ignore pytest==5.0.1; python_version > '2.7' pytest==4.6.4; python_version <= '2.7' # pyup: ignore pytest-xdist==1.29.0
# # requirements.txt used for concrete testing environment. # # install_requires in setup.py gives the abstract requirements # used by 'pip install' and 'setup.py install' to install # cxroots as a library. # scipy==1.3.1; python_version > '2.7' scipy==1.2.1; python_version <= '2.7' # pyup: ignore numpy==1.17.0 docrep==0.2.7 mpmath==1.1.0 ### numdifftools git+https://github.com/rparini/numdifftools.git@fix_vstack_futurewarning#egg=numdifftools matplotlib==3.1.1; python_version > '3.5' matplotlib==3.0.3; python_version > '2.7' and python_version <= '3.5' # pyup: ignore matplotlib==2.2.3; python_version <= '2.7' # pyup: ignore pytest==5.0.1; python_version > '2.7' pytest==4.6.4; python_version <= '2.7' # pyup: ignore pytest-xdist==1.29.0
Add libstdc++ to default toolchain includes
ld*.so* libc*.so* libcrypt*.so* libdl*.so* libgcc_s*.so* libm*.so* libnsl*.so* libnss_dns*.so* libnss_files*.so* libpthread*.so* libresolv*.so* librt*.so* libutil*.so*
ld*.so* libc*.so* libcrypt*.so* libdl*.so* libgcc_s*.so* libm*.so* libnsl*.so* libnss_dns*.so* libnss_files*.so* libpthread*.so* libresolv*.so* librt*.so* libstdc++*.so* libutil*.so*
Update selenium from 3.4.3 to 3.5.0
PyPOM==1.2.0 pytest==3.2.0 pytest-selenium==1.11.0 pytest-variables==1.7.0 pytest-xdist==1.18.2 requests==2.18.3 selenium==3.4.3
PyPOM==1.2.0 pytest==3.2.0 pytest-selenium==1.11.0 pytest-variables==1.7.0 pytest-xdist==1.18.2 requests==2.18.3 selenium==3.5.0
Update CV of 四次元 to 0.5.0beta8 (50)
Categories:Internet License:GPLv3 Web Site:https://github.com/qii/weiciyuan/wiki Source Code:https://github.com/qii/weiciyuan Issue Tracker:https://github.com/qii/weiciyuan/issues Auto Name:四次元 Summary:Sina Weibo client Description: Chinese social networking. Supposedly weibo.com has an English translation now but the app doesn't yet. . Repo Type:git Repo:https://github.com/qii/weiciyuan.git Build:0.481,23 commit=95a0e2e9aa88 rm=libs/android-support-v4.jar extlibs=android/android-support-v4.jar Build:0.483,25 commit=00a434ba7 rm=libs/android-support-v4.jar extlibs=android/android-support-v4.jar prebuild=rm -rf libs/google-play-services_lib Build:0.5.0beta7,48 disable=beta and play-services commit=5140499c130ead23124a398b8cc8b1c2df4ccbbe prebuild=sed -i -e '/com.google.android.gms:play-services/d' build.gradle Auto Update Mode:None Update Check Mode:RepoManifest Current Version:0.5.0beta7 Current Version Code:48
Categories:Internet License:GPLv3 Web Site:https://github.com/qii/weiciyuan/wiki Source Code:https://github.com/qii/weiciyuan Issue Tracker:https://github.com/qii/weiciyuan/issues Auto Name:四次元 Summary:Sina Weibo client Description: Chinese social networking. Supposedly weibo.com has an English translation now but the app doesn't yet. . Repo Type:git Repo:https://github.com/qii/weiciyuan.git Build:0.481,23 commit=95a0e2e9aa88 rm=libs/android-support-v4.jar extlibs=android/android-support-v4.jar Build:0.483,25 commit=00a434ba7 rm=libs/android-support-v4.jar extlibs=android/android-support-v4.jar prebuild=rm -rf libs/google-play-services_lib Build:0.5.0beta7,48 disable=beta and play-services commit=5140499c130ead23124a398b8cc8b1c2df4ccbbe prebuild=sed -i -e '/com.google.android.gms:play-services/d' build.gradle Auto Update Mode:None Update Check Mode:RepoManifest Current Version:0.5.0beta8 Current Version Code:50
Bump coveralls from 1.9.2 to 1.10.0
pytest==5.3.2 pytest-cov==2.8.1 numpy==1.18.0 ruamel.yaml==0.16.5 msgpack-python==0.5.6 tqdm==4.41.0 coverage==5.0.1 coveralls==1.9.2 pymongo==3.10.0 pycodestyle==2.5.0 mypy==0.761 pydocstyle==5.0.1 flake8==3.7.9 pylint==2.4.4
pytest==5.3.2 pytest-cov==2.8.1 numpy==1.18.0 ruamel.yaml==0.16.5 msgpack-python==0.5.6 tqdm==4.41.0 coverage==5.0.1 coveralls==1.10.0 pymongo==3.10.0 pycodestyle==2.5.0 mypy==0.761 pydocstyle==5.0.1 flake8==3.7.9 pylint==2.4.4
Update mock from 2.0.0 to 3.0.4
-r requirements.txt # For tests coverage==4.5.3 coveralls==1.7.0 flake8==3.7.7 freezegun==0.3.11 hypothesis==4.21.0 mock==2.0.0 pytest==4.4.1 pytest-cov==2.6.1 requests-mock==1.6.0 testfixtures==6.7.0 git+https://github.com/alphagov/digitalmarketplace-test-utils.git@2.3.0#egg=digitalmarketplace-test-utils==2.3.0 # For schema generation alchemyjsonschema==0.5.0
-r requirements.txt # For tests coverage==4.5.3 coveralls==1.7.0 flake8==3.7.7 freezegun==0.3.11 hypothesis==4.21.0 mock==3.0.4 pytest==4.4.1 pytest-cov==2.6.1 requests-mock==1.6.0 testfixtures==6.7.0 git+https://github.com/alphagov/digitalmarketplace-test-utils.git@2.3.0#egg=digitalmarketplace-test-utils==2.3.0 # For schema generation alchemyjsonschema==0.5.0
Update pillow from 4.1.0 to 4.1.1
alabaster==0.7.10 backports-abc==0.5 click==6.7 configparser==3.5.0 flake8==3.3.0 future==0.16.0 jupyter==1.0.0 Keras==2.0.3 matplotlib==2.0.0 mock==2.0.0 notebook==5.0.0 numpy==1.12.1 pandas==0.19.2 pandocfilters==1.4.1 pathlib2==2.2.1 pbr==3.0.0 pexpect==4.2.1 Pillow==4.1.0 protobuf==3.2.0 Pygments==2.2.0 python-dateutil==2.6.0 PyYAML==3.12 pyzmq==16.0.2 scipy==0.19.0 seaborn==0.7.1 Sphinx==1.5.5 stevedore==1.21.0 tensorflow==1.1.0 Theano==0.9.0 tornado==4.5.1
alabaster==0.7.10 backports-abc==0.5 click==6.7 configparser==3.5.0 flake8==3.3.0 future==0.16.0 jupyter==1.0.0 Keras==2.0.3 matplotlib==2.0.0 mock==2.0.0 notebook==5.0.0 numpy==1.12.1 pandas==0.19.2 pandocfilters==1.4.1 pathlib2==2.2.1 pbr==3.0.0 pexpect==4.2.1 Pillow==4.1.1 protobuf==3.2.0 Pygments==2.2.0 python-dateutil==2.6.0 PyYAML==3.12 pyzmq==16.0.2 scipy==0.19.0 seaborn==0.7.1 Sphinx==1.5.5 stevedore==1.21.0 tensorflow==1.1.0 Theano==0.9.0 tornado==4.5.1
Update wheel from 0.29.0 to 0.30.0
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.4.1 tox==2.8.2 coverage==4.4.1 Sphinx==1.6.3 cryptography==2.0.3 PyYAML==3.12 pytest==3.2.2 pyaudio==0.2.11
pip==9.0.1 bumpversion==0.5.3 wheel==0.30.0 watchdog==0.8.3 flake8==3.4.1 tox==2.8.2 coverage==4.4.1 Sphinx==1.6.3 cryptography==2.0.3 PyYAML==3.12 pytest==3.2.2 pyaudio==0.2.11
Update CV of DNS man to 0.8 (80)
Categories:Connectivity,System License:GPLv3 Web Site: Source Code:https://github.com/otakuchiyan/DNSman Issue Tracker:https://github.com/otakuchiyan/DNSman/issues Auto Name:DNS man Summary:Set DNS lookup server Description: Change the used DNS server for specific wifi networks. . Repo Type:git Repo:https://github.com/otakuchiyan/DNSman Build:0.4,40 commit=v0.4 subdir=app gradle=yes Build:0.5,50 disable=builds fails commit=0.5 subdir=app gradle=yes Build:0.7.1,71 commit=v0.7.1 subdir=app gradle=yes prebuild=pushd .. && \ sh depending_repos.sh && \ popd Build:0.7.2,72 commit=v0.7.2 subdir=app gradle=yes prebuild=cd .. && \ ./depending_repos.sh Auto Update Mode:None # Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:0.7.2 Current Version Code:72
Categories:Connectivity,System License:GPLv3 Web Site: Source Code:https://github.com/otakuchiyan/DNSman Issue Tracker:https://github.com/otakuchiyan/DNSman/issues Auto Name:DNS man Summary:Set DNS lookup server Description: Change the used DNS server for specific wifi networks. . Repo Type:git Repo:https://github.com/otakuchiyan/DNSman Build:0.4,40 commit=v0.4 subdir=app gradle=yes Build:0.5,50 disable=builds fails commit=0.5 subdir=app gradle=yes Build:0.7.1,71 commit=v0.7.1 subdir=app gradle=yes prebuild=pushd .. && \ sh depending_repos.sh && \ popd Build:0.7.2,72 commit=v0.7.2 subdir=app gradle=yes prebuild=cd .. && \ ./depending_repos.sh Auto Update Mode:None # Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:0.8 Current Version Code:80
Change licensing from Apache2.0 to MIT
Copyright 2016 Yelp 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, 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.
Copyright (c) 2016 Yelp Inc MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Update setuptools from 37.0.0 to 38.1.0
--requirement requirements.txt # Documentation Sphinx==1.6.5 sphinxcontrib-httpdomain==1.5.0 # Fix setuptools issues setuptools==37.0.0
--requirement requirements.txt # Documentation Sphinx==1.6.5 sphinxcontrib-httpdomain==1.5.0 # Fix setuptools issues setuptools==38.1.0
Update bug number in test expectations
// This file should almost always be empty. Normally Chromium test expectations // are found in // src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt // // Only add expectations here to temporarily suppress messages on the bots // until the changes can be landed upstream. BUG_LOISLO WIN RELEASE : http/tests/appcache/online-whitelist.html = TEXT // This test failed on mac because this line was removed by webkit // patch http://trac.webkit.org/changeset/73059 BUG22777 MAC : fast/overflow/hit-test-overflow-controls.html = IMAGE+TEXT // Crash between chromium r68249-r68258 BUG_VICTORW WIN MAC DEBUG : editing/pasteboard/drop-text-events.html = CRASH BUG_VICTORW WIN MAC DEBUG : editing/pasteboard/paste-text-events.html = CRASH
// This file should almost always be empty. Normally Chromium test expectations // are found in // src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt // // Only add expectations here to temporarily suppress messages on the bots // until the changes can be landed upstream. BUG_LOISLO WIN RELEASE : http/tests/appcache/online-whitelist.html = TEXT // This test failed on mac because this line was removed by webkit // patch http://trac.webkit.org/changeset/73059 BUG22777 MAC : fast/overflow/hit-test-overflow-controls.html = IMAGE+TEXT // Crash between chromium r68249-r68258 BUG65404 WIN MAC DEBUG : editing/pasteboard/drop-text-events.html = CRASH BUG65404 WIN MAC DEBUG : editing/pasteboard/paste-text-events.html = CRASH
Disable hardware tests for windows
add_executable(FilterDesignerTest filter_designer_test.c) target_link_libraries(FilterDesignerTest ad9361) add_test(NAME FilterDesignerTest COMMAND FilterDesignerTest WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) add_executable(GenerateRatesTest gen_rates_test.c) target_link_libraries(GenerateRatesTest ad9361) add_test(NAME GenerateRatesTest COMMAND GenerateRatesTest WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) add_executable(FilterDesignerHardwareTest filter_designer_hw.c) target_link_libraries(FilterDesignerHardwareTest ad9361 iio) add_test(NAME FilterDesignerHardwareTest COMMAND FilterDesignerHardwareTest WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
add_executable(FilterDesignerTest filter_designer_test.c) target_link_libraries(FilterDesignerTest ad9361) add_test(NAME FilterDesignerTest COMMAND FilterDesignerTest WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) add_executable(GenerateRatesTest gen_rates_test.c) target_link_libraries(GenerateRatesTest ad9361) add_test(NAME GenerateRatesTest COMMAND GenerateRatesTest WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) if (NOT WIN32) add_executable(FilterDesignerHardwareTest filter_designer_hw.c) target_link_libraries(FilterDesignerHardwareTest ad9361 iio) add_test(NAME FilterDesignerHardwareTest COMMAND FilterDesignerHardwareTest WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) endif()
Update Port Authority to 1.2.5 (8)
Categories:Security, License:GPLv3 Web Site: Source Code:https://github.com/aaronjwood/PortAuthority Issue Tracker:https://github.com/aaronjwood/PortAuthority/issues Donate:https://github.com/aaronjwood/PortAuthority/blob/HEAD/README Auto Name:Port Authority Summary:Port scanner Description: A handy systems and security-focused tool, Port Authority is a very fast port scanner. It also allows you to quickly discover hosts on your network and will display useful network information about your device and other hosts. . Repo Type:git Repo:https://github.com/aaronjwood/PortAuthority Build:1.2.2,5 commit=v1.2.2 subdir=app gradle=free prebuild=sed -i -e '/com.aaronjwood.portauthority.free/d' build.gradle Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:1.2.2 Current Version Code:5
Categories:Security, License:GPLv3 Web Site: Source Code:https://github.com/aaronjwood/PortAuthority Issue Tracker:https://github.com/aaronjwood/PortAuthority/issues Donate:https://github.com/aaronjwood/PortAuthority/blob/HEAD/README Auto Name:Port Authority Summary:Port scanner Description: A handy systems and security-focused tool, Port Authority is a very fast port scanner. It also allows you to quickly discover hosts on your network and will display useful network information about your device and other hosts. . Repo Type:git Repo:https://github.com/aaronjwood/PortAuthority Build:1.2.2,5 commit=v1.2.2 subdir=app gradle=free prebuild=sed -i -e '/com.aaronjwood.portauthority.free/d' build.gradle Build:1.2.5,8 commit=v1.2.5 subdir=app gradle=free prebuild=sed -i -e '/com.aaronjwood.portauthority.free/d' build.gradle Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:1.2.5 Current Version Code:8
Update pip from 9.0.1 to 9.0.2
-r common.txt pip==9.0.1 bumpversion==0.5.3 wheel==0.30.0 watchdog==0.8.3 flake8==3.5.0 coverage==4.5.1 Sphinx==1.7.1 cryptography==2.1.4
-r common.txt pip==9.0.2 bumpversion==0.5.3 wheel==0.30.0 watchdog==0.8.3 flake8==3.5.0 coverage==4.5.1 Sphinx==1.7.1 cryptography==2.1.4
Update pytest from 3.2.0 to 3.2.1
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.4.1 tox==2.7.0 coverage==4.4.1 Sphinx==1.6.3 cryptography==2.0.3 PyYAML==3.12 pytest==3.2.0 pytest-runner==2.11.1 requests>=2.1 PySocks>=1.5.8 pyOpenSSL>=0.14 selectors34>=1.1
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.4.1 tox==2.7.0 coverage==4.4.1 Sphinx==1.6.3 cryptography==2.0.3 PyYAML==3.12 pytest==3.2.1 pytest-runner==2.11.1 requests>=2.1 PySocks>=1.5.8 pyOpenSSL>=0.14 selectors34>=1.1
Update typed-ast from 1.2.0 to 1.3.0
mypy==0.660 pytest==4.1.1 pytest-cov==2.6.1 pytest-asyncio==0.10.0 pytest-monkeytype==1.0.1 jedi==0.13.2 coverage==4.5.2 flake8==3.6.0 typed-ast==1.2.0 rope==0.11.0
mypy==0.660 pytest==4.1.1 pytest-cov==2.6.1 pytest-asyncio==0.10.0 pytest-monkeytype==1.0.1 jedi==0.13.2 coverage==4.5.2 flake8==3.6.0 typed-ast==1.3.0 rope==0.11.0
Update pytest from 3.3.2 to 3.4.0
coverage==4.4.2 jedi==0.11.1 mypy==0.560 pylint==1.8.2 pytest==3.3.2 pytest-cov==2.5.1 sphinx==1.6.6 sphinx-rtd-theme==0.2.4 tox==2.9.1
coverage==4.4.2 jedi==0.11.1 mypy==0.560 pylint==1.8.2 pytest==3.4.0 pytest-cov==2.5.1 sphinx==1.6.6 sphinx-rtd-theme==0.2.4 tox==2.9.1