pulp_python_client 3.6.0 → 3.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/lib/pulp_python_client/api_client.rb +2 -5
- data/lib/pulp_python_client/configuration.rb +1 -0
- data/lib/pulp_python_client/version.rb +1 -1
- data/pulp_python_client.gemspec +3 -3
- metadata +44 -39
- data/git_push.sh +0 -58
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9fdf6a4cbf3bb2e61942d847cda3fe2f71b35e8b5ccbc6de94e4f3cd61843204
|
4
|
+
data.tar.gz: 0a87cbceec12efe517dc3da277f07fcee42015023c08b8cb329e580f2f5e0738
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf1e83ad1318a3639e2c5eca38bea0c6ee0ae2b4396fb8274005dbbe085eb3918ae7379eec212cb117da85c5548d665f6de9f0641d622902f3607458961a44a0
|
7
|
+
data.tar.gz: ae52d4407d74ab44cabdf4a858832d5a1472dfc4ddc1becf6841cccee7566a69a267e130c7a2146264a3b886c1ddb5c6182b04fa4e118fd13b00a326134d6e74
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: v3
|
10
|
-
- Package version: 3.6.
|
10
|
+
- Package version: 3.6.1
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build pulp_python_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_python_client-3.6.
|
27
|
+
gem install ./pulp_python_client-3.6.1.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_python_client-3.6.
|
30
|
+
(for development, run `gem install --dev ./pulp_python_client-3.6.1.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'pulp_python_client', '~> 3.6.
|
36
|
+
gem 'pulp_python_client', '~> 3.6.1'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -118,9 +118,6 @@ module PulpPythonClient
|
|
118
118
|
update_params_for_auth! header_params, query_params, opts[:auth_names]
|
119
119
|
|
120
120
|
req_opts = {
|
121
|
-
:method => http_method,
|
122
|
-
:headers => header_params,
|
123
|
-
:params => query_params,
|
124
121
|
:params_encoding => @config.params_encoding,
|
125
122
|
:timeout => @config.timeout,
|
126
123
|
:verbose => @config.debugging
|
@@ -128,13 +125,13 @@ module PulpPythonClient
|
|
128
125
|
|
129
126
|
if [:post, :patch, :put, :delete].include?(http_method)
|
130
127
|
req_body = build_request_body(header_params, form_params, opts[:body])
|
131
|
-
req_opts.update :body => req_body
|
132
128
|
if @config.debugging
|
133
129
|
@config.logger.debug "HTTP request body param ~BEGIN~\n#{req_body}\n~END~\n"
|
134
130
|
end
|
135
131
|
end
|
136
132
|
request.headers = header_params
|
137
133
|
request.body = req_body
|
134
|
+
request.options = OpenStruct.new(req_opts)
|
138
135
|
request.url url
|
139
136
|
request.params = query_params
|
140
137
|
download_file(request) if opts[:return_type] == 'File'
|
@@ -157,7 +154,7 @@ module PulpPythonClient
|
|
157
154
|
case value
|
158
155
|
when ::File, ::Tempfile
|
159
156
|
# TODO hardcode to application/octet-stream, need better way to detect content type
|
160
|
-
data[key] = Faraday::
|
157
|
+
data[key] = Faraday::FilePart.new(value.path, 'application/octet-stream', value.path)
|
161
158
|
when ::Array, nil
|
162
159
|
# let Faraday handle Array and nil parameters
|
163
160
|
data[key] = value
|
data/pulp_python_client.gemspec
CHANGED
@@ -21,13 +21,13 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.platform = Gem::Platform::RUBY
|
22
22
|
s.authors = ["OpenAPI-Generator"]
|
23
23
|
s.email = ["pulp-list@redhat.com"]
|
24
|
-
s.homepage = "https://
|
24
|
+
s.homepage = "https://github.com/pulp/pulp_python"
|
25
25
|
s.summary = "Pulp 3 API Ruby Gem"
|
26
26
|
s.description = "Fetch, Upload, Organize, and Distribute Software Packages"
|
27
|
-
s.license = '
|
27
|
+
s.license = 'GPLv2+'
|
28
28
|
s.required_ruby_version = ">= 1.9"
|
29
29
|
|
30
|
-
s.add_runtime_dependency 'faraday', '>= 0.
|
30
|
+
s.add_runtime_dependency 'faraday', '>= 1.0.1', '< 2.0'
|
31
31
|
s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
|
32
32
|
|
33
33
|
s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_python_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.6.
|
4
|
+
version: 3.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -16,14 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 1.0.1
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '2.0'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
27
|
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
29
|
+
version: 1.0.1
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '2.0'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: json
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -118,7 +124,6 @@ files:
|
|
118
124
|
- docs/RepositoryVersion.md
|
119
125
|
- docs/RepositoryVersionResponse.md
|
120
126
|
- docs/SummaryResponse.md
|
121
|
-
- git_push.sh
|
122
127
|
- lib/pulp_python_client.rb
|
123
128
|
- lib/pulp_python_client/api/content_packages_api.rb
|
124
129
|
- lib/pulp_python_client/api/distributions_pypi_api.rb
|
@@ -216,9 +221,9 @@ files:
|
|
216
221
|
- spec/models/repository_version_spec.rb
|
217
222
|
- spec/models/summary_response_spec.rb
|
218
223
|
- spec/spec_helper.rb
|
219
|
-
homepage: https://
|
224
|
+
homepage: https://github.com/pulp/pulp_python
|
220
225
|
licenses:
|
221
|
-
-
|
226
|
+
- GPLv2+
|
222
227
|
metadata: {}
|
223
228
|
post_install_message:
|
224
229
|
rdoc_options: []
|
@@ -240,50 +245,50 @@ signing_key:
|
|
240
245
|
specification_version: 4
|
241
246
|
summary: Pulp 3 API Ruby Gem
|
242
247
|
test_files:
|
243
|
-
- spec/api/repositories_python_versions_api_spec.rb
|
244
|
-
- spec/api/remotes_python_api_spec.rb
|
245
248
|
- spec/api/pypi_api_spec.rb
|
246
|
-
- spec/api/pypi_simple_api_spec.rb
|
247
|
-
- spec/api/pypi_metadata_api_spec.rb
|
248
249
|
- spec/api/content_packages_api_spec.rb
|
249
|
-
- spec/api/
|
250
|
+
- spec/api/remotes_python_api_spec.rb
|
251
|
+
- spec/api/pypi_simple_api_spec.rb
|
252
|
+
- spec/api/repositories_python_api_spec.rb
|
250
253
|
- spec/api/distributions_pypi_api_spec.rb
|
254
|
+
- spec/api/pypi_metadata_api_spec.rb
|
251
255
|
- spec/api/pypi_legacy_api_spec.rb
|
252
|
-
- spec/api/
|
256
|
+
- spec/api/publications_pypi_api_spec.rb
|
257
|
+
- spec/api/repositories_python_versions_api_spec.rb
|
253
258
|
- spec/api_client_spec.rb
|
254
259
|
- spec/configuration_spec.rb
|
255
|
-
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
256
|
-
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
257
|
-
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
258
|
-
- spec/models/python_python_package_content_spec.rb
|
259
|
-
- spec/models/python_python_distribution_response_spec.rb
|
260
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
261
|
-
- spec/models/python_python_publication_response_spec.rb
|
262
|
-
- spec/models/repository_add_remove_content_spec.rb
|
263
|
-
- spec/models/python_python_remote_spec.rb
|
264
|
-
- spec/models/policy_enum_spec.rb
|
265
|
-
- spec/models/repository_sync_url_spec.rb
|
266
|
-
- spec/models/package_metadata_response_spec.rb
|
267
|
-
- spec/models/repository_version_response_spec.rb
|
268
260
|
- spec/models/python_python_distribution_spec.rb
|
269
|
-
- spec/models/python_bander_remote_spec.rb
|
270
|
-
- spec/models/patchedpython_python_repository_spec.rb
|
271
|
-
- spec/models/python_python_repository_response_spec.rb
|
272
|
-
- spec/models/content_summary_response_spec.rb
|
273
|
-
- spec/models/patchedpython_python_remote_spec.rb
|
274
|
-
- spec/models/python_python_repository_spec.rb
|
275
261
|
- spec/models/package_types_enum_spec.rb
|
262
|
+
- spec/models/python_python_remote_response_spec.rb
|
276
263
|
- spec/models/content_summary_spec.rb
|
277
|
-
- spec/models/package_upload_task_response_spec.rb
|
278
|
-
- spec/models/package_upload_spec.rb
|
279
|
-
- spec/models/repository_version_spec.rb
|
280
264
|
- spec/models/async_operation_response_spec.rb
|
265
|
+
- spec/models/patchedpython_python_repository_spec.rb
|
281
266
|
- spec/models/paginatedpython_python_remote_response_list_spec.rb
|
282
|
-
- spec/models/
|
267
|
+
- spec/models/python_python_package_content_spec.rb
|
268
|
+
- spec/models/patchedpython_python_remote_spec.rb
|
269
|
+
- spec/models/package_metadata_response_spec.rb
|
270
|
+
- spec/models/repository_version_response_spec.rb
|
271
|
+
- spec/models/package_upload_spec.rb
|
272
|
+
- spec/models/python_python_publication_response_spec.rb
|
273
|
+
- spec/models/python_bander_remote_spec.rb
|
274
|
+
- spec/models/paginatedpython_python_distribution_response_list_spec.rb
|
275
|
+
- spec/models/repository_sync_url_spec.rb
|
276
|
+
- spec/models/package_upload_task_response_spec.rb
|
283
277
|
- spec/models/python_python_package_content_response_spec.rb
|
284
|
-
- spec/models/
|
278
|
+
- spec/models/policy_enum_spec.rb
|
285
279
|
- spec/models/summary_response_spec.rb
|
286
|
-
- spec/models/
|
280
|
+
- spec/models/repository_version_spec.rb
|
281
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
282
|
+
- spec/models/paginatedpython_python_publication_response_list_spec.rb
|
287
283
|
- spec/models/python_python_publication_spec.rb
|
288
|
-
- spec/models/
|
284
|
+
- spec/models/python_python_repository_spec.rb
|
285
|
+
- spec/models/exclude_platforms_enum_spec.rb
|
286
|
+
- spec/models/python_python_remote_spec.rb
|
287
|
+
- spec/models/patchedpython_python_distribution_spec.rb
|
288
|
+
- spec/models/paginatedpython_python_repository_response_list_spec.rb
|
289
|
+
- spec/models/python_python_distribution_response_spec.rb
|
290
|
+
- spec/models/python_python_repository_response_spec.rb
|
291
|
+
- spec/models/repository_add_remove_content_spec.rb
|
292
|
+
- spec/models/content_summary_response_spec.rb
|
293
|
+
- spec/models/paginatedpython_python_package_content_response_list_spec.rb
|
289
294
|
- spec/spec_helper.rb
|
data/git_push.sh
DELETED
@@ -1,58 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
|
3
|
-
#
|
4
|
-
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
|
5
|
-
|
6
|
-
git_user_id=$1
|
7
|
-
git_repo_id=$2
|
8
|
-
release_note=$3
|
9
|
-
git_host=$4
|
10
|
-
|
11
|
-
if [ "$git_host" = "" ]; then
|
12
|
-
git_host="github.com"
|
13
|
-
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
|
14
|
-
fi
|
15
|
-
|
16
|
-
if [ "$git_user_id" = "" ]; then
|
17
|
-
git_user_id="GIT_USER_ID"
|
18
|
-
echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
|
19
|
-
fi
|
20
|
-
|
21
|
-
if [ "$git_repo_id" = "" ]; then
|
22
|
-
git_repo_id="GIT_REPO_ID"
|
23
|
-
echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
|
24
|
-
fi
|
25
|
-
|
26
|
-
if [ "$release_note" = "" ]; then
|
27
|
-
release_note="Minor update"
|
28
|
-
echo "[INFO] No command line input provided. Set \$release_note to $release_note"
|
29
|
-
fi
|
30
|
-
|
31
|
-
# Initialize the local directory as a Git repository
|
32
|
-
git init
|
33
|
-
|
34
|
-
# Adds the files in the local repository and stages them for commit.
|
35
|
-
git add .
|
36
|
-
|
37
|
-
# Commits the tracked changes and prepares them to be pushed to a remote repository.
|
38
|
-
git commit -m "$release_note"
|
39
|
-
|
40
|
-
# Sets the new remote
|
41
|
-
git_remote=`git remote`
|
42
|
-
if [ "$git_remote" = "" ]; then # git remote not defined
|
43
|
-
|
44
|
-
if [ "$GIT_TOKEN" = "" ]; then
|
45
|
-
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
|
46
|
-
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
|
47
|
-
else
|
48
|
-
git remote add origin https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git
|
49
|
-
fi
|
50
|
-
|
51
|
-
fi
|
52
|
-
|
53
|
-
git pull origin master
|
54
|
-
|
55
|
-
# Pushes (Forces) the changes in the local repository up to the remote repository
|
56
|
-
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
|
57
|
-
git push origin master 2>&1 | grep -v 'To https'
|
58
|
-
|