Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Update dependency diff-cover to v7 | bandit==1.7.4
black==22.8.0
coverage==6.4.4
diff-cover==6.5.1
flake8==5.0.4
mock==4.0.3
pytest==7.1.3
pytest-cov==3.0.0
# Required to test building the docs
sphinx==5.1.1
# Mypy test requirements
mypy==0.971
types-requests==2.28.10
types-redis==4.3.20
| bandit==1.7.4
black==22.8.0
coverage==6.4.4
diff-cover==7.0.1
flake8==5.0.4
mock==4.0.3
pytest==7.1.3
pytest-cov==3.0.0
# Required to test building the docs
sphinx==5.1.1
# Mypy test requirements
mypy==0.971
types-requests==2.28.10
types-redis==4.3.20
|
Update dependency pylint to v2.9.5 | -r docs/requirements.txt
pylint==2.9.3
pytype==2021.7.19
| -r docs/requirements.txt
pylint==2.9.5
pytype==2021.7.19
|
Set up Postgres for Django local | Commands to set up Postgres for local
Referencing:
https://medium.com/agatha-codes/painless-postgresql-django-d4f03364989
# In the CMD Terminal
> psql
# Create a user first
> CREATE USER namehere WITH PASSWORD 'passwordwhere';
Ex: CREATE USER carlton WITH PASSWORD 'banks';
# Create a database and give the new user access
> CREATE DATABASE databasename OWNER namehere;
Ex: CREATE DATABASE belaire WITH OWNER carlton;
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'belaire',
'USER': 'carlton',
'PASSWORD': 'banks',
'HOST': 'localhost',
'PORT': '',
}
} | |
Add missing requirement for python 2.6 | requests>=2.6.0
singledispatch>=3.4.0
pyyaml>=3.1.1
| requests>=2.6.0
singledispatch>=3.4.0
pyyaml>=3.1.1
ordereddict>=1.1
|
Update glyphslib from 3.1.0 to 3.1.1 | fonttools==3.30.0
cu2qu==1.5.0
glyphsLib==3.1.0
ufo2ft[pathops]==2.2.2
MutatorMath==2.1.1
defcon==0.5.2
ufoLib[lxml]==2.3.1
booleanOperations==0.8.0
skia-pathops==0.2.0.post2
| fonttools==3.30.0
cu2qu==1.5.0
glyphsLib==3.1.1
ufo2ft[pathops]==2.2.2
MutatorMath==2.1.1
defcon==0.5.2
ufoLib[lxml]==2.3.1
booleanOperations==0.8.0
skia-pathops==0.2.0.post2
|
Update pytest from 3.0.5 to 3.0.6 | aiohttp==1.2.0
motor==1.1
pytest==3.0.5
pytest-aiohttp==0.1.3
pytest-asyncio==0.5.0
pytest-catchlog==1.2.2
pytest-cov==2.4.0
pytest-flakes==1.0.1
pytest-mock==1.5.0
yarl==0.8.1
| aiohttp==1.2.0
motor==1.1
pytest==3.0.6
pytest-aiohttp==0.1.3
pytest-asyncio==0.5.0
pytest-catchlog==1.2.2
pytest-cov==2.4.0
pytest-flakes==1.0.1
pytest-mock==1.5.0
yarl==0.8.1
|
Update aiohttp from 1.3.1 to 1.3.2 | aiohttp==1.3.1
cchardet==1.1.2
ujson==1.35
uvloop==0.8.0; sys_platform != 'win32'
| aiohttp==1.3.2
cchardet==1.1.2
ujson==1.35
uvloop==0.8.0; sys_platform != 'win32'
|
Update pytest from 3.2.0 to 3.2.1 | docker==2.4.2
molecule==1.25.0
pytest==3.2.0
python-vagrant==0.5.15
testinfra==1.6.5
tox==2.7.0
| docker==2.4.2
molecule==1.25.0
pytest==3.2.1
python-vagrant==0.5.15
testinfra==1.6.5
tox==2.7.0
|
Update pyramid from 1.7.0 to 1.9.1 | # Tested and approved with these versions
pyramid==1.7.0
crabpy==0.8.2
# -e git+ssh://git@github.com/OnroerendErfgoed/crabpy.git@FIX_0.8.1#egg=crabpy
pycountry==1.20
| # Tested and approved with these versions
pyramid==1.9.1
crabpy==0.8.2
# -e git+ssh://git@github.com/OnroerendErfgoed/crabpy.git@FIX_0.8.1#egg=crabpy
pycountry==1.20
|
Upgrade Tensorflow dependency to nightly build | tensorflow==2.2.0
numpy==1.18.5
pandas==1.0.4
tensorflow_addons==0.10.0
scikit_learn==0.23.1
| tf-nightly==2.3.0-dev20200611
numpy==1.18.5
pandas==1.0.4
tensorflow_addons==0.10.0
scikit_learn==0.23.1
|
Update pytest-xdist from 1.22.2 to 1.22.5 | -r requirements.txt
pytest==3.6.3
pytest-mock==1.10.0
pytest-cov==2.5.1
pytest-xdist==1.22.2
requests-mock==1.5.0
freezegun==0.3.10
flake8==3.5.0
flake8-print==3.1.0
| -r requirements.txt
pytest==3.6.3
pytest-mock==1.10.0
pytest-cov==2.5.1
pytest-xdist==1.22.5
requests-mock==1.5.0
freezegun==0.3.10
flake8==3.5.0
flake8-print==3.1.0
|
Update pytest from 3.2.3 to 3.2.4 | pytest==3.2.3
pytest-cov==2.5.1
pytest-xdist==1.20.1
| pytest==3.2.4
pytest-cov==2.5.1
pytest-xdist==1.20.1
|
Update faker from 2.0.3 to 3.0.0 | -r base.txt
factory-boy==2.12.0
Faker==2.0.3
flake8==3.7.9
freezegun==0.3.12
isort==4.3.21
pytest==5.2.2
pytest-cov==2.8.1
pytest-django==3.6.0
pytest-factoryboy==2.0.3
| -r base.txt
factory-boy==2.12.0
Faker==3.0.0
flake8==3.7.9
freezegun==0.3.12
isort==4.3.21
pytest==5.2.2
pytest-cov==2.8.1
pytest-django==3.6.0
pytest-factoryboy==2.0.3
|
Update tox from 3.1.1 to 3.1.2 | -r common.txt
PyYAML==4.1
bumpversion==0.5.3
coverage==4.5.1
cryptography==2.2.2
flake8==3.5.0
mock==2.0.0
pip==10.0.1
tox==3.1.1
watchdog==0.8.3
wheel==0.31.1
| -r common.txt
PyYAML==4.1
bumpversion==0.5.3
coverage==4.5.1
cryptography==2.2.2
flake8==3.5.0
mock==2.0.0
pip==10.0.1
tox==3.1.2
watchdog==0.8.3
wheel==0.31.1
|
Update pylint from 2.3.1 to 2.4.1 | # scratchdir/requirements/dev.txt
#
# Requirements for package development.
-r base.txt
bumpversion==0.5.3
mypy==0.720
pylint==1.7.5; python_version < '3.4' # pyup: ignore
pylint==2.3.1; python_version > '3.4'
bandit==1.6.2
safety==1.8.5
isort==4.2.15; (python_version > '3.0' and python_version < '3.4') # pyup: ignore
isort==4.3.21; (python_version > '2.7' and python_version < '3.0') or python_version > '3.4'
| # scratchdir/requirements/dev.txt
#
# Requirements for package development.
-r base.txt
bumpversion==0.5.3
mypy==0.720
pylint==1.7.5; python_version < '3.4' # pyup: ignore
pylint==2.4.1; python_version > '3.4'
bandit==1.6.2
safety==1.8.5
isort==4.2.15; (python_version > '3.0' and python_version < '3.4') # pyup: ignore
isort==4.3.21; (python_version > '2.7' and python_version < '3.0') or python_version > '3.4'
|
Update sphinx from 1.6.1 to 1.6.2 | pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==3.3.0
tox==2.7.0
coverage==4.4.1
Sphinx==1.6.1
pytest==3.1.0
hypothesis==3.11.0
pony==0.7.1
sphinx_rtd_theme==0.2.4
| pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==3.3.0
tox==2.7.0
coverage==4.4.1
Sphinx==1.6.2
pytest==3.1.0
hypothesis==3.11.0
pony==0.7.1
sphinx_rtd_theme==0.2.4
|
Update coverage from 4.0.3 to 4.2 | bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==2.5.4
tox==2.3.1
coverage==4.0.3
Sphinx==1.4.1
cryptography==1.3.2
PyYAML==3.11
requests-mock==1.0.0
setuptools==21.1.0
| bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==2.5.4
tox==2.3.1
coverage==4.2
Sphinx==1.4.1
cryptography==1.3.2
PyYAML==3.11
requests-mock==1.0.0
setuptools==21.1.0
|
Update pytest from 3.5.0 to 3.5.1 | pip==10.0.1
bumpversion==0.5.3
wheel==0.31.0
watchdog==0.8.3
flake8==3.5.0
tox==3.0.0
coverage==4.5.1
Sphinx==1.7.3
pytest==3.5.0
pytest-runner==4.2
faker==0.8.13
pandas==0.22.0
sphinxcontrib-napoleon==0.6.1
tqdm==4.22.0
pytest-benchmark==3.1.1
networkx==2.1
| pip==10.0.1
bumpversion==0.5.3
wheel==0.31.0
watchdog==0.8.3
flake8==3.5.0
tox==3.0.0
coverage==4.5.1
Sphinx==1.7.3
pytest==3.5.1
pytest-runner==4.2
faker==0.8.13
pandas==0.22.0
sphinxcontrib-napoleon==0.6.1
tqdm==4.22.0
pytest-benchmark==3.1.1
networkx==2.1
|
Update pyyaml from 5.1 to 5.1.1 | pip==19.1.1
bumpversion==0.5.3
wheel==0.33.4
watchdog==0.9.0
flake8==3.7.7
tox==3.12.1
Sphinx==2.1.0
coverage==4.5.3
PyYAML==5.1
pytest==4.6.2
| pip==19.1.1
bumpversion==0.5.3
wheel==0.33.4
watchdog==0.9.0
flake8==3.7.7
tox==3.12.1
Sphinx==2.1.0
coverage==4.5.3
PyYAML==5.1.1
pytest==4.6.2
|
Update django from 3.1.6 to 3.2.2 | # Your app requirements.
-r ../requirements_test.txt
django==3.1.6
# Your app in editable mode.
-e ../
| # Your app requirements.
-r ../requirements_test.txt
django==3.2.2
# Your app in editable mode.
-e ../
|
Revert "Simplify list by moving prefix in iteration" | set(TEST_SUITES_OBJECTS
object
set
)
foreach(TEST IN LISTS TEST_SUITES_OBJECTS)
add_subdirectory("ws_${TEST}")
if (DEFINED TEST_INCLUDE_DIRS)
include_directories(${TEST_INCLUDE_DIRS})
endif()
if (DEFINED TEST_DEFINITIONS)
add_definitions(${TEST_DEFINITIONS})
endif()
set(TEST_EXE "check_ws_${TEST}.test")
add_executable(${TEST_EXE} EXCLUDE_FROM_ALL
"ws_${TEST}/test.c"
${TEST_SOURCES}
)
target_link_libraries(${TEST_EXE}
${CHECK_LIBRARY}
${TEST_LIBRARIES}
)
add_test("build_${TEST_EXE}" "${CMAKE_COMMAND}"
--build ${CMAKE_BINARY_DIR}
--target "${TEST_EXE}"
)
add_test("${TEST_EXE}" ${TEST_EXE})
set_tests_properties(${TEST_EXE} PROPERTIES DEPENDS
"build_${TEST_EXE}"
)
endforeach()
| set(TEST_SUITES_OBJECTS
ws_object
ws_set
)
foreach(TEST IN LISTS TEST_SUITES_OBJECTS)
add_subdirectory("${TEST}")
if (DEFINED TEST_INCLUDE_DIRS)
include_directories(${TEST_INCLUDE_DIRS})
endif()
if (DEFINED TEST_DEFINITIONS)
add_definitions(${TEST_DEFINITIONS})
endif()
set(TEST_EXE "check_${TEST}.test")
add_executable(${TEST_EXE} EXCLUDE_FROM_ALL
"${TEST}/test.c"
${TEST_SOURCES}
)
target_link_libraries(${TEST_EXE}
${CHECK_LIBRARY}
${TEST_LIBRARIES}
)
add_test("build_${TEST_EXE}" "${CMAKE_COMMAND}"
--build ${CMAKE_BINARY_DIR}
--target "${TEST_EXE}"
)
add_test("${TEST_EXE}" ${TEST_EXE})
set_tests_properties(${TEST_EXE} PROPERTIES DEPENDS
"build_${TEST_EXE}"
)
endforeach()
|
Update flake8 from 3.7.4 to 3.7.5 | # Everything the developer needs in addition to the production requirements
-r prod.txt
# Testing
pytest==4.2.0
factory-boy==2.11.1
pytest-mock==1.10.0
webtest==2.0.32
pytest-cov==2.6.1
# Lint and code style
flake8==3.7.4
flake8-docstrings==1.3.0
flake8-quotes==1.0.0
pep8-naming==0.8.1
| # Everything the developer needs in addition to the production requirements
-r prod.txt
# Testing
pytest==4.2.0
factory-boy==2.11.1
pytest-mock==1.10.0
webtest==2.0.32
pytest-cov==2.6.1
# Lint and code style
flake8==3.7.5
flake8-docstrings==1.3.0
flake8-quotes==1.0.0
pep8-naming==0.8.1
|
Update pip from 8.1.2 to 9.0.1 | pip==8.1.2
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==2.6.0
tox==2.3.1
coverage==4.1
Sphinx==1.4.8
cryptography==1.7
PyYAML==3.11
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.3.1
coverage==4.1
Sphinx==1.4.8
cryptography==1.7
PyYAML==3.11
pytest==2.9.2
|
Update sphinx from 1.5.3 to 1.5.4 | pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==3.3.0
tox==2.6.0
coverage==4.3.4
Sphinx==1.5.3
cryptography==1.8.1
PyYAML==3.12
pytest==3.0.7
| pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==3.3.0
tox==2.6.0
coverage==4.3.4
Sphinx==1.5.4
cryptography==1.8.1
PyYAML==3.12
pytest==3.0.7
|
Update pytest-mock from 1.6.2 to 1.6.3 | -r requirements.txt
pip==9.0.1
bumpversion==0.5.3
wheel==0.30.0
watchdog==0.8.3
flake8==3.4.1
tox==2.8.2
coverage==4.4.1
Sphinx==1.6.3
cryptography==2.0.3
PyYAML==3.12
pytest==3.2.2
pytest-cov==2.5.1
pytest-docker==0.6.0
pytest-mock==1.6.2
docker-compose==1.16.1
packaging==16.8
| -r requirements.txt
pip==9.0.1
bumpversion==0.5.3
wheel==0.30.0
watchdog==0.8.3
flake8==3.4.1
tox==2.8.2
coverage==4.4.1
Sphinx==1.6.3
cryptography==2.0.3
PyYAML==3.12
pytest==3.2.2
pytest-cov==2.5.1
pytest-docker==0.6.0
pytest-mock==1.6.3
docker-compose==1.16.1
packaging==16.8
|
Update pytest from 3.0.7 to 3.1.0 | docker==2.3.0
molecule==1.24.0
pymongo==3.4
pytest==3.0.7
python-vagrant==0.5.15
testinfra==1.6.2
tox==2.7.0
| docker==2.3.0
molecule==1.24.0
pymongo==3.4
pytest==3.1.0
python-vagrant==0.5.15
testinfra==1.6.2
tox==2.7.0
|
Update lxml from 4.3.1 to 4.3.2 | asn1crypto==0.24.0
certifi==2018.11.29
cffi==1.12.2
chardet==3.0.4
click==7.0
coloredlogs==10.0
cryptography==2.6.1
docutils==0.14
future==0.17.1
github3.py==1.3.0
humanfriendly==4.18
jinja2==2.10
jwcrypto==0.6.0
keyring==18.0.0
lxml==4.3.1
MarkupSafe==1.1.1
plaintable==0.1.1
pycparser==2.19
python-dateutil==2.8.0
pytz==2018.9
PyYAML==3.13
raven==6.10.0
requests[security]==2.21.0
robotframework==3.1.1
robotframework-seleniumlibrary==3.3.1
rst2ansi==0.1.5
salesforce-bulk==2.1.0
sarge==0.1.5.post0
selenium==3.141.0
simple-salesforce==0.74.2
six==1.12.0
SQLAlchemy==1.2.18
unicodecsv==0.14.1
uritemplate==3.0.0
urllib3==1.24.1
xmltodict==0.12.0
| asn1crypto==0.24.0
certifi==2018.11.29
cffi==1.12.2
chardet==3.0.4
click==7.0
coloredlogs==10.0
cryptography==2.6.1
docutils==0.14
future==0.17.1
github3.py==1.3.0
humanfriendly==4.18
jinja2==2.10
jwcrypto==0.6.0
keyring==18.0.0
lxml==4.3.2
MarkupSafe==1.1.1
plaintable==0.1.1
pycparser==2.19
python-dateutil==2.8.0
pytz==2018.9
PyYAML==3.13
raven==6.10.0
requests[security]==2.21.0
robotframework==3.1.1
robotframework-seleniumlibrary==3.3.1
rst2ansi==0.1.5
salesforce-bulk==2.1.0
sarge==0.1.5.post0
selenium==3.141.0
simple-salesforce==0.74.2
six==1.12.0
SQLAlchemy==1.2.18
unicodecsv==0.14.1
uritemplate==3.0.0
urllib3==1.24.1
xmltodict==0.12.0
|
Revert "Upgrade msm to 0.7.2" | six==1.10.0
requests==2.20.0
gTTS==2.0.1
gTTS-token==1.1.3
PyAudio==0.2.11
pyee==1.0.1
SpeechRecognition==3.8.1
tornado==4.5.3
websocket-client==0.32.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
msm==0.7.2
msk==0.3.12
adapt-parser==0.3.0
padatious==0.4.5
fann2==1.0.7
padaos==0.1.8
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.1
gTTS-token==1.1.3
PyAudio==0.2.11
pyee==1.0.1
SpeechRecognition==3.8.1
tornado==4.5.3
websocket-client==0.32.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
msm==0.6.3
msk==0.3.12
adapt-parser==0.3.0
padatious==0.4.5
fann2==1.0.7
padaos==0.1.8
precise-runner==0.2.1
petact==0.1.2
# dev setup tools
pep8==1.7.0
|
Bump python-dateutil from 2.7.2 to 2.7.3 | Django==2.0.5
psycopg2==2.7.4
django-environ==0.4.4
gunicorn==19.8.1
whitenoise==3.3.1
requests==2.18.4
python-dateutil==2.7.2
docker==2.5.1
beautifulsoup4==4.6.0
lxml==4.2.1
django-storages==1.6.6
boto3==1.5.0
git+https://github.com/tardyp/hyper_sh.git@56175bc094f6c2dcac50ed9825d95a47abf6d6fe#egg=hyper-sh
git+https://github.com/PyGithub/PyGithub@317079efff8a29312408c6166bddd96ecb7e1c45#egg=pyGithub
django-typogrify==1.3.3
randomcolor==0.4.4.5
raven==6.6.0
vcrpy==1.11.1
django-db-geventpool==1.21
gevent==1.2.2
| Django==2.0.5
psycopg2==2.7.4
django-environ==0.4.4
gunicorn==19.8.1
whitenoise==3.3.1
requests==2.18.4
python-dateutil==2.7.3
docker==2.5.1
beautifulsoup4==4.6.0
lxml==4.2.1
django-storages==1.6.6
boto3==1.5.0
git+https://github.com/tardyp/hyper_sh.git@56175bc094f6c2dcac50ed9825d95a47abf6d6fe#egg=hyper-sh
git+https://github.com/PyGithub/PyGithub@317079efff8a29312408c6166bddd96ecb7e1c45#egg=pyGithub
django-typogrify==1.3.3
randomcolor==0.4.4.5
raven==6.6.0
vcrpy==1.11.1
django-db-geventpool==1.21
gevent==1.2.2
|
Update S Tools+ to 3.2 (11) | Categories:System
License:GPLv3+
Web Site:https://github.com/naman14/S-Tools/blob/HEAD/README.md
Source Code:https://github.com/naman14/S-Tools
Issue Tracker:https://github.com/naman14/S-Tools/issues
Auto Name:S Tools+
Summary:Collection of system tools
Description:
Keep track of your CPU frequency, sensors and device information. The
collection includes additional tools like a colorpicker and a compass.
.
Repo Type:git
Repo:https://github.com/naman14/S-Tools
Build:3.1,10
commit=4db105250f1a9d88e3f8b2762e8f101dec7107a9
subdir=app
gradle=yes
Auto Update Mode:None
Update Check Mode:RepoManifest
Current Version:3.2
Current Version Code:11
| Categories:System
License:GPLv3+
Web Site:https://github.com/naman14/S-Tools/blob/HEAD/README.md
Source Code:https://github.com/naman14/S-Tools
Issue Tracker:https://github.com/naman14/S-Tools/issues
Auto Name:S Tools+
Summary:Collection of system tools
Description:
Keep track of your CPU frequency, sensors and device information. The
collection includes additional tools like a colorpicker and a compass.
.
Repo Type:git
Repo:https://github.com/naman14/S-Tools
Build:3.1,10
commit=4db105250f1a9d88e3f8b2762e8f101dec7107a9
subdir=app
gradle=yes
Build:3.2,11
commit=06e2a7a79120f1d07aa503e3ec8e46db5c363c81
subdir=app
gradle=yes
Auto Update Mode:None
Update Check Mode:RepoManifest
Current Version:3.2
Current Version Code:11
|
Fix Emacs and CMake conflict | file(GLOB_RECURSE SOURCES *.cpp)
file(GLOB_RECURSE INCLUDES *.h)
if(APPLE)
set(CMAKE_MACOSX_RPATH ON)
endif()
include_directories(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR})
add_library (NMEAParser SHARED ${SOURCES} ${INCLUDES})
add_library (NMEAParserStatic STATIC ${SOURCES} ${INCLUDES})
install (TARGETS NMEAParser DESTINATION lib)
install (TARGETS NMEAParserStatic DESTINATION lib)
install (FILES NMEA.h DESTINATION include)
| if(APPLE)
set(CMAKE_MACOSX_RPATH ON)
endif()
include_directories(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR})
set(SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/NMEAMessage.cpp
${CMAKE_CURRENT_SOURCE_DIR}/NMEAParser.cpp
)
set(INCLUDES
NMEA.h
NMEAParser.cpp)
add_library (NMEAParser SHARED ${SOURCES} ${INCLUDES})
add_library (NMEAParserStatic STATIC ${SOURCES} ${INCLUDES})
install (TARGETS NMEAParser DESTINATION lib)
install (TARGETS NMEAParserStatic DESTINATION lib)
install (FILES NMEA.h DESTINATION include)
|
Remove licensing doc for libraries no longer used | Path: jalopy-1.0b10.jar
Project: Jalopy Java Source Code Formatter
URL: http://sourceforge.net/projects/jalopy/
License: BSD
Path: jalopy-ant-0.6.1.jar
Project: Jalopy Java Source Code Formatter
URL: http://sourceforge.net/projects/jalopy/
License: BSD
Path: jarbundler-2.2.0.jar
Project: Mac OS X JarBundler ANT Task
URL: http://informagen.com/JarBundler/index.html
License: GPLv2
Note: Required to build Mac OS X Jar
Path: junit.jar
Project: JUnit 3
URL: http://www.junit.org/
License: CPL 1.0
| Path: jarbundler-2.2.0.jar
Project: Mac OS X JarBundler ANT Task
URL: http://informagen.com/JarBundler/index.html
License: GPLv2
Note: Required to build Mac OS X Jar |
Create lld-link2 symlink/copy for new COFF linker. | add_llvm_executable(lld
lld.cpp
)
target_link_libraries(lld
lldDriver
lldCOFF
LLVMSupport
)
install(TARGETS lld
RUNTIME DESTINATION bin)
# Create the lld-link[.exe] symlink in the build directory. If symlink is not
# supported by the operating system, create a copy instead.
if(UNIX)
set(command create_symlink)
# Make relative symlink
set(src "lld${CMAKE_EXECUTABLE_SUFFIX}")
else()
set(command copy)
set(src "${LLVM_RUNTIME_OUTPUT_INTDIR}/lld${CMAKE_EXECUTABLE_SUFFIX}")
endif()
set(dst "${LLVM_RUNTIME_OUTPUT_INTDIR}/lld-link${CMAKE_EXECUTABLE_SUFFIX}")
add_custom_command(TARGET lld POST_BUILD
COMMAND ${CMAKE_COMMAND} -E ${command} ${src} ${dst})
| add_llvm_executable(lld
lld.cpp
)
target_link_libraries(lld
lldDriver
lldCOFF
LLVMSupport
)
install(TARGETS lld
RUNTIME DESTINATION bin)
# Create the lld-link[.exe] symlink in the build directory. If symlink is not
# supported by the operating system, create a copy instead.
if(UNIX)
set(command create_symlink)
# Make relative symlink
set(src "lld${CMAKE_EXECUTABLE_SUFFIX}")
else()
set(command copy)
set(src "${LLVM_RUNTIME_OUTPUT_INTDIR}/lld${CMAKE_EXECUTABLE_SUFFIX}")
endif()
set(dst "${LLVM_RUNTIME_OUTPUT_INTDIR}/lld-link${CMAKE_EXECUTABLE_SUFFIX}")
add_custom_command(TARGET lld POST_BUILD
COMMAND ${CMAKE_COMMAND} -E ${command} ${src} ${dst})
# FIXME: Remove once the lld-link2 alias is gone.
set(dst2 "${LLVM_RUNTIME_OUTPUT_INTDIR}/lld-link2${CMAKE_EXECUTABLE_SUFFIX}")
add_custom_command(TARGET lld POST_BUILD
COMMAND ${CMAKE_COMMAND} -E ${command} ${src} ${dst2})
|
Update freetype-py from 2.2.0 to 2.3.0 | sphinx==5.0.1
sphinx_rtd_theme==1.0.0
reportlab==3.6.10
freetype-py==2.2.0
| sphinx==5.0.1
sphinx_rtd_theme==1.0.0
reportlab==3.6.10
freetype-py==2.3.0
|
Update Flask to v2.1.1 (from v2.0.3) | backports.zoneinfo;python_version<"3.9"
bbcode==1.1.0
blinker==1.4
click==8.1.2
flask==2.0.3
flask-babel==2.0.0
flask-sqlalchemy==2.5.1
hiredis==2.0.0
itsdangerous==2.1.2
jinja2==3.1.1
markupsafe==2.1.1
marrow.mailer==4.0.3
marrow.util==1.2.3
marshmallow==3.15.0
mistletoe==0.8.2
pillow==9.0.1
psycopg2-binary==2.9.3
qrcode==7.3.1
redis==4.1.4
requests==2.27.1
rq==1.10.1
rq-dashboard==0.6.1
rtoml==0.7.1
sqlalchemy==1.4.32
tenacity==8.0.1
werkzeug==2.1.1
wtforms==3.0.1
| backports.zoneinfo;python_version<"3.9"
bbcode==1.1.0
blinker==1.4
click==8.1.2
flask==2.1.1
flask-babel==2.0.0
flask-sqlalchemy==2.5.1
hiredis==2.0.0
itsdangerous==2.1.2
jinja2==3.1.1
markupsafe==2.1.1
marrow.mailer==4.0.3
marrow.util==1.2.3
marshmallow==3.15.0
mistletoe==0.8.2
pillow==9.0.1
psycopg2-binary==2.9.3
qrcode==7.3.1
redis==4.1.4
requests==2.27.1
rq==1.10.1
rq-dashboard==0.6.1
rtoml==0.7.1
sqlalchemy==1.4.32
tenacity==8.0.1
werkzeug==2.1.1
wtforms==3.0.1
|
Update PyMongo requirement to v2.8 | cffi==0.8.6
CherryPy==3.3.0
pymongo==2.7.1
bcrypt==1.0.2
boto==2.29.1
Mako==1.0.0
PyYaml==3.11
requests==2.3.0
psutil==2.1.3
| cffi==0.8.6
CherryPy==3.3.0
pymongo==2.8
bcrypt==1.0.2
boto==2.29.1
Mako==1.0.0
PyYaml==3.11
requests==2.3.0
psutil==2.1.3
|
Update boto3 from 1.7.9 to 1.7.10 | Django==2.0.4
dj_database_url==0.5.0
django-ordered-model==1.4.3
pytz==2018.4
python_box==3.1.1
six==1.11.0
gunicorn==19.7.1
psycopg2==2.7.4
python-decouple==3.1
raven==6.7.0
#Amazon S3 Stuff
boto3==1.7.9
Collectfast==0.6.2
botocore==1.10.10
django-s3-folder-storage==0.5
django-storages==1.6.6
docutils==0.14
jmespath==0.9.3
python-dateutil==2.7.2
s3transfer==0.1.13
six==1.11.0
| Django==2.0.4
dj_database_url==0.5.0
django-ordered-model==1.4.3
pytz==2018.4
python_box==3.1.1
six==1.11.0
gunicorn==19.7.1
psycopg2==2.7.4
python-decouple==3.1
raven==6.7.0
#Amazon S3 Stuff
boto3==1.7.10
Collectfast==0.6.2
botocore==1.10.10
django-s3-folder-storage==0.5
django-storages==1.6.6
docutils==0.14
jmespath==0.9.3
python-dateutil==2.7.2
s3transfer==0.1.13
six==1.11.0
|
Update scikit-learn from 0.21.3 to 0.22 | PyQt5
numpy==1.17.4
h5py==2.10.0
matplotlib==3.1.2
numba==0.46.0
scipy==1.3.3
pyyaml==5.1.2
scikit-learn==0.21.3
colorama==0.4.1
tqdm==4.40.0
lmfit==0.9.14
| PyQt5
numpy==1.17.4
h5py==2.10.0
matplotlib==3.1.2
numba==0.46.0
scipy==1.3.3
pyyaml==5.1.2
scikit-learn==0.22
colorama==0.4.1
tqdm==4.40.0
lmfit==0.9.14
|
Bump utils to latest version | bleach==1.4.2
Flask==0.10.1
Flask-Script==2.0.5
Flask-Migrate==1.3.1
Flask-SQLAlchemy==2.0
psycopg2==2.6.1
SQLAlchemy==1.0.5
SQLAlchemy-Utils==0.30.5
PyJWT==1.4.0
marshmallow==2.4.2
marshmallow-sqlalchemy==0.8.0
flask-marshmallow==0.6.2
Flask-Bcrypt==0.6.2
credstash==1.8.0
boto3==1.2.3
boto==2.39.0
celery==3.1.20
twilio==4.6.0
monotonic==0.3
statsd==3.2.1
git+https://github.com/alphagov/notifications-python-client.git@1.0.0#egg=notifications-python-client==1.0.0
git+https://github.com/alphagov/notifications-utils.git@5.2.8#egg=notifications-utils==5.2.8
| bleach==1.4.2
Flask==0.10.1
Flask-Script==2.0.5
Flask-Migrate==1.3.1
Flask-SQLAlchemy==2.0
psycopg2==2.6.1
SQLAlchemy==1.0.5
SQLAlchemy-Utils==0.30.5
PyJWT==1.4.0
marshmallow==2.4.2
marshmallow-sqlalchemy==0.8.0
flask-marshmallow==0.6.2
Flask-Bcrypt==0.6.2
credstash==1.8.0
boto3==1.2.3
boto==2.39.0
celery==3.1.20
twilio==4.6.0
monotonic==0.3
statsd==3.2.1
git+https://github.com/alphagov/notifications-python-client.git@1.0.0#egg=notifications-python-client==1.0.0
git+https://github.com/alphagov/notifications-utils.git@6.2.0#egg=notifications-utils==6.2.0
|
Update pytest from 3.2.3 to 3.2.4 | bcrypt==3.1.4
coverage==4.4.1
cryptography==2.0.3
motor==1.1
pymongo==3.5.1
pytest==3.2.3
pytest-cov==2.5.1
tornado==4.5.2
| bcrypt==3.1.4
coverage==4.4.1
cryptography==2.0.3
motor==1.1
pymongo==3.5.1
pytest==3.2.4
pytest-cov==2.5.1
tornado==4.5.2
|
Update dependencies to recent versions compatible with django-1.3.x | git+git://github.com/zeehio/django.git@fac11b4d80a310d0895d880bca6e6b8512c26982
Unidecode==0.04.10
django-analytical==0.12.1
git+git://github.com/toastdriven/django-haystack.git@ea5dbd570f847ceb39ff741d9a27c77df09c9e3d
django-jenkins==0.11.1
django-kronos==0.3
git+git://github.com/zeehio/django-selectable.git@0641d278f19e367ce7e5170708b005e6a6a3022b
django-selenium==0.9.7
flup==1.0.2
httplib2==0.7.1
psycopg2==2.5.4
pycountry==0.14.2
pygeoip==0.2.2
pysolr==2.1.0-beta
python-dateutil==1.5
requests==2.4.1
selenium==2.45.0
six==1.1.0
wsgiref==0.1.2
| git+git://github.com/zeehio/django.git@fac11b4d80a310d0895d880bca6e6b8512c26982
Unidecode==0.04.16
django-analytical==0.12.1
git+git://github.com/zeehio/django-haystack.git@ea5dbd570f847ceb39ff741d9a27c77df09c9e3d
django-jenkins==0.11.1
git+git://github.com/zeehio/django-kronos.git@f22f638120920b722edd7619d6a037289edc678e
git+git://github.com/zeehio/django-selectable.git@0641d278f19e367ce7e5170708b005e6a6a3022b
django-selenium==0.9.7
flup==1.0.2
httplib2==0.9
psycopg2==2.5.4
pycountry==1.10
pygeoip==0.2.2
pysolr==2.1.0-beta
python-dateutil==1.5
requests==2.4.3
selenium==2.45.0
six==1.8.0
wsgiref==0.1.2
|
Update sh from 1.12.11 to 1.12.13 | cookiecutter==1.5.1
flake8==3.3.0 # pyup: != 2.6.0
sh==1.12.11
binaryornot==0.4.0
# Testing
pytest==3.0.7
pep8==1.7.0
pyflakes==1.5.0
tox==2.6.0
pytest-cookies==0.2.0
| cookiecutter==1.5.1
flake8==3.3.0 # pyup: != 2.6.0
sh==1.12.13
binaryornot==0.4.0
# Testing
pytest==3.0.7
pep8==1.7.0
pyflakes==1.5.0
tox==2.6.0
pytest-cookies==0.2.0
|
Update vulture from 0.14 to 0.15 | # tests
flake8==3.3.0
pydocstyle==2.0.0
mypy==0.511
vulture==0.14
bandit==1.4.0
pipdeptree==0.10.1
# coverage
codecov==2.0.9
coveralls==1.1
pytest-cov==2.5.1
# misc
GitPython==2.1.5
pandocfilters==1.4.1
# examples
pandas==0.20.2
jupyter==1.0.0
| # tests
flake8==3.3.0
pydocstyle==2.0.0
mypy==0.511
vulture==0.15
bandit==1.4.0
pipdeptree==0.10.1
# coverage
codecov==2.0.9
coveralls==1.1
pytest-cov==2.5.1
# misc
GitPython==2.1.5
pandocfilters==1.4.1
# examples
pandas==0.20.2
jupyter==1.0.0
|
Add an example that generates SVG drawings. | # This file generates random drawings by generating SVG elements.
# Note that the system doesn't have to know anything about SVG, or even random numbers.
# Numbers are generated by combining multiple digits (note that we skip zero).
# We generate lots of elements by using nested elements (100objects contains 10 "10objects" which contain 10 "objects").
#
# Save this as a HTML file and open the result in your browser.
#
# python choicewords.py examples/svg.txt > drawing.html
root:
- <svg width="500" height="500" style="border: 1px solid DarkSlateGrey">{{ 100objects }}</svg>
100objects:
- {{ 10objects }}{{ 10objects }}{{ 10objects }}{{ 10objects }}{{ 10objects }}{{ 10objects }}{{ 10objects }}{{ 10objects }}{{ 10objects }}{{ 10objects }}
10objects:
- {{ object }}{{ object }}{{ object }}{{ object }}{{ object }}{{ object }}{{ object }}{{ object }}{{ object }}{{ object }}
object:
- <rect x="{{ pos }}" y="{{ pos }}" width="{{ size }}" height="{{ size }}" stroke="{{ stroke }}" stroke-width="{{ size }}" fill="none"/>
- <circle cx="{{ pos }}" cy="{{ pos }}" r="{{ size }}" stroke="{{ stroke }}" stroke-width="{{ size }}" fill="none"/>
# Positions can range from 11 to 499.
pos:
- {{ digit }}{{ digit }}
- 1{{ digit }}{{ digit }}
- 2{{ digit }}{{ digit }}
- 3{{ digit }}{{ digit }}
- 4{{ digit }}{{ digit }}
# Sizes can range from 11 to 99.
size:
- {{ digit }}
- {{ digit }}{{ digit }}
# Use HTML color names. We could replace this with hex colors if we want.
stroke:
- CornflowerBlue
- Cornsilk
- Crimson
- FireBrick
- DarkSlateGrey
digit:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9 | |
Add the Pressure sensore maping information (Haavard) | Sensor/I:Type/C:Side/C:Sec/I:Num/I:ECha/I:Elmb/I:EAd/I:EIn/I
#Sensor Type Side Sec Num ECha Elmb EAd EIn
000 TPC A 0 0 5055 10 0 1
| |
Update factory-boy requirement from <3.0,>=2.10.0 to >=2.10.0,<4.0 | black==19.3b0
bleach==3.1.5
defusedxml==0.6.0
django>=3.0.8,<3.1
django-annoying==0.10.6
django-autocomplete-light==3.5.1
django-contrib-comments==1.9.2
django-countries==6.1.2
django-crispy-forms==1.9.2
django-cron==0.5.1
django-durationfield==0.5.5
django-filter==2.3.0
django-modeltranslation==0.15.1
django-premailer
django-request==1.5.5
django-reversion==3.0.7
django-taggit==1.3.0
djangorestframework==3.11.1
djmail==2.0.0
docutils==0.16
factory_boy>=2.10.0,<3.0
mwoauth==0.3.7
pillow==7.2.0
pypandoc==1.4
python-dateutil==2.8.1
pytz==2019.3
setuptools>=45.2.0
six==1.15.0
wheel>=0.34.2
whitenoise==4.1.4
| black==19.3b0
bleach==3.1.5
defusedxml==0.6.0
django>=3.0.8,<3.1
django-annoying==0.10.6
django-autocomplete-light==3.5.1
django-contrib-comments==1.9.2
django-countries==6.1.2
django-crispy-forms==1.9.2
django-cron==0.5.1
django-durationfield==0.5.5
django-filter==2.3.0
django-modeltranslation==0.15.1
django-premailer
django-request==1.5.5
django-reversion==3.0.7
django-taggit==1.3.0
djangorestframework==3.11.1
djmail==2.0.0
docutils==0.16
factory_boy>=2.10.0,<4.0
mwoauth==0.3.7
pillow==7.2.0
pypandoc==1.4
python-dateutil==2.8.1
pytz==2019.3
setuptools>=45.2.0
six==1.15.0
wheel>=0.34.2
whitenoise==4.1.4
|
Update flake8 from 3.7.3 to 3.7.6 | flake8==3.7.3
pylint==1.7.5
astroid==1.5.3
coveralls==1.3.0
mock==2.0.0
pytest==4.2.0
pytest-cov==2.5.1
pytest-timeout==1.2.1
pytest-catchlog==1.2.2
pydocstyle==2.1.1
requests_mock==1.4.0
| flake8==3.7.6
pylint==1.7.5
astroid==1.5.3
coveralls==1.3.0
mock==2.0.0
pytest==4.2.0
pytest-cov==2.5.1
pytest-timeout==1.2.1
pytest-catchlog==1.2.2
pydocstyle==2.1.1
requests_mock==1.4.0
|
Revert "Avoid use of templates that will be eliminated" | template-runtime-code-for-every-action-begin
if ( &function_parameterized__yes_or_no_phrase_name( runtime-code-for-operand-number-one ) == $global_no ) { <new_line>
runtime-code-storage-item-result = 'dashrep_compiled_runtime_error__prepend_text_no_space__not_phrase_name' . runtime-code-for-concatenated-all-operands . ' ' ; <new_line>
} elsif ( &function_parameterized__yes_or_no_phrase_name( runtime-code-for-operand-number-two ) == $global_no ) { <new_line>
runtime-code-storage-item-result = 'dashrep_compiled_runtime_error__prepend_text_no_space__not_phrase_name ' . runtime-code-for-concatenated-all-operands . ' ' ; <new_line>
} else { <new_line>
code-get-or-put-phrase-definition-begin runtime-code-for-operand-number-two code-get-or-put-phrase-definition-end = code-get-or-put-phrase-definition-begin runtime-code-for-operand-number-one code-get-or-put-phrase-definition-end . code-get-or-put-phrase-definition-begin runtime-code-for-operand-number-two code-get-or-put-phrase-definition-end ; <new_line>
runtime-code-storage-item-result = ' ' ; <new_line>
} <new_line>
template-runtime-code-for-every-action-end
| template-runtime-code-for-every-action-begin
runtime-code-check-operand-initialize
check-operand-one-is-phrase-name
check-operand-two-is-phrase-name
if ( $global_yes_or_no_operand_error == $global_no ) { <new_line>
code-get-or-put-phrase-definition-begin runtime-code-for-operand-number-two code-get-or-put-phrase-definition-end = code-get-or-put-phrase-definition-begin runtime-code-for-operand-number-one code-get-or-put-phrase-definition-end . code-get-or-put-phrase-definition-begin runtime-code-for-operand-number-two code-get-or-put-phrase-definition-end ; <new_line>
runtime-code-storage-item-result = ' ' ; <new_line>
} else { <new_line>
template-runtime-code-store-result-for-case-error
} <new_line>
template-runtime-code-for-every-action-end
|
Update yml package version to make it compatible with latest python | flask==0.12.3
flask-flatpages==0.6
frozen-flask==0.12
Pygments==2.1.3
python-frontmatter==0.2.1
beautifulsoup4==4.5.1
xmltodict==0.10.2
geocoder==1.20.0
ruamel.yaml==0.13.11
algoliasearch==1.12.0
google-api-python-client==1.6.2 | flask==0.12.3
flask-flatpages==0.6
frozen-flask==0.12
Pygments==2.1.3
python-frontmatter==0.2.1
beautifulsoup4==4.5.1
xmltodict==0.10.2
geocoder==1.20.0
ruamel.yaml==0.15.87
algoliasearch==1.12.0
google-api-python-client==1.6.2 |
Allow all supported docopt versions | docopt>=0.6.2
Flask>=0.10.1
Markdown>=2.5.1
path-and-address>=2.0.1
Pygments>=1.6
requests>=2.4.1
| docopt>=0.4.0
Flask>=0.10.1
Markdown>=2.5.1
path-and-address>=2.0.1
Pygments>=1.6
requests>=2.4.1
|
Update molecule from 2.10.0 to 2.12.1 | molecule==2.10.0
pytest==3.4.2
python-vagrant==0.5.15
testinfra==1.11.1
tox==2.9.1
| molecule==2.12.1
pytest==3.4.2
python-vagrant==0.5.15
testinfra==1.11.1
tox==2.9.1
|
Update pytest from 4.3.1 to 4.4.0 | mock==2.0.0
sphinx_rtd_theme==0.4.3
numpy==1.16.2
future==0.17.1
networkx==2.2
dynetx==0.2.1
bokeh==1.0.4
matplotlib==3.0.3
pytest==4.3.1
| mock==2.0.0
sphinx_rtd_theme==0.4.3
numpy==1.16.2
future==0.17.1
networkx==2.2
dynetx==0.2.1
bokeh==1.0.4
matplotlib==3.0.3
pytest==4.4.0
|
Upgrade fido2 0.9.1 -> 0.9.2 | cron-descriptor==1.2.24
cronsim==1.0
Django==3.2.9
django-compressor==2.4
fido2==0.9.1
psycopg2==2.9.1
pyotp==2.6.0
pytz==2021.3
requests==2.26.0
segno==1.3.3
statsd==3.3.0
whitenoise==5.3.0 | cron-descriptor==1.2.24
cronsim==1.0
Django==3.2.9
django-compressor==2.4
fido2==0.9.2
psycopg2==2.9.1
pyotp==2.6.0
pytz==2021.3
requests==2.26.0
segno==1.3.3
statsd==3.3.0
whitenoise==5.3.0 |
Bump types-requests from 2.28.1 to 2.28.3 | bandit==1.7.4
black==22.6.0
coverage==6.4.2
diff-cover==6.5.1
flake8==4.0.1
mock==4.0.3
pytest==7.1.2
pytest-cov==3.0.0
# Required to test building the docs
sphinx==5.0.2
# Mypy test requirements
mypy==0.961
types-requests==2.28.1
types-redis==4.3.4
| bandit==1.7.4
black==22.6.0
coverage==6.4.2
diff-cover==6.5.1
flake8==4.0.1
mock==4.0.3
pytest==7.1.2
pytest-cov==3.0.0
# Required to test building the docs
sphinx==5.0.2
# Mypy test requirements
mypy==0.961
types-requests==2.28.3
types-redis==4.3.4
|
Update cryptography from 2.3 to 2.3.1 | cryptography==2.3
pynacl==1.2.1
six==1.11.0
tox==3.2.1
coveralls==1.3.0
coverage==4.5.1
colorama==0.3.9
mock==2.0.0; python_version < '3.3'
--editable .
| cryptography==2.3.1
pynacl==1.2.1
six==1.11.0
tox==3.2.1
coveralls==1.3.0
coverage==4.5.1
colorama==0.3.9
mock==2.0.0; python_version < '3.3'
--editable .
|
Update sphinx from 1.8 to 2.4.1 | sphinx==1.8
sphinxcontrib-napoleon==0.7
mock==4.0.1
sphinx_rtd_theme==0.4.3
| sphinx==2.4.1
sphinxcontrib-napoleon==0.7
mock==4.0.1
sphinx_rtd_theme==0.4.3
|
Add -lGL to linker options, somehow didn't need until now. | cmake_minimum_required(VERSION 2.6)
project(HELLO)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
add_definitions(-std=gnu++0x -Wall)
find_package(Boost COMPONENTS system REQUIRED)
include_directories(${BOOST_INCLUDE_DIR})
find_package(GLFW REQUIRED)
include_directories(${GLFW_INCLUDE_DIR})
add_definitions(-DGLFW_NO_GLU)
find_package(GLEW REQUIRED)
include_directories(${GLEW_INCLUDE_DIR})
find_package(GLM REQUIRED)
include_directories(${GLM_INCLUDE_DIRS})
find_package(PNG REQUIRED)
include_directories(${PNG_INCLUDE_DIRS})
add_definitions(${PNG_DEFINITIONS})
file(GLOB_RECURSE sources src/*.cpp)
add_executable(test ${sources})
target_link_libraries(test ${Boost_LIBRARIES} ${GLFW_LIBRARIES} ${GLEW_LIBRARIES} ${PNG_LIBRARIES})
set(CMAKE_CXX_FLAGS_DEBUG "-g -gdwarf-3" CACHE STRING "Flags used by the compiler during debug builds" FORCE)
install(TARGETS test DESTINATION .)
install(DIRECTORY res/ DESTINATION .)
| cmake_minimum_required(VERSION 2.6)
project(HELLO)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
add_definitions(-std=gnu++0x -Wall)
find_package(Boost COMPONENTS system REQUIRED)
include_directories(${BOOST_INCLUDE_DIR})
find_package(GLFW REQUIRED)
include_directories(${GLFW_INCLUDE_DIR})
add_definitions(-DGLFW_NO_GLU)
find_package(GLEW REQUIRED)
include_directories(${GLEW_INCLUDE_DIR})
find_package(GLM REQUIRED)
include_directories(${GLM_INCLUDE_DIRS})
find_package(PNG REQUIRED)
include_directories(${PNG_INCLUDE_DIRS})
add_definitions(${PNG_DEFINITIONS})
file(GLOB_RECURSE sources src/*.cpp)
add_executable(test ${sources})
target_link_libraries(test ${Boost_LIBRARIES} ${GLFW_LIBRARIES} ${GLEW_LIBRARIES} ${PNG_LIBRARIES} GL)
set(CMAKE_CXX_FLAGS_DEBUG "-g -gdwarf-3" CACHE STRING "Flags used by the compiler during debug builds" FORCE)
install(TARGETS test DESTINATION .)
install(DIRECTORY res/ DESTINATION .)
|
Update pytest from 3.3.1 to 3.3.2 | mypy==0.550
pytest==3.3.1
pytest-cov==2.5.1
pytest-asyncio==0.8.0
jedi==0.11.1
coverage==4.4.2
flake8==3.5.0
typed-ast==1.1.0 | mypy==0.550
pytest==3.3.2
pytest-cov==2.5.1
pytest-asyncio==0.8.0
jedi==0.11.1
coverage==4.4.2
flake8==3.5.0
typed-ast==1.1.0 |
Disable IMT tests in non-IMT builds | ############################################################################
# CMakeLists.txt file for building ROOT core/imt package
############################################################################
set(sources base.cxx)
if (imt)
set(headers ROOT/TPoolManager.hxx ROOT/TThreadExecutor.hxx ROOT/TTaskGroup.hxx ROOT/TFuture.hxx)
ROOT_GENERATE_DICTIONARY(G__Imt ${headers} STAGE1 MODULE Imt LINKDEF LinkDef.h DEPENDENCIES Core Thread BUILTINS TBB) # For auto{loading,parsing}
set(sources ${sources} TImplicitMT.cxx TThreadExecutor.cxx TPoolManager.cxx TTaskGroup.cxx G__Imt.cxx)
endif()
include_directories(SYSTEM ${TBB_INCLUDE_DIRS})
ROOT_LINKER_LIBRARY(Imt ${sources} LIBRARIES ${CMAKE_THREAD_LIBS_INIT} ${TBB_LIBRARIES} DEPENDENCIES Core Thread BUILTINS TBB)
ROOT_INSTALL_HEADERS(${installoptions})
if(testing)
add_subdirectory(test)
endif()
| ############################################################################
# CMakeLists.txt file for building ROOT core/imt package
############################################################################
set(sources base.cxx)
if (imt)
set(headers ROOT/TPoolManager.hxx ROOT/TThreadExecutor.hxx ROOT/TTaskGroup.hxx ROOT/TFuture.hxx)
ROOT_GENERATE_DICTIONARY(G__Imt ${headers} STAGE1 MODULE Imt LINKDEF LinkDef.h DEPENDENCIES Core Thread BUILTINS TBB) # For auto{loading,parsing}
set(sources ${sources} TImplicitMT.cxx TThreadExecutor.cxx TPoolManager.cxx TTaskGroup.cxx G__Imt.cxx)
endif()
include_directories(SYSTEM ${TBB_INCLUDE_DIRS})
ROOT_LINKER_LIBRARY(Imt ${sources} LIBRARIES ${CMAKE_THREAD_LIBS_INIT} ${TBB_LIBRARIES} DEPENDENCIES Core Thread BUILTINS TBB)
ROOT_INSTALL_HEADERS(${installoptions})
if(imt AND testing)
add_subdirectory(test)
endif()
|
Make SQLCipher to use memory to implement temp fs instead of files. | include(ExternalProject)
#set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/leveldb")
include(ProjectSecp256k1)
add_subdirectory(bigd)
add_subdirectory(fmt)
add_subdirectory(openssl)
add_subdirectory(ethash)
add_subdirectory(snappy)
add_subdirectory(leveldb)
add_subdirectory(spdlog)
add_subdirectory(sqlcipher)
set(SQLITE_LIB sqlcipher)
# SOCI configuration
set(SOCI_STATIC ON)
#set(SOCI_SHARED OFF)
set(SOCI_SHARED OFF CACHE BOOL "USE ONLY STATIC" FORCE)
add_subdirectory(soci)
add_subdirectory(soci_sqlite3)
#add_subdirectory(soci_mysql) | include(ExternalProject)
#set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/leveldb")
include(ProjectSecp256k1)
add_subdirectory(bigd)
add_subdirectory(fmt)
add_subdirectory(openssl)
add_subdirectory(ethash)
add_subdirectory(snappy)
add_subdirectory(leveldb)
add_subdirectory(spdlog)
if (${CMAKE_SYSTEM_NAME} STREQUAL "Android")
# On Android, temporary directories are a bit special and are not located in the same place, such
# as /tmp or /usr/tmp; for this reason, we ask temporary files to be stored in memory instead
message("Compiling SQLCipher for Android with file temporary directory disabled (all-on-memory).")
add_definitions(-DSQLITE_TEMP_STORE=3)
endif ()
add_subdirectory(sqlcipher)
set(SQLITE_LIB sqlcipher)
# SOCI configuration
set(SOCI_STATIC ON)
#set(SOCI_SHARED OFF)
set(SOCI_SHARED OFF CACHE BOOL "USE ONLY STATIC" FORCE)
add_subdirectory(soci)
add_subdirectory(soci_sqlite3)
#add_subdirectory(soci_mysql)
|
Update Gilgamesh to 0.0.6 (6) | Categories:Internet
License:GPLv3
Web Site:https://github.com/n8fr8/gilgamesh/blob/HEAD/README.md
Source Code:https://github.com/n8fr8/gilgamesh/
Issue Tracker:https://github.com/n8fr8/gilgamesh/issues
Auto Name:Gilgamesh
Summary:Local chat via Bluetooth
Description:
Use Bluetooth to chat with others in the same area, even if Internet access is
down or restricted.
.
Repo Type:git
Repo:https://github.com/n8fr8/gilgamesh/
Build:1.0,1
commit=eaa1c0dd3e94c6d5da8a67b76ce5cc8fc780c225
subdir=app
Build:0.0.2,2
commit=7fae42a4f12d92c7c82a2145e60f9aa4d413cac4
subdir=app
Build:0.0.4,4
commit=0.0.4
subdir=app
Build:0.0.5,5
commit=0.0.5
subdir=app
Auto Update Mode:Version %v
Update Check Mode:Tags
Current Version:0.0.5
Current Version Code:5
| Categories:Internet
License:GPLv3
Web Site:https://github.com/n8fr8/gilgamesh/blob/HEAD/README.md
Source Code:https://github.com/n8fr8/gilgamesh/
Issue Tracker:https://github.com/n8fr8/gilgamesh/issues
Auto Name:Gilgamesh
Summary:Local chat via Bluetooth
Description:
Use Bluetooth to chat with others in the same area, even if Internet access is
down or restricted.
.
Repo Type:git
Repo:https://github.com/n8fr8/gilgamesh/
Build:1.0,1
commit=eaa1c0dd3e94c6d5da8a67b76ce5cc8fc780c225
subdir=app
Build:0.0.2,2
commit=7fae42a4f12d92c7c82a2145e60f9aa4d413cac4
subdir=app
Build:0.0.4,4
commit=0.0.4
subdir=app
Build:0.0.5,5
commit=0.0.5
subdir=app
Build:0.0.6,6
commit=0.0.6
subdir=app
Auto Update Mode:Version %v
Update Check Mode:Tags
Current Version:0.0.6
Current Version Code:6
|
Add simple-minded search index document template | {{ object.identifier|default_if_none:"" }}
{{ object.authorized_form_of_name|default_if_none:"" }}
{{ object.lod|default_if_none:"" }}
{{ object.type_of_entity|default_if_none:"" }}
{{ object.access_conditions|default_if_none:"" }}
{{ object.buildings|default_if_none:"" }}
{{ object.collecting_policies|default_if_none:"" }}
{{ object.dates_of_existence|default_if_none:"" }}
{{ object.disabled_access|default_if_none:"" }}
{{ object.finding_aids|default_if_none:"" }}
{{ object.functions|default_if_none:"" }}
{{ object.general_context|default_if_none:"" }}
{{ object.geocultural_context|default_if_none:"" }}
{{ object.history|default_if_none:"" }}
{{ object.holdings|default_if_none:"" }}
{{ object.internal_structures|default_if_none:"" }}
{{ object.legal_status|default_if_none:"" }}
{{ object.maintenance_notes|default_if_none:"" }}
{{ object.mandates|default_if_none:"" }}
{{ object.opening_times|default_if_none:"" }}
{{ object.places|default_if_none:"" }}
{{ object.reproduction_services|default_if_none:"" }}
{{ object.research_services|default_if_none:"" }}
{{ object.rules|default_if_none:"" }}
{{ object.sources|default_if_none:"" }}
{% for contact in object.contacts.all %}
{{ contact.street_address|default_if_none:"" }}
{{ contact.city|default_if_none:"" }}
{{ contact.region|default_if_none:"" }}
{% endfor %}
| |
Update coveralls from 1.2.0 to 1.3.0 | # Runtime requirements
--requirement requirements.txt
# Testing
pytest==3.6.0
pytest-cov==2.5.1
coveralls==1.2.0
| # Runtime requirements
--requirement requirements.txt
# Testing
pytest==3.6.0
pytest-cov==2.5.1
coveralls==1.3.0
|
Upgrade to latest mypy supporting f-strings | mypy==0.470
flake8==3.2.1
pytest==3.0.6
pytest-django==3.1.2
pytest-mock==1.5.0 | mypy==0.501
flake8==3.2.1
pytest==3.0.6
pytest-django==3.1.2
pytest-mock==1.5.0 |
Update django-extensions from 1.7.8 to 1.8.0 | # Local development dependencies go here
-r base.txt
-r test.txt
Sphinx==1.6.2
django-extensions==1.7.8
Werkzeug==0.11.15
factory-boy==2.8.1
django-debug-toolbar==1.7
# improved REPL
ipdb==0.10.2
| # Local development dependencies go here
-r base.txt
-r test.txt
Sphinx==1.6.2
django-extensions==1.8.0
Werkzeug==0.11.15
factory-boy==2.8.1
django-debug-toolbar==1.7
# improved REPL
ipdb==0.10.2
|
Update sphinx from 1.5.3 to 1.5.4 | -r ./base.txt
sphinx==1.5.3
alabaster==0.7.10
releases==1.3.0 # Updated from 1.2.0
| -r ./base.txt
sphinx==1.5.4
alabaster==0.7.10
releases==1.3.0 # Updated from 1.2.0
|
Update numpy from 1.13.3 to 1.14.0 | sphinx-rtd-theme==0.2.4
backports-abc==0.5
click==6.7
configparser==3.5.0
flake8==3.5.0
future==0.16.0
Keras>=2.0.0
matplotlib==2.1.1
mock==2.0.0
numpy==1.13.3
pandas==0.22.0
pandocfilters==1.4.2
pathlib2==2.3.0
pbr==3.1.1
pexpect==4.3.1
Pillow==5.0.0
protobuf==3.5.1
Pygments==2.2.0
python-dateutil==2.6.1
PyYAML==3.12
pyzmq==16.0.3
scipy==1.0.0
seaborn==0.8.1
Sphinx==1.6.5
stevedore==1.28.0
tornado==4.5.2
h5py==2.7.1
recommonmark==0.4.0
pytest-flake8==0.9
tensorflow # pyup: ignore
| sphinx-rtd-theme==0.2.4
backports-abc==0.5
click==6.7
configparser==3.5.0
flake8==3.5.0
future==0.16.0
Keras>=2.0.0
matplotlib==2.1.1
mock==2.0.0
numpy==1.14.0
pandas==0.22.0
pandocfilters==1.4.2
pathlib2==2.3.0
pbr==3.1.1
pexpect==4.3.1
Pillow==5.0.0
protobuf==3.5.1
Pygments==2.2.0
python-dateutil==2.6.1
PyYAML==3.12
pyzmq==16.0.3
scipy==1.0.0
seaborn==0.8.1
Sphinx==1.6.5
stevedore==1.28.0
tornado==4.5.2
h5py==2.7.1
recommonmark==0.4.0
pytest-flake8==0.9
tensorflow # pyup: ignore
|
Add mock to test requirements | coverage
codecov
flake8
nose
pycurl
pylint
wheel
-r installation.txt
| coverage
codecov
flake8
import mock
nose
pycurl
pylint
wheel
-r installation.txt
|
Update File Manager to 1.4 (4) | Categories:System
License:Apache2
Web Site:
Source Code:https://github.com/SimpleMobileTools/Simple-File-Manager
Issue Tracker:https://github.com/SimpleMobileTools/Simple-File-Manager/issues
Changelog:https://github.com/SimpleMobileTools/Simple-File-Manager/blob/HEAD/CHANGELOG.md
Auto Name:File Manager
Summary:A simple file manager for browsing and editing files and directories
Description:
A simple and clean file manager for browsing or editing your files and
directories. Contains no ads, unnecessary permissions and advanced functions.
What it provides, however, is a dark theme!
.
Repo Type:git
Repo:https://github.com/SimpleMobileTools/Simple-File-Manager
Build:1.0,1
commit=1.0
subdir=app
gradle=yes
Build:1.2,2
commit=1.2
subdir=app
gradle=yes
Build:1.3,3
commit=1.3
subdir=app
gradle=yes
Auto Update Mode:Version %v
Update Check Mode:Tags
Current Version:1.3
Current Version Code:3
| Categories:System
License:Apache2
Web Site:
Source Code:https://github.com/SimpleMobileTools/Simple-File-Manager
Issue Tracker:https://github.com/SimpleMobileTools/Simple-File-Manager/issues
Changelog:https://github.com/SimpleMobileTools/Simple-File-Manager/blob/HEAD/CHANGELOG.md
Auto Name:File Manager
Summary:A simple file manager for browsing and editing files and directories
Description:
A simple and clean file manager for browsing or editing your files and
directories. Contains no ads, unnecessary permissions and advanced functions.
What it provides, however, is a dark theme!
.
Repo Type:git
Repo:https://github.com/SimpleMobileTools/Simple-File-Manager
Build:1.0,1
commit=1.0
subdir=app
gradle=yes
Build:1.2,2
commit=1.2
subdir=app
gradle=yes
Build:1.3,3
commit=1.3
subdir=app
gradle=yes
Build:1.4,4
commit=1.4
subdir=app
gradle=yes
Auto Update Mode:Version %v
Update Check Mode:Tags
Current Version:1.4
Current Version Code:4
|
Update pytest from 3.0.2 to 3.0.3 | PyYAML==3.12
Sphinx==1.4.5
bumpversion==0.5.3
coverage==4.2
flake8==3.0.4
pip==8.1.2
pytest-cov==2.3.1
pytest==3.0.2
sphinx-rtd-theme==0.1.9
tox==2.3.1
twine==1.8.1
watchdog==0.8.3
wheel==0.29.0
| PyYAML==3.12
Sphinx==1.4.5
bumpversion==0.5.3
coverage==4.2
flake8==3.0.4
pip==8.1.2
pytest-cov==2.3.1
pytest==3.0.3
sphinx-rtd-theme==0.1.9
tox==2.3.1
twine==1.8.1
watchdog==0.8.3
wheel==0.29.0
|
Update bonobo-docker from 0.2.6 to 0.2.8 | -e .[docker]
appdirs==1.4.3
bonobo-docker==0.2.6
certifi==2017.4.17
chardet==3.0.4
colorama==0.3.9
docker-pycreds==0.2.1
docker==2.3.0
enum34==1.1.6
fs==2.0.3
idna==2.5
pbr==3.0.1
psutil==5.2.2
pytz==2017.2
requests==2.17.3
six==1.10.0
stevedore==1.23.0
urllib3==1.21.1
websocket-client==0.40.0
| -e .[docker]
appdirs==1.4.3
bonobo-docker==0.2.8
certifi==2017.4.17
chardet==3.0.4
colorama==0.3.9
docker-pycreds==0.2.1
docker==2.3.0
enum34==1.1.6
fs==2.0.3
idna==2.5
pbr==3.0.1
psutil==5.2.2
pytz==2017.2
requests==2.17.3
six==1.10.0
stevedore==1.23.0
urllib3==1.21.1
websocket-client==0.40.0
|
Add C99 as a requirement to build | cmake_minimum_required(VERSION 2.8.12)
project(sporkel)
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
if(COMPILER_SUPPORTS_CXX11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
elseif(COMPILER_SUPPORTS_CXX0X)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
# MSVC should support necessary C++11 features
else()
message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
endif()
add_subdirectory(ext)
add_subdirectory(deltagen)
| cmake_minimum_required(VERSION 2.8.12)
project(sporkel)
include(CheckCXXCompilerFlag)
include(CheckCCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
CHECK_C_COMPILER_FLAG("-std=c99" COMPILER_SUPPORTS_C99)
if(COMPILER_SUPPORTS_CXX11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
elseif(COMPILER_SUPPORTS_CXX0X)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
# MSVC should support necessary C++11 features
else()
message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
endif()
if(COMPILER_SUPPORTS_C99)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99")
elseif("${CMAKE_C_COMPILER_ID}" STREQUAL "MSVC")
# MSVC should support necessary C99 features
else()
message(STATUS "The compiler ${CMAKE_C_COMPILER} has no C99 support. Please use a different C99 compiler.")
endif()
add_subdirectory(ext)
add_subdirectory(deltagen)
|
Update flake8 from 3.3.0 to 3.5.0 | -r python-doc.txt
# performance
cprofilev==1.0.7
# from cookiecutter
pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
tox==2.6.0
flake8==3.3.0
coverage==4.3.4
cryptography==1.8.1
PyYAML==3.12
| -r python-doc.txt
# performance
cprofilev==1.0.7
# from cookiecutter
pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
tox==2.6.0
flake8==3.5.0
coverage==4.3.4
cryptography==1.8.1
PyYAML==3.12
|
Fix for media timebar test on windows. | Test that drag the timebar thumb causes seeks.
RUN(video.autoplay = true)
RUN(video.src = 'content/test.mp4')
EVENT(playing)
EVENT(seeked)
Time: 2.1
EVENT(seeked)
Time: 2.6
EVENT(seeked)
Time: 3.1
END OF TEST
| Test that drag the timebar thumb causes seeks.
RUN(video.autoplay = true)
RUN(video.src = 'content/test.mp4')
EVENT(playing)
EVENT(seeked)
Time: 1.7
EVENT(seeked)
Time: 2.2
EVENT(seeked)
Time: 2.7
END OF TEST
|
Update fonttools from 3.29.0 to 3.30.0 | fonttools==3.29.0
ufoLib==2.3.1
defcon==0.5.2
| fonttools==3.30.0
ufoLib==2.3.1
defcon==0.5.2
|
Update docker from 2.6.1 to 2.7.0 | docker==2.6.1
molecule==1.25.0
pytest==3.3.1
python-vagrant==0.5.15
testinfra==1.10.1
tox==2.9.1
| docker==2.7.0
molecule==1.25.0
pytest==3.3.1
python-vagrant==0.5.15
testinfra==1.10.1
tox==2.9.1
|
Correct syntax, remove ... that won't work. | # Minimal CMakeLists.txt for the AWS SDK for C++.
cmake_minimum_required(VERSION 3.2)
# Use shared libraries, which is the default for the AWS C++ SDK build.
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
# "my-example" is just an example value.
project(my-example)
# Locate the AWS SDK for C++ package.
# "s3" and "cloudtrail" are just example values.
find_package(AWSSDK REQUIRED COMPONENTS s3 cloudtrail ...)
# The executable name and its sourcefiles.
add_executable(my-example my-example.cpp)
# Build using the C++ standard version 11.
target_compile_features(my-example PUBLIC cxx_std_11)
# The libraries used by your executable.
target_link_libraries(my-example ${AWSSDK_LINK_LIBRARIES})
| # Minimal CMakeLists.txt for the AWS SDK for C++.
cmake_minimum_required(VERSION 3.2)
# Use shared libraries, which is the default for the AWS C++ SDK build.
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
# "my-example" is just an example value.
project(my-example)
# Locate the AWS SDK for C++ package.
# "s3" and "cloudtrail" are just example values.
find_package(AWSSDK REQUIRED COMPONENTS s3 cloudtrail)
# The executable name and its sourcefiles.
add_executable(my-example my-example.cpp)
# Build using the C++ standard version 11.
target_compile_features(my-example PUBLIC cxx_std_11)
# The libraries used by your executable.
target_link_libraries(my-example ${AWSSDK_LINK_LIBRARIES})
|
Update sortedcontainers from 1.5.3 to 1.5.4 | sortedcontainers==1.5.3
arrow==0.8.0
future==0.15.2
intervals==0.8.0
| sortedcontainers==1.5.4
arrow==0.8.0
future==0.15.2
intervals==0.8.0
|
Enforce utf-8 charset when building astyle | #################################################################################
#
# Copyright (C) 2019 Paul Ramsey <pramsey@cleverelephant.ca>
#
# This is free software; you can redistribute and/or modify it under
# the terms of the GNU Lesser General Public Licence as published
# by the Free Software Foundation.
# See the COPYING file for more information.
#
#################################################################################
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
file(GLOB_RECURSE astyle_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
add_executable(astyle ${astyle_SOURCES})
# message(STATUS "Enable AStyle")
| #################################################################################
#
# Copyright (C) 2019 Paul Ramsey <pramsey@cleverelephant.ca>
#
# This is free software; you can redistribute and/or modify it under
# the terms of the GNU Lesser General Public Licence as published
# by the Free Software Foundation.
# See the COPYING file for more information.
#
#################################################################################
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
file(GLOB_RECURSE astyle_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
add_executable(astyle ${astyle_SOURCES})
if(MSVC)
target_compile_options(astyle PRIVATE /source-charset:utf-8)
endif()
# message(STATUS "Enable AStyle")
|
Update the list of recommended filters for AdBlock | [Adblock]
! Title: Less Distractions = Better Productivity
! Version: 20150126
! Expires: 1 days
! ==============================================================================
! Other recommended lists to subscribe to:
! AdBlock custom filters:
! https://data.getadblock.com/filters/adblock_custom.txt
! EasyList:
! https://easylist-downloads.adblockplus.org/easylist.txt
! Fanboy's Annoyances:
! https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt
! Malware Domains:
! https://easylist-downloads.adblockplus.org/malwaredomains_full.txt
! Facebook Annoyances Blocker:
! https://easylist-downloads.adblockplus.org/fb_annoyances_full.txt
! ==============================================================================
! Disable Facebook navigation boxes.
facebook.com###appsNav
facebook.com###developerNav
facebook.com###eventsNav
facebook.com###groupsNav
facebook.com###interestsNav
facebook.com###listsNav
facebook.com###pagesNav
! Disable Hotnews marketing articles.
hotnews.ro##div[id^="article_"][style~="border:1px"]
! Enable Gmail labels matching the names of social networks.
mail.google.com#@#a[title="facebook"]
mail.google.com#@#a[title="twitter"]
! ==============================================================================
| [Adblock]
! Title: Less Distractions = Better Productivity
! Version: 20150126
! Expires: 1 days
! ==============================================================================
! Other recommended lists to subscribe to:
! AdBlock custom filters:
! https://data.getadblock.com/filters/adblock_custom.txt
! EasyList:
! https://easylist-downloads.adblockplus.org/easylist.txt
! Malware Domains:
! https://easylist-downloads.adblockplus.org/malwaredomains_full.txt
! Facebook Annoyances Blocker:
! https://easylist-downloads.adblockplus.org/fb_annoyances_full.txt
! ==============================================================================
! Disable Facebook navigation boxes.
facebook.com###appsNav
facebook.com###developerNav
facebook.com###eventsNav
facebook.com###groupsNav
facebook.com###interestsNav
facebook.com###listsNav
facebook.com###pagesNav
! Disable Hotnews marketing articles.
hotnews.ro##div[id^="article_"][style~="border:1px"]
! Enable Gmail labels matching the names of social networks.
mail.google.com#@#a[title="facebook"]
mail.google.com#@#a[title="twitter"]
! ==============================================================================
|
Add Review Bot worker development dependencies for pytest. | kgb>=7.0
reviewbot-worker[all]
| kgb>=7.0
reviewbot-worker[all]
pytest~=4.6.11; python_version == "2.7"
pytest~=7.0.1; python_version == "3.6"
pytest~=7.1.2; python_version >= "3.7"
pytest-env~=0.6.2
|
Update OneTimePad to 0.2.0 (200) | Categories:Security
License:MIT
Web Site:https://github.com/kckrinke/onetimepad/blob/HEAD/README.md
Source Code:https://github.com/kckrinke/onetimepad
Issue Tracker:https://github.com/kckrinke/onetimepad/issues
Auto Name:OneTimePad
Summary:A two-factor authentication App
Description:
OneTimePad is a two-factor authentication App for Android 4.0+.
It implements Time-based One-time Passwords (TOTP) like specified in RFC 6238.
Simply scan the QR code and login with the generated 6-digit code.
Features:
* Free and Open-Source
* Requires minimal permissions
* Encrypted storage on Android 4.3+
* Sleek minimalistic Material Design
* Great Usability
* Compatible with Google Authenticator
* Manual setup (for devices where the camera is not available)
.
Repo Type:git
Repo:https://github.com/kckrinke/onetimepad
Build:0.2.0-rc1,1
commit=v0.2.0-rc1
subdir=app
gradle=yes
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:0.2.0-rc1
Current Version Code:1
| Categories:Security
License:MIT
Web Site:https://github.com/kckrinke/onetimepad/blob/HEAD/README.md
Source Code:https://github.com/kckrinke/onetimepad
Issue Tracker:https://github.com/kckrinke/onetimepad/issues
Auto Name:OneTimePad
Summary:A two-factor authentication App
Description:
OneTimePad is a two-factor authentication App for Android 4.0+.
It implements Time-based One-time Passwords (TOTP) like specified in RFC 6238.
Simply scan the QR code and login with the generated 6-digit code.
Features:
* Free and Open-Source
* Requires minimal permissions
* Encrypted storage on Android 4.3+
* Sleek minimalistic Material Design
* Great Usability
* Compatible with Google Authenticator
* Manual setup (for devices where the camera is not available)
.
Repo Type:git
Repo:https://github.com/kckrinke/onetimepad
Build:0.2.0-rc1,1
commit=v0.2.0-rc1
subdir=app
gradle=yes
Build:0.2.0,200
commit=v0.2.0
subdir=app
gradle=yes
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:0.2.0
Current Version Code:200
|
Add target to build combined documentation | include_directories("${CMAKE_CURRENT_SOURCE_DIR}")
include_directories("${CMAKE_CURRENT_BINARY_DIR}")
add_subdirectory(fixes)
add_subdirectory(sprokit)
option(SPROKIT_ENABLE_TOOLS "Build tools" ON)
if (SPROKIT_ENABLE_TOOLS)
add_subdirectory(tools)
endif ()
add_subdirectory(bindings)
add_subdirectory(processes)
add_subdirectory(schedulers)
| include_directories("${CMAKE_CURRENT_SOURCE_DIR}")
include_directories("${CMAKE_CURRENT_BINARY_DIR}")
add_subdirectory(fixes)
add_subdirectory(sprokit)
option(SPROKIT_ENABLE_TOOLS "Build tools" ON)
if (SPROKIT_ENABLE_TOOLS)
add_subdirectory(tools)
endif ()
add_subdirectory(bindings)
add_subdirectory(processes)
add_subdirectory(schedulers)
# ----------------------------------------------------------------
# build master documentation
sprokit_create_doxygen(
"${CMAKE_CURRENT_SOURCE_DIR}"
sprokit-master)
|
Revert "pinned gdal version to 3.0.2" | GDAL==3.0.2
joblib==1.0.0
mpi4py==3.0.3
networkx==2.5
numpy==1.19.4
pyproj==3.0.0
scipy==1.5.4
numexpr==2.7.2
nptyping==1.4.0
| GDAL
joblib==1.0.0
mpi4py==3.0.3
networkx==2.5
numpy==1.19.4
pyproj==3.0.0
scipy==1.5.4
numexpr==2.7.2
nptyping==1.4.0
|
Update python-dateutil from 2.6.1 to 2.7.0 | python-dateutil==2.6.1
django==1.11.11 # pyup: >=1.11,<1.12
django-auth-ldap==1.3.0
django-filter==1.1.0
django-multiselectfield==0.1.8
djangorestframework==3.7.7
djangorestframework-jwt==1.11.0
djangorestframework-jsonapi==2.4.0
psycopg2==2.7.4
pytz==2018.3
pyexcel-webio==0.1.4
pyexcel-io==0.5.6
django-excel==0.0.10
pyexcel-ods3==0.5.2
pyexcel-xlsx==0.5.5
pyexcel-ezodf==0.3.4
django-environ==0.4.4
rest_condition==1.0.3
django-money==0.12.3
python-redmine==2.0.2
| python-dateutil==2.7.0
django==1.11.11 # pyup: >=1.11,<1.12
django-auth-ldap==1.3.0
django-filter==1.1.0
django-multiselectfield==0.1.8
djangorestframework==3.7.7
djangorestframework-jwt==1.11.0
djangorestframework-jsonapi==2.4.0
psycopg2==2.7.4
pytz==2018.3
pyexcel-webio==0.1.4
pyexcel-io==0.5.6
django-excel==0.0.10
pyexcel-ods3==0.5.2
pyexcel-xlsx==0.5.5
pyexcel-ezodf==0.3.4
django-environ==0.4.4
rest_condition==1.0.3
django-money==0.12.3
python-redmine==2.0.2
|
Update aiobotocore from 0.3.2 to 0.3.3 | aioamqp==0.10.0
aiobotocore==0.3.2
aiohttp==2.0.7
apipkg==1.4
appdirs==1.4.3
async-timeout==1.2.1
botocore==1.5.52
chardet==3.0.3
codecov==2.0.9
coverage==4.4.1
docutils==0.13.1
execnet==1.4.1
jmespath==0.9.2
multidict==2.1.5
packaging==16.8
pep8==1.7.0
py==1.4.33
pyparsing==2.2.0
pytest==3.0.7
pytest-cache==1.0
pytest-cov==2.5.1
pytest-pep8==1.0.6
python-dateutil==2.6.0
requests==2.14.2
six==1.10.0
ujson==1.35
uvloop==0.8.0
yarl==0.10.2
| aioamqp==0.10.0
aiobotocore==0.3.3
aiohttp==2.0.7
apipkg==1.4
appdirs==1.4.3
async-timeout==1.2.1
botocore==1.5.52
chardet==3.0.3
codecov==2.0.9
coverage==4.4.1
docutils==0.13.1
execnet==1.4.1
jmespath==0.9.2
multidict==2.1.5
packaging==16.8
pep8==1.7.0
py==1.4.33
pyparsing==2.2.0
pytest==3.0.7
pytest-cache==1.0
pytest-cov==2.5.1
pytest-pep8==1.0.6
python-dateutil==2.6.0
requests==2.14.2
six==1.10.0
ujson==1.35
uvloop==0.8.0
yarl==0.10.2
|
Update to latest version of coverage package | coverage==3.7.1
Cython==0.29.13
falcon==2.0.0
funcsigs==1.0.2
gunicorn==19.9.0
mock==3.0.5
nose==1.3.7
pbr==5.4.3
python-mimeparse==1.6.0
six==1.12.0
| coverage==4.5.4
Cython==0.29.13
falcon==2.0.0
funcsigs==1.0.2
gunicorn==19.9.0
mock==3.0.5
nose==1.3.7
pbr==5.4.3
python-mimeparse==1.6.0
six==1.12.0
|
Update packtools from 1.1 to 1.2 | Django<1.5
South
psycopg2==2.4.1
wsgiref==0.1.2
scielo-django-extensions==0.4
ordereddict==1.1
pillow==2.3.0
django-widget-tweaks==1.1.1
lxml
pyyaml
webassets==0.7.1
yuicompressor
jsonfield
django-tastypie==0.9.16
django-htmlmin==0.7.0
packtools==1.1
Celery
django-celery
django-kombu
defusedxml==0.4.1
cython
thriftpy
django-countries==3.3
-e git+https://github.com/scieloorg/thriftpy-wrap@0.1.1#egg=thriftpywrap
elasticsearch>=1.0.0,<2.0.0
zerorpc>=0.4.4
| Django<1.5
South
psycopg2==2.4.1
wsgiref==0.1.2
scielo-django-extensions==0.4
ordereddict==1.1
pillow==2.3.0
django-widget-tweaks==1.1.1
lxml
pyyaml
webassets==0.7.1
yuicompressor
jsonfield
django-tastypie==0.9.16
django-htmlmin==0.7.0
packtools==1.2
Celery
django-celery
django-kombu
defusedxml==0.4.1
cython
thriftpy
django-countries==3.3
-e git+https://github.com/scieloorg/thriftpy-wrap@0.1.1#egg=thriftpywrap
elasticsearch>=1.0.0,<2.0.0
zerorpc>=0.4.4
|
Update cachelib from 0.2.0 to 0.3.0 | gunicorn==20.1.0
backports-abc==0.5
bkcharts==0.2
bokeh==2.3.3
certifi==2021.5.30
chardet==4.0.0
click==8.0.1
Flask==2.0.1
idna==3.2
itsdangerous==2.0.1
Jinja2>=2.10.1
MarkupSafe==2.0.1
numpy==1.21.2
python-dateutil==2.8.2
pyyaml>=4.2b1
requests>=2.20.0
singledispatch==3.7.0
six==1.16.0
tornado==6.1
urllib3>=1.24.2
cachelib==0.2.0
pandas==1.3.1
scipy==1.7.0
astropy==4.3.post1
matplotlib==3.4.2
git+https://github.com/mpld3/mpld3@master
tables==3.6.1
apscheduler==3.7.0
PyAstronomy==0.16.0
airbrake==2.1.2
| gunicorn==20.1.0
backports-abc==0.5
bkcharts==0.2
bokeh==2.3.3
certifi==2021.5.30
chardet==4.0.0
click==8.0.1
Flask==2.0.1
idna==3.2
itsdangerous==2.0.1
Jinja2>=2.10.1
MarkupSafe==2.0.1
numpy==1.21.2
python-dateutil==2.8.2
pyyaml>=4.2b1
requests>=2.20.0
singledispatch==3.7.0
six==1.16.0
tornado==6.1
urllib3>=1.24.2
cachelib==0.3.0
pandas==1.3.1
scipy==1.7.0
astropy==4.3.post1
matplotlib==3.4.2
git+https://github.com/mpld3/mpld3@master
tables==3.6.1
apscheduler==3.7.0
PyAstronomy==0.16.0
airbrake==2.1.2
|
Update django from 1.11.3 to 1.11.4 | coverage==4.4.1
Django==1.11.3
django-bootstrap3==9.0.0
django-formtools==2.0
docutils==0.13.1
mysqlclient==1.3.10
odswriter==0.4.0
Pillow==4.2.1
selenium==2.53.6 # pyup: >=2.53,<3
git+https://github.com/d120/pyTUID.git#egg=pyTUID-1.1.1
django-sslserver==0.20
pytz==2017.2
| coverage==4.4.1
Django==1.11.4
django-bootstrap3==9.0.0
django-formtools==2.0
docutils==0.13.1
mysqlclient==1.3.10
odswriter==0.4.0
Pillow==4.2.1
selenium==2.53.6 # pyup: >=2.53,<3
git+https://github.com/d120/pyTUID.git#egg=pyTUID-1.1.1
django-sslserver==0.20
pytz==2017.2
|
Add a temporary test exception until the next WK roll. | // This file should almost always be empty. Normally Chromium test expectations
// are found in
// src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt
//
// Only add expectations here to temporarily suppress messages on the bots
// until the changes can be landed upstream.
// temporarily enable these tests downstream until they're fully upstreamed.
BUG11246 : fast/dom/Geolocation = PASS
BUG11246 DEFER SKIP : fast/dom/Geolocation/callback-exception.html = TEXT | // This file should almost always be empty. Normally Chromium test expectations
// are found in
// src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt
//
// Only add expectations here to temporarily suppress messages on the bots
// until the changes can be landed upstream.
// temporarily enable these tests downstream until they're fully upstreamed.
BUG11246 : fast/dom/Geolocation = PASS
BUG11246 DEFER SKIP : fast/dom/Geolocation/callback-exception.html = TEXT
// Fix is already in upstream, as soon as WK is rolled past r60643, remove
// this exception.
BUGJOHNNYG : fast/notifications/notifications-display-close-events.html = TEXT
|
Test file for the initial version of the script | status: draft #draft, private, public
uri: /2011/12/03/test
uid: #something along tag:la-grange.net,2000-04-12:karl
prev: #uid previous post
from: Karl Dubost <karl@la-grange.net>
created: 2011-12-03T13:01:38
updated: 2011-12-03T13:01:38
tz: EST
subject: billet à propos de 森
Un billet très simple.
| |
Update freezegun from 0.3.7 to 0.3.11 | -r requirements.txt
coverage==4.5.2
cssselect==1.0.3
freezegun==0.3.7
flake8==3.5.0
flake8-per-file-ignores==0.4.0
mock==2.0.0
pytest==3.2.3
pytest-cov==2.5.1
python-coveralls==2.5.0
requests-mock==0.6.0
watchdog==0.8.3
git+https://github.com/alphagov/digitalmarketplace-test-utils.git@2.0.0#egg=digitalmarketplace-test-utils==2.0.0
| -r requirements.txt
coverage==4.5.2
cssselect==1.0.3
freezegun==0.3.11
flake8==3.5.0
flake8-per-file-ignores==0.4.0
mock==2.0.0
pytest==3.2.3
pytest-cov==2.5.1
python-coveralls==2.5.0
requests-mock==0.6.0
watchdog==0.8.3
git+https://github.com/alphagov/digitalmarketplace-test-utils.git@2.0.0#egg=digitalmarketplace-test-utils==2.0.0
|
Bring driver link order in CMake into alignment with the order in the Makefile. This includes the fix in r94797 to reflect the new dependency of Sema on Analysis. | set(LLVM_NO_RTTI 1)
set( LLVM_USED_LIBS
clangDriver
clangFrontend
clangCodeGen
clangChecker
clangAnalysis
clangRewrite
clangSema
clangAST
clangParse
clangLex
clangBasic
)
set( LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
bitreader
bitwriter
codegen
ipo
selectiondag
)
add_clang_executable(clang
driver.cpp
cc1_main.cpp
)
if(UNIX)
set(CLANGXX_LINK_OR_COPY create_symlink)
else()
set(CLANGXX_LINK_OR_COPY copy)
endif()
# Create the clang++ symlink in the build directory.
add_custom_target(clang++ ALL
${CMAKE_COMMAND} -E ${CLANGXX_LINK_OR_COPY}
"${LLVM_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/clang${CMAKE_EXECUTABLE_SUFFIX}"
"${LLVM_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/clang++${CMAKE_EXECUTABLE_SUFFIX}"
DEPENDS clang)
install(TARGETS clang
RUNTIME DESTINATION bin)
# Create the clang++ symlink at installation time.
install(CODE "execute_process(COMMAND \"${CMAKE_COMMAND}\" -E ${CLANGXX_LINK_OR_COPY} \"${CMAKE_INSTALL_PREFIX}/bin/clang${CMAKE_EXECUTABLE_SUFFIX}\" \"\$ENV{DESTDIR}/\${CMAKE_INSTALL_PREFIX}/bin/clang++${CMAKE_EXECUTABLE_SUFFIX}\")")
| set(LLVM_NO_RTTI 1)
set( LLVM_USED_LIBS
clangFrontend
clangDriver
clangCodeGen
clangSema
clangChecker
clangAnalysis
clangRewrite
clangAST
clangParse
clangLex
clangBasic
)
set( LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
bitreader
bitwriter
codegen
ipo
selectiondag
)
add_clang_executable(clang
driver.cpp
cc1_main.cpp
)
if(UNIX)
set(CLANGXX_LINK_OR_COPY create_symlink)
else()
set(CLANGXX_LINK_OR_COPY copy)
endif()
# Create the clang++ symlink in the build directory.
add_custom_target(clang++ ALL
${CMAKE_COMMAND} -E ${CLANGXX_LINK_OR_COPY}
"${LLVM_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/clang${CMAKE_EXECUTABLE_SUFFIX}"
"${LLVM_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/clang++${CMAKE_EXECUTABLE_SUFFIX}"
DEPENDS clang)
install(TARGETS clang
RUNTIME DESTINATION bin)
# Create the clang++ symlink at installation time.
install(CODE "execute_process(COMMAND \"${CMAKE_COMMAND}\" -E ${CLANGXX_LINK_OR_COPY} \"${CMAKE_INSTALL_PREFIX}/bin/clang${CMAKE_EXECUTABLE_SUFFIX}\" \"\$ENV{DESTDIR}/\${CMAKE_INSTALL_PREFIX}/bin/clang++${CMAKE_EXECUTABLE_SUFFIX}\")")
|
Update dependency pyenchant to v3.2.0 | pika==1.1.0
pyenchant==3.1.1
scapy==2.4.4
| pika==1.1.0
pyenchant==3.2.0
scapy==2.4.4
|
Update dependency django-test-plus to v1.4.0 | # Local development dependencies go here
-r base.txt
Sphinx==2.2.2
# django-debug-toolbar that works with Django 1.5+
django-debug-toolbar==2.1
django-extensions==2.2.5
django-autofixture==0.12.1
graphviz==0.13.2
factory-boy==2.12.0
django-coverage-plugin==1.6.0
django-test-plus==1.3.1
vcrpy==2.1.1
ipdb==0.12.3
| # Local development dependencies go here
-r base.txt
Sphinx==2.2.2
# django-debug-toolbar that works with Django 1.5+
django-debug-toolbar==2.1
django-extensions==2.2.5
django-autofixture==0.12.1
graphviz==0.13.2
factory-boy==2.12.0
django-coverage-plugin==1.6.0
django-test-plus==1.4.0
vcrpy==2.1.1
ipdb==0.12.3
|
Update django from 2.2.5 to 3.0.3 | -r requirements.txt
django==2.2.5
bumpversion==0.5.3
wheel==0.33.6
django-environ==0.4.5
radon==4.0.0
djangorestframework==3.10.2
pytz==2019.2
| -r requirements.txt
django==3.0.3
bumpversion==0.5.3
wheel==0.33.6
django-environ==0.4.5
radon==4.0.0
djangorestframework==3.10.2
pytz==2019.2
|
Add image credit for icon. | Random Reddit Reviewer
======================
About
-----
A small application I created to poll reddit.com/r/random and, optionally, reddit.com/r/randnsfw.
Instructions
------------
1. Select the number of random subreddits to poll.
2. Decide whether you want to include NSFW subreddits. You can choose:
* No NSFW subreddits
* Include NSFW subreddit - has a 505 chance of returning a NSFW subreddit.
* NSFW only - only return NSFW subreddits.
3. Click on the -Get Subreddits- button
4. A list of subreddits will be displayed below.
Credits
=======
* Written by [WildCardJoker](https://www.github.com/WildCardJoker)
* Code modified using suggestions from [Resharper](https://www.jetbrains.com/resharper/)
* Thanks to [StackOverflow](https://www.stackoverflow.com) for an excellent code Q&A forum.
* Application themed using [MahApps](http://mahapps.com/)
* Enum to Human-readable Description using [Humanizer](https://github.com/Humanizr/Humanizer)
* Data Binding support via [MVVM Light](http://www.mvvmlight.net/) | Random Reddit Reviewer
======================
About
-----
A small application I created to poll reddit.com/r/random and, optionally, reddit.com/r/randnsfw.
Instructions
------------
1. Select the number of random subreddits to poll.
2. Decide whether you want to include NSFW subreddits. You can choose:
* No NSFW subreddits
* Include NSFW subreddit - has a 505 chance of returning a NSFW subreddit.
* NSFW only - only return NSFW subreddits.
3. Click on the -Get Subreddits- button
4. A list of subreddits will be displayed below.
Credits
=======
* Written by [WildCardJoker](https://www.github.com/WildCardJoker)
* Code modified using suggestions from [Resharper](https://www.jetbrains.com/resharper/)
* Thanks to [StackOverflow](https://www.stackoverflow.com) for an excellent code Q&A forum.
* Application themed using [MahApps](http://mahapps.com/)
* Enum to Human-readable Description using [Humanizer](https://github.com/Humanizr/Humanizer)
* Data Binding support via [MVVM Light](http://www.mvvmlight.net/)
* Reddit icon courtesy of [Wikimedia Commons](https://commons.wikimedia.org/wiki/File:Reddit.svg) |
Update dependency google-api-python-client to v2.7.0 | cachetools==4.2.2
certifi==2021.5.30
chardet==4.0.0
coverage==5.5
google-api-core==1.28.0
google-api-python-client==2.6.0
google-auth==1.30.1
google-auth-httplib2==0.1.0
google-auth-oauthlib==0.4.4
googleapis-common-protos==1.53.0
httplib2==0.19.1
idna==2.10
oauth2client==4.1.3
oauthlib==3.1.0
protobuf==3.17.1
pyasn1==0.4.8
pyasn1-modules==0.2.8
python-slugify==5.0.2
pytube3==9.6.4
pytz==2021.1
requests==2.25.1
requests-oauthlib==1.3.0
rsa==4.7.2
sitemap-python==0.2.0
six==1.16.0
text-unidecode==1.3
typing-extensions==3.10.0.0
uritemplate==3.0.1
urllib3==1.26.5
| cachetools==4.2.2
certifi==2021.5.30
chardet==4.0.0
coverage==5.5
google-api-core==1.28.0
google-api-python-client==2.7.0
google-auth==1.30.1
google-auth-httplib2==0.1.0
google-auth-oauthlib==0.4.4
googleapis-common-protos==1.53.0
httplib2==0.19.1
idna==2.10
oauth2client==4.1.3
oauthlib==3.1.0
protobuf==3.17.1
pyasn1==0.4.8
pyasn1-modules==0.2.8
python-slugify==5.0.2
pytube3==9.6.4
pytz==2021.1
requests==2.25.1
requests-oauthlib==1.3.0
rsa==4.7.2
sitemap-python==0.2.0
six==1.16.0
text-unidecode==1.3
typing-extensions==3.10.0.0
uritemplate==3.0.1
urllib3==1.26.5
|
Update SlimSocial for Facebook to 3.6.2 (43) | AntiFeatures:NonFreeNet
Categories:Internet
License:GPL-2.0+
Web Site:http://forum.xda-developers.com/android/apps-games/app-slimfacebook-1mb-0-permissions-t3254174
Source Code:https://github.com/rignaneseleo/SlimSocial-for-Facebook
Issue Tracker:https://github.com/rignaneseleo/SlimSocial-for-Facebook/issues
Changelog:https://github.com/rignaneseleo/SlimSocial-for-Facebook/blob/HEAD/Changelog.txt
Auto Name:SlimSocial for Facebook
Summary:Browse Facebook
Description:
Wrapper around Facebook's mobile website and APIs.
.
Repo Type:git
Repo:https://github.com/rignaneseleo/SlimSocial-for-Facebook
Build:3.5.6,40
commit=346a23d2ad0d0aa50bdf495b63a01ff0b01d7d86
subdir=SlimFacebook/app
gradle=yes
Maintainer Notes:
There are multiple commits saying "v3.5.6", one of them is actualy tagged as
v3.6.0... looks like upstream is up to some version madness. Dont use tags for
now.
.
Auto Update Mode:None
Update Check Mode:RepoManifest
Current Version:3.6.2
Current Version Code:43
| AntiFeatures:NonFreeNet
Categories:Internet
License:GPL-2.0+
Web Site:http://forum.xda-developers.com/android/apps-games/app-slimfacebook-1mb-0-permissions-t3254174
Source Code:https://github.com/rignaneseleo/SlimSocial-for-Facebook
Issue Tracker:https://github.com/rignaneseleo/SlimSocial-for-Facebook/issues
Changelog:https://github.com/rignaneseleo/SlimSocial-for-Facebook/blob/HEAD/Changelog.txt
Auto Name:SlimSocial for Facebook
Summary:Browse Facebook
Description:
Wrapper around Facebook's mobile website and APIs.
.
Repo Type:git
Repo:https://github.com/rignaneseleo/SlimSocial-for-Facebook
Build:3.5.6,40
commit=346a23d2ad0d0aa50bdf495b63a01ff0b01d7d86
subdir=SlimFacebook/app
gradle=yes
Build:3.6.2,43
commit=v3.6.2
subdir=SlimFacebook/app
gradle=yes
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:3.6.2
Current Version Code:43
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.