File tree Expand file tree Collapse file tree 6 files changed +8
-65
lines changed
Expand file tree Collapse file tree 6 files changed +8
-65
lines changed Original file line number Diff line number Diff line change 2525 - export TRAVIS_JOB_ID=$DRONE_BUILD_NUMBER
2626 - export COVERALLS_PULL_REQUEST=$DRONE_PULL_REQUEST
2727 - apt-get -y update
28- - apt-get -y install libboost-all -dev doxygen mkdocs graphviz zlib1g-dev gcc clang clang-format make cmake python3 python3-pip git openssl libssl-dev jq wget curl
28+ - apt-get -y install libasio -dev doxygen mkdocs graphviz zlib1g-dev gcc clang clang-format make cmake python3 python3-pip git openssl libssl-dev jq wget curl
2929 - git clone https://github.com/CrowCpp/cpp-coveralls.git
3030 - cd cpp-coveralls
3131 - pip3 install . --no-input
7373 commands :
7474 - export DEBIAN_FRONTEND=noninteractive
7575 - apt-get -y update
76- - apt-get -y install libboost-all -dev zlib1g-dev gcc clang make cmake python3 openssl libssl-dev
76+ - apt-get -y install libasio -dev zlib1g-dev gcc clang make cmake python3 openssl libssl-dev
7777 - mkdir build
7878 - cd build
7979 - cmake --version
@@ -123,7 +123,7 @@ steps:
123123 - export TRAVIS_BRANCH=$DRONE_REPO_BRANCH
124124 - export TRAVIS_JOB_ID=$DRONE_BUILD_NUMBER
125125 - apt-get -y update
126- - apt-get -y install libboost-all -dev doxygen mkdocs graphviz zlib1g-dev gcc clang make cmake python3 python3-pip git openssl libssl-dev
126+ - apt-get -y install libasio -dev doxygen mkdocs graphviz zlib1g-dev gcc clang make cmake python3 python3-pip git openssl libssl-dev
127127 - pip3 install mkdocs-material mkdocs-redirects pyyaml mkdocs-meta-descriptions-plugin --no-input
128128 - git clone https://github.com/CrowCpp/cpp-coveralls.git
129129 - cd cpp-coveralls
@@ -170,7 +170,7 @@ steps:
170170 commands :
171171 - export DEBIAN_FRONTEND=noninteractive
172172 - apt-get -y update
173- - apt-get -y install libboost-all -dev zlib1g-dev gcc clang make cmake python3 openssl libssl-dev
173+ - apt-get -y install libasio -dev zlib1g-dev gcc clang make cmake python3 openssl libssl-dev
174174 - mkdir build
175175 - cd build
176176 - cmake --version
Original file line number Diff line number Diff line change 2828addons :
2929 apt :
3030 packages :
31- - libboost-all -dev
31+ - libasio -dev
3232 - doxygen
3333 - mkdocs
3434 - graphviz
Original file line number Diff line number Diff line change @@ -52,13 +52,11 @@ target_include_directories(Crow
5252 $<INSTALL_INTERFACE:include >
5353)
5454
55- find_package (Boost 1.64 COMPONENTS system date_time REQUIRED)
5655find_package (asio REQUIRED)
5756find_package (Threads REQUIRED)
5857
5958target_link_libraries (Crow
6059 INTERFACE
61- Boost::boost Boost::system Boost::date_time
6260 asio::asio
6361 Threads::Threads
6462)
Original file line number Diff line number Diff line change 11@PACKAGE_INIT@
22
33include (CMakeFindDependencyMacro)
4- find_dependency(Boost 1.64 COMPONENTS system date_time )
4+ find_dependency(asio )
55find_dependency(Threads)
66
77set (CROW_INSTALLED_FEATURES "@CROW_FEATURES@" )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ pkgdesc="A Fast and Easy to use C++ microframework for the web."
66arch=(any)
77url=" https://crowcpp.org"
88license=(' custom:BSD-3-Clause' )
9- depends=(' boost>=1.64.0 ' )
9+ depends=(' asio ' )
1010optdepends=(' openssl: HTTPS support' ' zlib: HTTP compression support' ' cmake: Choose this if you plan on using CMake for your Crow project' )
1111conflicts=(" $pkgname -git" )
1212changelog=' changelog.md'
Original file line number Diff line number Diff line change 33 "version-string" : " master" ,
44 "dependencies" : [
55 {
6- "name" : " boost-array" ,
7- "version>=" : " 1.70.0"
8- },
9- {
10- "name" : " boost-algorithm" ,
11- "version>=" : " 1.70.0"
12- },
13- {
14- "name" : " boost-asio" ,
15- "version>=" : " 1.70.0"
16- },
17- {
18- "name" : " boost-date-time" ,
19- "version>=" : " 1.70.0"
20- },
21- {
22- "name" : " boost-functional" ,
23- "version>=" : " 1.70.0"
24- },
25- {
26- "name" : " boost-lexical-cast" ,
27- "version>=" : " 1.70.0"
28- },
29- {
30- "name" : " boost-optional" ,
31- "version>=" : " 1.70.0"
6+ "name" : " asio"
327 },
338 {
349 "name" : " openssl"
3712 "name" : " zlib"
3813 }
3914 ],
40- "overrides" : [
41- {
42- "name" : " boost-array" ,
43- "version" : " 1.70.0"
44- },
45- {
46- "name" : " boost-algorithm" ,
47- "version" : " 1.70.0"
48- },
49- {
50- "name" : " boost-asio" ,
51- "version-semver" : " 1.70.0-2"
52- },
53- {
54- "name" : " boost-date-time" ,
55- "version" : " 1.70.0"
56- },
57- {
58- "name" : " boost-functional" ,
59- "version" : " 1.70.0"
60- },
61- {
62- "name" : " boost-lexical-cast" ,
63- "version" : " 1.70.0"
64- },
65- {
66- "name" : " boost-optional" ,
67- "version" : " 1.70.0"
68- }
69- ],
7015 "builtin-baseline" : " 44d94c2edbd44f0c01d66c2ad95eb6982a9a61bc"
7116}
You can’t perform that action at this time.
0 commit comments