public inbox for cgen@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] start a simple MAINTAINERS file
@ 2021-09-14 19:45 Mike Frysinger
  2021-09-14 20:12 ` Jose E. Marchesi
  2021-09-14 20:47 ` [PATCH v2] " Mike Frysinger
  0 siblings, 2 replies; 7+ messages in thread
From: Mike Frysinger @ 2021-09-14 19:45 UTC (permalink / raw)
  To: cgen

---
 MAINTAINERS | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 MAINTAINERS

diff --git a/MAINTAINERS b/MAINTAINERS
new file mode 100644
index 000000000000..190d00577bab
--- /dev/null
+++ b/MAINTAINERS
@@ -0,0 +1,23 @@
+		CGEN Maintainers
+
+This file describes different groups of people who are, together, the
+maintainers and developers of the CGEN project.  Don't worry - it sounds
+more complicated than it really is.
+
+If you are considering contributing a patch, you'll want to send them to
+cgen@sourceware.org.  See the mailing list page for more information:
+https://sourceware.org/mailman/listinfo/cgen
+
+	Global Maintainers
+
+Jose E. Marchesi		jose.marchesi@oracle.com
+
+	Maintainers for particular pieces
+
+GNU simulator:
+See global maintainers in sim/MAINTAINERS
+Mike Frysinger	<vapier@gentoo.org>
+
+	Write After Approval Maintainers
+
+If you have git push access to this repo, you're in this group already :).
-- 
2.33.0


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

* Re: [PATCH] start a simple MAINTAINERS file
  2021-09-14 19:45 [PATCH] start a simple MAINTAINERS file Mike Frysinger
@ 2021-09-14 20:12 ` Jose E. Marchesi
  2021-09-14 20:15   ` Frank Ch. Eigler
  2021-09-14 20:45   ` Mike Frysinger
  2021-09-14 20:47 ` [PATCH v2] " Mike Frysinger
  1 sibling, 2 replies; 7+ messages in thread
From: Jose E. Marchesi @ 2021-09-14 20:12 UTC (permalink / raw)
  To: Mike Frysinger via Cgen


> ---
>  MAINTAINERS | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>  create mode 100644 MAINTAINERS
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> new file mode 100644
> index 000000000000..190d00577bab
> --- /dev/null
> +++ b/MAINTAINERS
> @@ -0,0 +1,23 @@
> +		CGEN Maintainers
> +
> +This file describes different groups of people who are, together, the
> +maintainers and developers of the CGEN project.  Don't worry - it sounds
> +more complicated than it really is.
> +
> +If you are considering contributing a patch, you'll want to send them to
> +cgen@sourceware.org.  See the mailing list page for more information:
> +https://sourceware.org/mailman/listinfo/cgen
> +
> +	Global Maintainers
> +
> +Jose E. Marchesi		jose.marchesi@oracle.com

Now wait a minute... how did that happen? :D

I actually sent an email to Frank today, offering my help with the
maintenance, but he hasn't come back to me yet.  Right now I don't have
the right to actually approve patches.

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

* Re: [PATCH] start a simple MAINTAINERS file
  2021-09-14 20:12 ` Jose E. Marchesi
@ 2021-09-14 20:15   ` Frank Ch. Eigler
  2021-09-14 21:04     ` Jose E. Marchesi
  2021-09-14 20:45   ` Mike Frysinger
  1 sibling, 1 reply; 7+ messages in thread
From: Frank Ch. Eigler @ 2021-09-14 20:15 UTC (permalink / raw)
  To: Jose E. Marchesi; +Cc: Mike Frysinger via Cgen

Hi -

> > +	Global Maintainers
> > +
> > +Jose E. Marchesi		jose.marchesi@oracle.com
> 
> Now wait a minute... how did that happen? :D

Fine with me -- but for a transitional period might as well
list me also, if such formality is required.


- FChE


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

* Re: [PATCH] start a simple MAINTAINERS file
  2021-09-14 20:12 ` Jose E. Marchesi
  2021-09-14 20:15   ` Frank Ch. Eigler
@ 2021-09-14 20:45   ` Mike Frysinger
  1 sibling, 0 replies; 7+ messages in thread
From: Mike Frysinger @ 2021-09-14 20:45 UTC (permalink / raw)
  To: Jose E. Marchesi; +Cc: cgen

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

On 14 Sep 2021 22:12, Jose E. Marchesi wrote:
> > ---
> >  MAINTAINERS | 23 +++++++++++++++++++++++
> >  1 file changed, 23 insertions(+)
> >  create mode 100644 MAINTAINERS
> >
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > new file mode 100644
> > index 000000000000..190d00577bab
> > --- /dev/null
> > +++ b/MAINTAINERS
> > @@ -0,0 +1,23 @@
> > +		CGEN Maintainers
> > +
> > +This file describes different groups of people who are, together, the
> > +maintainers and developers of the CGEN project.  Don't worry - it sounds
> > +more complicated than it really is.
> > +
> > +If you are considering contributing a patch, you'll want to send them to
> > +cgen@sourceware.org.  See the mailing list page for more information:
> > +https://sourceware.org/mailman/listinfo/cgen
> > +
> > +	Global Maintainers
> > +
> > +Jose E. Marchesi		jose.marchesi@oracle.com
> 
> Now wait a minute... how did that happen? :D
> 
> I actually sent an email to Frank today, offering my help with the
> maintenance, but he hasn't come back to me yet.  Right now I don't have
> the right to actually approve patches.

tbh, i just looked at recent commit history.  i have no idea who is in 
charge :).
-mike

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

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

* [PATCH v2] start a simple MAINTAINERS file
  2021-09-14 19:45 [PATCH] start a simple MAINTAINERS file Mike Frysinger
  2021-09-14 20:12 ` Jose E. Marchesi
@ 2021-09-14 20:47 ` Mike Frysinger
  2021-09-14 21:14   ` Jose E. Marchesi
  1 sibling, 1 reply; 7+ messages in thread
From: Mike Frysinger @ 2021-09-14 20:47 UTC (permalink / raw)
  To: cgen

---
 MAINTAINERS | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 MAINTAINERS

diff --git a/MAINTAINERS b/MAINTAINERS
new file mode 100644
index 000000000000..47548bcdef18
--- /dev/null
+++ b/MAINTAINERS
@@ -0,0 +1,24 @@
+		CGEN Maintainers
+
+This file describes different groups of people who are, together, the
+maintainers and developers of the CGEN project.  Don't worry - it sounds
+more complicated than it really is.
+
+If you are considering contributing a patch, you'll want to send them to
+cgen@sourceware.org.  See the mailing list page for more information:
+https://sourceware.org/mailman/listinfo/cgen
+
+	Global Maintainers
+
+Frank Ch. Eigler		fche@redhat.com
+Jose E. Marchesi		jemarch@gnu.org
+
+	Maintainers for particular pieces
+
+GNU simulator:
+See global maintainers in sim/MAINTAINERS
+Mike Frysinger	<vapier@gentoo.org>
+
+	Write After Approval Maintainers
+
+If you have git push access to this repo, you're in this group already :).
-- 
2.33.0


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

* Re: [PATCH] start a simple MAINTAINERS file
  2021-09-14 20:15   ` Frank Ch. Eigler
@ 2021-09-14 21:04     ` Jose E. Marchesi
  0 siblings, 0 replies; 7+ messages in thread
From: Jose E. Marchesi @ 2021-09-14 21:04 UTC (permalink / raw)
  To: Frank Ch. Eigler; +Cc: Mike Frysinger via Cgen


> Hi -
>
>> > +	Global Maintainers
>> > +
>> > +Jose E. Marchesi		jose.marchesi@oracle.com
>> 
>> Now wait a minute... how did that happen? :D
>
> Fine with me -- but for a transitional period might as well
> list me also, if such formality is required.

Thanks Frank.

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

* Re: [PATCH v2] start a simple MAINTAINERS file
  2021-09-14 20:47 ` [PATCH v2] " Mike Frysinger
@ 2021-09-14 21:14   ` Jose E. Marchesi
  0 siblings, 0 replies; 7+ messages in thread
From: Jose E. Marchesi @ 2021-09-14 21:14 UTC (permalink / raw)
  To: Mike Frysinger via Cgen


OK :)

> ---
>  MAINTAINERS | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
>  create mode 100644 MAINTAINERS
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> new file mode 100644
> index 000000000000..47548bcdef18
> --- /dev/null
> +++ b/MAINTAINERS
> @@ -0,0 +1,24 @@
> +		CGEN Maintainers
> +
> +This file describes different groups of people who are, together, the
> +maintainers and developers of the CGEN project.  Don't worry - it sounds
> +more complicated than it really is.
> +
> +If you are considering contributing a patch, you'll want to send them to
> +cgen@sourceware.org.  See the mailing list page for more information:
> +https://sourceware.org/mailman/listinfo/cgen
> +
> +	Global Maintainers
> +
> +Frank Ch. Eigler		fche@redhat.com
> +Jose E. Marchesi		jemarch@gnu.org
> +
> +	Maintainers for particular pieces
> +
> +GNU simulator:
> +See global maintainers in sim/MAINTAINERS
> +Mike Frysinger	<vapier@gentoo.org>
> +
> +	Write After Approval Maintainers
> +
> +If you have git push access to this repo, you're in this group already :).

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

end of thread, other threads:[~2021-09-14 21:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-14 19:45 [PATCH] start a simple MAINTAINERS file Mike Frysinger
2021-09-14 20:12 ` Jose E. Marchesi
2021-09-14 20:15   ` Frank Ch. Eigler
2021-09-14 21:04     ` Jose E. Marchesi
2021-09-14 20:45   ` Mike Frysinger
2021-09-14 20:47 ` [PATCH v2] " Mike Frysinger
2021-09-14 21:14   ` Jose E. Marchesi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).