Merge pull request #293770 from aither64/vpsfree-client-0.18.0

vpsfree-client: 0.17.1 -> 0.18.0

authored by Peder Bergebakken Sundt and committed by GitHub b6f3d249 0e874270

+121 -75
+1 -1
pkgs/tools/virtualization/vpsfree-client/Gemfile
··· 2 3 source "https://rubygems.org" 4 5 - gem "vpsfree-client", "0.17.1"
··· 2 3 source "https://rubygems.org" 4 5 + gem "vpsfree-client", "0.18.0"
+32 -24
pkgs/tools/virtualization/vpsfree-client/Gemfile.lock
··· 1 GEM 2 remote: https://rubygems.org/ 3 specs: 4 - activesupport (7.0.5) 5 concurrent-ruby (~> 1.0, >= 1.0.2) 6 i18n (>= 1.6, < 2) 7 minitest (>= 5.1) 8 tzinfo (~> 2.0) 9 - concurrent-ruby (1.2.2) 10 curses (1.4.4) 11 - domain_name (0.5.20190701) 12 - unf (>= 0.0.5, < 1.0.0) 13 - haveapi-client (0.16.3) 14 - activesupport (>= 4.0) 15 - highline (~> 2.0.3) 16 json 17 require_all (~> 2.0.0) 18 rest-client (~> 2.1.0) 19 - ruby-progressbar (~> 1.11.0) 20 - highline (2.0.3) 21 http-accept (1.7.0) 22 http-cookie (1.0.5) 23 domain_name (~> 0.5) 24 - i18n (1.14.1) 25 concurrent-ruby (~> 1.0) 26 - json (2.6.3) 27 - mime-types (3.4.1) 28 mime-types-data (~> 3.2015) 29 - mime-types-data (3.2023.0218.1) 30 - minitest (5.18.0) 31 netrc (0.11.0) 32 require_all (2.0.0) 33 rest-client (2.1.0) 34 http-accept (>= 1.7.0, < 2.0) 35 http-cookie (>= 1.0.2, < 2.0) 36 mime-types (>= 1.16, < 4.0) 37 netrc (~> 0.8) 38 - ruby-progressbar (1.11.0) 39 tzinfo (2.0.6) 40 concurrent-ruby (~> 1.0) 41 - unf (0.1.4) 42 - unf_ext 43 - unf_ext (0.0.8.2) 44 - vpsadmin-client (3.0.0.master.20221118.pre.1.ac358990) 45 curses 46 - haveapi-client (~> 0.16.1) 47 json 48 - vpsfree-client (0.17.1) 49 - vpsadmin-client (= 3.0.0.master.20221118.pre.1.ac358990) 50 51 PLATFORMS 52 ruby 53 54 DEPENDENCIES 55 - vpsfree-client (= 0.17.1) 56 57 BUNDLED WITH 58 - 2.4.13
··· 1 GEM 2 remote: https://rubygems.org/ 3 specs: 4 + activesupport (7.1.3.2) 5 + base64 6 + bigdecimal 7 concurrent-ruby (~> 1.0, >= 1.0.2) 8 + connection_pool (>= 2.2.5) 9 + drb 10 i18n (>= 1.6, < 2) 11 minitest (>= 5.1) 12 + mutex_m 13 tzinfo (~> 2.0) 14 + base64 (0.2.0) 15 + bigdecimal (3.1.6) 16 + concurrent-ruby (1.2.3) 17 + connection_pool (2.4.1) 18 curses (1.4.4) 19 + domain_name (0.6.20240107) 20 + drb (2.2.1) 21 + haveapi-client (0.19.3) 22 + activesupport (>= 7.0) 23 + highline (~> 2.1.0) 24 json 25 require_all (~> 2.0.0) 26 rest-client (~> 2.1.0) 27 + ruby-progressbar (~> 1.13.0) 28 + highline (2.1.0) 29 http-accept (1.7.0) 30 http-cookie (1.0.5) 31 domain_name (~> 0.5) 32 + i18n (1.14.3) 33 concurrent-ruby (~> 1.0) 34 + racc (~> 1.7) 35 + json (2.7.1) 36 + mime-types (3.5.2) 37 mime-types-data (~> 3.2015) 38 + mime-types-data (3.2024.0305) 39 + minitest (5.22.2) 40 + mutex_m (0.2.0) 41 netrc (0.11.0) 42 + racc (1.7.3) 43 require_all (2.0.0) 44 rest-client (2.1.0) 45 http-accept (>= 1.7.0, < 2.0) 46 http-cookie (>= 1.0.2, < 2.0) 47 mime-types (>= 1.16, < 4.0) 48 netrc (~> 0.8) 49 + ruby-progressbar (1.13.0) 50 tzinfo (2.0.6) 51 concurrent-ruby (~> 1.0) 52 + vpsadmin-client (3.0.0.master.20231229.pre.0.51d41b07) 53 curses 54 + haveapi-client (~> 0.19.0) 55 json 56 + vpsfree-client (0.18.0) 57 + vpsadmin-client (= 3.0.0.master.20231229.pre.0.51d41b07) 58 59 PLATFORMS 60 ruby 61 62 DEPENDENCIES 63 + vpsfree-client (= 0.18.0) 64 65 BUNDLED WITH 66 + 2.4.22
+88 -50
pkgs/tools/virtualization/vpsfree-client/gemset.nix
··· 1 { 2 activesupport = { 3 - dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; 4 groups = ["default"]; 5 platforms = []; 6 source = { 7 remotes = ["https://rubygems.org"]; 8 - sha256 = "1c7k5i6531z5il4q1jnbrv7x7zcl3bgnxp5fzl71rzigk6zn53ym"; 9 type = "gem"; 10 }; 11 - version = "7.0.5"; 12 }; 13 concurrent-ruby = { 14 groups = ["default"]; 15 platforms = []; 16 source = { 17 remotes = ["https://rubygems.org"]; 18 - sha256 = "0krcwb6mn0iklajwngwsg850nk8k9b35dhmc2qkbdqvmifdi2y9q"; 19 type = "gem"; 20 }; 21 - version = "1.2.2"; 22 }; 23 curses = { 24 groups = ["default"]; ··· 31 version = "1.4.4"; 32 }; 33 domain_name = { 34 - dependencies = ["unf"]; 35 groups = ["default"]; 36 platforms = []; 37 source = { 38 remotes = ["https://rubygems.org"]; 39 - sha256 = "0lcqjsmixjp52bnlgzh4lg9ppsk52x9hpwdjd53k8jnbah2602h0"; 40 type = "gem"; 41 }; 42 - version = "0.5.20190701"; 43 }; 44 haveapi-client = { 45 dependencies = ["activesupport" "highline" "json" "require_all" "rest-client" "ruby-progressbar"]; ··· 47 platforms = []; 48 source = { 49 remotes = ["https://rubygems.org"]; 50 - sha256 = "0iz0k9cwva8icc040k5m9ah0cz08jg6x51h6ahdccw6azy8h93i1"; 51 type = "gem"; 52 }; 53 - version = "0.16.3"; 54 }; 55 highline = { 56 groups = ["default"]; 57 platforms = []; 58 source = { 59 remotes = ["https://rubygems.org"]; 60 - sha256 = "0yclf57n2j3cw8144ania99h1zinf8q3f5zrhqa754j6gl95rp9d"; 61 type = "gem"; 62 }; 63 - version = "2.0.3"; 64 }; 65 http-accept = { 66 groups = ["default"]; ··· 84 version = "1.0.5"; 85 }; 86 i18n = { 87 - dependencies = ["concurrent-ruby"]; 88 groups = ["default"]; 89 platforms = []; 90 source = { 91 remotes = ["https://rubygems.org"]; 92 - sha256 = "0qaamqsh5f3szhcakkak8ikxlzxqnv49n2p7504hcz2l0f4nj0wx"; 93 type = "gem"; 94 }; 95 - version = "1.14.1"; 96 }; 97 json = { 98 groups = ["default"]; 99 platforms = []; 100 source = { 101 remotes = ["https://rubygems.org"]; 102 - sha256 = "0nalhin1gda4v8ybk6lq8f407cgfrj6qzn234yra4ipkmlbfmal6"; 103 type = "gem"; 104 }; 105 - version = "2.6.3"; 106 }; 107 mime-types = { 108 dependencies = ["mime-types-data"]; ··· 110 platforms = []; 111 source = { 112 remotes = ["https://rubygems.org"]; 113 - sha256 = "0ipw892jbksbxxcrlx9g5ljq60qx47pm24ywgfbyjskbcl78pkvb"; 114 type = "gem"; 115 }; 116 - version = "3.4.1"; 117 }; 118 mime-types-data = { 119 groups = ["default"]; 120 platforms = []; 121 source = { 122 remotes = ["https://rubygems.org"]; 123 - sha256 = "1pky3vzaxlgm9gw5wlqwwi7wsw3jrglrfflrppvvnsrlaiz043z9"; 124 type = "gem"; 125 }; 126 - version = "3.2023.0218.1"; 127 }; 128 minitest = { 129 groups = ["default"]; 130 platforms = []; 131 source = { 132 remotes = ["https://rubygems.org"]; 133 - sha256 = "0ic7i5z88zcaqnpzprf7saimq2f6sad57g5mkkqsrqrcd6h3mx06"; 134 type = "gem"; 135 }; 136 - version = "5.18.0"; 137 }; 138 netrc = { 139 groups = ["default"]; ··· 145 }; 146 version = "0.11.0"; 147 }; 148 require_all = { 149 groups = ["default"]; 150 platforms = []; ··· 171 platforms = []; 172 source = { 173 remotes = ["https://rubygems.org"]; 174 - sha256 = "02nmaw7yx9kl7rbaan5pl8x5nn0y4j5954mzrkzi9i3dhsrps4nc"; 175 type = "gem"; 176 }; 177 - version = "1.11.0"; 178 }; 179 tzinfo = { 180 dependencies = ["concurrent-ruby"]; ··· 187 }; 188 version = "2.0.6"; 189 }; 190 - unf = { 191 - dependencies = ["unf_ext"]; 192 - groups = ["default"]; 193 - platforms = []; 194 - source = { 195 - remotes = ["https://rubygems.org"]; 196 - sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9"; 197 - type = "gem"; 198 - }; 199 - version = "0.1.4"; 200 - }; 201 - unf_ext = { 202 - groups = ["default"]; 203 - platforms = []; 204 - source = { 205 - remotes = ["https://rubygems.org"]; 206 - sha256 = "1yj2nz2l101vr1x9w2k83a0fag1xgnmjwp8w8rw4ik2rwcz65fch"; 207 - type = "gem"; 208 - }; 209 - version = "0.0.8.2"; 210 - }; 211 vpsadmin-client = { 212 dependencies = ["curses" "haveapi-client" "json"]; 213 groups = ["default"]; 214 platforms = []; 215 source = { 216 remotes = ["https://rubygems.org"]; 217 - sha256 = "1rqxvfmcbpi8wcmgwdl34il3a4gg3q3zy8pyyj0kk0v8lly0wb6d"; 218 type = "gem"; 219 }; 220 - version = "3.0.0.master.20221118.pre.1.ac358990"; 221 }; 222 vpsfree-client = { 223 dependencies = ["vpsadmin-client"]; ··· 225 platforms = []; 226 source = { 227 remotes = ["https://rubygems.org"]; 228 - sha256 = "0a4fmimzrysjcnvw2jz7f5hdslmy2aaipcgiisjkhqazw6nlbd8w"; 229 type = "gem"; 230 }; 231 - version = "0.17.1"; 232 }; 233 }
··· 1 { 2 activesupport = { 3 + dependencies = ["base64" "bigdecimal" "concurrent-ruby" "connection_pool" "drb" "i18n" "minitest" "mutex_m" "tzinfo"]; 4 + groups = ["default"]; 5 + platforms = []; 6 + source = { 7 + remotes = ["https://rubygems.org"]; 8 + sha256 = "0blbbf2x7dn7ar4g9aij403582zb6zscbj48bz63lvaamsvlb15d"; 9 + type = "gem"; 10 + }; 11 + version = "7.1.3.2"; 12 + }; 13 + base64 = { 14 + groups = ["default"]; 15 + platforms = []; 16 + source = { 17 + remotes = ["https://rubygems.org"]; 18 + sha256 = "01qml0yilb9basf7is2614skjp8384h2pycfx86cr8023arfj98g"; 19 + type = "gem"; 20 + }; 21 + version = "0.2.0"; 22 + }; 23 + bigdecimal = { 24 groups = ["default"]; 25 platforms = []; 26 source = { 27 remotes = ["https://rubygems.org"]; 28 + sha256 = "00db5v09k1z3539g1zrk7vkjrln9967k08adh6qx33ng97a2gg5w"; 29 type = "gem"; 30 }; 31 + version = "3.1.6"; 32 }; 33 concurrent-ruby = { 34 groups = ["default"]; 35 platforms = []; 36 source = { 37 remotes = ["https://rubygems.org"]; 38 + sha256 = "1qh1b14jwbbj242klkyz5fc7npd4j0mvndz62gajhvl1l3wd7zc2"; 39 + type = "gem"; 40 + }; 41 + version = "1.2.3"; 42 + }; 43 + connection_pool = { 44 + groups = ["default"]; 45 + platforms = []; 46 + source = { 47 + remotes = ["https://rubygems.org"]; 48 + sha256 = "1x32mcpm2cl5492kd6lbjbaf17qsssmpx9kdyr7z1wcif2cwyh0g"; 49 type = "gem"; 50 }; 51 + version = "2.4.1"; 52 }; 53 curses = { 54 groups = ["default"]; ··· 61 version = "1.4.4"; 62 }; 63 domain_name = { 64 groups = ["default"]; 65 platforms = []; 66 source = { 67 remotes = ["https://rubygems.org"]; 68 + sha256 = "0cyr2xm576gqhqicsyqnhanni47408w2pgvrfi8pd13h2li3nsaz"; 69 type = "gem"; 70 }; 71 + version = "0.6.20240107"; 72 + }; 73 + drb = { 74 + groups = ["default"]; 75 + platforms = []; 76 + source = { 77 + remotes = ["https://rubygems.org"]; 78 + sha256 = "0h5kbj9hvg5hb3c7l425zpds0vb42phvln2knab8nmazg2zp5m79"; 79 + type = "gem"; 80 + }; 81 + version = "2.2.1"; 82 }; 83 haveapi-client = { 84 dependencies = ["activesupport" "highline" "json" "require_all" "rest-client" "ruby-progressbar"]; ··· 86 platforms = []; 87 source = { 88 remotes = ["https://rubygems.org"]; 89 + sha256 = "0yjcf6yf90sqjsywlcxzfrfrl835ndw96x6bh4grvc75zbb5ijki"; 90 type = "gem"; 91 }; 92 + version = "0.19.3"; 93 }; 94 highline = { 95 groups = ["default"]; 96 platforms = []; 97 source = { 98 remotes = ["https://rubygems.org"]; 99 + sha256 = "1f8cr014j7mdqpdb9q17fp5vb5b8n1pswqaif91s3ylg5x3pygfn"; 100 type = "gem"; 101 }; 102 + version = "2.1.0"; 103 }; 104 http-accept = { 105 groups = ["default"]; ··· 123 version = "1.0.5"; 124 }; 125 i18n = { 126 + dependencies = ["concurrent-ruby" "racc"]; 127 groups = ["default"]; 128 platforms = []; 129 source = { 130 remotes = ["https://rubygems.org"]; 131 + sha256 = "1j9zl6ssshkdjdn21lckdhsfkkw1n4wcynqp8n67afa5qps2gmds"; 132 type = "gem"; 133 }; 134 + version = "1.14.3"; 135 }; 136 json = { 137 groups = ["default"]; 138 platforms = []; 139 source = { 140 remotes = ["https://rubygems.org"]; 141 + sha256 = "0r9jmjhg2ly3l736flk7r2al47b5c8cayh0gqkq0yhjqzc9a6zhq"; 142 type = "gem"; 143 }; 144 + version = "2.7.1"; 145 }; 146 mime-types = { 147 dependencies = ["mime-types-data"]; ··· 149 platforms = []; 150 source = { 151 remotes = ["https://rubygems.org"]; 152 + sha256 = "1r64z0m5zrn4k37wabfnv43wa6yivgdfk6cf2rpmmirlz889yaf1"; 153 type = "gem"; 154 }; 155 + version = "3.5.2"; 156 }; 157 mime-types-data = { 158 groups = ["default"]; 159 platforms = []; 160 source = { 161 remotes = ["https://rubygems.org"]; 162 + sha256 = "00x7w5xqsj9m33v3vkmy23wipkkysafksib53ypzn27p5g81w455"; 163 type = "gem"; 164 }; 165 + version = "3.2024.0305"; 166 }; 167 minitest = { 168 groups = ["default"]; 169 platforms = []; 170 source = { 171 remotes = ["https://rubygems.org"]; 172 + sha256 = "0667vf0zglacry87nkcl3ns8421aydvz71vfa3g3yjhiq8zh19f5"; 173 + type = "gem"; 174 + }; 175 + version = "5.22.2"; 176 + }; 177 + mutex_m = { 178 + groups = ["default"]; 179 + platforms = []; 180 + source = { 181 + remotes = ["https://rubygems.org"]; 182 + sha256 = "1ma093ayps1m92q845hmpk0dmadicvifkbf05rpq9pifhin0rvxn"; 183 type = "gem"; 184 }; 185 + version = "0.2.0"; 186 }; 187 netrc = { 188 groups = ["default"]; ··· 194 }; 195 version = "0.11.0"; 196 }; 197 + racc = { 198 + groups = ["default"]; 199 + platforms = []; 200 + source = { 201 + remotes = ["https://rubygems.org"]; 202 + sha256 = "01b9662zd2x9bp4rdjfid07h09zxj7kvn7f5fghbqhzc625ap1dp"; 203 + type = "gem"; 204 + }; 205 + version = "1.7.3"; 206 + }; 207 require_all = { 208 groups = ["default"]; 209 platforms = []; ··· 230 platforms = []; 231 source = { 232 remotes = ["https://rubygems.org"]; 233 + sha256 = "0cwvyb7j47m7wihpfaq7rc47zwwx9k4v7iqd9s1xch5nm53rrz40"; 234 type = "gem"; 235 }; 236 + version = "1.13.0"; 237 }; 238 tzinfo = { 239 dependencies = ["concurrent-ruby"]; ··· 246 }; 247 version = "2.0.6"; 248 }; 249 vpsadmin-client = { 250 dependencies = ["curses" "haveapi-client" "json"]; 251 groups = ["default"]; 252 platforms = []; 253 source = { 254 remotes = ["https://rubygems.org"]; 255 + sha256 = "0d1bdyda8l42x8csf4ri2cqcr3xf6pcnv7s1k859rb8ysj7y8aqx"; 256 type = "gem"; 257 }; 258 + version = "3.0.0.master.20231229.pre.0.51d41b07"; 259 }; 260 vpsfree-client = { 261 dependencies = ["vpsadmin-client"]; ··· 263 platforms = []; 264 source = { 265 remotes = ["https://rubygems.org"]; 266 + sha256 = "038a57avnp4wmfqdya5a6r4a135nh6crzs6nf0khnhdhb9kkjfjg"; 267 type = "gem"; 268 }; 269 + version = "0.18.0"; 270 }; 271 }