All of lore.kernel.org
 help / color / mirror / Atom feed
* [qemu-web PATCH v3] Add Sponsors page
@ 2021-11-24  8:05 Philippe Mathieu-Daudé
  2021-11-24  8:09 ` Alistair Francis
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-11-24  8:05 UTC (permalink / raw)
  To: qemu-devel
  Cc: Thomas Huth, John Snow, Thomas Markey,
	Philippe Mathieu-Daudé,
	Paolo Bonzini, Stefan Hajnoczi, Cleber Rosa, Alistair Francis,
	Alex Bennée

Add a page listing QEMU sponsors.

For now, only mention Fosshost which requested to be listed:
https://lists.gnu.org/archive/html/qemu-devel/2021-06/msg05381.html

Cc: Thomas Markey <admin@fosshost.org>
Resolves: https://gitlab.com/qemu-project/qemu-web/-/issues/2
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
Since v2:
- don't explicitly state /what/ we're using the resource for,
  just that we've been granted it (danpb)
- list Azure Cloud credits (Daniel)
- list PLCT Lab (Paolo)
- list Wow/CIP United again, since other are listed (Phil)
  therefore do not include Stefan R-b tag.
---
 _includes/footer.html |  3 +++
 assets/css/style.css  |  6 +++++-
 sponsors.md           | 21 +++++++++++++++++++++
 3 files changed, 29 insertions(+), 1 deletion(-)
 create mode 100644 sponsors.md

diff --git a/_includes/footer.html b/_includes/footer.html
index 1a0b960..b1f3f0c 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -15,6 +15,9 @@
 	<div id="conservancy">
 		QEMU is a member of <a href="{{ relative_root }}/conservancy/">Software Freedom Conservancy</a>
 	</div>
+	<div id="sponsors">
+		QEMU has <a href="{{ relative_root }}/sponsors/">sponsors</a>
+	</div>
 	<div id="licenses">
 		<a href="{{ relative_root }}/license.html">Website licenses</a>
 	</div>
diff --git a/assets/css/style.css b/assets/css/style.css
index 88f7e85..aede79a 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -533,7 +533,7 @@
 		padding-left: 1em;
 	}
 
-	#licenses, #conservancy, #edit-page {
+	#licenses, #conservancy, #sponsors, #edit-page {
 		padding: 0em;
 		padding-left: 1em;
 		padding-right: 1em;
@@ -552,6 +552,10 @@
 		float: left;
 	}
 
+	#sponsors {
+		float: left;
+	}
+
 	#edit-page a {
 		overflow: hidden;
 		background: url(../images/edit-page.png);
diff --git a/sponsors.md b/sponsors.md
new file mode 100644
index 0000000..29ce66c
--- /dev/null
+++ b/sponsors.md
@@ -0,0 +1,21 @@
+---
+title: QEMU sponsors
+permalink: /sponsors/
+---
+
+QEMU has sponsors!
+
+[Works on Arm](https://developer.arm.com/solutions/infrastructure/works-on-arm)
+has provided QEMU access to a dedicated physical compute host.
+
+[Fosshost](https://fosshost.org/) has provided QEMU access to a dedicated
+physical compute host.
+
+[CIP United](https://www.cipunited.com/) has provided QEMU access to a
+dedicated physical compute host.
+
+[PLCT Lab](https://github.com/plctlab) has provided QEMU access to RISC-V
+boards.
+
+[Microsoft](https://microsoft.com) has provided QEMU credits for use on Azure
+Cloud.
-- 
2.33.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [qemu-web PATCH v3] Add Sponsors page
  2021-11-24  8:05 [qemu-web PATCH v3] Add Sponsors page Philippe Mathieu-Daudé
@ 2021-11-24  8:09 ` Alistair Francis
  2021-11-24  9:03 ` Daniel P. Berrangé
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Alistair Francis @ 2021-11-24  8:09 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Thomas Huth, John Snow, Thomas Markey,
	qemu-devel@nongnu.org Developers, Stefan Hajnoczi, Cleber Rosa,
	Paolo Bonzini, Alex Bennée

On Wed, Nov 24, 2021 at 6:05 PM Philippe Mathieu-Daudé
<philmd@redhat.com> wrote:
>
> Add a page listing QEMU sponsors.
>
> For now, only mention Fosshost which requested to be listed:
> https://lists.gnu.org/archive/html/qemu-devel/2021-06/msg05381.html
>
> Cc: Thomas Markey <admin@fosshost.org>
> Resolves: https://gitlab.com/qemu-project/qemu-web/-/issues/2
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>

Alistair

> ---
> Since v2:
> - don't explicitly state /what/ we're using the resource for,
>   just that we've been granted it (danpb)
> - list Azure Cloud credits (Daniel)
> - list PLCT Lab (Paolo)
> - list Wow/CIP United again, since other are listed (Phil)
>   therefore do not include Stefan R-b tag.
> ---
>  _includes/footer.html |  3 +++
>  assets/css/style.css  |  6 +++++-
>  sponsors.md           | 21 +++++++++++++++++++++
>  3 files changed, 29 insertions(+), 1 deletion(-)
>  create mode 100644 sponsors.md
>
> diff --git a/_includes/footer.html b/_includes/footer.html
> index 1a0b960..b1f3f0c 100644
> --- a/_includes/footer.html
> +++ b/_includes/footer.html
> @@ -15,6 +15,9 @@
>         <div id="conservancy">
>                 QEMU is a member of <a href="{{ relative_root }}/conservancy/">Software Freedom Conservancy</a>
>         </div>
> +       <div id="sponsors">
> +               QEMU has <a href="{{ relative_root }}/sponsors/">sponsors</a>
> +       </div>
>         <div id="licenses">
>                 <a href="{{ relative_root }}/license.html">Website licenses</a>
>         </div>
> diff --git a/assets/css/style.css b/assets/css/style.css
> index 88f7e85..aede79a 100644
> --- a/assets/css/style.css
> +++ b/assets/css/style.css
> @@ -533,7 +533,7 @@
>                 padding-left: 1em;
>         }
>
> -       #licenses, #conservancy, #edit-page {
> +       #licenses, #conservancy, #sponsors, #edit-page {
>                 padding: 0em;
>                 padding-left: 1em;
>                 padding-right: 1em;
> @@ -552,6 +552,10 @@
>                 float: left;
>         }
>
> +       #sponsors {
> +               float: left;
> +       }
> +
>         #edit-page a {
>                 overflow: hidden;
>                 background: url(../images/edit-page.png);
> diff --git a/sponsors.md b/sponsors.md
> new file mode 100644
> index 0000000..29ce66c
> --- /dev/null
> +++ b/sponsors.md
> @@ -0,0 +1,21 @@
> +---
> +title: QEMU sponsors
> +permalink: /sponsors/
> +---
> +
> +QEMU has sponsors!
> +
> +[Works on Arm](https://developer.arm.com/solutions/infrastructure/works-on-arm)
> +has provided QEMU access to a dedicated physical compute host.
> +
> +[Fosshost](https://fosshost.org/) has provided QEMU access to a dedicated
> +physical compute host.
> +
> +[CIP United](https://www.cipunited.com/) has provided QEMU access to a
> +dedicated physical compute host.
> +
> +[PLCT Lab](https://github.com/plctlab) has provided QEMU access to RISC-V
> +boards.
> +
> +[Microsoft](https://microsoft.com) has provided QEMU credits for use on Azure
> +Cloud.
> --
> 2.33.1
>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [qemu-web PATCH v3] Add Sponsors page
  2021-11-24  8:05 [qemu-web PATCH v3] Add Sponsors page Philippe Mathieu-Daudé
  2021-11-24  8:09 ` Alistair Francis
@ 2021-11-24  9:03 ` Daniel P. Berrangé
  2021-11-24  9:42 ` Richard Henderson
  2021-11-24 10:11 ` Stefan Hajnoczi
  3 siblings, 0 replies; 7+ messages in thread
From: Daniel P. Berrangé @ 2021-11-24  9:03 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Thomas Huth, Alex Bennée, Thomas Markey, qemu-devel,
	Alistair Francis, Stefan Hajnoczi, Cleber Rosa, Paolo Bonzini,
	John Snow

On Wed, Nov 24, 2021 at 09:05:19AM +0100, Philippe Mathieu-Daudé wrote:
> Add a page listing QEMU sponsors.
> 
> For now, only mention Fosshost which requested to be listed:
> https://lists.gnu.org/archive/html/qemu-devel/2021-06/msg05381.html
> 
> Cc: Thomas Markey <admin@fosshost.org>
> Resolves: https://gitlab.com/qemu-project/qemu-web/-/issues/2
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> Since v2:
> - don't explicitly state /what/ we're using the resource for,
>   just that we've been granted it (danpb)
> - list Azure Cloud credits (Daniel)
> - list PLCT Lab (Paolo)
> - list Wow/CIP United again, since other are listed (Phil)
>   therefore do not include Stefan R-b tag.
> ---
>  _includes/footer.html |  3 +++
>  assets/css/style.css  |  6 +++++-
>  sponsors.md           | 21 +++++++++++++++++++++
>  3 files changed, 29 insertions(+), 1 deletion(-)
>  create mode 100644 sponsors.md

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [qemu-web PATCH v3] Add Sponsors page
  2021-11-24  8:05 [qemu-web PATCH v3] Add Sponsors page Philippe Mathieu-Daudé
  2021-11-24  8:09 ` Alistair Francis
  2021-11-24  9:03 ` Daniel P. Berrangé
@ 2021-11-24  9:42 ` Richard Henderson
  2021-11-24 11:30   ` Philippe Mathieu-Daudé
  2021-11-24 10:11 ` Stefan Hajnoczi
  3 siblings, 1 reply; 7+ messages in thread
From: Richard Henderson @ 2021-11-24  9:42 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel
  Cc: Thomas Huth, Alex Bennée, Thomas Markey, Alistair Francis,
	Stefan Hajnoczi, Cleber Rosa, Paolo Bonzini, John Snow

On 11/24/21 9:05 AM, Philippe Mathieu-Daudé wrote:
> Add a page listing QEMU sponsors.
> 
> For now, only mention Fosshost which requested to be listed:

This...

> https://lists.gnu.org/archive/html/qemu-devel/2021-06/msg05381.html
> 
> Cc: Thomas Markey <admin@fosshost.org>
> Resolves: https://gitlab.com/qemu-project/qemu-web/-/issues/2
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> Since v2:
> - don't explicitly state /what/ we're using the resource for,
>    just that we've been granted it (danpb)
> - list Azure Cloud credits (Daniel)
> - list PLCT Lab (Paolo)
> - list Wow/CIP United again, since other are listed (Phil)
>    therefore do not include Stefan R-b tag.

... no longer matches this.


r~


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [qemu-web PATCH v3] Add Sponsors page
  2021-11-24  8:05 [qemu-web PATCH v3] Add Sponsors page Philippe Mathieu-Daudé
                   ` (2 preceding siblings ...)
  2021-11-24  9:42 ` Richard Henderson
@ 2021-11-24 10:11 ` Stefan Hajnoczi
  2021-11-24 11:29   ` Philippe Mathieu-Daudé
  3 siblings, 1 reply; 7+ messages in thread
From: Stefan Hajnoczi @ 2021-11-24 10:11 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Thomas Huth, John Snow, Thomas Markey, qemu-devel, Paolo Bonzini,
	Cleber Rosa, Alistair Francis, Alex Bennée

[-- Attachment #1: Type: text/plain, Size: 621 bytes --]

On Wed, Nov 24, 2021 at 09:05:19AM +0100, Philippe Mathieu-Daudé wrote:
> Add a page listing QEMU sponsors.
> 
> For now, only mention Fosshost which requested to be listed:
> https://lists.gnu.org/archive/html/qemu-devel/2021-06/msg05381.html

I don't know if Azure Cloud, PLCT, CIP United, and ARM wanted QEMU to
list them as sponsors. Sometimes organizations do not want others to
claim an association with them. Are there links to email threads or
pages where they asked to be listed or gave permission?

Without that info reviewers don't know whether it is appropriate to list
these sponsors.

Stefan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [qemu-web PATCH v3] Add Sponsors page
  2021-11-24 10:11 ` Stefan Hajnoczi
@ 2021-11-24 11:29   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-11-24 11:29 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: Thomas Huth, John Snow, Thomas Markey, qemu-devel, Paolo Bonzini,
	Cleber Rosa, Alistair Francis, Alex Bennée

On 11/24/21 11:11, Stefan Hajnoczi wrote:
> On Wed, Nov 24, 2021 at 09:05:19AM +0100, Philippe Mathieu-Daudé wrote:
>> Add a page listing QEMU sponsors.
>>
>> For now, only mention Fosshost which requested to be listed:
>> https://lists.gnu.org/archive/html/qemu-devel/2021-06/msg05381.html
> 
> I don't know if Azure Cloud, PLCT, CIP United, and ARM wanted QEMU to
> list them as sponsors. Sometimes organizations do not want others to
> claim an association with them. Are there links to email threads or
> pages where they asked to be listed or gave permission?
> 
> Without that info reviewers don't know whether it is appropriate to list
> these sponsors.

Alright, v4 sent.



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [qemu-web PATCH v3] Add Sponsors page
  2021-11-24  9:42 ` Richard Henderson
@ 2021-11-24 11:30   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-11-24 11:30 UTC (permalink / raw)
  To: Richard Henderson, qemu-devel
  Cc: Thomas Huth, Alex Bennée, Thomas Markey, Alistair Francis,
	Stefan Hajnoczi, Cleber Rosa, Paolo Bonzini, John Snow

On 11/24/21 10:42, Richard Henderson wrote:
> On 11/24/21 9:05 AM, Philippe Mathieu-Daudé wrote:
>> Add a page listing QEMU sponsors.
>>
>> For now, only mention Fosshost which requested to be listed:
> 
> This...
> 
>> https://lists.gnu.org/archive/html/qemu-devel/2021-06/msg05381.html
>>
>> Cc: Thomas Markey <admin@fosshost.org>
>> Resolves: https://gitlab.com/qemu-project/qemu-web/-/issues/2
>> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>> ---
>> Since v2:
>> - don't explicitly state /what/ we're using the resource for,
>>    just that we've been granted it (danpb)
>> - list Azure Cloud credits (Daniel)
>> - list PLCT Lab (Paolo)
>> - list Wow/CIP United again, since other are listed (Phil)
>>    therefore do not include Stefan R-b tag.
> 
> ... no longer matches this.

Yes sorry. Posted v4 based on v2 so the desc is still accurate.



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-11-24 11:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-24  8:05 [qemu-web PATCH v3] Add Sponsors page Philippe Mathieu-Daudé
2021-11-24  8:09 ` Alistair Francis
2021-11-24  9:03 ` Daniel P. Berrangé
2021-11-24  9:42 ` Richard Henderson
2021-11-24 11:30   ` Philippe Mathieu-Daudé
2021-11-24 10:11 ` Stefan Hajnoczi
2021-11-24 11:29   ` Philippe Mathieu-Daudé

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.