Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Remove duplicate entry for `azavea.java` | azavea.ntp,0.1.1
azavea.pip,0.1.1
azavea.nodejs,0.3.0
azavea.git,0.1.0
azavea.nginx,0.2.1
azavea.daemontools,0.1.0
azavea.postgresql-support,0.2.0
azavea.postgresql,0.3.0
azavea.postgis,0.2.1
azavea.pgweb,0.1.1
azavea.redis,0.1.0
azavea.graphite,0.5.0
azavea.statsite,0.1.1
azavea.phantomjs,0.1.0
azavea.relp,0.1.2
azavea.curator,0.1.0
azavea.elasticsearch,0.2.0
azavea.logstash,0.1.0
azavea.kibana,0.3.1
azavea.collectd,0.2.0
azavea.java,0.1.1
azavea.build-essential,0.1.0
azavea.mapnik,0.1.0
azavea.beaver,0.1.3
azavea.java,0.2.1
azavea.git,0.1.0
azavea.spark,1.0.0
azavea.scala,0.1.0
azavea.libgdal-java,0.1.0
| azavea.ntp,0.1.1
azavea.pip,0.1.1
azavea.nodejs,0.3.0
azavea.git,0.1.0
azavea.nginx,0.2.1
azavea.daemontools,0.1.0
azavea.postgresql-support,0.2.0
azavea.postgresql,0.3.0
azavea.postgis,0.2.1
azavea.pgweb,0.1.1
azavea.redis,0.1.0
azavea.graphite,0.5.0
azavea.statsite,0.1.1
azavea.phantomjs,0.1.0
azavea.relp,0.1.2
azavea.curator,0.1.0
azavea.elasticsearch,0.2.0
azavea.logstash,0.1.0
azavea.kibana,0.3.1
azavea.collectd,0.2.0
azavea.build-essential,0.1.0
azavea.mapnik,0.1.0
azavea.beaver,0.1.3
azavea.java,0.2.1
azavea.git,0.1.0
azavea.spark,1.0.0
azavea.scala,0.1.0
azavea.libgdal-java,0.1.0
|
Add `pudb` to default python packages. | # Run with `pip install -r requirements.txt`
ipdb # pdb with ipython integrated
ipython
## Linters ##
flake8
pep8-naming
pydocstyle
# prospector
## Packaging ##
# virtualenv is included with >= Python 3.4
virtualenv
virtualenvwrapper
pip-tools
| # Run with `pip install -r requirements.txt`
ipdb # pdb with ipython integrated
ipython
pudb # best debugger around
## Linters ##
flake8
pep8-naming
pycodestyle
pydocstyle
# prospector
## Packaging ##
# virtualenv is included with >= Python 3.4
virtualenv
virtualenvwrapper
pip-tools
|
Use libstdc++ on MacOSx with Clang | cmake_minimum_required(VERSION 2.8)
find_package(FLEX)
FLEX_TARGET(count count.l ${CMAKE_CURRENT_BINARY_DIR}/count.c COMPILE_FLAGS -F)
add_executable( bench bench.c )
add_executable( pbench pbench.cxx )
add_executable( count ${FLEX_count_OUTPUTS} )
add_executable( gbench gbench.c )
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/sample-input.txt
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/gendata.py > ${CMAKE_CURRENT_BINARY_DIR}/sample-input.txt
MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/gendata.py
)
add_custom_target(sample-input ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/sample-input.txt)
| cmake_minimum_required(VERSION 2.8)
find_package(FLEX)
FLEX_TARGET(count count.l ${CMAKE_CURRENT_BINARY_DIR}/count.c COMPILE_FLAGS -F)
if (CMAKE_CXX_COMPILER_ID MATCHES ".*Clang.*" AND ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libstdc++")
endif()
add_executable( bench bench.c )
add_executable( pbench pbench.cxx )
add_executable( count ${FLEX_count_OUTPUTS} )
add_executable( gbench gbench.c )
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/sample-input.txt
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/gendata.py > ${CMAKE_CURRENT_BINARY_DIR}/sample-input.txt
MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/gendata.py
)
add_custom_target(sample-input ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/sample-input.txt)
|
Update chalice from 1.0.2 to 1.0.3 | autoenv==1.0.0
autopep8==1.3.2
bumplus==0.0.8
bumpversion==0.5.3
chalice==1.0.2
docker-compose==1.16.1
elpy==1.15.0
epc==0.0.5
flake8==3.3.0
importmagic==0.1.7
ipdb==0.10.3
ipython==6.0.0
ipython-genutils==0.2.0
jedi==0.10.2
pre-commit==0.15.2
pylint==1.7.1
restview==2.7.0
yapf==0.16.1
| autoenv==1.0.0
autopep8==1.3.2
bumplus==0.0.8
bumpversion==0.5.3
chalice==1.0.3
docker-compose==1.16.1
elpy==1.15.0
epc==0.0.5
flake8==3.3.0
importmagic==0.1.7
ipdb==0.10.3
ipython==6.0.0
ipython-genutils==0.2.0
jedi==0.10.2
pre-commit==0.15.2
pylint==1.7.1
restview==2.7.0
yapf==0.16.1
|
Add boltons to test requirements | loompy>=3.0.5
pytest>=3.9
pytest-cov
codacy-coverage
zarr
matplotlib
sklearn
xlrd
joblib
black | loompy>=3.0.5
pytest>=3.9
pytest-cov
codacy-coverage
zarr
matplotlib
sklearn
xlrd
joblib
black
boltons
|
Update sqlalchemy from 1.3.3 to 1.3.4 | aiohttp-jinja2==1.1.1
aiohttp-security==0.4.0
aiohttp-session==2.7.0
aiohttp==3.5.4
aiomysql==0.0.20
aiopg==0.16.0
coverage==4.5.3
docker==4.0.1
flake8==3.7.7
ipdb==0.12
motor==2.0.0
pytest-cov==2.7.1
pytest-sugar==0.9.2
pytest==4.6.1
python-dateutil==2.8.0
sqlalchemy==1.3.3
trafaret==1.2.0
pymysql==0.9.3
-r requirements-doc.txt
| aiohttp-jinja2==1.1.1
aiohttp-security==0.4.0
aiohttp-session==2.7.0
aiohttp==3.5.4
aiomysql==0.0.20
aiopg==0.16.0
coverage==4.5.3
docker==4.0.1
flake8==3.7.7
ipdb==0.12
motor==2.0.0
pytest-cov==2.7.1
pytest-sugar==0.9.2
pytest==4.6.1
python-dateutil==2.8.0
sqlalchemy==1.3.4
trafaret==1.2.0
pymysql==0.9.3
-r requirements-doc.txt
|
Update sphinx from 1.7.3 to 1.7.4 | -r ./base.txt
sphinx==1.7.3
alagitpull==0.0.20
releases==1.4.1
| -r ./base.txt
sphinx==1.7.4
alagitpull==0.0.20
releases==1.4.1
|
Update flake8 from 3.0.4 to 3.3.0 | pip==9.0.1
wheel==0.29.0
watchdog==0.8.3
flake8==3.0.4
coverage==4.4
cryptography==1.8.1
Sphinx==1.5.5
PyYAML==3.12
| pip==9.0.1
wheel==0.29.0
watchdog==0.8.3
flake8==3.3.0
coverage==4.4
cryptography==1.8.1
Sphinx==1.5.5
PyYAML==3.12
|
Use the generic java-openjdk dependency. | apt: openjdk-7-jdk
yum: java-1.7.0-openjdk
pacman: jre7-openjdk
| apt: openjdk-7-jdk
yum: java-openjdk
pacman: jre7-openjdk
|
Clean Status Bar: run rewritemeta | Categories:Development
License:Apache2
Web Site:https://medium.com/@emmaguy/death-to-ugly-android-screenshots-48ea071d912e
Source Code:https://github.com/emmaguy/clean-status-bar
Issue Tracker:https://github.com/emmaguy/clean-status-bar/issues
Auto Name:Clean Status Bar
Summary:Tidy up your status bar before taking screenshots
Description:
Tired of editing out notifications/low battery to make a nice, clean
status bar? Run this app first - it draws over your status bar, showing only a
full battery and clock.
It runs as a service, so you can swap to other apps to take screenshots.
.
Repo Type:git
Repo:https://github.com/emmaguy/clean-status-bar
Build:1.1.4,18
commit=1.1.4
gradle=yes
subdir=app
Auto Update Mode:None
Update Check Mode:Tags
Current Version:1.1.4
Current Version Code:18
| Categories:Development
License:Apache2
Web Site:https://medium.com/@emmaguy/death-to-ugly-android-screenshots-48ea071d912e
Source Code:https://github.com/emmaguy/clean-status-bar
Issue Tracker:https://github.com/emmaguy/clean-status-bar/issues
Auto Name:Clean Status Bar
Summary:Tidy up your status bar before taking screenshots
Description:
Tired of editing out notifications/low battery to make a nice, clean status bar?
Run this app first - it draws over your status bar, showing only a full battery
and clock.
It runs as a service, so you can swap to other apps to take screenshots.
.
Repo Type:git
Repo:https://github.com/emmaguy/clean-status-bar
Build:1.1.4,18
commit=1.1.4
subdir=app
gradle=yes
Auto Update Mode:None
Update Check Mode:Tags
Current Version:1.1.4
Current Version Code:18
|
Bump c2cciutils from 1.1.dev20210308113838 to 1.1.dev20210315182348 | c2cciutils==1.1.dev20210308113838
| c2cciutils==1.1.dev20210315182348
|
Add number changed to uint | *** Test cases ***
*** Keywords ***
Define diameter protocol
Start Protocol Description Diameter
add number 1 message version 0x01
add number 3 message length
add number 1 message flags 0x80
add number 3 command code 257
add number 4 application id 0
add number 4 Hop-By-Hop Identifier 0xe36006e2
add number 4 End-To-End Identifier 0x00003bab
pdu message length-20
End protocol description | *** Test cases ***
*** Keywords ***
Define diameter protocol
Start Protocol Description Diameter
uint 1 message version 0x01
uint 3 message length
uint 1 message flags 0x80
uint 3 command code 257
uint 4 application id 0
uint 4 Hop-By-Hop Identifier 0xe36006e2
uint 4 End-To-End Identifier 0x00003bab
pdu message length-20
End protocol description |
Update DNS man to 0.8.1 (81) | 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
Build:0.8,80
commit=v0.8
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.1
Current Version Code:81
| 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
Build:0.8,80
commit=v0.8
subdir=app
gradle=yes
prebuild=cd .. && \
./depending_repos.sh
Build:0.8.1,81
commit=v0.8.1
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.1
Current Version Code:81
|
Upgrade version of xblocks to get Field display_name property. | # Python libraries to install that are local to the mitx repo
-e common/lib/capa
-e common/lib/xmodule
-e .
# XBlock:
# Might change frequently, so put it in local-requirements.txt,
# but conceptually is an external package, so it is in a separate repo.
-e git+https://github.com/edx/XBlock.git@96d8f5f4#egg=XBlock
| # Python libraries to install that are local to the mitx repo
-e common/lib/capa
-e common/lib/xmodule
-e .
# XBlock:
# Might change frequently, so put it in local-requirements.txt,
# but conceptually is an external package, so it is in a separate repo.
-e git+https://github.com/edx/XBlock.git@2e0770ff#egg=XBlock
|
Add the original Apple License | Sample code project: Advanced NSOperations
Version: 1.0
IMPORTANT: This Apple software is supplied to you by Apple
Inc. ("Apple") in consideration of your agreement to the following
terms, and your use, installation, modification or redistribution of
this Apple software constitutes acceptance of these terms. If you do
not agree with these terms, please do not use, install, modify or
redistribute this Apple software.
In consideration of your agreement to abide by the following terms, and
subject to these terms, Apple grants you a personal, non-exclusive
license, under Apple's copyrights in this original Apple software (the
"Apple Software"), to use, reproduce, modify and redistribute the Apple
Software, with or without modifications, in source and/or binary forms;
provided that if you redistribute the Apple Software in its entirety and
without modifications, you must retain this notice and the following
text and disclaimers in all such redistributions of the Apple Software.
Neither the name, trademarks, service marks or logos of Apple Inc. may
be used to endorse or promote products derived from the Apple Software
without specific prior written permission from Apple. Except as
expressly stated in this notice, no other rights or licenses, express or
implied, are granted by Apple herein, including but not limited to any
patent rights that may be infringed by your derivative works or by other
works in which the Apple Software may be incorporated.
The Apple Software is provided by Apple on an "AS IS" basis. APPLE
MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
Copyright (C) 2015 Apple Inc. All Rights Reserved.
| |
Add boost includedir as this plugin uses boost indirectly |
include_directories(${CMAKE_SOURCE_DIR}/akregator/src)
########### next target ###############
set(kontact_akregator_PART_SRCS akregator_plugin.cpp)
qt4_add_dbus_interfaces(kontact_akregator_PART_SRCS ${CMAKE_SOURCE_DIR}/akregator/src/org.kde.akregator.part.xml)
kde4_add_plugin(kontact_akregatorplugin ${kontact_akregator_PART_SRCS})
kdepim4_link_unique_libraries(kontact_akregatorplugin ${KDE4_KPARTS_LIBS} kontactinterfaces)
########### install files ###############
install(TARGETS kontact_akregatorplugin DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES akregatorplugin.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kontact)
install(FILES akregator.setdlg DESTINATION ${DATA_INSTALL_DIR}/kontact/ksettingsdialog)
|
include_directories(${CMAKE_SOURCE_DIR}/akregator/src)
include_directories( ${Boost_INCLUDE_DIRS} )
########### next target ###############
set(kontact_akregator_PART_SRCS akregator_plugin.cpp)
qt4_add_dbus_interfaces(kontact_akregator_PART_SRCS ${CMAKE_SOURCE_DIR}/akregator/src/org.kde.akregator.part.xml)
kde4_add_plugin(kontact_akregatorplugin ${kontact_akregator_PART_SRCS})
kdepim4_link_unique_libraries(kontact_akregatorplugin ${KDE4_KPARTS_LIBS} kontactinterfaces)
########### install files ###############
install(TARGETS kontact_akregatorplugin DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES akregatorplugin.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kontact)
install(FILES akregator.setdlg DESTINATION ${DATA_INSTALL_DIR}/kontact/ksettingsdialog)
|
Revert "Malar Toon: use tags already" | Categories:News,Multimedia
License:GPLv3+
Web Site:https://github.com/kesavanm/malartoon
Source Code:https://github.com/kesavanm/malartoon
Issue Tracker:https://github.com/kesavanm/malartoon/issues
Auto Name:Malar Toon
Summary:Viewer for Indian Dinamalar cartoons
Description:
Picks cartoon from Dinamalar daily, a leading news portal in Tamil
from India. Has option to view current day cartoon as well as random
cartoon
.
Repo Type:git
Repo:https://github.com/kesavanm/malartoon.git
Build:1.0,1
commit=16c249e86269b1694e42e001eed5411e39173186
subdir=MalarToon/MalarToon
gradle=yes
Build:1.2,2
commit=v1.2
subdir=MalarToon/MalarToon
gradle=yes
Auto Update Mode:None
Update Check Mode:Tags
Current Version:1.2
Current Version Code:2
| Categories:News,Multimedia
License:GPLv3+
Web Site:https://github.com/kesavanm/malartoon
Source Code:https://github.com/kesavanm/malartoon
Issue Tracker:https://github.com/kesavanm/malartoon/issues
Auto Name:Malar Toon
Summary:Viewer for Indian Dinamalar cartoons
Description:
Picks cartoon from Dinamalar daily, a leading news portal in Tamil
from India. Has option to view current day cartoon as well as random
cartoon
.
Repo Type:git
Repo:https://github.com/kesavanm/malartoon.git
Build:1.0,1
commit=16c249e86269b1694e42e001eed5411e39173186
subdir=MalarToon/MalarToon
gradle=yes
Build:1.2,2
commit=9a85708ab5a23b6c69eb8a6d020f604517470e4b
subdir=MalarToon/MalarToon
gradle=yes
Auto Update Mode:None
#UCM: See if tags are used correctly in the next version and set UCM and AUM
Update Check Mode:RepoManifest
Current Version:1.2
Current Version Code:2
|
Update vent from 0.8.2 to 0.8.3 | falcon==1.4.1
falcon-cors==1.1.7
gevent==1.4.0
gunicorn==19.9.0
redis==3.2.1
vent==0.8.2
| falcon==1.4.1
falcon-cors==1.1.7
gevent==1.4.0
gunicorn==19.9.0
redis==3.2.1
vent==0.8.3
|
Change "Copyright 2001-2005" to "Copyright 2001-2006" | /*
* Copyright 2001-2005 The Apache Software Foundation.
*
* 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 2001-2006 The Apache Software Foundation.
*
* 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.
*/
|
Correct skill GID's for skills not in the marketplace | six==1.10.0
requests==2.20.0
gTTS==2.0.3
gTTS-token==1.1.3
PyAudio==0.2.11
pyee==5.0.0
SpeechRecognition==3.8.1
tornado==4.5.3
websocket-client==0.54.0
requests-futures==0.9.5
pyalsaaudio==0.8.2
xmlrunner==1.7.7
pyserial==3.0
psutil==5.2.1
pocketsphinx==0.1.0
inflection==0.3.1
pillow==4.1.1
python-dateutil==2.6.0
pychromecast==0.7.7
python-vlc==1.1.2
pulsectl==17.7.4
google-api-python-client==1.6.4
fasteners==0.14.1
PyYAML==3.13
msm==0.7.6
msk==0.3.13
adapt-parser==0.3.3
padatious==0.4.6
fann2==1.0.7
padaos==0.1.9
precise-runner==0.2.1
petact==0.1.2
# dev setup tools
pep8==1.7.0
| six==1.10.0
requests==2.20.0
gTTS==2.0.3
gTTS-token==1.1.3
PyAudio==0.2.11
pyee==5.0.0
SpeechRecognition==3.8.1
tornado==4.5.3
websocket-client==0.54.0
requests-futures==0.9.5
pyalsaaudio==0.8.2
xmlrunner==1.7.7
pyserial==3.0
psutil==5.2.1
pocketsphinx==0.1.0
inflection==0.3.1
pillow==4.1.1
python-dateutil==2.6.0
pychromecast==0.7.7
python-vlc==1.1.2
pulsectl==17.7.4
google-api-python-client==1.6.4
fasteners==0.14.1
PyYAML==3.13
msm==0.7.7
msk==0.3.13
adapt-parser==0.3.3
padatious==0.4.6
fann2==1.0.7
padaos==0.1.9
precise-runner==0.2.1
petact==0.1.2
# dev setup tools
pep8==1.7.0
|
Fix FANN dependency by locking to version | six==1.10.0
requests==2.13.0
gTTS==1.1.7
gTTS-token==1.1.1
backports.ssl-match-hostname==3.4.0.2
PyAudio==0.2.11
pyee==1.0.1
SpeechRecognition==3.7.1
tornado==4.2.1
websocket-client==0.32.0
adapt-parser==0.3.0
futures==3.0.3
requests-futures==0.9.5
parsedatetime==1.5
pyyaml==3.11
pyalsaaudio==0.8.2
xmlrunner==1.7.7
pyserial==3.0
psutil==5.2.1
pocketsphinx==0.1.0
inflection==0.3.1
pillow==4.1.1
python-dateutil==2.6.0
pychromecast==0.7.7
python-vlc==1.1.2
pulsectl==17.7.4
google-api-python-client==1.6.4
# dev setup tools
pep8==1.7.0
# Also update in mycroft/skills/padatious_service.py
padatious==0.3.7
| six==1.10.0
requests==2.13.0
gTTS==1.1.7
gTTS-token==1.1.1
backports.ssl-match-hostname==3.4.0.2
PyAudio==0.2.11
pyee==1.0.1
SpeechRecognition==3.7.1
tornado==4.2.1
websocket-client==0.32.0
adapt-parser==0.3.0
futures==3.0.3
requests-futures==0.9.5
parsedatetime==1.5
pyyaml==3.11
pyalsaaudio==0.8.2
xmlrunner==1.7.7
pyserial==3.0
psutil==5.2.1
pocketsphinx==0.1.0
inflection==0.3.1
pillow==4.1.1
python-dateutil==2.6.0
pychromecast==0.7.7
python-vlc==1.1.2
pulsectl==17.7.4
google-api-python-client==1.6.4
# dev setup tools
pep8==1.7.0
fann2==1.0.7
# Also update in mycroft/skills/padatious_service.py
padatious==0.3.7
|
UPDATE RIOT.TXT FOR VERIFICATION tnx rito | c21338d9-5874-490b-9ede-b6797c092198
| f5343cd4-7f78-4619-b68a-151099cc529b
|
Add HP registrations for Wi-Fi Direct Print Services. | https://www.wi-fi.org/file/wi-fi-peer-to-peer-services-technical-specification-package-v12
Job Template attributes: Reference
------------------------------- ---------
pclm-source-resolution (resolution) [WiFiDirectPrint]
Printer Description attributes: Reference
------------------------------- ---------
pclm-raster-back-side (keyword) [WiFiDirectPrint]
pclm-source-resolution-supported (1setOf resolution) [WiFiDirectPrint]
pclm-strip-height-preferred (1setOf integer) [WiFiDirectPrint]
pclm-strip-height-supported (integer) [WiFiDirectPrint]
Attributes (attribute syntax)
Keyword Attribute Value Reference
------------------------------- ---------
pclm-raster-back-side (keyword) [WiFiDirectPrint]
normal [WiFiDirectPrint]
rotated [WiFiDirectPrint]
flipped [WiFiDirectPrint]
| |
Upgrade dependencies for Django projects | #
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file=requirements/production.txt requirements/production.in
#
django-environ==0.4.5
django-probes==1.2.0
django==2.2.3
pytz==2019.1 # via django
sqlparse==0.3.0 # via django
uwsgi==2.0.18
{% if cookiecutter.database == 'Postgres' -%}
psycopg2==2.8.3
{% elif cookiecutter.database == 'MySQL/MariaDB' -%}
mysql-connector==2.2.9
{% endif -%}
{% if cookiecutter.monitoring == 'Datadog' -%}
django-datadog==1.0.1
{% elif cookiecutter.monitoring == 'NewRelic' -%}
newrelic==4.20.0.120
{% elif cookiecutter.monitoring == 'Sentry' -%}
sentry-sdk==0.10.1
certifi==2019.6.16 # via sentry-sdk
urllib3==1.25.3 # via sentry-sdk
{% endif -%}
| #
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file=requirements/production.txt requirements/production.in
#
django-environ==0.4.5
django-probes==1.2.0
django==2.2.4
pytz==2019.2 # via django
sqlparse==0.3.0 # via django
uwsgi==2.0.18
{% if cookiecutter.database == 'Postgres' -%}
psycopg2==2.8.3
{% elif cookiecutter.database == 'MySQL/MariaDB' -%}
mysql-connector==2.2.9
{% endif -%}
{% if cookiecutter.monitoring == 'Datadog' -%}
django-datadog==1.0.1
{% elif cookiecutter.monitoring == 'NewRelic' -%}
newrelic==4.20.0.120
{% elif cookiecutter.monitoring == 'Sentry' -%}
sentry-sdk==0.11.1
certifi==2019.6.16 # via sentry-sdk
urllib3==1.25.3 # via sentry-sdk
{% endif -%}
|
Add MIT license to the project | The MIT License (MIT)
Copyright (c) 2015 MolloyLife
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. | |
Fix build of entropy driver for MCUX TRNG | zephyr_sources_ifdef(CONFIG_ENTROPY_ESP32_RNG entropy_esp32.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_RNGA entropy_mcux_rnga.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_TNGA entropy_mcux_trng.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_STM32_RNG entropy_stm32_rng.c)
zephyr_sources_ifdef(CONFIG_USERSPACE entropy_handlers.c)
| zephyr_sources_ifdef(CONFIG_ENTROPY_ESP32_RNG entropy_esp32.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_RNGA entropy_mcux_rnga.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_TRNG entropy_mcux_trng.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_STM32_RNG entropy_stm32_rng.c)
zephyr_sources_ifdef(CONFIG_USERSPACE entropy_handlers.c)
|
Fix wrong file name of entropy_stm32.c | zephyr_sources_ifdef(CONFIG_ENTROPY_ESP32_RNG entropy_esp32.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_RNGA entropy_mcux_rnga.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_TRNG entropy_mcux_trng.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_NRF5_RNG entropy_nrf5.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_STM32_RNG entropy_stm32_rng.c)
zephyr_sources_ifdef(CONFIG_USERSPACE entropy_handlers.c)
| zephyr_sources_ifdef(CONFIG_ENTROPY_ESP32_RNG entropy_esp32.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_RNGA entropy_mcux_rnga.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_TRNG entropy_mcux_trng.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_NRF5_RNG entropy_nrf5.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_STM32_RNG entropy_stm32.c)
zephyr_sources_ifdef(CONFIG_USERSPACE entropy_handlers.c)
|
Update ChronoSnap to 1.0.5 (6) | Categories:Multimedia,Office
License:MIT
Web Site:https://github.com/nathan-osman/chronosnap/blob/HEAD/README.md
Source Code:https://github.com/nathan-osman/chronosnap
Issue Tracker:https://github.com/nathan-osman/chronosnap/issues
Auto Name:ChronoSnap
Summary:Take screenshots in intervals
Description:
Capture a sequence of images at regular intervals.
Features:
* Customize the capture interval
* Set a limit on the number of images captured
* Capture images with the screen turned off
* Persistent notification during capture
* Interface uses material design guidelines
.
Repo Type:git
Repo:https://github.com/nathan-osman/chronosnap
Build:1.0.4,5
commit=v1.0.4
subdir=app
gradle=yes
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:1.0.4
Current Version Code:5
| Categories:Multimedia,Office
License:MIT
Web Site:https://github.com/nathan-osman/chronosnap/blob/HEAD/README.md
Source Code:https://github.com/nathan-osman/chronosnap
Issue Tracker:https://github.com/nathan-osman/chronosnap/issues
Auto Name:ChronoSnap
Summary:Take screenshots in intervals
Description:
Capture a sequence of images at regular intervals.
Features:
* Customize the capture interval
* Set a limit on the number of images captured
* Capture images with the screen turned off
* Persistent notification during capture
* Interface uses material design guidelines
.
Repo Type:git
Repo:https://github.com/nathan-osman/chronosnap
Build:1.0.4,5
commit=v1.0.4
subdir=app
gradle=yes
Build:1.0.5,6
commit=v1.0.5
subdir=app
gradle=yes
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:1.0.5
Current Version Code:6
|
Update Easer to 0.2.3.1 (9) | Categories:System
License:GPL-3.0+
Web Site:
Source Code:https://github.com/renyuneyun/Easer
Issue Tracker:https://github.com/renyuneyun/Easer/issues
Auto Name:Easer
Summary:Auto operation performer
Description:
Ease your life by automatically performing routine actions / operations on your
phone(s).
Chain different events and let their corresponding actions performed. No longer
need to keep them in mind!
This app was inspired by CyanogenMod's 'profile' mechanism and IFTTT. The
original intuition was to automatically change the profile on certain time or
specific WiFi connections, and it was expanded for more general use then.
Reminder: Easer is still in development. It may contain bugs and the UI
definitely needs to be improved. Current plans are described in the TODO.en.md
(or TODO.md if you can read Chinese) document in the repo. If you are
interested, please have a look.
.
Repo Type:git
Repo:https://github.com/renyuneyun/Easer
Build:0.2.1.0,6
commit=v0.2.1.0
subdir=app
gradle=yes
Build:0.2.3,8
commit=v0.2.3
subdir=app
gradle=yes
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:0.2.3
Current Version Code:8
| Categories:System
License:GPL-3.0+
Web Site:
Source Code:https://github.com/renyuneyun/Easer
Issue Tracker:https://github.com/renyuneyun/Easer/issues
Auto Name:Easer
Summary:Auto operation performer
Description:
Ease your life by automatically performing routine actions / operations on your
phone(s).
Chain different events and let their corresponding actions performed. No longer
need to keep them in mind!
This app was inspired by CyanogenMod's 'profile' mechanism and IFTTT. The
original intuition was to automatically change the profile on certain time or
specific WiFi connections, and it was expanded for more general use then.
Reminder: Easer is still in development. It may contain bugs and the UI
definitely needs to be improved. Current plans are described in the TODO.en.md
(or TODO.md if you can read Chinese) document in the repo. If you are
interested, please have a look.
.
Repo Type:git
Repo:https://github.com/renyuneyun/Easer
Build:0.2.1.0,6
commit=v0.2.1.0
subdir=app
gradle=yes
Build:0.2.3,8
commit=v0.2.3
subdir=app
gradle=yes
Build:0.2.3.1,9
commit=v0.2.3.1
subdir=app
gradle=yes
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:0.2.3.1
Current Version Code:9
|
Fix errors in testcase for bracket expression negation. | // Test bracket expression negations.
\[+[^]abc]*]
/\/\/ [a]
/\/\/ [d]
\ [a[d]]
/\/\/ [nomatch]
/\/\/ ][][
/\/\/ [[][
\ [perf[[ect]
/\/\/ [\{a]]
/\/\/ [\{q]
/\/\/ to [\{c] or not to &
\ to [\{q] or not to &
\ noice yeh []
\ [] yeh noice
\[ empty on purpose ]
/\/\/ [ intentional text ]
/[a[a[d[a[da[[]]
/ []
/\/\/ ][
/\/\/ ]a[
/\/\/ ]d[
/\/\/ [ a ]
/ ][ text ][
/ [----]
| // Test bracket expression negations.
\[+[^]abc]*]
/\/\/ [a]
\ [d]
\ [a[d]]
/\/\/ [nomatch]
\ [perf[[ekt]
/\/\/ to [\{c] or not to &
\ to [\{q] or not to &
\ noice yeh []
\ [] yeh noice
\[ empty on purpose ]
/\/\/ [ intentional text ]
/[a[a[d[a[da[[]]
/ []
/\/\/ ][
/\/\/ ]a[
/\/\/ ]d[
/\/\/ [ a ]
/ ][ text ][
/ [----]
/ ][][
/ [[][
/\/\/ [\{a]]
/ [\{q]
|
Update dependency six to v1.14.0 | flask==1.1.1
healthcheck==1.3.3
six==1.13.0
| flask==1.1.1
healthcheck==1.3.3
six==1.14.0
|
Update gevent from 1.3.0 to 1.3.1 | # Pro-tip: Try not to put anything here. Avoid dependencies in
# production that aren't in development.
-r base.txt
{% if cookiecutter.windows == 'y' -%}
# Python-PostgreSQL Database Adapter
# If using Win for dev, this assumes Unix in prod
# ------------------------------------------------
psycopg2==2.7.4
{%- endif %}
# WSGI Handler
# ------------------------------------------------
gevent==1.3.0
gunicorn==19.8.1
| # Pro-tip: Try not to put anything here. Avoid dependencies in
# production that aren't in development.
-r base.txt
{% if cookiecutter.windows == 'y' -%}
# Python-PostgreSQL Database Adapter
# If using Win for dev, this assumes Unix in prod
# ------------------------------------------------
psycopg2==2.7.4
{%- endif %}
# WSGI Handler
# ------------------------------------------------
gevent==1.3.1
gunicorn==19.8.1
|
Upgrade the minimum CMake version to 3.8 | project(observable)
cmake_minimum_required(VERSION 3.2)
enable_testing()
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "cmake")
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
add_subdirectory(observable)
add_subdirectory(external)
add_subdirectory(tests)
add_subdirectory(benchmark)
add_subdirectory(docs)
add_subdirectory(examples)
| project(observable)
cmake_minimum_required(VERSION 3.8)
enable_testing()
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "cmake")
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
add_subdirectory(observable)
add_subdirectory(external)
add_subdirectory(tests)
add_subdirectory(benchmark)
add_subdirectory(docs)
add_subdirectory(examples)
|
Remove dependencies that should come from setup.py because we don't depend on them directly. | Fabric==1.5.1
Jinja2==2.6
PyYAML==3.10
WebOb==1.2.3
argparse==1.2.1
beautifulsoup4==4.1.3
boto==2.10.0
cloudformation==0.0.0
decorator==3.4.0
distribute==0.6.30
docopt==0.6.1
dogapi==1.2.3
ipython==0.13.1
jenkinsapi==0.1.11
lxml==3.1beta1
newrelic==1.10.2.38
path.py==3.0.1
pingdom==0.2.0
pycrypto==2.6
pyparsing==1.5.6
pyrelic==0.2.0
python-dateutil==2.1
requests==1.1.0
schema==0.1.1
simplejson==3.3.0
simples3==1.0-alpha
six==1.2.0
-e git+https://github.com/bos/statprof.py.git@a17f7923b102c9039763583be9e377e8422e8f5f#egg=statprof-dev
ujson==1.30
wsgiref==0.1.2
Jinja2==2.6
ansible==1.3.1
paramiko==1.10.1
| Fabric==1.5.1
Jinja2==2.6
PyYAML==3.10
WebOb==1.2.3
argparse==1.2.1
beautifulsoup4==4.1.3
boto==2.10.0
cloudformation==0.0.0
decorator==3.4.0
distribute==0.6.30
docopt==0.6.1
dogapi==1.2.3
ipython==0.13.1
jenkinsapi==0.1.11
lxml==3.1beta1
newrelic==1.10.2.38
path.py==3.0.1
pingdom==0.2.0
pycrypto==2.6
pyparsing==1.5.6
pyrelic==0.2.0
python-dateutil==2.1
requests==1.1.0
schema==0.1.1
simplejson==3.3.0
simples3==1.0-alpha
six==1.2.0
-e git+https://github.com/bos/statprof.py.git@a17f7923b102c9039763583be9e377e8422e8f5f#egg=statprof-dev
ujson==1.30
wsgiref==0.1.2
ansible==1.3.1
|
Update pyflakes from 2.0.0 to 2.1.0 | tqdm==4.29.1
requests==2.21.0
requests-toolbelt==0.8.0
pycodestyle==2.4.0
pyflakes==2.0.0
schedule==0.6.0
pysocks==1.6.8
pytest==4.1.1
responses==0.10.5
future==0.17.1
six==1.12.0
huepy==0.9.8.1
| tqdm==4.29.1
requests==2.21.0
requests-toolbelt==0.8.0
pycodestyle==2.4.0
pyflakes==2.1.0
schedule==0.6.0
pysocks==1.6.8
pytest==4.1.1
responses==0.10.5
future==0.17.1
six==1.12.0
huepy==0.9.8.1
|
Update apscheduler from 3.5.1 to 3.5.2 | -e git+https://github.com/amperser/proselint.git#egg=proselint
-e git+https://github.com/charlierguo/gmail.git#egg=gmail
APScheduler==3.5.1
bumpversion==0.5.3
click==6.7
coverage==4.5.1
coveralls==1.3.0
Flask-API==1.0
Flask-Cors==3.0.4
Flask==1.0.2
Flask-Limiter==1.0.1
future==0.16.0
gunicorn==19.8.1
itsdangerous==0.24
Jinja2==2.10
MarkupSafe==1.0
mock==2.0.0
nose==1.3.7
pytest==3.7.1
pep257==0.7.0
pep8==1.7.1
queuelib==1.5.0
redis==2.10.6
requests==2.19.1
rq==0.12.0
six==1.11.0
Werkzeug==0.14.1
wikipedia==1.4.0
| -e git+https://github.com/amperser/proselint.git#egg=proselint
-e git+https://github.com/charlierguo/gmail.git#egg=gmail
APScheduler==3.5.2
bumpversion==0.5.3
click==6.7
coverage==4.5.1
coveralls==1.3.0
Flask-API==1.0
Flask-Cors==3.0.4
Flask==1.0.2
Flask-Limiter==1.0.1
future==0.16.0
gunicorn==19.8.1
itsdangerous==0.24
Jinja2==2.10
MarkupSafe==1.0
mock==2.0.0
nose==1.3.7
pytest==3.7.1
pep257==0.7.0
pep8==1.7.1
queuelib==1.5.0
redis==2.10.6
requests==2.19.1
rq==0.12.0
six==1.11.0
Werkzeug==0.14.1
wikipedia==1.4.0
|
Update numpy from 1.14.3 to 1.14.4 | click==6.7
h5py==2.8.0
Keras>=2.0.0
notebook==5.5.0
matplotlib==2.2.2
numpy==1.14.3
pandas==0.23.0
Pillow==5.1.0
protobuf==3.5.2.post1
requests==2.18.4
scipy==1.1.0
stevedore==1.28.0
| click==6.7
h5py==2.8.0
Keras>=2.0.0
notebook==5.5.0
matplotlib==2.2.2
numpy==1.14.4
pandas==0.23.0
Pillow==5.1.0
protobuf==3.5.2.post1
requests==2.18.4
scipy==1.1.0
stevedore==1.28.0
|
Update mako from 0.9.1 to 1.0.7 | chameleon==3.3
coverage==4.5.1
docutils==0.14
mako==0.9.1
markupsafe==0.19
nose==1.3.1
passlib==1.6.1
pastedeploy==1.5.2
paster==0.8
pygments==1.6
pyramid==1.5
pyramid-chameleon==0.1
pyramid-debugtoolbar==2.0.2
pyramid-mako==1.0.1
pyramid-tm==0.7
repoze.lru==0.6
repoze.tm2==2.0
sqlalchemy==0.9.4
transaction==1.4.3
translationstring==1.1
venusian==1.0a8
waitress==0.8.8
webob==1.3.1
zope.deprecation==4.1.1
zope.interface==4.1.1
zope.sqlalchemy==0.7.4
boto==2.38.0
markerlib==0.4
sqlalchemy-searchable==0.5.0
sqlalchemy-utils==0.26.0
webhelpers==1.3.0
unidecode==0.04.16
recaptcha==1.0rc1
python-slugify==0.0.7
pastescript==1.7.5
Pillow==2.5.0
requests==2.3.0 | chameleon==3.3
coverage==4.5.1
docutils==0.14
mako==1.0.7
markupsafe==0.19
nose==1.3.1
passlib==1.6.1
pastedeploy==1.5.2
paster==0.8
pygments==1.6
pyramid==1.5
pyramid-chameleon==0.1
pyramid-debugtoolbar==2.0.2
pyramid-mako==1.0.1
pyramid-tm==0.7
repoze.lru==0.6
repoze.tm2==2.0
sqlalchemy==0.9.4
transaction==1.4.3
translationstring==1.1
venusian==1.0a8
waitress==0.8.8
webob==1.3.1
zope.deprecation==4.1.1
zope.interface==4.1.1
zope.sqlalchemy==0.7.4
boto==2.38.0
markerlib==0.4
sqlalchemy-searchable==0.5.0
sqlalchemy-utils==0.26.0
webhelpers==1.3.0
unidecode==0.04.16
recaptcha==1.0rc1
python-slugify==0.0.7
pastescript==1.7.5
Pillow==2.5.0
requests==2.3.0 |
Disable python tests by default because the tests hit STP assertion failures. This needs to be fixed properly at some point. | option(TEST_C_API "Enable tests that test STP's public C API" ON)
if(TEST_C_API)
add_subdirectory(C)
endif()
if(ENABLE_PYTHON_INTERFACE)
option(TEST_PYTHON_API "Enable tests that test STP's public Python API" ON)
endif()
if(TEST_PYTHON_API)
add_subdirectory(python)
endif()
| option(TEST_C_API "Enable tests that test STP's public C API" ON)
if(TEST_C_API)
add_subdirectory(C)
endif()
if(ENABLE_PYTHON_INTERFACE)
option(TEST_PYTHON_API "Enable tests that test STP's public Python API" OFF)
endif()
if(TEST_PYTHON_API)
add_subdirectory(python)
endif()
|
Update pydantic to latest version | black==20.8b1
ipython==7.19.0
scrapy==2.4.1
pycodestyle==2.6.0
pydantic[dotenv]==1.7.2
pykeepass==3.2.1 | black==20.8b1
ipython==7.19.0
scrapy==2.4.1
pycodestyle==2.6.0
pydantic[dotenv]==1.7.3
pykeepass==3.2.1
|
Update dependency python-dateutil to ==2.7.3 | #
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file requirements.txt requirements.in
#
boto3==1.4.5
botocore==1.5.92 # via boto3, s3transfer
certifi==2017.7.27.1 # via requests
chardet==3.0.4 # via requests
cssselect==1.0.1
docutils==0.13.1 # via botocore
idna==2.5 # via requests
jinja2==2.9.6
jmespath==0.9.3 # via boto3, botocore
lxml==3.8.0
markupsafe==1.0 # via jinja2
python-dateutil==2.6.1
pytz==2017.3
pyyaml==3.12
requests==2.18.3
s3transfer==0.1.10 # via boto3
six==1.10.0 # via python-dateutil
sqlalchemy==1.1.12
urllib3==1.22 # via requests
| #
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file requirements.txt requirements.in
#
boto3==1.4.5
botocore==1.5.92 # via boto3, s3transfer
certifi==2017.7.27.1 # via requests
chardet==3.0.4 # via requests
cssselect==1.0.1
docutils==0.13.1 # via botocore
idna==2.5 # via requests
jinja2==2.9.6
jmespath==0.9.3 # via boto3, botocore
lxml==3.8.0
markupsafe==1.0 # via jinja2
python-dateutil==2.7.3
pytz==2017.3
pyyaml==3.12
requests==2.18.3
s3transfer==0.1.10 # via boto3
six==1.10.0 # via python-dateutil
sqlalchemy==1.1.12
urllib3==1.22 # via requests
|
Bump click from 8.1.2 to 8.1.3 | click==8.1.2
Jinja2==3.1.1
PyYAML==5.4.1
awscli==1.22.76
requests==2.27.1
boto3==1.21.18
botocore==1.24.21
docopt==0.6.2
bcrypt==3.2.0
yq==2.14.0
rsa>=4.7 # not directly required, pinned by Snyk to avoid a vulnerability
| click==8.1.3
Jinja2==3.1.1
PyYAML==5.4.1
awscli==1.22.76
requests==2.27.1
boto3==1.21.18
botocore==1.24.21
docopt==0.6.2
bcrypt==3.2.0
yq==2.14.0
rsa>=4.7 # not directly required, pinned by Snyk to avoid a vulnerability
|
Upgrade dependency django-debug-toolbar to ==1.5 | Django==1.9.7
django-debug-toolbar==1.4
psycopg2==2.6.2
sqlparse==0.1.19
wheel==0.29.0
python-magic==0.4.12
uwsgi== 2.0.13.1
mock==2.0.0
| Django==1.9.7
django-debug-toolbar==1.5
psycopg2==2.6.2
sqlparse==0.1.19
wheel==0.29.0
python-magic==0.4.12
uwsgi== 2.0.13.1
mock==2.0.0
|
Update pytest from 6.0.0 to 6.0.1 | ansible-lint==4.2.0
docker==4.2.2
flake8==3.8.3
molecule==3.0.6
pytest==6.0.0
testinfra==5.2.2
tox==3.18.1
| ansible-lint==4.2.0
docker==4.2.2
flake8==3.8.3
molecule==3.0.6
pytest==6.0.1
testinfra==5.2.2
tox==3.18.1
|
Use the latest edx locust revision, and install the scipy dependencies for percentiles | lazy==1.2
-e git+https://github.com/edx/locust.git@e3fc3c02ec890683145fab21666117c48d782e50#egg=locustio
PyJWT==1.1.0
-r platform-requirements.txt
| lazy==1.2
-e git+https://github.com/edx/locust.git@eabaea099b738c637c3d4e1fdddd624e78932539#egg=locustio[scipy]
PyJWT==1.1.0
-r platform-requirements.txt
|
Add Sys::Load dependency for scripts/system_stats.pl | AuthCAS
BerkeleyDB
Bio::TreeIO
CGI::Ajax
CGI::Application::Dispatch
CGI::Log
Class::Accessor
Crypt::OpenSSL::Random
Crypt::OpenSSL::RSA
DBD::SQLite
DBI
DBIx::Class
Data::Compare
Data::GUID
Data::UUID
Data::Validate::URI
DateTime
DateTime::Duration
DateTime::Format::HTTP
DateTime::Format::MySQL
File::Listing
File::Slurp
File::Touch
GD
GD::Graph::Data
GD::Graph::bars
GD::Graph::histogram
GD::Simple
Hash::Merge::Simple
HTML::Template
HTTP::Request
IPC::System::Simple
Image::Size
JSON
JSON::XS
List::Compare
LWP::Simple
LWP::Simple::Post
LWP::UserAgent
Mail::Mailer
Mojolicious
Moose
Parallel::ForkManager
Roman
Sort::Versions
Spreadsheet::WriteExcel
Statistics::Basic
Statistics::Basic::Mean
String::ShellQuote
Switch
Sys::Syslog
URI
URI::Escape
URI::Escape::JavaScript
URI::Split
XML::Parser
XML::SAX::Expat
XML::Simple
ZMQ::LibZMQ3
| AuthCAS
BerkeleyDB
Bio::TreeIO
CGI::Ajax
CGI::Application::Dispatch
CGI::Log
Class::Accessor
Crypt::OpenSSL::Random
Crypt::OpenSSL::RSA
DBD::SQLite
DBI
DBIx::Class
Data::Compare
Data::GUID
Data::UUID
Data::Validate::URI
DateTime
DateTime::Duration
DateTime::Format::HTTP
DateTime::Format::MySQL
File::Listing
File::Slurp
File::Touch
GD
GD::Graph::Data
GD::Graph::bars
GD::Graph::histogram
GD::Simple
Hash::Merge::Simple
HTML::Template
HTTP::Request
IPC::System::Simple
Image::Size
JSON
JSON::XS
List::Compare
LWP::Simple
LWP::Simple::Post
LWP::UserAgent
Mail::Mailer
Mojolicious
Moose
Parallel::ForkManager
Roman
Sort::Versions
Spreadsheet::WriteExcel
Statistics::Basic
Statistics::Basic::Mean
String::ShellQuote
Switch
Sys::Load
Sys::Syslog
URI
URI::Escape
URI::Escape::JavaScript
URI::Split
XML::Parser
XML::SAX::Expat
XML::Simple
ZMQ::LibZMQ3
|
Move note on how to beautify long eval statements to the js directory. | //first do a window.dump + "\n" to get a beautified version
var xyz = function() {
print();function(){};
}
function extractBody(f) {
var s = "" + f;
var skip = s.indexOf("{") + 2;
return s.substring(skip, s.length - 2);
}
//window.dump(extractBody(xyz) + "\n");
print(extractBody(xyz))
// var xyz = function() {
// GAddMessages({});'use strict';
// }
// function extractBody(f) {
// var s = "" + f;
// var skip = s.indexOf("{") + 2;
// return s.substring(skip, s.length - 2);
// }
// beautifiedStr1 = extractBody(xyz) + "\n";
// __gjsload_maps2__("util", beautifiedStr1, "", []);
// var yz2 = function() {
// var IAa = function(a, b) { a.C = b;}
// }
// beautifiedStr2 = extractBody(yz2) + "\n";
// __gjsload_maps2__("appiw", beautifiedStr2, "", []);
| |
Disable tests when compiling with clang++ on Tavis CI | cmake_minimum_required (VERSION 2.8.4)
set(project_name juci)
project (${project_name})
add_subdirectory("src")
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux|FreeBSD|OpenBSD|NetBSD")
install(FILES "${CMAKE_SOURCE_DIR}/share/juci.desktop"
DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications")
endif()
if(ENABLE_TESTING)
enable_testing()
add_subdirectory(tests)
endif()
| cmake_minimum_required (VERSION 2.8.4)
set(project_name juci)
project (${project_name})
add_subdirectory("src")
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux|FreeBSD|OpenBSD|NetBSD")
install(FILES "${CMAKE_SOURCE_DIR}/share/juci.desktop"
DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications")
endif()
if(NOT (("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") AND (NOT $ENV{distribution} STREQUAL "")))
if(ENABLE_TESTING)
enable_testing()
add_subdirectory(tests)
endif()
endif()
|
Add note on gutting of prefilter to whatsnew docs. | =====================
Development version
=====================
This document describes in-flight development work.
The CodeMirror js library has been updated fron 2.23 to 2.32
this might induce a few changes in behavior of keymaps in the notebook,
especially intenting/deindenting blocks that is now bound to Ctrl+] and ctr+[
* Exception types can now be displayed with a custom traceback, by defining a
``_render_traceback_()`` method which returns a list of strings, each
containing one line of the traceback.
| =====================
Development version
=====================
This document describes in-flight development work.
The CodeMirror js library has been updated fron 2.23 to 2.32
this might induce a few changes in behavior of keymaps in the notebook,
especially intenting/deindenting blocks that is now bound to Ctrl+] and ctr+[
* Exception types can now be displayed with a custom traceback, by defining a
``_render_traceback_()`` method which returns a list of strings, each
containing one line of the traceback.
Backwards incompatible changes
------------------------------
* Calling :meth:`InteractiveShell.prefilter` will no longer perform static
transformations - the processing of escaped commands such as ``%magic`` and
``!system``, and stripping input prompts from code blocks. This functionality
was duplicated in :mod:`IPython.core.inputsplitter`, and the latter version
was already what IPython relied on. A new API to transform input will be ready
before release.
|
Update sphinx from 1.6.2 to 1.6.3 | sphinx==1.6.2
sphinx-rtd-theme==0.2.4
Django==1.11.2
-e .
| sphinx==1.6.3
sphinx-rtd-theme==0.2.4
Django==1.11.2
-e .
|
Update minimum versions of core Harvest components | # This file collects all required third-party applications that are needed
# to run this project. Later you can install all these apps in a row
# using pip. Example::
#
# pip install -U -r requirements.txt
# Core requirements
django>=1.4,<1.5
markdown
south
uWSGI
avocado>=2.0.2,<2.1
serrano>=2.0.1,<2.1
cilantro>=2.0.2,<2.1
# Database Drivers, the Python stdlib has support for SQLite
# psycopg2
# cx_oracle
# mysql-python
| # This file collects all required third-party applications that are needed
# to run this project. Later you can install all these apps in a row
# using pip. Example::
#
# pip install -U -r requirements.txt
# Core requirements
django>=1.4,<1.5
markdown
south
uWSGI
avocado>=2.0.3,<2.1
serrano>=2.0.2,<2.1
cilantro>=2.0.3,<2.1
# Database Drivers, the Python stdlib has support for SQLite
# psycopg2
# cx_oracle
# mysql-python
|
Add another competitor (and delete whitespace) | COMPETITORS / RELATED:
[ ] http://www.coderun.com/ -- aimed at running web apps; not math.
[ ] AppSoma: http://happysciencecoding.com/ -- this is similar to what I am
planning to do, but more limited... and more flexible.
This exactly competes with what I want to do. Ut oh! But exciting as
a proof of concept.
"run on your own recourses" -- like crashplan!
http://appsoma.com/wiki/index.php?title=Apps
[ ] Many listed here:
http://en.wikipedia.org/wiki/Comparison_of_JavaScript-based_source_code_editors#CodePress_powered
[ ] http://pythonfiddle.com/ -- basically like math-less single cell server
[ ] http://c9.io/ -- cloud 9 -- looks very serious: "free for open source projects".
* "Cloud9 IDE is primarily intended as an environment for HTML5, Javascript, and Node.js applications,"
* autologin to github
* filesystem, etc., on a virtual machine.
* key bindings: http://support.cloud9ide.com/entries/20645216-keybindings-for-cloud9-ide
| COMPETITORS / RELATED:
[ ] http://www.picloud.com/ -- python;
[ ] http://www.coderun.com/ -- aimed at running web apps; not math.
[ ] AppSoma: http://happysciencecoding.com/ -- this is similar to what I am
planning to do, but more limited... and more flexible.
This exactly competes with what I want to do. Ut oh! But exciting as
a proof of concept.
"run on your own recourses" -- like crashplan!
http://appsoma.com/wiki/index.php?title=Apps
[ ] Many listed here:
http://en.wikipedia.org/wiki/Comparison_of_JavaScript-based_source_code_editors#CodePress_powered
[ ] http://pythonfiddle.com/ -- basically like math-less single cell server
[ ] http://c9.io/ -- cloud 9 -- looks very serious: "free for open source projects".
* "Cloud9 IDE is primarily intended as an environment for HTML5, Javascript, and Node.js applications,"
* autologin to github
* filesystem, etc., on a virtual machine.
* key bindings: http://support.cloud9ide.com/entries/20645216-keybindings-for-cloud9-ide
|
Update yarl from 0.14.2 to 0.15.0 | aioamqp==0.10.0
aiobotocore==0.5.1
aiohttp==2.3.3
async-timeout==2.0.0
botocore==1.7.40
chardet==3.0.4
codecov==2.0.9
coverage==4.4.2
docutils==0.14
jmespath==0.9.3
multidict==3.3.2
mypy==0.550
packaging==16.8
pycodestyle==2.3.1
py==1.5.2
pyparsing==2.2.0
pytest==3.2.5
pytest-cov==2.5.1
python-dateutil==2.6.1
pytz==2017.3
requests==2.18.4
six==1.11.0
tzlocal==1.4
ujson==1.35
uvloop==0.8.1
yarl==0.14.2
| aioamqp==0.10.0
aiobotocore==0.5.1
aiohttp==2.3.3
async-timeout==2.0.0
botocore==1.7.40
chardet==3.0.4
codecov==2.0.9
coverage==4.4.2
docutils==0.14
jmespath==0.9.3
multidict==3.3.2
mypy==0.550
packaging==16.8
pycodestyle==2.3.1
py==1.5.2
pyparsing==2.2.0
pytest==3.2.5
pytest-cov==2.5.1
python-dateutil==2.6.1
pytz==2017.3
requests==2.18.4
six==1.11.0
tzlocal==1.4
ujson==1.35
uvloop==0.8.1
yarl==0.15.0
|
Change to moto version that fixes query/GSI issues. | bunch>=1.0.1
boto3==1.2.2
PyYAML>=3.10
-e git+https://github.com/pcraciunoiu/moto.git@4fa7d6283d818351ed01e36521d6822a086af859#egg=moto
| bunch>=1.0.1
boto3==1.2.2
PyYAML>=3.10
-e git+https://github.com/pcraciunoiu/moto.git@0.4.20#egg=moto
|
Bump markupsafe from 2.0.1 to 2.1.0 | aniso8601==9.0.1
appdirs==1.4.4
certifi==2021.10.8
chardet==4.0.0
click==8.0.3
configparser==5.2.0
Flask==2.0.3
Flask-JWT==0.3.2
flask-restplus==0.13.0
Flask-SQLAlchemy==2.5.1
idna==3.3
itsdangerous==2.0.1
Jinja2==3.0.3
jsonschema==4.4.0
MarkupSafe==2.0.1
mysqlclient==2.1.0
passlib==1.7.4
PyJWT==2.3.0
python-dateutil==2.8.2
pytz==2021.3
requests==2.27.1
six==1.16.0
SQLAlchemy==1.4.31
Werkzeug==2.0.3
urllib3==1.26.8
| aniso8601==9.0.1
appdirs==1.4.4
certifi==2021.10.8
chardet==4.0.0
click==8.0.3
configparser==5.2.0
Flask==2.0.3
Flask-JWT==0.3.2
flask-restplus==0.13.0
Flask-SQLAlchemy==2.5.1
idna==3.3
itsdangerous==2.0.1
Jinja2==3.0.3
jsonschema==4.4.0
MarkupSafe==2.1.0
mysqlclient==2.1.0
passlib==1.7.4
PyJWT==2.3.0
python-dateutil==2.8.2
pytz==2021.3
requests==2.27.1
six==1.16.0
SQLAlchemy==1.4.31
Werkzeug==2.0.3
urllib3==1.26.8
|
Update loguru from 0.2.4 to 0.3.0 | -i https://pypi.org/simple
ansimarkup==1.4.0
better-exceptions-fork==0.2.1.post6
certifi==2018.11.29
chardet==3.0.4
colorama==0.4.1
coverage==5.0a4
coveralls==1.5.1
docopt==0.6.2
idna==2.8
loguru==0.2.4
packaging==18.0
pbr==5.1.1
pygments==2.3.1
pyparsing==2.3.1
requests==2.21.0
six==1.12.0
urllib3>=1.24.2
| -i https://pypi.org/simple
ansimarkup==1.4.0
better-exceptions-fork==0.2.1.post6
certifi==2018.11.29
chardet==3.0.4
colorama==0.4.1
coverage==5.0a4
coveralls==1.5.1
docopt==0.6.2
idna==2.8
loguru==0.3.0
packaging==18.0
pbr==5.1.1
pygments==2.3.1
pyparsing==2.3.1
requests==2.21.0
six==1.12.0
urllib3>=1.24.2
|
Add change log step to release procedures. | # -*- mode: org -*-
* Release Checklist
*** Make sure all tests pass
*** Decide on version number
*** Tag code with version (git tag -s release-VERSION head)
* Push repo and tags
*** Create version.txt with version
*** Run make release
*** Upload zip file and tarball to server (/strophe/strophejs/releases/)
*** Upload documentation to server (/strophe/strophejs/doc/VERSION/)
*** Update wiki
*** Tell the world
| # -*- mode: org -*-
* Release Checklist
*** Make sure all tests pass
*** Decide on version number
*** Update CHANGELOG.txt
*** Tag code with version (git tag -s release-VERSION head)
* Push repo and tags
*** Create version.txt with version
*** Run make release
*** Upload zip file and tarball to server (/strophe/strophejs/releases/)
*** Upload documentation to server (/strophe/strophejs/doc/VERSION/)
*** Update wiki
*** Tell the world
|
Update coverage from 5.0.3 to 5.1 | # ulid/requirements/test.txt
#
# Requirements for executing the test suite.
-r dev.txt
coverage==5.0.3
pytest<3.3.0; python_version < '3.4' # pyup: ignore
pytest==4.6.5; python_version == '3.4' # pyup: ignore
pytest==5.3.5; python_version > '3.4'
pytest-benchmark==3.2.3
pytest-cov==2.8.1
pytest-mock==1.6.3; python_version < '3.4' # pyup: ignore
pytest-mock==2.0.0; python_version >= '3.4'
pytest-pep8==1.0.6
| # ulid/requirements/test.txt
#
# Requirements for executing the test suite.
-r dev.txt
coverage==5.1
pytest<3.3.0; python_version < '3.4' # pyup: ignore
pytest==4.6.5; python_version == '3.4' # pyup: ignore
pytest==5.3.5; python_version > '3.4'
pytest-benchmark==3.2.3
pytest-cov==2.8.1
pytest-mock==1.6.3; python_version < '3.4' # pyup: ignore
pytest-mock==2.0.0; python_version >= '3.4'
pytest-pep8==1.0.6
|
Fix cmake build on osx after r235109 | set(LLVM_NO_RTTI 1)
add_lldb_library(lldbPluginProcessGDBRemote
GDBRemoteCommunication.cpp
GDBRemoteCommunicationClient.cpp
GDBRemoteCommunicationServer.cpp
GDBRemoteCommunicationServerCommon.cpp
GDBRemoteCommunicationServerLLGS.cpp
GDBRemoteCommunicationServerPlatform.cpp
GDBRemoteRegisterContext.cpp
ProcessGDBRemote.cpp
ProcessGDBRemoteLog.cpp
ThreadGDBRemote.cpp
) | set(LLVM_NO_RTTI 1)
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
include_directories(${LIBXML2_INCLUDE_DIR})
endif()
add_lldb_library(lldbPluginProcessGDBRemote
GDBRemoteCommunication.cpp
GDBRemoteCommunicationClient.cpp
GDBRemoteCommunicationServer.cpp
GDBRemoteCommunicationServerCommon.cpp
GDBRemoteCommunicationServerLLGS.cpp
GDBRemoteCommunicationServerPlatform.cpp
GDBRemoteRegisterContext.cpp
ProcessGDBRemote.cpp
ProcessGDBRemoteLog.cpp
ThreadGDBRemote.cpp
) |
Rename SwiftReflectionTest Cmake target to swiftSwiftReflectionTest | set(swift_reflection_test_compile_flags
"-Xfrontend" "-enable-reflection-metadata")
add_swift_library(swiftReflectionTest SHARED IS_STDLIB
SwiftReflectionTest.swift
SWIFT_MODULE_DEPENDS Darwin
SWIFT_COMPILE_FLAGS ${swift_reflection_test_compile_flags}
INSTALL_IN_COMPONENT stdlib-experimental)
| set(swift_reflection_test_compile_flags
"-Xfrontend" "-enable-reflection-metadata")
add_swift_library(swiftSwiftReflectionTest SHARED IS_STDLIB
SwiftReflectionTest.swift
SWIFT_MODULE_DEPENDS Darwin
SWIFT_COMPILE_FLAGS ${swift_reflection_test_compile_flags}
INSTALL_IN_COMPONENT stdlib-experimental)
|
Update CV of Funkytunes to 0.1.1 (2) | AntiFeatures:NonFreeNet
Categories:Multimedia
License:GPL-3.0
Web Site:
Source Code:https://github.com/funkyg/funkytunes
Issue Tracker:https://github.com/funkyg/funkytunes/issues
Auto Name:Funkytunes
Summary:A streaming music player using torrents
Description:
Funkytunes is a BitTorrent-based music app, like Spotify or Pandora.
.
Repo Type:git
Repo:https://github.com/funkyg/funkytunes
Build:0.1.0,1
disable=remove apk
commit=0.1.0
subdir=app
gradle=yes
Maintainer Notes:
Clarify legal status. Re-enable AUM afterwards.
Auto Update Mode:Version %v
.
Archive Policy:0 versions
Auto Update Mode:None
Update Check Mode:Tags
Current Version:0.1.0
Current Version Code:1
| AntiFeatures:NonFreeNet
Categories:Multimedia
License:GPL-3.0
Web Site:
Source Code:https://github.com/funkyg/funkytunes
Issue Tracker:https://github.com/funkyg/funkytunes/issues
Auto Name:Funkytunes
Summary:A streaming music player using torrents
Description:
Funkytunes is a BitTorrent-based music app, like Spotify or Pandora.
.
Repo Type:git
Repo:https://github.com/funkyg/funkytunes
Build:0.1.0,1
disable=remove apk
commit=0.1.0
subdir=app
gradle=yes
Maintainer Notes:
Clarify legal status. Re-enable AUM afterwards.
Auto Update Mode:Version %v
.
Archive Policy:0 versions
Auto Update Mode:None
Update Check Mode:Tags
Current Version:0.1.1
Current Version Code:2
|
Exclude Welsh booking start pages | # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
#
User-agent: *
Disallow: /*/leave-pot-untouched/estimate
Disallow: /*/take-whole-pot/estimate
Disallow: /*/pension-type-tool/question-2
Disallow: /*/pension-type-tool/question-3
Disallow: /*/pension-type-tool/question-4
Disallow: /*/pension-type-tool/defined-contribution
Disallow: /*/pension-type-tool/might-defined-contribution
Disallow: /*/pension-type-tool/most-cases-defined-benefit
Disallow: /*/pension-type-tool/most-cases-defined-contribution
Disallow: /*/facebook-landing
Disallow: /*/landing
Disallow: /*/about
Disallow: /*/telephone-appointments/
Disallow: /*/locations/*/booking-request/step-one
Disallow: /styleguide/*
| # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
#
User-agent: *
Disallow: /*/leave-pot-untouched/estimate
Disallow: /*/take-whole-pot/estimate
Disallow: /*/pension-type-tool/question-2
Disallow: /*/pension-type-tool/question-3
Disallow: /*/pension-type-tool/question-4
Disallow: /*/pension-type-tool/defined-contribution
Disallow: /*/pension-type-tool/might-defined-contribution
Disallow: /*/pension-type-tool/most-cases-defined-benefit
Disallow: /*/pension-type-tool/most-cases-defined-contribution
Disallow: /*/facebook-landing
Disallow: /*/landing
Disallow: /*/about
Disallow: /*/telephone-appointments/
Disallow: /*/locations/*/booking-request/step-one
Disallow: /cy/book-face-to-face
Disallow: /cy/book-phone
Disallow: /styleguide/*
|
Update flask-login from 0.4.0 to 0.4.1 | # Everything needed in production
# Flask
Flask==0.12.2
MarkupSafe==1.0
Werkzeug==0.12.2
Jinja2==2.9.6
itsdangerous==0.24
click>=5.0
# Database
Flask-SQLAlchemy==2.2
psycopg2==2.7.3.1
SQLAlchemy==1.1.13
# Migrations
Flask-Migrate==2.1.0
# 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
| # Everything needed in production
# Flask
Flask==0.12.2
MarkupSafe==1.0
Werkzeug==0.12.2
Jinja2==2.9.6
itsdangerous==0.24
click>=5.0
# Database
Flask-SQLAlchemy==2.2
psycopg2==2.7.3.1
SQLAlchemy==1.1.13
# Migrations
Flask-Migrate==2.1.0
# 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.1
Flask-Bcrypt==0.7.1
# Caching
Flask-Caching>=1.0.0
# Debug toolbar
Flask-DebugToolbar==0.10.1
|
Update Activity Launcher to 1.7.0 (11) | Categories:System
License:ISC
Web Site:
Source Code:https://github.com/butzist/ActivityLauncher
Issue Tracker:https://github.com/butzist/ActivityLauncher/issues
Auto Name:Activity Launcher
Summary:Create shortcuts for apps and activities
Description:
Create shortcuts for any installed app and even hidden activities to launch them
with ease.
.
Repo Type:git
Repo:https://github.com/butzist/ActivityLauncher.git
Build:1.5.1,9
commit=acd5afbb8da76b87b31d9f1b804b2d6f56078767
extlibs=android/android-support-v4.jar
target=android-19
Build:1.6.1,10
commit=10908d287353c3b3d9ec826d9bf0992f19572cd1
subdir=ActivityLauncherApp
gradle=yes
Auto Update Mode:Version %v
Update Check Mode:Tags
Current Version:1.7.0
Current Version Code:11
| Categories:System
License:ISC
Web Site:
Source Code:https://github.com/butzist/ActivityLauncher
Issue Tracker:https://github.com/butzist/ActivityLauncher/issues
Auto Name:Activity Launcher
Summary:Create shortcuts for apps and activities
Description:
Create shortcuts for any installed app and even hidden activities to launch them
with ease.
.
Repo Type:git
Repo:https://github.com/butzist/ActivityLauncher.git
Build:1.5.1,9
commit=acd5afbb8da76b87b31d9f1b804b2d6f56078767
extlibs=android/android-support-v4.jar
target=android-19
Build:1.6.1,10
commit=10908d287353c3b3d9ec826d9bf0992f19572cd1
subdir=ActivityLauncherApp
gradle=yes
Build:1.7.0,11
commit=1.7.0
subdir=ActivityLauncherApp
gradle=yes
Auto Update Mode:Version %v
Update Check Mode:Tags
Current Version:1.7.0
Current Version Code:11
|
Fix formatting of changelog entry | API Changes
* The getter and setter API of the SSL session cache (used for
session-ID based session resumption) has changed to that of
a key-value store with keys being session IDs and values
being opaque instances of `mbedtls_ssl_session`.
| API changes
* The getter and setter API of the SSL session cache (used for
session-ID based session resumption) has changed to that of
a key-value store with keys being session IDs and values
being opaque instances of `mbedtls_ssl_session`.
|
Change pywrapper shebang to /bin/sh instead of /bin/bash | #!/bin/bash
# TODO(#7843): integration tests for failure to find python / wrong version
# found / error while trying to print version
set -euo pipefail
GENERAL_FAILURE_MESSAGE="Error: The default python toolchain \
(@bazel_tools//tools/python:autodetecting_toolchain) was unable to locate a \
suitable Python interpreter on the target platform at execution time. Please \
register an appropriate Python toolchain. See the documentation for \
py_runtime_pair here:
https://github.com/bazelbuild/bazel/blob/master/tools/python/toolchain.bzl."
# Try the "python%VERSION%" command name first, then fall back on "python".
PYTHON_BIN=$(which python%VERSION% || echo "")
USED_FALLBACK=0
if [[ -z "${PYTHON_BIN:-}" ]]; then
PYTHON_BIN=$(which python || echo "")
USED_FALLBACK=1
fi
if [[ -z "${PYTHON_BIN:-}" ]]; then
echo "$GENERAL_FAILURE_MESSAGE"
echo "Failure reason: Cannot locate 'python%VERSION%' or 'python' on the \
target platform's PATH, which is:
$PATH"
fi
# Verify that we grabbed an interpreter with the right version.
VERSION_STR=$("$PYTHON_BIN" -V 2>&1)
if ! grep -q " %VERSION%\." <<< $VERSION_STR; then
echo "$GENERAL_FAILURE_MESSAGE"
echo "Failure reason: According to '$PYTHON_BIN -V', version is \
'$VERSION_STR', but we need version %VERSION%"
fi
exec "$PYTHON_BIN" "$@"
| #!/bin/sh
# TODO(#7843): integration tests for failure to find python / wrong version
# found / error while trying to print version
set -euo pipefail
GENERAL_FAILURE_MESSAGE="Error: The default python toolchain \
(@bazel_tools//tools/python:autodetecting_toolchain) was unable to locate a \
suitable Python interpreter on the target platform at execution time. Please \
register an appropriate Python toolchain. See the documentation for \
py_runtime_pair here:
https://github.com/bazelbuild/bazel/blob/master/tools/python/toolchain.bzl."
# Try the "python%VERSION%" command name first, then fall back on "python".
PYTHON_BIN=$(which python%VERSION% || echo "")
USED_FALLBACK=0
if [[ -z "${PYTHON_BIN:-}" ]]; then
PYTHON_BIN=$(which python || echo "")
USED_FALLBACK=1
fi
if [[ -z "${PYTHON_BIN:-}" ]]; then
echo "$GENERAL_FAILURE_MESSAGE"
echo "Failure reason: Cannot locate 'python%VERSION%' or 'python' on the \
target platform's PATH, which is:
$PATH"
fi
# Verify that we grabbed an interpreter with the right version.
VERSION_STR=$("$PYTHON_BIN" -V 2>&1)
if ! grep -q " %VERSION%\." <<< $VERSION_STR; then
echo "$GENERAL_FAILURE_MESSAGE"
echo "Failure reason: According to '$PYTHON_BIN -V', version is \
'$VERSION_STR', but we need version %VERSION%"
fi
exec "$PYTHON_BIN" "$@"
|
Add some new files to cmake | # This source file is part of the Swift.org open source project
#
# Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
# Licensed under Apache License v2.0 with Runtime Library Exception
#
# See http://swift.org/LICENSE.txt for license information
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
add_library(TSCUtility
Archiver.swift
ArgumentParser.swift
ArgumentParserShellCompletion.swift
BuildFlags.swift
CollectionExtensions.swift
Diagnostics.swift
dlopen.swift
Downloader.swift
FloatingPointExtensions.swift
FSWatch.swift
Git.swift
IndexStore.swift
InterruptHandler.swift
JSONMessageStreamingParser.swift
misc.swift
OSLog.swift
PkgConfig.swift
Platform.swift
PolymorphicCodable.swift
ProgressAnimation.swift
SimplePersistence.swift
StringExtensions.swift
StringMangling.swift
URL.swift
Verbosity.swift
Version.swift
Versioning.swift
)
target_link_libraries(TSCUtility PUBLIC
TSCBasic)
if(NOT CMAKE_SYSTEM_NAME STREQUAL Darwin)
target_link_libraries(TSCUtility PUBLIC
FoundationNetworking)
endif()
# NOTE(compnerd) workaround for CMake not setting up include flags yet
set_target_properties(TSCUtility PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
set_property(GLOBAL APPEND PROPERTY TSC_EXPORTS TSCUtility)
| # This source file is part of the Swift.org open source project
#
# Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
# Licensed under Apache License v2.0 with Runtime Library Exception
#
# See http://swift.org/LICENSE.txt for license information
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
add_library(TSCUtility
Archiver.swift
ArgumentParser.swift
ArgumentParserShellCompletion.swift
BuildFlags.swift
CollectionExtensions.swift
Diagnostics.swift
Downloader.swift
FSWatch.swift
FloatingPointExtensions.swift
Git.swift
IndexStore.swift
InterruptHandler.swift
JSONMessageStreamingParser.swift
OSLog.swift
PersistenceCache.swift
PkgConfig.swift
Platform.swift
PolymorphicCodable.swift
ProgressAnimation.swift
SQLite.swift
SimplePersistence.swift
StringExtensions.swift
StringMangling.swift
URL.swift
Verbosity.swift
Version.swift
Versioning.swift
dlopen.swift
misc.swift
)
target_link_libraries(TSCUtility PUBLIC
TSCBasic)
if(NOT CMAKE_SYSTEM_NAME STREQUAL Darwin)
target_link_libraries(TSCUtility PUBLIC
FoundationNetworking)
endif()
# NOTE(compnerd) workaround for CMake not setting up include flags yet
set_target_properties(TSCUtility PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
set_property(GLOBAL APPEND PROPERTY TSC_EXPORTS TSCUtility)
|
Use official PyPI egg for `kiwisolver` | --allow-external PIL
--allow-unverified PIL
PIL
unittest2
coverage
-e git+http://github.com/enthought/traits.git#egg=traits
-e git+http://github.com/enthought/traitsui.git#egg=traitsui
-e git+http://github.com/enthought/enable.git#egg=enable
-e git+http://github.com/nucleic/kiwi.git#egg=kiwisolver
| --allow-external PIL
--allow-unverified PIL
PIL
unittest2
coverage
kiwisolver
-e git+http://github.com/enthought/traits.git#egg=traits
-e git+http://github.com/enthought/traitsui.git#egg=traitsui
-e git+http://github.com/enthought/enable.git#egg=enable
|
Add v to version number. | The process for cutting a release is as follows:
* Check out the most recent version of develop and test it, correcting any errors.
* Merge all changes from develop into master.
* Check out the master.
* Open ATT within Visual Studio and load the Installer project if not currently loaded.
* Within the Installer project, set the Product Version under Installer -> Organize Your Setup -> General Information -> General. Follow Semantic Versioning guidelines in forming the version number: http://semver.org/
* Build the ATT Solution, resolve any errors, and test the ATT by installing and running it. The installer should be at the following location:
{att_repository}\Installer\Installer\Express\SingleImage\DiskImages\DISK1\setup.exe
* On GitHub, draft a new release with tag "X.Y.Z" and release title "ATT release X.Y.Z", attaching the binary installer file (setup.exe) that you built above.
| The process for cutting a release is as follows:
* Check out the most recent version of develop and test it, correcting any errors.
* Merge all changes from develop into master.
* Check out the master.
* Open ATT within Visual Studio and load the Installer project if not currently loaded.
* Within the Installer project, set the Product Version under Installer -> Organize Your Setup -> General Information -> General. Follow Semantic Versioning guidelines in forming the version number: http://semver.org/
* Build the ATT Solution, resolve any errors, and test the ATT by installing and running it. The installer should be at the following location:
{att_repository}\Installer\Installer\Express\SingleImage\DiskImages\DISK1\setup.exe
* On GitHub, draft a new release with tag "vX.Y.Z" and release title "ATT release X.Y.Z", attaching the binary installer file (setup.exe) that you built above.
|
Update django-storages from 1.7.1 to 1.7.2 | # PRECAUTION: avoid production dependencies that aren't in development
-r ./base.txt
# Django
# ------------------------------------------------------------------------------
django-storages[google]==1.7.1 # https://github.com/jschneier/django-storages
google-auth==1.6.3 # https://github.com/googleapis/google-auth-library-python
google-cloud-logging==1.12.1
# Extra packages due to missing bindings
# See: https://github.com/uccser/dthm4kaiako/issues/363
google-cloud-storage==1.18.0
google-resumable-media[requests]==0.3.2
| # PRECAUTION: avoid production dependencies that aren't in development
-r ./base.txt
# Django
# ------------------------------------------------------------------------------
django-storages[google]==1.7.2 # https://github.com/jschneier/django-storages
google-auth==1.6.3 # https://github.com/googleapis/google-auth-library-python
google-cloud-logging==1.12.1
# Extra packages due to missing bindings
# See: https://github.com/uccser/dthm4kaiako/issues/363
google-cloud-storage==1.18.0
google-resumable-media[requests]==0.3.2
|
Update sphinx from 1.6.7 to 1.7.0 | sphinx==1.6.7
releases==1.4.0
sphinx-rtd-theme==0.2.4
| sphinx==1.7.0
releases==1.4.0
sphinx-rtd-theme==0.2.4
|
Set autoname of Always On AMOLED Plugin | Categories:System
License:GPLv3+
Author Email:tomer@tomerrosenfeld.com
Web Site:
Source Code:https://github.com/rosenpin/AlwaysOnAmoledPlugin
Issue Tracker:https://github.com/rosenpin/AlwaysOnAmoledPlugin/issues
Auto Name:Plugin for Always On AMOLED
Summary:Control capacitive button lights via Always On AMOLED
Description:
This plugin for [[com.tomer.alwayson]] is required for devices with capacitive
buttons. Turns the hardware buttons light off/on.
.
Repo Type:git
Repo:https://github.com/rosenpin/AlwaysOnAmoledPlugin.git
Build:1.0,3
commit=1.0
subdir=app
gradle=yes
Auto Update Mode:Version %v
Update Check Mode:Tags
Current Version:1.0
Current Version Code:3
| Categories:System
License:GPLv3+
Author Email:tomer@tomerrosenfeld.com
Web Site:
Source Code:https://github.com/rosenpin/AlwaysOnAmoledPlugin
Issue Tracker:https://github.com/rosenpin/AlwaysOnAmoledPlugin/issues
Auto Name:Always On AMOLED Plugin
Summary:Control capacitive button lights via Always On AMOLED
Description:
This plugin for [[com.tomer.alwayson]] is required for devices with capacitive
buttons. Turns the hardware buttons light off/on.
.
Repo Type:git
Repo:https://github.com/rosenpin/AlwaysOnAmoledPlugin.git
Build:1.0,3
commit=1.0
subdir=app
gradle=yes
Auto Update Mode:Version %v
Update Check Mode:Tags
Current Version:1.0
Current Version Code:3
|
Update dependency pytype to v2020.11.23 | -r docs/requirements.txt
pylint==2.6.0
pytype==2020.11.12
| -r docs/requirements.txt
pylint==2.6.0
pytype==2020.11.23
|
Update sqlalchemy from 1.1.4 to 1.1.5 | aiohttp-jinja2==0.13.0
aiohttp-security==0.1.0
aiohttp-session==0.8.0
aiohttp==1.2.0
aiomysql==0.0.9
aiopg==0.13.0
coverage==4.3.1
docker-compose==1.9.0
docker-py==1.10.6
flake8==3.2.1
ipdb==0.10.1
motor==1.1
pytest-cov==2.4.0
pytest-sugar==0.8.0
pytest==3.0.5
python-dateutil==2.6.0
sqlalchemy==1.1.4
trafaret==0.7.5
yarl==0.8.1
-r requirements-doc.txt
| aiohttp-jinja2==0.13.0
aiohttp-security==0.1.0
aiohttp-session==0.8.0
aiohttp==1.2.0
aiomysql==0.0.9
aiopg==0.13.0
coverage==4.3.1
docker-compose==1.9.0
docker-py==1.10.6
flake8==3.2.1
ipdb==0.10.1
motor==1.1
pytest-cov==2.4.0
pytest-sugar==0.8.0
pytest==3.0.5
python-dateutil==2.6.0
sqlalchemy==1.1.5
trafaret==0.7.5
yarl==0.8.1
-r requirements-doc.txt
|
Upgrade attrs dependency from v18.2.0 to v19.1.0 | blinker == 1.4
Flask == 1.0.2
Jinja2 == 2.10
Werkzeug == 0.15.1
WTForms == 2.2.1
# data persistence
Flask-SQLAlchemy == 2.3.2
psycopg2-binary == 2.7.6.1
SQLAlchemy == 1.2.14
# command line
click == 7.0
pick == 0.6.4
arrow == 0.12.1
attrs == 18.2.0
bbcode == 1.0.32
Flask-Mail == 0.9.1
hiredis == 0.2.0
Pillow == 5.3.0
pytz == 2018.9
ranger == 0.10
redis == 2.10.6
rq == 0.12.0
rq-dashboard == 0.3.12
| blinker == 1.4
Flask == 1.0.2
Jinja2 == 2.10
Werkzeug == 0.15.1
WTForms == 2.2.1
# data persistence
Flask-SQLAlchemy == 2.3.2
psycopg2-binary == 2.7.6.1
SQLAlchemy == 1.2.14
# command line
click == 7.0
pick == 0.6.4
arrow == 0.12.1
attrs == 19.1.0
bbcode == 1.0.32
Flask-Mail == 0.9.1
hiredis == 0.2.0
Pillow == 5.3.0
pytz == 2018.9
ranger == 0.10
redis == 2.10.6
rq == 0.12.0
rq-dashboard == 0.3.12
|
Update to the latest stevedore | d2to1>=0.2.10,<0.3
pbr>=0.5,<0.6
Paste
PasteDeploy>=1.5.0
Routes>=1.12.3
amqplib>=0.6.1
anyjson>=0.2.4
argparse
eventlet>=0.9.17
greenlet>=0.3.1
httplib2
iso8601>=0.1.4
kombu>=1.0.4
netaddr
python-quantumclient>=2.2.0,<3.0.0
pyudev
sqlalchemy>=0.7.8,<=0.7.99
WebOb>=1.2
python-keystoneclient>=0.2.0
alembic>=0.4.1
oslo.config>=1.1.0
six
stevedore>=0.7
# Cisco plugin dependencies
python-novaclient
# End Cisco dependencies
| d2to1>=0.2.10,<0.3
pbr>=0.5,<0.6
Paste
PasteDeploy>=1.5.0
Routes>=1.12.3
amqplib>=0.6.1
anyjson>=0.2.4
argparse
eventlet>=0.9.17
greenlet>=0.3.1
httplib2
iso8601>=0.1.4
kombu>=1.0.4
netaddr
python-quantumclient>=2.2.0,<3.0.0
pyudev
sqlalchemy>=0.7.8,<=0.7.99
WebOb>=1.2
python-keystoneclient>=0.2.0
alembic>=0.4.1
oslo.config>=1.1.0
six
stevedore>=0.9
# Cisco plugin dependencies
python-novaclient
# End Cisco dependencies
|
Update flake8 from 3.7.6 to 3.7.7 | cookiecutter==1.6.0
sh==1.12.14
binaryornot==0.4.4
# Code quality
# ------------------------------------------------------------------------------
black==19.3b0
flake8==3.7.6
# Testing
# ------------------------------------------------------------------------------
tox==3.11.1
pytest==4.5.0
pytest_cases==1.6.2
pytest-cookies==0.3.0
pytest-xdist==1.28.0
pyyaml==5.1
| cookiecutter==1.6.0
sh==1.12.14
binaryornot==0.4.4
# Code quality
# ------------------------------------------------------------------------------
black==19.3b0
flake8==3.7.7
# Testing
# ------------------------------------------------------------------------------
tox==3.11.1
pytest==4.5.0
pytest_cases==1.6.2
pytest-cookies==0.3.0
pytest-xdist==1.28.0
pyyaml==5.1
|
Update requests-cache from 0.4.4 to 0.4.13 | Pygments==1.5
argparse==1.4.0
cssselect==0.7.1
lxml==3.7.2
pyquery==1.2.17
requests==2.0.1
requests-cache==0.4.4
elasticsearch>=2.0.0
PyYAML==3.12
python-dateutil>=2.2
nose>=1.3.3
lockfile>=0.10.2
| Pygments==1.5
argparse==1.4.0
cssselect==0.7.1
lxml==3.7.2
pyquery==1.2.17
requests==2.0.1
requests-cache==0.4.13
elasticsearch>=2.0.0
PyYAML==3.12
python-dateutil>=2.2
nose>=1.3.3
lockfile>=0.10.2
|
Update youtube-dl from 2018.3.14 to 2018.3.20 | python-telegram-bot==10.0.1
python-telegram-handler==2.0.2
boltons==18.0.0
plumbum==1.6.6
#transliterate==1.9
scdl==1.6.11
bandcamp-downloader==0.0.9.dev0
youtube-dl==2018.3.14
pydub==0.21.0
mutagen==1.40.0
patool==1.12
pyshorteners==0.6.1
Celery==4.1.0
#botanio==1.0.0
logentries==0.17
#loggly-python-handler==1.0.0
| python-telegram-bot==10.0.1
python-telegram-handler==2.0.2
boltons==18.0.0
plumbum==1.6.6
#transliterate==1.9
scdl==1.6.11
bandcamp-downloader==0.0.9.dev0
youtube-dl==2018.3.20
pydub==0.21.0
mutagen==1.40.0
patool==1.12
pyshorteners==0.6.1
Celery==4.1.0
#botanio==1.0.0
logentries==0.17
#loggly-python-handler==1.0.0
|
Update codecov from 2.0.12 to 2.0.13 | aioamqp==0.10.0
aiobotocore==0.5.2
aiohttp==2.3.7
async-timeout==2.0.0
botocore==1.7.40
chardet==3.0.4
codecov==2.0.12
coverage==4.4.2
docutils==0.14
jmespath==0.9.3
multidict==3.3.2
mypy==0.560
packaging==16.8
pycodestyle==2.3.1
py==1.5.2
pyparsing==2.2.0
pytest==3.3.2
pytest-cov==2.5.1
python-dateutil==2.6.1
pytz==2017.3
requests==2.18.4
six==1.11.0
tzlocal==1.5.1
ujson==1.35
uvloop==0.9.1
yarl==0.17.0
| aioamqp==0.10.0
aiobotocore==0.5.2
aiohttp==2.3.7
async-timeout==2.0.0
botocore==1.7.40
chardet==3.0.4
codecov==2.0.13
coverage==4.4.2
docutils==0.14
jmespath==0.9.3
multidict==3.3.2
mypy==0.560
packaging==16.8
pycodestyle==2.3.1
py==1.5.2
pyparsing==2.2.0
pytest==3.3.2
pytest-cov==2.5.1
python-dateutil==2.6.1
pytz==2017.3
requests==2.18.4
six==1.11.0
tzlocal==1.5.1
ujson==1.35
uvloop==0.9.1
yarl==0.17.0
|
Update numpy from 1.16.3 to 1.16.4 | matplotlib==3.1.0
networkx==2.3
pandas==0.24.2
hiveplot==2017.10.17.21.7
nxviz==0.6.1
numpy==1.16.3
jupyter==1.0.0
scipy==1.3.0
python-louvain==0.13
tqdm==4.32.1
| matplotlib==3.1.0
networkx==2.3
pandas==0.24.2
hiveplot==2017.10.17.21.7
nxviz==0.6.1
numpy==1.16.4
jupyter==1.0.0
scipy==1.3.0
python-louvain==0.13
tqdm==4.32.1
|
Update pytest from 3.1.3 to 3.2.0 | # Core requirements
semver==2.7.7
# Dev requirements
flake8==3.4.1
isort==4.2.15
mypy==0.521
pytest==3.1.3
pytest-cov==2.5.1
| # Core requirements
semver==2.7.7
# Dev requirements
flake8==3.4.1
isort==4.2.15
mypy==0.521
pytest==3.2.0
pytest-cov==2.5.1
|
Upgrade xapian-haystack - trunk doesn't require write permissions to search. | # Requirements to deploy this code.
akismet == 0.2.0
Django >= 1.2, < 1.3
django-haystack == 1.1.0
django-registration == 0.7
docutils >= 0.6, < 0.7
FeedParser >= 4.1, < 5.0
Jinja2 >= 2.4, < 2.5
psycopg2 >= 2.2, < 2.3
python-memcached >= 1.45, < 2.0
Sphinx >= 1.0, < 1.1
South >= 0.7, < 0.8
Unipath >= 0.2, < 0.3
xapian-haystack == 1.1.5beta
http://bitbucket.org/ubernostrum/django-contact-form/get/tip.bz2 | # Requirements to deploy this code.
akismet == 0.2.0
Django >= 1.2, < 1.3
django-haystack == 1.1.0
django-registration == 0.7
docutils >= 0.6, < 0.7
FeedParser >= 4.1, < 5.0
Jinja2 >= 2.4, < 2.5
psycopg2 >= 2.2, < 2.3
python-memcached >= 1.45, < 2.0
Sphinx >= 1.0, < 1.1
South >= 0.7, < 0.8
Unipath >= 0.2, < 0.3
# django-contact-form doens't have a release compatible with Django 1.2.
http://bitbucket.org/ubernostrum/django-contact-form/get/tip.bz2
# xapian-haystack has a bug in 1.1.5beta fixed in trunk. So this
# can go back to a packaged release as soon as there's a newer release.
-e git://github.com/notanumber/xapian-haystack.git@dc11c14542c0137831e5#egg=xapian-haystack |
Correct python module install path | # Copyright 2017 The Imaging Source Europe GmbH
#
# 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.
find_package(PythonInterp 3 REQUIRED)
if (PYTHONINTERP_FOUND)
set(TCAM_CAPTURE_PY_INSTALL "${TCAM_INSTALL_LIB}/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages/")
install(PROGRAMS tcam-capture
DESTINATION bin
COMPONENT tcam-capture)
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/tcam_capture"
DESTINATION "${TCAM_CAPTURE_PY_INSTALL}"
COMPONENT tcam-capture
PATTERN "__pycache__" EXCLUDE
)
endif (PYTHONINTERP_FOUND)
| # Copyright 2017 The Imaging Source Europe GmbH
#
# 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.
find_package(PythonInterp 3 REQUIRED)
if (PYTHONINTERP_FOUND)
set(TCAM_CAPTURE_PY_INSTALL "${TCAM_INSTALL_LIB}/python${PYTHON_VERSION_MAJOR}/dist-packages/")
install(PROGRAMS tcam-capture
DESTINATION bin
COMPONENT tcam-capture)
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/tcam_capture"
DESTINATION "${TCAM_CAPTURE_PY_INSTALL}"
COMPONENT tcam-capture
PATTERN "__pycache__" EXCLUDE
)
endif (PYTHONINTERP_FOUND)
|
Update watchdog from 2.0.2 to 2.0.3 | pip==21.0.1
bumpversion==0.6.0
wheel==0.36.2
watchdog==2.0.2
flake8==3.9.1
tox==3.23.0
coverage==5.5
Sphinx==3.5.4
cryptography==3.4.7
PyYAML==5.4.1
| pip==21.0.1
bumpversion==0.6.0
wheel==0.36.2
watchdog==2.0.3
flake8==3.9.1
tox==3.23.0
coverage==5.5
Sphinx==3.5.4
cryptography==3.4.7
PyYAML==5.4.1
|
Update fonttools from 3.35.2 to 3.36.0 | FontTools[lxml,unicode,ufo]==3.35.2
fontMath==0.4.9
defcon[pens]==0.6.0
| FontTools[lxml,unicode,ufo]==3.36.0
fontMath==0.4.9
defcon[pens]==0.6.0
|
Update gitpython from 3.0.3 to 3.0.4 | bandit==1.6.2
beautifulsoup4==4.8.1
GitPython==3.0.3
codecov==2.0.15
coverage==4.5.4
ddt==1.2.1
defusedxml==0.6.0
flake8==3.7.8
internetarchive==1.8.5
mypy==0.740
nose==1.3.7
oauthlib==3.1.0
patool==1.12
pip==19.3.1
pyfiglet==0.8.post1
pylint==2.4.3
PyGithub==1.44
pywikibot==3.0.20190722
requests==2.22.0
requests-mock==1.7.0
requests-oauthlib==1.2.0
roman==3.2
safety==1.8.5
testfixtures==6.10.0
| bandit==1.6.2
beautifulsoup4==4.8.1
GitPython==3.0.4
codecov==2.0.15
coverage==4.5.4
ddt==1.2.1
defusedxml==0.6.0
flake8==3.7.8
internetarchive==1.8.5
mypy==0.740
nose==1.3.7
oauthlib==3.1.0
patool==1.12
pip==19.3.1
pyfiglet==0.8.post1
pylint==2.4.3
PyGithub==1.44
pywikibot==3.0.20190722
requests==2.22.0
requests-mock==1.7.0
requests-oauthlib==1.2.0
roman==3.2
safety==1.8.5
testfixtures==6.10.0
|
Test commit for gcov and codecov | cmake_minimum_required(VERSION 3.2)
project(2bead)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Weffc++ -g -O0")
set(CMAKE_CXX_OUTPUT_EXTENSION_REPLACE 1)
if ($ENV{TRAVIS})
set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -coverage)
endif ()
enable_testing()
add_subdirectory(src)
add_subdirectory(app)
add_subdirectory(unit_tests)
| cmake_minimum_required(VERSION 3.2)
project(2bead)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Weffc++ -g -O0")
set(CMAKE_CXX_OUTPUT_EXTENSION_REPLACE 1)
if ($ENV{TRAVIS})
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -coverage")
endif ()
enable_testing()
add_subdirectory(src)
add_subdirectory(app)
add_subdirectory(unit_tests)
|
Remove minimum version requirement for CMake, not really needed. | cmake_minimum_required(VERSION 3.0)
project(test_hopscotch_map)
enable_testing()
find_package(Boost 1.54.0 REQUIRED COMPONENTS unit_test_framework)
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Werror -Wall -Wextra -Wold-style-cast -g --coverage -DTSL_DEBUG")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Werror -Wall -Wextra -Wold-style-cast -O3 -DTSL_DEBUG")
endif()
set(TEST_EXECUTABLE "test_hopscotch_map")
add_executable("${TEST_EXECUTABLE}" "tests/main.cpp" "tests/hopscotch_map_tests.cpp" "tests/hopscotch_set_tests.cpp")
target_include_directories("${TEST_EXECUTABLE}" PRIVATE "${Boost_INCLUDE_DIRS}" "src")
target_link_libraries("${TEST_EXECUTABLE}" ${Boost_LIBRARIES})
add_test(NAME "all_tests" COMMAND "${TEST_EXECUTABLE}")
| project(test_hopscotch_map)
enable_testing()
find_package(Boost 1.54.0 REQUIRED COMPONENTS unit_test_framework)
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Werror -Wall -Wextra -Wold-style-cast -g --coverage -DTSL_DEBUG")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Werror -Wall -Wextra -Wold-style-cast -O3 -DTSL_DEBUG")
endif()
set(TEST_EXECUTABLE "test_hopscotch_map")
add_executable("${TEST_EXECUTABLE}" "tests/main.cpp" "tests/hopscotch_map_tests.cpp" "tests/hopscotch_set_tests.cpp")
target_include_directories("${TEST_EXECUTABLE}" PRIVATE "${Boost_INCLUDE_DIRS}" "src")
target_link_libraries("${TEST_EXECUTABLE}" ${Boost_LIBRARIES})
add_test(NAME "all_tests" COMMAND "${TEST_EXECUTABLE}")
|
Update Logcat Reader to 1.2.1 (17) | Categories:System
License:MIT
Web Site:
Source Code:https://github.com/darshanparajuli/LogcatReader
Issue Tracker:https://github.com/darshanparajuli/LogcatReader/issues
Auto Name:Logcat Reader
Summary:A simple app to view logs
Description:
Logcat Reader makes it easy to view and save the device logs.
.
Repo Type:git
Repo:https://github.com/darshanparajuli/LogcatReader.git
Build:1.2.0,14
commit=v1.2.0
subdir=app
gradle=yes
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:1.2.0
Current Version Code:14
| Categories:System
License:MIT
Web Site:
Source Code:https://github.com/darshanparajuli/LogcatReader
Issue Tracker:https://github.com/darshanparajuli/LogcatReader/issues
Auto Name:Logcat Reader
Summary:A simple app to view logs
Description:
Logcat Reader makes it easy to view and save the device logs.
.
Repo Type:git
Repo:https://github.com/darshanparajuli/LogcatReader.git
Build:1.2.0,14
commit=v1.2.0
subdir=app
gradle=yes
Build:1.2.1,17
commit=v1.2.1
subdir=app
gradle=yes
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:1.2.1
Current Version Code:17
|
Update flake8-builtins from 1.0.post0 to 1.1.0 | check-manifest==0.36
flake8==3.5.0
flake8-bugbear==18.2.0
flake8-builtins==1.0.post0
flake8-docstrings==1.3.0
flake8-isort==2.5
flake8-future-import==0.4.4
flake8-print==3.1.0
m2r==0.1.13
pep8-naming==0.5.0
pydocstyle==2.1.1
pygments==2.2.0
pylint==1.8.3
readme-renderer==17.4
| check-manifest==0.36
flake8==3.5.0
flake8-bugbear==18.2.0
flake8-builtins==1.1.0
flake8-docstrings==1.3.0
flake8-isort==2.5
flake8-future-import==0.4.4
flake8-print==3.1.0
m2r==0.1.13
pep8-naming==0.5.0
pydocstyle==2.1.1
pygments==2.2.0
pylint==1.8.3
readme-renderer==17.4
|
Add google-api-python-client to prevent build failing. Not sure if correct solution... | pytest>=2.5
sphinx>=1.1
colour>=0.0.5
mock>=1.0
pep8>=1.5.7
| pytest>=2.5
sphinx>=1.1
colour>=0.0.5
mock>=1.0
pep8>=1.5.7
google-api-python-client>=1.4.2
|
Update sphinx from 1.8.0 to 1.8.1 | attrs==18.1.0
bandit==1.5.1
check-manifest==0.37
coveralls==1.5.0
codecov==2.0.15
flake8-bugbear==18.8.0;python_version>="3.5"
flake8-docstrings==1.3.0
flake8-import-order==0.18
pycodestyle==2.3.1
flake8==3.5.0
hypothesis==3.71.10
mccabe==0.6.1
mypy==0.600
pytest==3.8.0
pep8-naming==0.7.0
pipdeptree==0.13.0
pipenv==2018.7.1
pytest-cov==2.5.1
pytest-randomly==1.2.3
pytest-runner==4.2
readme_renderer==20.0
scipy==1.1.0
setuptools==40.4.2
twine==1.11.0
setuptools_scm==3.1.0
sphinx==1.8.0
sphinx-autobuild==0.7.1
nbsphinx==0.3.3
vulture==0.28
wheel==0.31.1
| attrs==18.1.0
bandit==1.5.1
check-manifest==0.37
coveralls==1.5.0
codecov==2.0.15
flake8-bugbear==18.8.0;python_version>="3.5"
flake8-docstrings==1.3.0
flake8-import-order==0.18
pycodestyle==2.3.1
flake8==3.5.0
hypothesis==3.71.10
mccabe==0.6.1
mypy==0.600
pytest==3.8.0
pep8-naming==0.7.0
pipdeptree==0.13.0
pipenv==2018.7.1
pytest-cov==2.5.1
pytest-randomly==1.2.3
pytest-runner==4.2
readme_renderer==20.0
scipy==1.1.0
setuptools==40.4.2
twine==1.11.0
setuptools_scm==3.1.0
sphinx==1.8.1
sphinx-autobuild==0.7.1
nbsphinx==0.3.3
vulture==0.28
wheel==0.31.1
|
Update pytest from 3.8.2 to 3.9.1 | coverage==4.5.1
jedi==0.13.1
pylint==1.9.3; python_version < '3'
pylint==2.1.1; python_version >= '3'
pytest==3.8.2
pytest-cov==2.6.0
sphinx==1.8.1
sphinx-rtd-theme==0.4.2
tox==3.5.2
rope==0.11.0
mypy==0.641; python_version >= '3.5'
pytest-asyncio==0.9.0; python_version >= '3.5'
| coverage==4.5.1
jedi==0.13.1
pylint==1.9.3; python_version < '3'
pylint==2.1.1; python_version >= '3'
pytest==3.9.1
pytest-cov==2.6.0
sphinx==1.8.1
sphinx-rtd-theme==0.4.2
tox==3.5.2
rope==0.11.0
mypy==0.641; python_version >= '3.5'
pytest-asyncio==0.9.0; python_version >= '3.5'
|
Update CV of Recurrence to 1.1.1 (11) | Categories:Time
License:Apache2
Web Site:https://github.com/jonasbleyl/Recurrence/blob/HEAD/README.md
Source Code:https://github.com/jonasbleyl/Recurrence
Issue Tracker:https://github.com/jonasbleyl/Recurrence/issues
Auto Name:Recurrence
Summary:Get reminded about notifications
Description:
Get reminded about notifications.
Features:
* Repeat reminders daily, weekly, monthly or even yearly.
* Decide exactly how many times you want a notification to appear.
* Snooze notifications to have them remind you again at a later time.
* View all of your upcoming and previous notification reminders.
* Add icons and colors to your notifications.
.
Repo Type:git
Repo:https://github.com/jonasbleyl/Recurrence
Build:1.1,10
commit=877501c74635ff1d82f0f54f0dd0338e28d6a1a4
subdir=app
gradle=yes
Auto Update Mode:None
Update Check Mode:RepoManifest
Current Version:1.1
Current Version Code:10
| Categories:Time
License:Apache2
Web Site:https://github.com/jonasbleyl/Recurrence/blob/HEAD/README.md
Source Code:https://github.com/jonasbleyl/Recurrence
Issue Tracker:https://github.com/jonasbleyl/Recurrence/issues
Auto Name:Recurrence
Summary:Get reminded about notifications
Description:
Get reminded about notifications.
Features:
* Repeat reminders daily, weekly, monthly or even yearly.
* Decide exactly how many times you want a notification to appear.
* Snooze notifications to have them remind you again at a later time.
* View all of your upcoming and previous notification reminders.
* Add icons and colors to your notifications.
.
Repo Type:git
Repo:https://github.com/jonasbleyl/Recurrence
Build:1.1,10
commit=877501c74635ff1d82f0f54f0dd0338e28d6a1a4
subdir=app
gradle=yes
Auto Update Mode:None
Update Check Mode:RepoManifest
Current Version:1.1.1
Current Version Code:11
|
Add instructions to build the code | To compile the code, follow the instructions below
- mkdir build
- cd build
- cmake ..
- make
To run the code, go to the build directory and do
./point_operations
./histogram_equalization
| |
Use python docker module versus docker_py | docker_py
Flask
Flask_Script
mysqlclient
psycopg2
psycopg2_binary
PyMySQL
pyspark
requests
SQLAlchemy
Werkzeug
| docker
Flask
Flask_Script
mysqlclient
psycopg2
psycopg2_binary
PyMySQL
pyspark
requests
SQLAlchemy
Werkzeug
|
Fix URL for theblues req | # until https://github.com/juju/theblues/pull/46 and https://github.com/juju/theblues/pull/47
# are merged, this depends on the following fork:
git+https://github.com/johnsca/theblues/tree/libjuju#egg=theblues
| # until https://github.com/juju/theblues/pull/46 and https://github.com/juju/theblues/pull/47
# are merged, this depends on the following fork:
git+https://github.com/johnsca/theblues@libjuju#egg=theblues
|
Change to new production script | 05 2 * * 1,2,3,4,5 /shared/technology/eclipselink/beginBuild.sh
0,30 6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 * * * /shared/technology/eclipselink/continuousBuild.sh
| 05 2 * * 1,2,3,4,5 /shared/technology/eclipselink/beginBuild.sh
0,30 6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 * * * /shared/technology/eclipselink/bootstrap.sh cb > /shared/technology/eclipselink/logs/cb.log
|
Update JSQLParser license info and url | The D2RQ/Update code is under Apache 2.0 license.
The project requires the following jars in addition to the jars required by D2RQ:
1. jsqlparser - http://jsqlparser.sourceforge.net/, GNU LGPL License
Must be downloaded from http://d2rqupdate.cs.technion.ac.il/downloads/jsqlparser.rar,
since the code was modified to handle backticks (`)
2. jgrahpt - http://www.jgrapht.org/, GNU LGPL License
| The D2RQ/Update code is under Apache 2.0 license.
The project requires the following jars in addition to the jars required by D2RQ:
1. jsqlparser - https://github.com/JSQLParser/JSqlParser, LGPL V2.1 and Apache Software License, Version 2.0
2. jgrahpt - http://www.jgrapht.org/, GNU LGPL License
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.