From e7b48ff1b8b130e9e6a4b13a3cf8c81ecbaedf4b Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Fri, 5 May 2023 10:56:55 +0000 Subject: automatic import of python-cloudcomponents-cdk-static-website --- .gitignore | 1 + python-cloudcomponents-cdk-static-website.spec | 448 +++++++++++++++++++++++++ sources | 1 + 3 files changed, 450 insertions(+) create mode 100644 python-cloudcomponents-cdk-static-website.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..a6a0a74 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/cloudcomponents.cdk-static-website-2.0.0.tar.gz diff --git a/python-cloudcomponents-cdk-static-website.spec b/python-cloudcomponents-cdk-static-website.spec new file mode 100644 index 0000000..05bdbf9 --- /dev/null +++ b/python-cloudcomponents-cdk-static-website.spec @@ -0,0 +1,448 @@ +%global _empty_manifest_terminate_build 0 +Name: python-cloudcomponents.cdk-static-website +Version: 2.0.0 +Release: 1 +Summary: Cdk component that creates a static website using S3, configures CloudFront (CDN) and maps a custom domain via Route53 (DNS) +License: MIT +URL: https://github.com/cloudcomponents/cdk-constructs +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/83/3e/14ed86ee99d28b055d5fd81e1379e990d4fc85606fa3261ad1e04d45fc60/cloudcomponents.cdk-static-website-2.0.0.tar.gz +BuildArch: noarch + +Requires: python3-aws-cdk-lib +Requires: python3-constructs +Requires: python3-jsii +Requires: python3-publication + +%description +[![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-static-website + +[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx) +[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-static-website) +[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-static-website/) +[![Mentioned in Awesome CDK](https://awesome.re/mentioned-badge.svg)](https://github.com/kolomied/awesome-cdk) + +> Cdk component that creates a static website using S3, configures CloudFront (CDN) and maps a custom domain via Route53 (DNS) + +## Install + +TypeScript/JavaScript: + +```bash +npm i @cloudcomponents/cdk-static-website +``` + +Python: + +```bash +pip install cloudcomponents.cdk-static-website +``` + +## How to use + +```python +import { StaticWebsite } from '@cloudcomponents/cdk-static-website'; +import { RemovalPolicy, Stack, StackProps, aws_route53 } from 'aws-cdk-lib'; +import { Construct } from 'constructs'; + +export class StaticWebsiteStack extends Stack { + constructor(scope: Construct, id: string, props: StackProps) { + super(scope, id, props); + + const hostedZone = aws_route53.HostedZone.fromLookup(this, 'HostedZone', { + domainName: 'cloudcomponents.org', + }); + + new StaticWebsite(this, 'StaticWebsite', { + hostedZone, + domainNames: ['cloudcomponents.org', 'www.cloudcomponents.org'], + removalPolicy: RemovalPolicy.DESTROY, + }); + } +} +``` + +### Single page application (SPA) + +```python +import { StaticWebsite } from '@cloudcomponents/cdk-static-website'; +import { RemovalPolicy, Stack, StackProps, aws_route53 } from 'aws-cdk-lib'; +import { Construct } from 'constructs'; + +export class StaticWebsiteStack extends Stack { + constructor(scope: Construct, id: string, props: StackProps) { + super(scope, id, props); + + const hostedZone = aws_route53.HostedZone.fromLookup(this, 'HostedZone', { + domainName: 'cloudcomponents.org', + }); + + new StaticWebsite(this, 'StaticWebsite', { + hostedZone, + domainNames: ['cloudcomponents.org', 'www.cloudcomponents.org'], + errorResponses: [ + { + httpStatus: 404, + responseHttpStatus: 200, + ttl: props.ttl ?? Duration.seconds(300), + responsePagePath: '/index.html', + }, + ], + removalPolicy: RemovalPolicy.DESTROY, + }); + } +} +``` + +### Lambda at edge + +```python +import { StaticWebsite } from '@cloudcomponents/cdk-static-website'; +import { OriginMutation } from '@cloudcomponents/cdk-lambda-at-edge-pattern'; +import { RemovalPolicy, Stack, StackProps, aws_route53 } from 'aws-cdk-lib'; + +import { Construct } from 'constructs'; + +export class StaticWebsiteStack extends Stack { + constructor(scope: Construct, id: string, props: StackProps) { + super(scope, id, props); + + const hostedZone = aws_route53.HostedZone.fromLookup(this, 'HostedZone', { + domainName: 'cloudcomponents.org', + }); + + const originMutation = new OriginMutation(stack, 'OriginMutation'); + + new StaticWebsite(this, 'StaticWebsite', { + hostedZone, + domainNames: ['cloudcomponents.org', 'www.cloudcomponents.org'], + edgeLambdas: [originMutation], + removalPolicy: RemovalPolicy.DESTROY, + }); + } +} +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-static-website/API.md). + +## Example + +See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples). + +## License + +[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-static-website/LICENSE) + + + + +%package -n python3-cloudcomponents.cdk-static-website +Summary: Cdk component that creates a static website using S3, configures CloudFront (CDN) and maps a custom domain via Route53 (DNS) +Provides: python-cloudcomponents.cdk-static-website +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-cloudcomponents.cdk-static-website +[![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-static-website + +[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx) +[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-static-website) +[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-static-website/) +[![Mentioned in Awesome CDK](https://awesome.re/mentioned-badge.svg)](https://github.com/kolomied/awesome-cdk) + +> Cdk component that creates a static website using S3, configures CloudFront (CDN) and maps a custom domain via Route53 (DNS) + +## Install + +TypeScript/JavaScript: + +```bash +npm i @cloudcomponents/cdk-static-website +``` + +Python: + +```bash +pip install cloudcomponents.cdk-static-website +``` + +## How to use + +```python +import { StaticWebsite } from '@cloudcomponents/cdk-static-website'; +import { RemovalPolicy, Stack, StackProps, aws_route53 } from 'aws-cdk-lib'; +import { Construct } from 'constructs'; + +export class StaticWebsiteStack extends Stack { + constructor(scope: Construct, id: string, props: StackProps) { + super(scope, id, props); + + const hostedZone = aws_route53.HostedZone.fromLookup(this, 'HostedZone', { + domainName: 'cloudcomponents.org', + }); + + new StaticWebsite(this, 'StaticWebsite', { + hostedZone, + domainNames: ['cloudcomponents.org', 'www.cloudcomponents.org'], + removalPolicy: RemovalPolicy.DESTROY, + }); + } +} +``` + +### Single page application (SPA) + +```python +import { StaticWebsite } from '@cloudcomponents/cdk-static-website'; +import { RemovalPolicy, Stack, StackProps, aws_route53 } from 'aws-cdk-lib'; +import { Construct } from 'constructs'; + +export class StaticWebsiteStack extends Stack { + constructor(scope: Construct, id: string, props: StackProps) { + super(scope, id, props); + + const hostedZone = aws_route53.HostedZone.fromLookup(this, 'HostedZone', { + domainName: 'cloudcomponents.org', + }); + + new StaticWebsite(this, 'StaticWebsite', { + hostedZone, + domainNames: ['cloudcomponents.org', 'www.cloudcomponents.org'], + errorResponses: [ + { + httpStatus: 404, + responseHttpStatus: 200, + ttl: props.ttl ?? Duration.seconds(300), + responsePagePath: '/index.html', + }, + ], + removalPolicy: RemovalPolicy.DESTROY, + }); + } +} +``` + +### Lambda at edge + +```python +import { StaticWebsite } from '@cloudcomponents/cdk-static-website'; +import { OriginMutation } from '@cloudcomponents/cdk-lambda-at-edge-pattern'; +import { RemovalPolicy, Stack, StackProps, aws_route53 } from 'aws-cdk-lib'; + +import { Construct } from 'constructs'; + +export class StaticWebsiteStack extends Stack { + constructor(scope: Construct, id: string, props: StackProps) { + super(scope, id, props); + + const hostedZone = aws_route53.HostedZone.fromLookup(this, 'HostedZone', { + domainName: 'cloudcomponents.org', + }); + + const originMutation = new OriginMutation(stack, 'OriginMutation'); + + new StaticWebsite(this, 'StaticWebsite', { + hostedZone, + domainNames: ['cloudcomponents.org', 'www.cloudcomponents.org'], + edgeLambdas: [originMutation], + removalPolicy: RemovalPolicy.DESTROY, + }); + } +} +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-static-website/API.md). + +## Example + +See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples). + +## License + +[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-static-website/LICENSE) + + + + +%package help +Summary: Development documents and examples for cloudcomponents.cdk-static-website +Provides: python3-cloudcomponents.cdk-static-website-doc +%description help +[![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs) + +# @cloudcomponents/cdk-static-website + +[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build) +[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx) +[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-static-website) +[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-static-website/) +[![Mentioned in Awesome CDK](https://awesome.re/mentioned-badge.svg)](https://github.com/kolomied/awesome-cdk) + +> Cdk component that creates a static website using S3, configures CloudFront (CDN) and maps a custom domain via Route53 (DNS) + +## Install + +TypeScript/JavaScript: + +```bash +npm i @cloudcomponents/cdk-static-website +``` + +Python: + +```bash +pip install cloudcomponents.cdk-static-website +``` + +## How to use + +```python +import { StaticWebsite } from '@cloudcomponents/cdk-static-website'; +import { RemovalPolicy, Stack, StackProps, aws_route53 } from 'aws-cdk-lib'; +import { Construct } from 'constructs'; + +export class StaticWebsiteStack extends Stack { + constructor(scope: Construct, id: string, props: StackProps) { + super(scope, id, props); + + const hostedZone = aws_route53.HostedZone.fromLookup(this, 'HostedZone', { + domainName: 'cloudcomponents.org', + }); + + new StaticWebsite(this, 'StaticWebsite', { + hostedZone, + domainNames: ['cloudcomponents.org', 'www.cloudcomponents.org'], + removalPolicy: RemovalPolicy.DESTROY, + }); + } +} +``` + +### Single page application (SPA) + +```python +import { StaticWebsite } from '@cloudcomponents/cdk-static-website'; +import { RemovalPolicy, Stack, StackProps, aws_route53 } from 'aws-cdk-lib'; +import { Construct } from 'constructs'; + +export class StaticWebsiteStack extends Stack { + constructor(scope: Construct, id: string, props: StackProps) { + super(scope, id, props); + + const hostedZone = aws_route53.HostedZone.fromLookup(this, 'HostedZone', { + domainName: 'cloudcomponents.org', + }); + + new StaticWebsite(this, 'StaticWebsite', { + hostedZone, + domainNames: ['cloudcomponents.org', 'www.cloudcomponents.org'], + errorResponses: [ + { + httpStatus: 404, + responseHttpStatus: 200, + ttl: props.ttl ?? Duration.seconds(300), + responsePagePath: '/index.html', + }, + ], + removalPolicy: RemovalPolicy.DESTROY, + }); + } +} +``` + +### Lambda at edge + +```python +import { StaticWebsite } from '@cloudcomponents/cdk-static-website'; +import { OriginMutation } from '@cloudcomponents/cdk-lambda-at-edge-pattern'; +import { RemovalPolicy, Stack, StackProps, aws_route53 } from 'aws-cdk-lib'; + +import { Construct } from 'constructs'; + +export class StaticWebsiteStack extends Stack { + constructor(scope: Construct, id: string, props: StackProps) { + super(scope, id, props); + + const hostedZone = aws_route53.HostedZone.fromLookup(this, 'HostedZone', { + domainName: 'cloudcomponents.org', + }); + + const originMutation = new OriginMutation(stack, 'OriginMutation'); + + new StaticWebsite(this, 'StaticWebsite', { + hostedZone, + domainNames: ['cloudcomponents.org', 'www.cloudcomponents.org'], + edgeLambdas: [originMutation], + removalPolicy: RemovalPolicy.DESTROY, + }); + } +} +``` + +## API Reference + +See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-static-website/API.md). + +## Example + +See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples). + +## License + +[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-static-website/LICENSE) + + + + +%prep +%autosetup -n cloudcomponents.cdk-static-website-2.0.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-cloudcomponents.cdk-static-website -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot - 2.0.0-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..00f48af --- /dev/null +++ b/sources @@ -0,0 +1 @@ +20390896bc72ffe1964fd934c8f03ced cloudcomponents.cdk-static-website-2.0.0.tar.gz -- cgit v1.2.3