summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-15 04:13:40 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-15 04:13:40 +0000
commit168c31799e83f2195dc96dc3086f66eccd0c4e4e (patch)
treecbb3f36b77283c8f9ee36d54f74ce1ff6dc2b58a
parentc3a640b752158b3cd932fca19a3d77c463a562a3 (diff)
automatic import of python-pulumi-signalfx
-rw-r--r--.gitignore1
-rw-r--r--python-pulumi-signalfx.spec255
-rw-r--r--sources1
3 files changed, 257 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..9b8e317 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pulumi_signalfx-5.9.0.tar.gz
diff --git a/python-pulumi-signalfx.spec b/python-pulumi-signalfx.spec
new file mode 100644
index 0000000..52e08b8
--- /dev/null
+++ b/python-pulumi-signalfx.spec
@@ -0,0 +1,255 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pulumi-signalfx
+Version: 5.9.0
+Release: 1
+Summary: A Pulumi package for creating and managing SignalFx resources.
+License: Apache-2.0
+URL: https://pulumi.io
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/0e/80/11faca225255e23eeb5255fcadc56bb99874d15bbb31a0780c5421920ce9/pulumi_signalfx-5.9.0.tar.gz
+BuildArch: noarch
+
+
+%description
+[![Actions Status](https://github.com/pulumi/pulumi-signalfx/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-signalfx/actions)
+[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
+[![NPM version](https://badge.fury.io/js/%40pulumi%2Fsignalfx.svg)](https://www.npmjs.com/package/@pulumi/signalfx)
+[![Python version](https://badge.fury.io/py/pulumi-signalfx.svg)](https://pypi.org/project/pulumi-signalfx)
+[![NuGet version](https://badge.fury.io/nu/pulumi.signalfx.svg)](https://badge.fury.io/nu/pulumi.signalfx)
+[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-signalfx/sdk/v5/go)](https://pkg.go.dev/github.com/pulumi/pulumi-signalfx/sdk/v5/go)
+[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-signalfx/blob/master/LICENSE)
+
+# SignalFx Resource Provider
+
+The SignalFx resource provider for Pulumi lets you manage SignalFx 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/signalfx
+
+or `yarn`:
+
+ $ yarn add @pulumi/signalfx
+
+### Python
+
+To use from Python, install using `pip`:
+
+ $ pip install pulumi_signalfx
+
+### Go
+
+To use from Go, use `go get` to grab the latest version of the library
+
+ $ go get github.com/pulumi/pulumi-signalfx/sdk/v5
+
+### .NET
+
+To use from .NET, install using `dotnet add package`:
+
+ $ dotnet add package Pulumi.Signalfx
+
+## Configuration
+
+The following configuration points are available:
+
+- `signalfx:authToken` - (Required) The auth token for authentication. This can also be set via the `SFX_AUTH_TOKEN`
+ environment variable.
+- `signalfx:apiUrl` - (Optional) The API URL to use for communicating with SignalFx. This is helpful for organizations
+ who need to set their Realm or use a proxy. Note: You likely want to change `customAppUrl` too!
+- `signalfx:customAppUrl` - (Optional) The application URL that users should use to interact with assets in the browser.
+ This is used by organizations using specific realms or those with a custom SSO domain.
+
+## Reference
+
+For further information, please visit [the SignalFx provider docs](https://www.pulumi.com/docs/intro/cloud-providers/signalfx) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/signalfx).
+
+
+
+
+%package -n python3-pulumi-signalfx
+Summary: A Pulumi package for creating and managing SignalFx resources.
+Provides: python-pulumi-signalfx
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pulumi-signalfx
+[![Actions Status](https://github.com/pulumi/pulumi-signalfx/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-signalfx/actions)
+[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
+[![NPM version](https://badge.fury.io/js/%40pulumi%2Fsignalfx.svg)](https://www.npmjs.com/package/@pulumi/signalfx)
+[![Python version](https://badge.fury.io/py/pulumi-signalfx.svg)](https://pypi.org/project/pulumi-signalfx)
+[![NuGet version](https://badge.fury.io/nu/pulumi.signalfx.svg)](https://badge.fury.io/nu/pulumi.signalfx)
+[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-signalfx/sdk/v5/go)](https://pkg.go.dev/github.com/pulumi/pulumi-signalfx/sdk/v5/go)
+[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-signalfx/blob/master/LICENSE)
+
+# SignalFx Resource Provider
+
+The SignalFx resource provider for Pulumi lets you manage SignalFx 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/signalfx
+
+or `yarn`:
+
+ $ yarn add @pulumi/signalfx
+
+### Python
+
+To use from Python, install using `pip`:
+
+ $ pip install pulumi_signalfx
+
+### Go
+
+To use from Go, use `go get` to grab the latest version of the library
+
+ $ go get github.com/pulumi/pulumi-signalfx/sdk/v5
+
+### .NET
+
+To use from .NET, install using `dotnet add package`:
+
+ $ dotnet add package Pulumi.Signalfx
+
+## Configuration
+
+The following configuration points are available:
+
+- `signalfx:authToken` - (Required) The auth token for authentication. This can also be set via the `SFX_AUTH_TOKEN`
+ environment variable.
+- `signalfx:apiUrl` - (Optional) The API URL to use for communicating with SignalFx. This is helpful for organizations
+ who need to set their Realm or use a proxy. Note: You likely want to change `customAppUrl` too!
+- `signalfx:customAppUrl` - (Optional) The application URL that users should use to interact with assets in the browser.
+ This is used by organizations using specific realms or those with a custom SSO domain.
+
+## Reference
+
+For further information, please visit [the SignalFx provider docs](https://www.pulumi.com/docs/intro/cloud-providers/signalfx) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/signalfx).
+
+
+
+
+%package help
+Summary: Development documents and examples for pulumi-signalfx
+Provides: python3-pulumi-signalfx-doc
+%description help
+[![Actions Status](https://github.com/pulumi/pulumi-signalfx/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-signalfx/actions)
+[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
+[![NPM version](https://badge.fury.io/js/%40pulumi%2Fsignalfx.svg)](https://www.npmjs.com/package/@pulumi/signalfx)
+[![Python version](https://badge.fury.io/py/pulumi-signalfx.svg)](https://pypi.org/project/pulumi-signalfx)
+[![NuGet version](https://badge.fury.io/nu/pulumi.signalfx.svg)](https://badge.fury.io/nu/pulumi.signalfx)
+[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-signalfx/sdk/v5/go)](https://pkg.go.dev/github.com/pulumi/pulumi-signalfx/sdk/v5/go)
+[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-signalfx/blob/master/LICENSE)
+
+# SignalFx Resource Provider
+
+The SignalFx resource provider for Pulumi lets you manage SignalFx 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/signalfx
+
+or `yarn`:
+
+ $ yarn add @pulumi/signalfx
+
+### Python
+
+To use from Python, install using `pip`:
+
+ $ pip install pulumi_signalfx
+
+### Go
+
+To use from Go, use `go get` to grab the latest version of the library
+
+ $ go get github.com/pulumi/pulumi-signalfx/sdk/v5
+
+### .NET
+
+To use from .NET, install using `dotnet add package`:
+
+ $ dotnet add package Pulumi.Signalfx
+
+## Configuration
+
+The following configuration points are available:
+
+- `signalfx:authToken` - (Required) The auth token for authentication. This can also be set via the `SFX_AUTH_TOKEN`
+ environment variable.
+- `signalfx:apiUrl` - (Optional) The API URL to use for communicating with SignalFx. This is helpful for organizations
+ who need to set their Realm or use a proxy. Note: You likely want to change `customAppUrl` too!
+- `signalfx:customAppUrl` - (Optional) The application URL that users should use to interact with assets in the browser.
+ This is used by organizations using specific realms or those with a custom SSO domain.
+
+## Reference
+
+For further information, please visit [the SignalFx provider docs](https://www.pulumi.com/docs/intro/cloud-providers/signalfx) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/signalfx).
+
+
+
+
+%prep
+%autosetup -n pulumi-signalfx-5.9.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-signalfx -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 5.9.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..3911233
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+a29b4b7efcc3aa617c34bc18ddaf3e43 pulumi_signalfx-5.9.0.tar.gz