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"
)
# add the binary tree to the search path for include files
# so that we will find TutorialConfig.h
include_directories("${PROJECT_BINARY_DIR}")
# add the executable
add_executable(wbusd
src/wbusd.cpp src/CRC.cpp src/WayneBus.cpp)
| |
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 back to your home screen to
launch that one app while you are inside another one? Have you used a side
launcher and
* are frustrated because you have to do multiple gestures to launch the app?
* activate it accidentally by touching the activation zone and immediately launch the app that happens to be on that spot?
* do you miss the ability to define a folder structure in that launcher?
Then PaperLaunch is the perfect side launcher for you. Try it!
PaperLaunch is open source! You can find it on GitHub.
.
Repo Type:git
Repo:https://github.com/devmil/PaperLaunch.git
Build:1.0.6,6
commit=release_1.0.6
subdir=app
gradle=yes
Build:1.0.8,10
commit=release_1.0.8
subdir=app
gradle=yes
Build:1.0.9,11
commit=release_1.0.9
subdir=app
gradle=yes
Auto Update Mode:Version release_%v
Update Check Mode:Tags
Current Version:1.0.9
Current Version Code:11
| 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 back to your home screen to
launch that one app while you are inside another one? Have you used a side
launcher and
* are frustrated because you have to do multiple gestures to launch the app?
* activate it accidentally by touching the activation zone and immediately launch the app that happens to be on that spot?
* do you miss the ability to define a folder structure in that launcher?
Then PaperLaunch is the perfect side launcher for you. Try it!
PaperLaunch is open source! You can find it on GitHub.
.
Repo Type:git
Repo:https://github.com/devmil/PaperLaunch.git
Build:1.0.6,6
commit=release_1.0.6
subdir=app
gradle=yes
Build:1.0.8,10
commit=release_1.0.8
subdir=app
gradle=yes
Build:1.0.9,11
commit=release_1.0.9
subdir=app
gradle=yes
Build:1.0.10,12
commit=release_1.0.10
subdir=app
gradle=yes
Auto Update Mode:Version release_%v
Update Check Mode:Tags
Current Version:1.0.10
Current Version Code:12
|
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 way.
.
Repo Type:git
Repo:https://github.com/ligi/SCR.git
Build:0.7,7
commit=0.7
subdir=app
gradle=yes
prebuild=sed -i '/play_services/d' build.gradle && \
sed -i '/android-sdk-manager/d' build.gradle
Auto Update Mode:Version %v
Update Check Mode:Tags
Current Version:0.7
Current Version Code:7
| 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 way.
.
Repo Type:git
Repo:https://github.com/ligi/SCR.git
Build:0.7,7
commit=0.7
subdir=app
gradle=yes
prebuild=sed -i '/play_services/d' build.gradle && \
sed -i '/android-sdk-manager/d' build.gradle
Build:0.8,8
commit=0.8
subdir=app
gradle=yes
prebuild=sed -i '/play_services/d' build.gradle && \
sed -i '/android-sdk-manager/d' build.gradle
Auto Update Mode:Version %v
Update Check Mode:Tags
Current Version:0.8
Current Version Code:8
|
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()
if(UNIX AND NOT APPLE)
list(APPEND PROJECT_FILES
pmu.h
pmu_counter.h
pmu.cpp
pmu_counter.cpp)
endif()
source_group("\\" FILES ${PROJECT_FILES})
add_library(${PROJECT_NAME} STATIC ${PROJECT_FILES})
target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
| 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()
if(UNIX AND NOT APPLE)
list(APPEND PROJECT_FILES
pmu.h
pmu_counter.h
pmu.cpp
pmu_counter.cpp)
endif()
source_group("\\" FILES ${PROJECT_FILES})
add_library(${PROJECT_NAME} STATIC ${PROJECT_FILES})
target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
|
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.4.5
# Models
django-model-utils==3.1.2
# Images
Pillow==5.4.1
{% if cookiecutter.windows == 'y' -%}
# On Windows, you must download/install psycopg2 manually
# from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg
{% else %}
# Python-PostgreSQL Database Adapter
psycopg2==2.7.6.1
{%- endif %}
# Time zones support
pytz==2018.9
# Redis support
django-redis==4.10.0
redis>=2.10.5
# Your custom requirements go here
| {% 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.4.5
# Models
django-model-utils==3.1.2
# Images
Pillow==5.4.1
{% if cookiecutter.windows == 'y' -%}
# On Windows, you must download/install psycopg2 manually
# from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg
{% else %}
# Python-PostgreSQL Database Adapter
psycopg2==2.7.7
{%- endif %}
# Time zones support
pytz==2018.9
# Redis support
django-redis==4.10.0
redis>=2.10.5
# Your custom requirements go here
|
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 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.
#
# The :launchpad feature defines Sling's launchpad version
# Only a single artifact is allowed within this feature.
#
[feature name=:launchpad]
org.apache.sling/org.apache.sling.launchpad.base/5.6.4-2.6.18
| #
# 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 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.
#
# The :launchpad feature defines Sling's launchpad version
# Only a single artifact is allowed within this feature.
#
[feature name=:launchpad]
org.apache.sling/org.apache.sling.launchpad.base/5.6.6-2.6.20
|
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
makemehapi
mocha
node-inspector
nodemon
npm
phantomjs
planetproto
promise-it-wont-hurt
resume-cli
shader-school
stream-adventure
tmi
uglify-js
webgl-workshop
ungit
hyperlink
eslint
plato
webpack
react-native-cli
parker
specificity-graph
jest-cli
| 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
makemehapi
mocha
node-inspector
nodemon
npm
phantomjs
planetproto
promise-it-wont-hurt
resume-cli
shader-school
stream-adventure
tmi
uglify-js
webgl-workshop
ungit
hyperlink
eslint
plato
webpack
react-native-cli
parker
specificity-graph
jest-cli
xto6
|
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})
foreach(config ${CMAKE_CONFIGURATION_TYPES})
string(TOUPPER ${config} config)
set_target_properties(_pybinding PROPERTIES
LIBRARY_OUTPUT_DIRECTORY_${config} ${CMAKE_CURRENT_LIST_DIR})
endforeach()
endif()
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build" FORCE)
endif()
if(EXISTS ${CMAKE_SOURCE_DIR}/docs)
add_subdirectory(docs EXCLUDE_FROM_ALL)
endif()
| 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})
foreach(config ${CMAKE_CONFIGURATION_TYPES})
string(TOUPPER ${config} config)
set_target_properties(_pybinding PROPERTIES
LIBRARY_OUTPUT_DIRECTORY_${config} ${CMAKE_CURRENT_LIST_DIR})
endforeach()
endif()
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build" FORCE)
endif()
if(EXISTS ${CMAKE_SOURCE_DIR}/docs)
add_subdirectory(docs EXCLUDE_FROM_ALL)
endif()
add_custom_target(pytest COMMAND py.test \${ARGS} WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
|
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
psycopg2-binary==2.8.6 # pyup: < 2.9
python-dateutil==2.8.2
python-magic==0.4.24
rules==3.0
XlsxWriter==3.0.1
| 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
psycopg2-binary==2.8.6 # pyup: < 2.9
python-dateutil==2.8.2
python-magic==0.4.24
rules==3.0
XlsxWriter==3.0.1
|
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 will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# Set projectname (must be done AFTER setting configurationtypes)
project(EtrinumProjectServer)
# CMake policies (can not be handled elsewhere)
cmake_minimum_required(VERSION 2.8)
cmake_policy(SET CMP0005 OLD)
# add this options before PROJECT keyword
set(CMAKE_DISABLE_SOURCE_CHANGES ON)
set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
# set macro-directory
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/macros")
# build in Release-mode by default if not explicitly set
if( NOT CMAKE_BUILD_TYPE )
set(CMAKE_BUILD_TYPE "Release")
endif()
option(CMAKE_USE_OPENSSL "Use OpenSSL code. Experimental" ON)
option(OPENSSL_MT "Use OpenSSL MT libs instead of MD" ON)
option(OPENSSL_STATIC "Use OpenSSL static libs instead of dynamic" ON)
if(CMAKE_USE_OPENSSL)
find_package(OpenSSL REQUIRED)
endif(CMAKE_USE_OPENSSL)
# must be changed in *NIX systems
if(MSVC)
set(CMAKE_CXX_FLAGS_MINSIZEREL_INIT "/MT /O1 /Ob1 /D NDEBUG")
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT "/MT /Zi /O2 /Ob1 /D NDEBUG")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd")
endif()
# add dependencies
add_subdirectory(dep)
# add core sources
add_subdirectory(src)
| |
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
PyYAML==6.0
repackage==0.7.3
six==1.16.0
termcolor==2.1.0
tornado==6.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
PyYAML==6.0
repackage==0.7.3
six==1.16.0
termcolor==2.1.1
tornado==6.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:
dask[dataframe]==0.13.0
partd==0.3.7
locket==0.2.0
cloudpickle==0.2.1
itsdangerous==0.24
flask==0.10.1
flask-cors==2.1.2
Jinja2==2.9.6
MarkupSafe==0.23
Werkzeug==0.10.4
psutil==4.3.0
-e git://github.com/quantopian/blaze.git@310605323449e375e81a0cf04011c507cd126ef6#egg=blaze-dev
| -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:
dask[dataframe]==0.13.0
partd==0.3.7
locket==0.2.0
cloudpickle==0.2.1
itsdangerous==0.24
flask==0.12.4
flask-cors==2.1.3
Jinja2==2.9.6
MarkupSafe==0.23
Werkzeug==0.10.4
psutil==4.3.0
-e git://github.com/quantopian/blaze.git@310605323449e375e81a0cf04011c507cd126ef6#egg=blaze-dev
|
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
python-dateutil==2.5.3
python-whois==0.6.1
pytz==2016.4
requests==2.10.0
six==1.10.0
SQLAlchemy==1.0.13
Werkzeug==0.11.10
WTForms==2.1
|
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==6.2.0
pyasn1==0.2.2
pyasn1-modules==0.0.8
pyparsing==2.1.10
python-dateutil==2.6.0
pytz==2016.10
requests==2.20.0
rsa==3.4.2
scikit-image==0.12.3
six==1.10.0
standardjson==0.3.1
toolz==0.8.2
uritemplate==3.0.0
#changed for production
#opencv-python==3.2.0
opencv-python
#numpy==1.12.0+mkl
numpy==1.12.0
#requirements for production
psycopg2
gunicorn
dj-database-url
whitenoise
django-s3direct
| 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==6.2.0
pyasn1==0.2.2
pyasn1-modules==0.0.8
pyparsing==2.1.10
python-dateutil==2.6.0
pytz==2016.10
requests==2.20.0
rsa==3.4.2
scikit-image==0.12.3
six==1.10.0
standardjson==0.3.1
toolz==0.8.2
uritemplate==3.0.0
#changed for production
#opencv-python==3.2.0
opencv-python
#numpy==1.12.0+mkl
numpy==1.12.0
#requirements for production
psycopg2
gunicorn
dj-database-url
whitenoise
django-s3direct
|
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.1.9
premailer==3.2.0
python-dateutil==2.7.3
Flask-Admin==1.5.1
Flask-Migrate==2.1.1
| 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.1.9
premailer==3.2.0
python-dateutil==2.7.3
Flask-Admin==1.5.1
Flask-Migrate==2.2.0
|
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 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.
| |
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.solitaire]]"
for devices with few hardware buttons.
Changes against the original include:
* Add Deal menu entry
* Avoid card loss if spider deal interrupted
* Add README and COPYING menu displays
* Replace application icon
The changes enable card dealing and playability in spider. The original card
graphics, which can scale to higher resolutions, have been retained.
.
Repo Type:git
Repo:git://git.code.sf.net/p/solitairecg/code
Build:1.14,452
commit=SolitaireCG-1.14
Auto Update Mode:Version SolitaireCG-%v
Update Check Mode:Tags
Current Version:1.14
Current Version Code:452
| 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.solitaire]]"
for devices with few hardware buttons.
Changes against the original include:
* Add Deal menu entry
* Avoid card loss if spider deal interrupted
* Add README and COPYING menu displays
* Replace application icon
The changes enable card dealing and playability in spider. The original card
graphics, which can scale to higher resolutions, have been retained.
.
Repo Type:git
Repo:git://git.code.sf.net/p/solitairecg/code
Build:1.14,452
commit=SolitaireCG-1.14
Build:1.15,453
commit=SolitaireCG-1.15
Auto Update Mode:Version SolitaireCG-%v
Update Check Mode:Tags
Current Version:1.15
Current Version Code:453
|
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
yara-python==3.4.0.0
| 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.1
yara-python==3.4.0.0
|
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_subdirectory(src)
add_subdirectory(test)
|
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 76: "This is an"
RenderBlock (anonymous) at (0,169) size 800x19
RenderText {#text} at (0,0) size 72x19
text run at (0,0) width 72: "element."
layer at (250,19) size 300x150
RenderReplaced {iframe} at (250,19) size 300x150
| 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 76: "This is an"
RenderBlock (anonymous) at (0,169) size 800x19
RenderText {#text} at (0,0) size 72x19
text run at (0,0) width 72: "element."
layer at (250,19) size 300x150
RenderReplaced {iframe} at (250,19) size 300x150
|
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==0.20.1
blaze==0.10.1
bottleneck==1.2.1
dill==0.2.6
joblib==0.11
| 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==0.20.1
blaze==0.10.1
bottleneck==1.2.1
dill==0.2.6
joblib==0.11
|
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.16
coverage>=4.4.2
django-filter>=2.0.0,<2.1
drf-yasg==1.15.0
django-cors-headers==2.2.0
django-extensions==2.0.6
cryptography==2.3.1
django-reversion==2.0.13
openpyxl==2.5.11
lxml==4.2.5
GDAL>=2.4,<3.0
deepdiff>=4
urllib3>=1.24,<1.25
djangorestframework-csv==2.1.0
| 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
coverage>=4.4.2
django-filter>=2.0.0,<2.1
drf-yasg==1.15.0
django-cors-headers==2.2.0
django-extensions==2.0.6
cryptography==2.3.1
django-reversion==2.0.13
openpyxl==2.5.11
lxml==4.2.5
GDAL>=2.4,<3.0
deepdiff>=4
urllib3>=1.24,<1.25
djangorestframework-csv==2.1.0
|
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)
# We have unit test projects via googletest, they're added in the places where they are defined
enable_testing()
# Recurse through source directories
include_directories(
contrib
)
add_subdirectory(contrib)
add_subdirectory(src)
# Now we can generate the version and install stuff
generate_version()
combined_installer(
VENDOR "Leap Motion"
CONTACT "cmercenary@gmail.com"
)
| 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)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
# We have unit test projects via googletest, they're added in the places where they are defined
enable_testing()
# Recurse through source directories
include_directories(
contrib
)
add_subdirectory(contrib)
add_subdirectory(src)
# Now we can generate the version and install stuff
generate_version()
combined_installer(
VENDOR "Leap Motion"
CONTACT "cmercenary@gmail.com"
)
|
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_STATE': 'CA',
'ADDRESS_HOME_ZIP': '94043',
'ADDRESS_HOME_COUNTRY': 'United States',
'PHONE_HOME_WHOLE_NUMBER': '+001 (408) 871-4567'},
{'NAME_FIRST': 'Jane',
'NAME_LAST': 'Doe',
'ADDRESS_HOME_LINE1': '1523 Garcia St',
'ADDRESS_HOME_CITY': 'Mountain View',
'ADDRESS_HOME_STATE': 'CA',
'ADDRESS_HOME_ZIP': '94043',
'ADDRESS_HOME_COUNTRY': 'Germany',
'PHONE_HOME_WHOLE_NUMBER': '+49 40-80-81-79-000'}
]
| # 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_STATE': 'CA',
'ADDRESS_HOME_ZIP': '94043',
'ADDRESS_HOME_COUNTRY': 'United States',
'PHONE_HOME_WHOLE_NUMBER': '+1 (408) 871-4567'},
{'NAME_FIRST': 'Jane',
'NAME_LAST': 'Doe',
'ADDRESS_HOME_LINE1': '1523 Garcia St',
'ADDRESS_HOME_CITY': 'Mountain View',
'ADDRESS_HOME_STATE': 'CA',
'ADDRESS_HOME_ZIP': '94043',
'ADDRESS_HOME_COUNTRY': 'Germany',
'PHONE_HOME_WHOLE_NUMBER': '+49 40-80-81-79-000'}
]
|
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 determine what the address range is
of a subnet.
.
Repo Type:git
Repo:https://github.com/rmceoin/cidrcalculator.git
Build:1.13,115
commit=31
target=android-8
Build:1.14,116
disable=No source available
commit=unknown - see disabled
Build:1.16,118
commit=32
target=android-11
Build:1.17,119
commit=34
target=android-15
Auto Update Mode:None
Update Check Mode:RepoManifest
Current Version:1.17
Current Version Code:119
| 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 determine what the address range is
of a subnet.
.
Repo Type:git
Repo:https://github.com/rmceoin/cidrcalculator.git
Build:1.13,115
commit=31
target=android-8
Build:1.14,116
disable=No source available
commit=unknown - see disabled
Build:1.16,118
commit=32
target=android-11
Build:1.17,119
commit=34
target=android-15
Auto Update Mode:None
Update Check Mode:RepoManifest
Current Version:1.20
Current Version Code:125
|
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).
Examples
--------
> var v = {{alias}}( 0.0 )
0.0
> v = {{alias}}( 0.9 )
~1.472
> v = {{alias}}( 1.0 )
+infinity
> v = {{alias}}( -1.0 )
-infinity
> v = {{alias}}( NaN )
NaN
See Also
--------
|
{{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 )
0.0
> y = {{alias}}( 0.9 )
~1.472
> y = {{alias}}( 1.0 )
+infinity
> y = {{alias}}( -1.0 )
-infinity
> y = {{alias}}( NaN )
NaN
See Also
--------
|
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.TestMOnDifferentLayouts
# See http://crbug.com/30394.
PrefsControllerTest.GetPrefsViewForPage
PrefsControllerTest.GetToolbarItemForPage
PrefsControllerTest.ShowAndClose
PrefsControllerTest.SwitchToPage
| # 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 memcheck test.
# See http://crbug.com/30393.
NSMenuItemAdditionsTest.TestMOnDifferentLayouts
# See http://crbug.com/30394.
PrefsControllerTest.GetPrefsViewForPage
PrefsControllerTest.GetToolbarItemForPage
PrefsControllerTest.ShowAndClose
PrefsControllerTest.SwitchToPage
|
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==0.4.8
pyasn1-modules==0.2.8
python-slugify==4.0.1
pytube3==9.6.4
pytz==2020.5
requests==2.25.1
requests-oauthlib==1.3.0
rsa==4.7
sitemap-python==0.2.0
six==1.15.0
text-unidecode==1.3
typing-extensions==3.7.4.3
uritemplate==3.0.1
urllib3==1.26.3
| 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==0.4.8
pyasn1-modules==0.2.8
python-slugify==4.0.1
pytube3==9.6.4
pytz==2020.5
requests==2.25.1
requests-oauthlib==1.3.0
rsa==4.7
sitemap-python==0.2.0
six==1.15.0
text-unidecode==1.3
typing-extensions==3.7.4.3
uritemplate==3.0.1
urllib3==1.26.3
|
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 depends on the WebGL extension.
For this reason, you need to reference both `IntelliFactory.WebSharper.GlMatrix`
and `IntelliFactory.WebSharper.WebGL`.
After adding the reference to the project all the classes can be found
under the `IntelliFactory.WebSharper.GlMatrix` module.
[glmatrix-home][http://glmatrix.googlecode.com] | % 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 depends on the WebGL extension.
For this reason, you need to reference both `IntelliFactory.WebSharper.GlMatrix`
and `IntelliFactory.WebSharper.WebGL`.
After adding the reference to the project all the classes can be found
under the `IntelliFactory.WebSharper.GlMatrix` module.
[glmatrix-home][http://glmatrix.googlecode.com] |
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-dateutil==2.2
pytz==2013.9
requests==2.2.1
requests-futures==0.9.4
s3cmd==1.0.1
simplejson==3.3.3
six==1.5.2
urllib3==1.7.1
virtualenv==1.11.4
wsgiref==0.1.2
| 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-dateutil==2.2
pytz==2013.9
requests==2.2.1
requests-futures==0.9.4
s3cmd==1.0.1
simplejson==3.3.3
six==1.5.2
urllib3==1.7.1
virtualenv==1.11.4
wsgiref==0.1.2
kitnirc==0.2.2p1
netaddr==0.7.11
pygeoip==0.3.1
|
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 # Markdown formatting
Pygments==2.12.0 # Syntax highlighting support
# Monitoring/tracking/logging
blinker==1.5 # Dependency of rollbar
rollbar==0.16.3 # rollbar.com error logging
varsnap==1.5.2 # Test discovery
| # 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 # Markdown formatting
Pygments==2.13.0 # Syntax highlighting support
# Monitoring/tracking/logging
blinker==1.5 # Dependency of rollbar
rollbar==0.16.3 # rollbar.com error logging
varsnap==1.5.2 # Test discovery
|
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 and easy-to-use application to manage personal finances, bank accounts,
family budget, and so on. It's main goal is to add a mobile implementation for
an application we love to use on our Desktop machines.
Features:
* Management of single transactions
* Account, payee, category, currency management
* Storage card Import/Export
* Dropbox synchronization
* Security, application lock/unlock
* Repeating transactions
* Charts
* Supported languages: English, Italian, Portoguese, Spanish and Russian
.
Repo Type:git
Repo:https://github.com/moneymanagerex/android-money-manager-ex
Build:2.15.2,687
disable=third party maven repo, jar
commit=2.15.2
gradle=yes
Auto Update Mode:None
Update Check Mode:Tags
Current Version:2.19.0
Current Version Code:716
| 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 and easy-to-use application to manage personal finances, bank accounts,
family budget, and so on. It's main goal is to add a mobile implementation for
an application we love to use on our Desktop machines.
Features:
* Management of single transactions
* Account, payee, category, currency management
* Storage card Import/Export
* Dropbox synchronization
* Security, application lock/unlock
* Repeating transactions
* Charts
* Supported languages: English, Italian, Portoguese, Spanish and Russian
.
Repo Type:git
Repo:https://github.com/moneymanagerex/android-money-manager-ex
Build:2.15.2,687
disable=third party maven repo, jar
commit=2.15.2
gradle=yes
Auto Update Mode:None
Update Check Mode:Tags
Current Version:2.19.2
Current Version Code:718
|
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/sbin/mdata-delete
/usr/sbin/mdata-list
/usr/sbin/plockstat
/usr/sbin/zfs | /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-delete
/usr/sbin/mdata-list
/usr/sbin/plockstat
/usr/sbin/zfs |
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_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -Wall -D__FILENAME__='\"$(subst ${CMAKE_SOURCE_DIR}/,,$(abspath $<))\"'")
aux_source_directory(src/ PROJECT_SRC)
add_executable(happyntrain main.cpp ${PROJECT_SRC})
| 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(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -Wall -D__FILENAME__='\"$(subst ${CMAKE_SOURCE_DIR}/,,$(abspath $<))\"'")
aux_source_directory(src/ PROJECT_SRC)
add_executable(happyntrain main.cpp ${PROJECT_SRC})
|
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
public void @test.method.name@(ITestContext testContext) {
executeTest(testContext);
}
} | 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 AbstractTestNGCitrusTest {
\@CitrusXmlTest(names = "@test.name@")
public void @test.method.name@() {}
} |
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
Protected true
SameNameSibs true
PropertyDef
Name jcr:created
RequiredType DATE
ValueConstraints []
DefaultValues null
AutoCreate true
Mandatory true
OnParentVersion ABORT
Protected true
Multiple false
PropertyDef
Name jcr:predecessors
RequiredType REFERENCE
ValueConstraints [nt:version]
DefaultValues null
AutoCreate false
Mandatory false
OnParentVersion ABORT
Protected true
Multiple true
PropertyDef
Name jcr:successors
RequiredType REFERENCE
ValueConstraints [nt:version]
DefaultValues null
AutoCreate false
Mandatory false
OnParentVersion ABORT
Protected true
Multiple true
| 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
SameNameSibs true
PropertyDef
Name jcr:created
RequiredType DATE
ValueConstraints []
DefaultValues null
AutoCreate true
Mandatory true
OnParentVersion ABORT
Protected true
Multiple false
PropertyDef
Name jcr:predecessors
RequiredType REFERENCE
ValueConstraints [nt:version]
DefaultValues null
AutoCreate false
Mandatory false
OnParentVersion ABORT
Protected true
Multiple true
PropertyDef
Name jcr:successors
RequiredType REFERENCE
ValueConstraints [nt:version]
DefaultValues null
AutoCreate false
Mandatory false
OnParentVersion ABORT
Protected true
Multiple true
|
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[elasticsearch]==3.1.1
elasticsearch==5.5.3
django-widget-tweaks==1.4.8
# YAML Loading
PyYAML==6.0
# System tools
tqdm==4.62.3
# XML Parsing
lxml==4.6.3
cssselect==1.1.0
# I18n
django-modeltranslation==0.17.3
uniseg==0.7.1.post2
python-bidi==0.4.2
django-bidi-utils==1.0
# Plugging it in
requests==2.26.0
# CORS
django-cors-headers==3.10.1 | # 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[elasticsearch]==3.1.1
elasticsearch==5.5.3
django-widget-tweaks==1.4.8
# YAML Loading
PyYAML==6.0
# System tools
tqdm==4.62.3
# XML Parsing
lxml==4.6.3
cssselect==1.1.0
# I18n
django-modeltranslation==0.17.3
uniseg==0.7.1.post2
python-bidi==0.4.2
django-bidi-utils==1.0
# Plugging it in
requests==2.26.0
# CORS
django-cors-headers==3.10.1 |
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
django-allauth==0.37.1
django-autoslug==1.9.3
django-background-tasks==1.1.13
django-ckeditor==5.6.1
django-cloudflare-push==0.2.0
django-filter==2.0.0
django-sites==0.10
django-widget-tweaks==1.4.2
djangorestframework==3.8.2
easy-thumbnails==2.5
html5lib==1.0.1
jsonfield==2.0.2
python-dateutil==2.7.3
python-magic==0.4.15
raven==6.9.0
rules==2.0
XlsxWriter==1.0.5
| 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
django-allauth==0.37.1
django-autoslug==1.9.3
django-background-tasks==1.1.13
django-ckeditor==5.6.1
django-cloudflare-push==0.2.0
django-filter==2.0.0
django-sites==0.10
django-widget-tweaks==1.4.2
djangorestframework==3.8.2
easy-thumbnails==2.5
html5lib==1.0.1
jsonfield==2.0.2
python-dateutil==2.7.3
python-magic==0.4.15
raven==6.9.0
rules==2.0
XlsxWriter==1.1.0
|
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(GLOBAL PROPERTY LLVM_LIB_DEPS_${lib} ${llvm_lib_deps})")
endforeach(lib)
configure_file(
LLVMConfig.cmake.in
${llvm_cmake_builddir}/LLVMConfig.cmake
@ONLY)
configure_file(
LLVMConfigVersion.cmake.in
${llvm_cmake_builddir}/LLVMConfigVersion.cmake
@ONLY)
install(FILES
${llvm_cmake_builddir}/LLVMConfig.cmake
${llvm_cmake_builddir}/LLVMConfigVersion.cmake
LLVM-Config.cmake
DESTINATION share/llvm/cmake)
install(DIRECTORY .
DESTINATION share/llvm/cmake
FILES_MATCHING PATTERN *.cmake
PATTERN .svn EXCLUDE
PATTERN LLVMConfig.cmake EXCLUDE
PATTERN LLVMConfigVersion.cmake EXCLUDE
PATTERN LLVM-Config.cmake EXCLUDE
PATTERN FindBison.cmake EXCLUDE
PATTERN GetTargetTriple.cmake EXCLUDE
PATTERN VersionFromVCS.cmake EXCLUDE
PATTERN CheckAtomic.cmake EXCLUDE)
| 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(GLOBAL PROPERTY LLVM_LIB_DEPS_${lib} ${llvm_lib_deps})")
endforeach(lib)
configure_file(
LLVMConfig.cmake.in
${llvm_cmake_builddir}/LLVMConfig.cmake
@ONLY)
configure_file(
LLVMConfigVersion.cmake.in
${llvm_cmake_builddir}/LLVMConfigVersion.cmake
@ONLY)
install(FILES
${llvm_cmake_builddir}/LLVMConfig.cmake
${llvm_cmake_builddir}/LLVMConfigVersion.cmake
LLVM-Config.cmake
DESTINATION share/llvm/cmake)
install(DIRECTORY .
DESTINATION share/llvm/cmake
FILES_MATCHING PATTERN *.cmake
PATTERN .svn EXCLUDE
PATTERN LLVMConfig.cmake EXCLUDE
PATTERN LLVMConfigVersion.cmake EXCLUDE
PATTERN LLVM-Config.cmake EXCLUDE
PATTERN GetTargetTriple.cmake EXCLUDE
PATTERN VersionFromVCS.cmake EXCLUDE
PATTERN CheckAtomic.cmake EXCLUDE)
|
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_QUIET)
# Remove final \n of the variable PYTHON_DISTLIB
STRING(REPLACE "\n" "" PYTHON_DISTLIB "${PYTHON_DISTLIB}")
# 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_BINDING ${CMAKE_CURRENT_BINARY_DIR}/rbdyn.cpp)
# generate python binding code
add_custom_command (
OUTPUT ${OUTPUT_BINDING}
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/generate.py ${OUTPUT_BINDING}
DEPENDS generate.py
)
# build the library
set(SOURCES ${OUTPUT_BINDING})
include_directories(.)
include_directories(../../src)
include_directories(${PYTHON_INCLUDE_DIRS})
add_library(_rbdyn SHARED ${SOURCES})
PKG_CONFIG_USE_DEPENDENCY(_rbdyn SpaceVecAlg)
target_link_libraries(_rbdyn RBDyn)
set_target_properties(_rbdyn PROPERTIES PREFIX "")
# install rules
set(INSTALL_PATH "${PYTHON_DISTLIB}/rbdyn/")
install(TARGETS _rbdyn DESTINATION ${INSTALL_PATH})
install(FILES __init__.py DESTINATION ${INSTALL_PATH})
| 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_BINDING ${CMAKE_CURRENT_BINARY_DIR}/rbdyn.cpp)
# Generate Python binding code
ADD_CUSTOM_COMMAND (
OUTPUT ${OUTPUT_BINDING}
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/generate.py ${OUTPUT_BINDING}
DEPENDS generate.py
)
# Build the library
SET(SOURCES ${OUTPUT_BINDING})
INCLUDE_DIRECTORIES(SYSTEM ${PYTHON_INCLUDE_PATH})
INCLUDE_DIRECTORIES(.)
INCLUDE_DIRECTORIES(../../src)
ADD_LIBRARY(_rbdyn SHARED ${SOURCES})
PKG_CONFIG_USE_DEPENDENCY(_rbdyn SpaceVecAlg)
TARGET_LINK_LIBRARIES(_rbdyn RBDyn)
SET_TARGET_PROPERTIES(_rbdyn PROPERTIES PREFIX "")
# Install rules
INSTALL(TARGETS _rbdyn DESTINATION "${PYTHON_SITELIB}/rbdyn")
PYTHON_INSTALL_BUILD(rbdyn __init__.py "${PYTHON_SITELIB}")
|
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}/cmake deps/protobuf)
set(protobuf_BUILD_TESTS OFF CACHE BOOL "Build protobuf tests")
set(protobuf_WITH_ZLIB OFF CACHE BOOL "Build protobuf with zlib.")
set(CMAKE_EXE_LINKER_FLAGS "-static-libstdc++")
add_executable(grpc_node_plugin
src/node_generator.cc
src/node_plugin.cc
)
if (MSVC)
add_definitions(/MTd)
endif (MSVC)
target_include_directories(grpc_node_plugin
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src
PRIVATE ${PROTOBUF_ROOT_DIR}/include
)
target_link_libraries(grpc_node_plugin
libprotoc
libprotobuf
) | 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}/cmake deps/protobuf)
set(protobuf_BUILD_TESTS OFF CACHE BOOL "Build protobuf tests")
set(protobuf_WITH_ZLIB OFF CACHE BOOL "Build protobuf with zlib.")
set(CMAKE_EXE_LINKER_FLAGS "-static-libstdc++")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-stack-protector")
add_executable(grpc_node_plugin
src/node_generator.cc
src/node_plugin.cc
)
if (MSVC)
add_definitions(/MTd)
endif (MSVC)
target_include_directories(grpc_node_plugin
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src
PRIVATE ${PROTOBUF_ROOT_DIR}/include
)
target_link_libraries(grpc_node_plugin
libprotoc
libprotobuf
) |
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_libraries(libs_RPCServerIOHTTP
libs_RPCServer
)
| 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_libraries(libs_RPCServerIOHTTP
libs_RPCServer
libs_mjson
)
|
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
django-storages-redux==1.3.2
Collectfast==0.2.3
# Mailgun Support
# ---------------
django-mailgun==0.9.1
raven==5.23.0
| # 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
django-storages-redux==1.3.2
Collectfast==0.2.3
# Mailgun Support
# ---------------
django-mailgun==0.9.1
raven==5.23.0
|
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. You can send an unlimited amount of messages, documents of any
type (.doc, .zip, .pdf, etc.), voice memos, images and videos.
.
Repo Type:git
Repo:https://github.com/actorapp/actor-android-open
Build:1.5.3,1001
disable=Could not find com.google.android.gms:play-services-maps:8.1.0
commit=v1.5.3
gradle=yes
Auto Update Mode:None
Update Check Mode:Tags
Current Version:1.5.3
Current Version Code:1001
| 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. You can send an unlimited amount of messages, documents of any
type (.doc, .zip, .pdf, etc.), voice memos, images and videos.
.
Repo Type:git
Repo:https://github.com/actorapp/actor-android-open
Build:1.5.3,1001
disable=Could not find com.google.android.gms:play-services-maps:8.1.0
commit=v1.5.3
gradle=yes
Auto Update Mode:None
Update Check Mode:Tags
Current Version:1.5.5
Current Version Code:1002
|
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
fixtures>=3.0.0 # Apache-2.0/BSD
requests-mock>=1.0 # Apache-2.0
mock>=2.0 # BSD
mox3>=0.7.0 # Apache-2.0
oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0
oslotest>=1.10.0 # Apache-2.0
sphinx!=1.3b1,<1.3,>=1.2.1 # BSD
testrepository>=0.0.18 # Apache-2.0/BSD
testscenarios>=0.4 # Apache-2.0/BSD
testtools>=1.4.0 # MIT
reno>=1.8.0 # Apache2
| # 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
fixtures>=3.0.0 # Apache-2.0/BSD
requests-mock>=1.0 # Apache-2.0
mock>=2.0 # BSD
oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0
oslotest>=1.10.0 # Apache-2.0
sphinx!=1.3b1,<1.3,>=1.2.1 # BSD
testrepository>=0.0.18 # Apache-2.0/BSD
testscenarios>=0.4 # Apache-2.0/BSD
testtools>=1.4.0 # MIT
reno>=1.8.0 # Apache2
|
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, 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.
#
add_gapid_test(vkCreateInstance_NullApp_test
SOURCES null_create_info.cpp
LIBS
vulkan_wrapper
)
add_gapid_test(vkCreateInstance_NonNullApp_test
SOURCES non_null_create_info.cpp
LIBS
vulkan_wrapper
)
add_gapid_test(vkCreateInstance_Multiple_test
SOURCES enumerate_multiple.cpp
LIBS
vulkan_wrapper
)
| # 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, 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.
#
add_gapid_test(vkCreateInstance_NullApp_test
SOURCES null_create_info.cpp
LIBS
vulkan_wrapper
)
add_gapid_test(vkCreateInstance_NonNullApp_test
SOURCES non_null_create_info.cpp
LIBS
vulkan_wrapper
)
|
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.StringLiteralLongUnicodeEscapesString.TextFormatOutput
Recommended.Proto3.TextFormatInput.StringLiteralShortUnicodeEscapeBytes.ProtobufOutput
Recommended.Proto3.TextFormatInput.StringLiteralShortUnicodeEscapeBytes.TextFormatOutput
Recommended.Proto3.TextFormatInput.StringLiteralShortUnicodeEscapeString.ProtobufOutput
Recommended.Proto3.TextFormatInput.StringLiteralShortUnicodeEscapeString.TextFormatOutput
Required.Proto3.TextFormatInput.StringLiteralIncludesLFBytes
Required.Proto3.TextFormatInput.StringLiteralIncludesLFString
|
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}" STREQUAL "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
endif()
set(CMAKE_MODULE_PATH
${CMAKE_MODULE_PATH}
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules/")
option(shared "build bonefish as a shared library" OFF)
option(asio_source "include Boost.Asio implementation (src.hpp) in library" ON)
if(shared)
set(Boost_USE_STATIC_LIBS OFF)
set(Msgpack_USE_STATIC_LIBS OFF)
add_definitions(-DBOOST_ALL_DYN_LINK)
else()
set(Boost_USE_STATIC_LIBS ON)
set(Msgpack_USE_STATIC_LIBS ON)
add_definitions(-DBOOST_ASIO_SEPARATE_COMPILATION)
endif()
link_directories(${CMAKE_INSTALL_PREFIX}/lib)
add_subdirectory(examples)
add_subdirectory(src)
add_subdirectory(bin)
add_subdirectory(test)
| 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-diagnostics ${CMAKE_CXX_FLAGS}")
endif()
endif()
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
endif()
set(CMAKE_MODULE_PATH
${CMAKE_MODULE_PATH}
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules/")
option(shared "build bonefish as a shared library" OFF)
option(asio_source "include Boost.Asio implementation (src.hpp) in library" ON)
if(shared)
set(Boost_USE_STATIC_LIBS OFF)
set(Msgpack_USE_STATIC_LIBS OFF)
add_definitions(-DBOOST_ALL_DYN_LINK)
else()
set(Boost_USE_STATIC_LIBS ON)
set(Msgpack_USE_STATIC_LIBS ON)
add_definitions(-DBOOST_ASIO_SEPARATE_COMPILATION)
endif()
link_directories(${CMAKE_INSTALL_PREFIX}/lib)
add_subdirectory(examples)
add_subdirectory(src)
add_subdirectory(bin)
add_subdirectory(test)
|
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)
find_package(LibXml2 REQUIRED)
include(${QT_USE_FILE})
include_directories(${GSTREAMER_INCLUDE_DIR} ${GLIB2_INCLUDE_DIR} ${LIBXML2_INCLUDE_DIR})
if (CMAKE_COMPILER_IS_GNUCXX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-check-new -fno-common")
endif (CMAKE_COMPILER_IS_GNUCXX)
add_subdirectory(src)
add_subdirectory(tests)
#add_subdirectory(examples)
| 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)
find_package(GObject REQUIRED)
find_package(LibXml2 REQUIRED)
include(${QT_USE_FILE})
include_directories(${GSTREAMER_INCLUDE_DIR} ${GLIB2_INCLUDE_DIR}
${LIBXML2_INCLUDE_DIR} ${Boost_INCLUDE_DIRS})
if (CMAKE_COMPILER_IS_GNUCXX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -fno-check-new -fno-common")
endif (CMAKE_COMPILER_IS_GNUCXX)
add_subdirectory(src)
add_subdirectory(tests)
#add_subdirectory(examples)
|
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.4.4
# Models
django-model-utils==3.0.0
# Images
Pillow==4.2.1
{% if cookiecutter.windows == 'y' -%}
# On Windows, you must download/install psycopg2 manually
# from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg
{% else %}
# Python-PostgreSQL Database Adapter
psycopg2==2.7.3.1
{%- endif %}
# Time zones support
pytz==2017.2
# Redis support
django-redis==4.8.0
redis>=2.10.5
# Your custom requirements go here
| {% 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.4.4
# Models
django-model-utils==3.0.0
# Images
Pillow==4.2.1
{% if cookiecutter.windows == 'y' -%}
# On Windows, you must download/install psycopg2 manually
# from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg
{% else %}
# Python-PostgreSQL Database Adapter
psycopg2==2.7.3.1
{%- endif %}
# Time zones support
pytz==2017.2
# Redis support
django-redis==4.8.0
redis>=2.10.5
# Your custom requirements go here
|
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==2.8.4
python-dateutil==2.8.1
python-magic==0.4.15
rules==2.1
XlsxWriter==1.2.6
| 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==2.8.4
python-dateutil==2.8.1
python-magic==0.4.15
rules==2.1
XlsxWriter==1.2.6
|
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
unicodecsv==0.14.1
metafone==0.5
le-utils==0.1.4
kolibri_exercise_perseus_plugin==0.7.4
jsonfield==2.0.2
morango==0.2.2
requests-toolbelt==0.7.1
clint==0.5.1
tzlocal==1.5.1
pytz==2017.2
python-dateutil==2.6.0
ifcfg==0.11
sqlalchemy==1.1.12
user-agents==1.1.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.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
unicodecsv==0.14.1
metafone==0.5
le-utils==0.1.4
kolibri_exercise_perseus_plugin==0.7.4
jsonfield==2.0.2
morango==0.2.2
requests-toolbelt==0.7.1
clint==0.5.1
tzlocal==1.5.1
pytz==2017.2
python-dateutil==2.6.0
ifcfg==0.11
sqlalchemy==1.1.12
user-agents==1.1.0
|
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_greentea.cmake)
project(${TEST_TARGET})
mbed_greentea_add_test(TEST_NAME ${TEST_TARGET} TEST_SOURCES mbed_printf.c)
| # 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_greentea.cmake)
project(${TEST_TARGET})
mbed_greentea_add_test(TEST_NAME ${TEST_TARGET} TEST_SOURCES mbed_printf.c)
|
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 Lesser General Public
# License as published by the Free Software Foundation;
# version 2.1 of the License, and no later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# We use these suppressions to silence the known reports, especially false
# positive reports. This way we can achieve a 'clean' run of tests that have
# no errors in the code and make sure no new reports appear over time.
#
# Each suppression should have a link to the corresponding Dr. Memory issue.
# Before marking an issue as Fixed, please take time to remove the
# corresponding suppressions from this file.
# http://code.google.com/p/drmemory/issues/detail?id=275
LEAK
*!_getptd_noexit
*!_getptd
# http://code.google.com/p/drmemory/issues/detail?id=369
LEAK
...
ntdll.dll!RtlAllocateActivationContextStack
# http://code.google.com/p/drmemory/issues/detail?id=380
UNINITIALIZED READ
...
KERNEL32.dll!FormatMessageA
KERNEL32.dll!FormatMessageA
KERNEL32.dll!WerpNotifyLoadStringResource
KERNEL32.dll!SetConsoleNlsMode
KERNEL32.dll!GetNumberFormatW
KERNEL32.dll!LoadStringBaseExW
# http://code.google.com/p/drmemory/issues/detail?id=382
LEAK
...
ntdll.dll!CsrNewThread
ntdll.dll!RtlUnicodeStringToInteger
ntdll.dll!KiUserApcDispatcher
# http://code.google.com/p/drmemory/issues/detail?id=383
UNADDRESSABLE ACCESS
...
msvcrt.dll!memcpy_s
msvcrt.dll!memcpy_s
msvcrt.dll!lock
msvcrt.dll!lock
# http://code.google.com/p/drmemory/issues/detail?id=383
INVALID HEAP ARGUMENT
msvcrt.dll!memcpy_s
# http://code.google.com/p/drmemory/issues/detail?id=385
LEAK
ntdll.dll!RtlInitOutOfProcessMemoryStream
ntdll.dll!RtlInitializeCriticalSection
# Don't remove the above empty line at EOF - this is a workaround for
# http://code.google.com/p/drmemory/issues/detail?id=41
| |
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.0
oslo.i18n>=3.15.3 # Apache-2.0
coverage!=4.4,>=4.0 # Apache-2.0
# Bandit security code scanner
bandit>=1.6.0,<1.7.0 # Apache-2.0
| # 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-2.0
oslo.i18n>=3.15.3 # Apache-2.0
coverage!=4.4,>=4.0 # Apache-2.0
# Bandit security code scanner
bandit>=1.6.0,<1.7.0 # Apache-2.0
|
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;
# Transmit all of the .gz files under log_files as plain/text (renders then inside the browser)
location ~* log_files.*?\.gz$ {
types { text/plain gz; }
add_header Content-Encoding gzip;
}
| # 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 passenger-install-nginx-module
# => /Users/square/.rvm/gems/ruby-1.9.3-p194@kochiku/bin/passenger-install-nginx-module
Run the passenger nginx install
rvmsudo passenger-install-nginx-module
Select the advanced install (number 2)
Provide the path the nginx source (/Users/square/nginx-1.2.4)
Use the default install dir (/opt/nginx)
Ensure that nginx is configured with the following additional options:
--with-http_gzip_static_module --with-cc-opt=-I/usr/local/include --with-ld-opt=-L/usr/local/lib
Explanation for extra options:
The http_gzip_static_module is used by kochiku to when serving the
log files. The cc-opt and ld-opt are needed on Snow Leopard to avoid
using the system's pcre install and use the one installed by Homebrew
instead. The compile fails with the system pcre.
After the new version finishes compiling tell nginx to reload
sudo /opt/nginx/sbin/nginx -s reload
Now upgrade the passenger gem in the Kochiku repo and deploy it. That
gem is installed in a different location than the one above and doesn't
actually get used (which is ok). We bump the gem in the kochiku project
just to show what version is running on the server.
## Changes to nginx configuration ##
Nginx configuration for Kochiku on macbuild-master is at:
/Users/square/.nginx/http/macbuild-master.local.conf
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 120;
Transmit all of the .gz files under log_files as plain/text (renders then inside the browser)
location ~* log_files.*?\.gz$ {
types { text/plain gz; }
add_header Content-Encoding gzip;
}
|
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/api/api.conf
sed -i "/WSGIDaemonProcess/ s,$, python-home=$VIRTUAL_ENV," examples/api/api.conf
systemctl restart (apache2|httpd)
| # 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-express module-config; exit'
copy output to examples/api/api.conf
sed -i "/WSGIDaemonProcess/ s,$, python-home=$VIRTUAL_ENV," examples/api/api.conf
systemctl restart (apache2|httpd)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.