summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-10 10:09:04 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-10 10:09:04 +0000
commit87834207ec94cd7b7940816d8beb00925e920598 (patch)
tree87e1312c8fbf8c6e45e8ec9eae7b632c1e8ef1de
parentdb3d645ed0771b20edd82953cbc64d2028ceaed9 (diff)
automatic import of python-pulumi-gitlab
-rw-r--r--.gitignore1
-rw-r--r--python-pulumi-gitlab.spec276
-rw-r--r--sources1
3 files changed, 278 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..5bf673d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pulumi_gitlab-4.10.0.tar.gz
diff --git a/python-pulumi-gitlab.spec b/python-pulumi-gitlab.spec
new file mode 100644
index 0000000..1c8b632
--- /dev/null
+++ b/python-pulumi-gitlab.spec
@@ -0,0 +1,276 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pulumi-gitlab
+Version: 4.10.0
+Release: 1
+Summary: A Pulumi package for creating and managing GitLab resources.
+License: Apache-2.0
+URL: https://pulumi.io
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/55/83/cdc1eac3794451db99d550882946549ba51fb08570108a326b8c2e32da1b/pulumi_gitlab-4.10.0.tar.gz
+BuildArch: noarch
+
+
+%description
+[![Actions Status](https://github.com/pulumi/pulumi-gitlab/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-gitlab/actions)
+[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
+[![NPM version](https://badge.fury.io/js/%40pulumi%2Fgitlab.svg)](https://www.npmjs.com/package/@pulumi/gitlab)
+[![Python version](https://badge.fury.io/py/pulumi-gitlab.svg)](https://pypi.org/project/pulumi-gitlab)
+[![NuGet version](https://badge.fury.io/nu/pulumi.gitlab.svg)](https://badge.fury.io/nu/pulumi.gitlab)
+[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-gitlab/sdk/v4/go)](https://pkg.go.dev/github.com/pulumi/pulumi-gitlab/sdk/v4/go)
+[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-gitlab/blob/master/LICENSE)
+
+# GitLab provider
+
+The GitLab resource provider for Pulumi lets you use GitLab resources in your cloud programs. To use
+this package, please [install the Pulumi CLI first](https://pulumi.io/).
+
+## Installing
+
+This package is available in many languages in the standard packaging formats.
+
+### Node.js (Java/TypeScript)
+
+To use from JavaScript or TypeScript in Node.js, install using either `npm`:
+
+ $ npm install @pulumi/gitlab
+
+or `yarn`:
+
+ $ yarn add @pulumi/gitlab
+
+### Python
+
+To use from Python, install using `pip`:
+
+ $ pip install pulumi_gitlab
+
+### Go
+
+To use from Go, use `go get` to grab the latest version of the library
+
+ $ go get github.com/pulumi/pulumi-gitlab/sdk/v4
+
+### .NET
+
+To use from .NET, install using `dotnet add package`:
+
+ $ dotnet add package Pulumi.Gitlab
+
+## Concepts
+
+The `@pulumi/gitlab` package provides a strongly-typed means to create cloud applications that create and interact
+closely with GitLab resources.
+
+## Configuration
+
+The following configuration points are available:
+
+* token (Optional) - This is the GitLab personal access token. It must be provided but can also be sourced via `GITLAB_TOKEN`.
+
+* base_url (Optional) - This is the target GitLab base API endpoint. Providing a value is a requirement when working with GitLab CE or GitLab Enterprise e.g. https://my.gitlab.server/api/v4/. It is optional to provide this value and it can also be sourced from the GITLAB_BASE_URL environment variable. The value must end with a slash.
+
+* cacert_file (Optional) - This is a file containing the ca cert to verify the gitlab instance. This is available for use when working with GitLab CE or Gitlab Enterprise with a locally-issued or self-signed certificate chain.
+
+* insecure (Optional) - When set to true this disables SSL verification of the connection to the GitLab instance. Defaults to `false`.
+
+
+## Reference
+
+For further information, please visit [the GitLab provider docs](https://www.pulumi.com/docs/intro/cloud-providers/gitlab) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/gitlab).
+
+
+
+
+%package -n python3-pulumi-gitlab
+Summary: A Pulumi package for creating and managing GitLab resources.
+Provides: python-pulumi-gitlab
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pulumi-gitlab
+[![Actions Status](https://github.com/pulumi/pulumi-gitlab/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-gitlab/actions)
+[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
+[![NPM version](https://badge.fury.io/js/%40pulumi%2Fgitlab.svg)](https://www.npmjs.com/package/@pulumi/gitlab)
+[![Python version](https://badge.fury.io/py/pulumi-gitlab.svg)](https://pypi.org/project/pulumi-gitlab)
+[![NuGet version](https://badge.fury.io/nu/pulumi.gitlab.svg)](https://badge.fury.io/nu/pulumi.gitlab)
+[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-gitlab/sdk/v4/go)](https://pkg.go.dev/github.com/pulumi/pulumi-gitlab/sdk/v4/go)
+[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-gitlab/blob/master/LICENSE)
+
+# GitLab provider
+
+The GitLab resource provider for Pulumi lets you use GitLab resources in your cloud programs. To use
+this package, please [install the Pulumi CLI first](https://pulumi.io/).
+
+## Installing
+
+This package is available in many languages in the standard packaging formats.
+
+### Node.js (Java/TypeScript)
+
+To use from JavaScript or TypeScript in Node.js, install using either `npm`:
+
+ $ npm install @pulumi/gitlab
+
+or `yarn`:
+
+ $ yarn add @pulumi/gitlab
+
+### Python
+
+To use from Python, install using `pip`:
+
+ $ pip install pulumi_gitlab
+
+### Go
+
+To use from Go, use `go get` to grab the latest version of the library
+
+ $ go get github.com/pulumi/pulumi-gitlab/sdk/v4
+
+### .NET
+
+To use from .NET, install using `dotnet add package`:
+
+ $ dotnet add package Pulumi.Gitlab
+
+## Concepts
+
+The `@pulumi/gitlab` package provides a strongly-typed means to create cloud applications that create and interact
+closely with GitLab resources.
+
+## Configuration
+
+The following configuration points are available:
+
+* token (Optional) - This is the GitLab personal access token. It must be provided but can also be sourced via `GITLAB_TOKEN`.
+
+* base_url (Optional) - This is the target GitLab base API endpoint. Providing a value is a requirement when working with GitLab CE or GitLab Enterprise e.g. https://my.gitlab.server/api/v4/. It is optional to provide this value and it can also be sourced from the GITLAB_BASE_URL environment variable. The value must end with a slash.
+
+* cacert_file (Optional) - This is a file containing the ca cert to verify the gitlab instance. This is available for use when working with GitLab CE or Gitlab Enterprise with a locally-issued or self-signed certificate chain.
+
+* insecure (Optional) - When set to true this disables SSL verification of the connection to the GitLab instance. Defaults to `false`.
+
+
+## Reference
+
+For further information, please visit [the GitLab provider docs](https://www.pulumi.com/docs/intro/cloud-providers/gitlab) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/gitlab).
+
+
+
+
+%package help
+Summary: Development documents and examples for pulumi-gitlab
+Provides: python3-pulumi-gitlab-doc
+%description help
+[![Actions Status](https://github.com/pulumi/pulumi-gitlab/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-gitlab/actions)
+[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
+[![NPM version](https://badge.fury.io/js/%40pulumi%2Fgitlab.svg)](https://www.npmjs.com/package/@pulumi/gitlab)
+[![Python version](https://badge.fury.io/py/pulumi-gitlab.svg)](https://pypi.org/project/pulumi-gitlab)
+[![NuGet version](https://badge.fury.io/nu/pulumi.gitlab.svg)](https://badge.fury.io/nu/pulumi.gitlab)
+[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-gitlab/sdk/v4/go)](https://pkg.go.dev/github.com/pulumi/pulumi-gitlab/sdk/v4/go)
+[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-gitlab/blob/master/LICENSE)
+
+# GitLab provider
+
+The GitLab resource provider for Pulumi lets you use GitLab resources in your cloud programs. To use
+this package, please [install the Pulumi CLI first](https://pulumi.io/).
+
+## Installing
+
+This package is available in many languages in the standard packaging formats.
+
+### Node.js (Java/TypeScript)
+
+To use from JavaScript or TypeScript in Node.js, install using either `npm`:
+
+ $ npm install @pulumi/gitlab
+
+or `yarn`:
+
+ $ yarn add @pulumi/gitlab
+
+### Python
+
+To use from Python, install using `pip`:
+
+ $ pip install pulumi_gitlab
+
+### Go
+
+To use from Go, use `go get` to grab the latest version of the library
+
+ $ go get github.com/pulumi/pulumi-gitlab/sdk/v4
+
+### .NET
+
+To use from .NET, install using `dotnet add package`:
+
+ $ dotnet add package Pulumi.Gitlab
+
+## Concepts
+
+The `@pulumi/gitlab` package provides a strongly-typed means to create cloud applications that create and interact
+closely with GitLab resources.
+
+## Configuration
+
+The following configuration points are available:
+
+* token (Optional) - This is the GitLab personal access token. It must be provided but can also be sourced via `GITLAB_TOKEN`.
+
+* base_url (Optional) - This is the target GitLab base API endpoint. Providing a value is a requirement when working with GitLab CE or GitLab Enterprise e.g. https://my.gitlab.server/api/v4/. It is optional to provide this value and it can also be sourced from the GITLAB_BASE_URL environment variable. The value must end with a slash.
+
+* cacert_file (Optional) - This is a file containing the ca cert to verify the gitlab instance. This is available for use when working with GitLab CE or Gitlab Enterprise with a locally-issued or self-signed certificate chain.
+
+* insecure (Optional) - When set to true this disables SSL verification of the connection to the GitLab instance. Defaults to `false`.
+
+
+## Reference
+
+For further information, please visit [the GitLab provider docs](https://www.pulumi.com/docs/intro/cloud-providers/gitlab) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/gitlab).
+
+
+
+
+%prep
+%autosetup -n pulumi-gitlab-4.10.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-pulumi-gitlab -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 4.10.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..ed87342
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+1c80711789ba4fb9bf012343f6207c73 pulumi_gitlab-4.10.0.tar.gz