public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] [PATCH 03/16] gnome2-utils.eclass: remove redundant @USAGE lines
@ 2019-09-06 18:40 bkohler
  2019-10-09 20:12 ` Gilles Dartiguelongue
  0 siblings, 1 reply; 3+ messages in thread
From: bkohler @ 2019-09-06 18:40 UTC (permalink / raw
  To: gentoo-dev; +Cc: Ben Kohler

From: Ben Kohler <bkohler@gentoo.org>

Signed-off-by: Ben Kohler <bkohler@gentoo.org>
---
 eclass/gnome2-utils.eclass | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/eclass/gnome2-utils.eclass b/eclass/gnome2-utils.eclass
index 06683a7467f..c9765f6fd91 100644
--- a/eclass/gnome2-utils.eclass
+++ b/eclass/gnome2-utils.eclass
@@ -297,7 +297,6 @@ gnome2_schemas_savelist() {
 }
 
 # @FUNCTION: gnome2_schemas_update
-# @USAGE: gnome2_schemas_update
 # @DESCRIPTION:
 # Updates GSettings schemas.
 # This function should be called from pkg_postinst and pkg_postrm.
@@ -328,7 +327,6 @@ gnome2_gdk_pixbuf_savelist() {
 }
 
 # @FUNCTION: gnome2_gdk_pixbuf_update
-# @USAGE: gnome2_gdk_pixbuf_update
 # @DESCRIPTION:
 # Updates gdk-pixbuf loader cache if GNOME2_ECLASS_GDK_PIXBUF_LOADERS has some.
 # This function should be called from pkg_postinst and pkg_postrm.
@@ -360,7 +358,6 @@ gnome2_gdk_pixbuf_update() {
 }
 
 # @FUNCTION: gnome2_query_immodules_gtk2
-# @USAGE: gnome2_query_immodules_gtk2
 # @DESCRIPTION:
 # Updates gtk2 immodules/gdk-pixbuf loaders listing.
 gnome2_query_immodules_gtk2() {
@@ -374,7 +371,6 @@ gnome2_query_immodules_gtk2() {
 }
 
 # @FUNCTION: gnome2_query_immodules_gtk3
-# @USAGE: gnome2_query_immodules_gtk3
 # @DESCRIPTION:
 # Updates gtk3 immodules/gdk-pixbuf loaders listing.
 gnome2_query_immodules_gtk3() {
@@ -388,7 +384,6 @@ gnome2_query_immodules_gtk3() {
 }
 
 # @FUNCTION: gnome2_giomodule_cache_update
-# @USAGE: gnome2_giomodule_cache_update
 # @DESCRIPTION:
 # Updates glib's gio modules cache.
 # This function should be called from pkg_postinst and pkg_postrm.
-- 
2.23.0



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

* Re: [gentoo-dev] [PATCH 03/16] gnome2-utils.eclass: remove redundant @USAGE lines
  2019-09-06 18:40 [gentoo-dev] [PATCH 03/16] gnome2-utils.eclass: remove redundant @USAGE lines bkohler
@ 2019-10-09 20:12 ` Gilles Dartiguelongue
  2019-10-09 20:33   ` Mart Raudsepp
  0 siblings, 1 reply; 3+ messages in thread
From: Gilles Dartiguelongue @ 2019-10-09 20:12 UTC (permalink / raw
  To: gentoo-dev

Looks good.

Le vendredi 06 septembre 2019 à 13:40 -0500, bkohler@gentoo.org a
écrit :
> From: Ben Kohler <bkohler@gentoo.org>
> 
> Signed-off-by: Ben Kohler <bkohler@gentoo.org>
> ---
>  eclass/gnome2-utils.eclass | 5 -----
>  1 file changed, 5 deletions(-)
> 
> diff --git a/eclass/gnome2-utils.eclass b/eclass/gnome2-utils.eclass
> index 06683a7467f..c9765f6fd91 100644
> --- a/eclass/gnome2-utils.eclass
> +++ b/eclass/gnome2-utils.eclass
> @@ -297,7 +297,6 @@ gnome2_schemas_savelist() {
>  }
>  
>  # @FUNCTION: gnome2_schemas_update
> -# @USAGE: gnome2_schemas_update
>  # @DESCRIPTION:
>  # Updates GSettings schemas.
>  # This function should be called from pkg_postinst and pkg_postrm.
> @@ -328,7 +327,6 @@ gnome2_gdk_pixbuf_savelist() {
>  }
>  
>  # @FUNCTION: gnome2_gdk_pixbuf_update
> -# @USAGE: gnome2_gdk_pixbuf_update
>  # @DESCRIPTION:
>  # Updates gdk-pixbuf loader cache if
> GNOME2_ECLASS_GDK_PIXBUF_LOADERS has some.
>  # This function should be called from pkg_postinst and pkg_postrm.
> @@ -360,7 +358,6 @@ gnome2_gdk_pixbuf_update() {
>  }
>  
>  # @FUNCTION: gnome2_query_immodules_gtk2
> -# @USAGE: gnome2_query_immodules_gtk2
>  # @DESCRIPTION:
>  # Updates gtk2 immodules/gdk-pixbuf loaders listing.
>  gnome2_query_immodules_gtk2() {
> @@ -374,7 +371,6 @@ gnome2_query_immodules_gtk2() {
>  }
>  
>  # @FUNCTION: gnome2_query_immodules_gtk3
> -# @USAGE: gnome2_query_immodules_gtk3
>  # @DESCRIPTION:
>  # Updates gtk3 immodules/gdk-pixbuf loaders listing.
>  gnome2_query_immodules_gtk3() {
> @@ -388,7 +384,6 @@ gnome2_query_immodules_gtk3() {
>  }
>  
>  # @FUNCTION: gnome2_giomodule_cache_update
> -# @USAGE: gnome2_giomodule_cache_update
>  # @DESCRIPTION:
>  # Updates glib's gio modules cache.
>  # This function should be called from pkg_postinst and pkg_postrm.
-- 
Gilles Dartiguelongue <eva@gentoo.org>
Gentoo



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

* Re: [gentoo-dev] [PATCH 03/16] gnome2-utils.eclass: remove redundant @USAGE lines
  2019-10-09 20:12 ` Gilles Dartiguelongue
@ 2019-10-09 20:33   ` Mart Raudsepp
  0 siblings, 0 replies; 3+ messages in thread
From: Mart Raudsepp @ 2019-10-09 20:33 UTC (permalink / raw
  To: gentoo-dev

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

Ühel kenal päeval, K, 09.10.2019 kell 22:12, kirjutas Gilles
Dartiguelongue:
> Looks good.

I'm waiting on a patch or patchset for EAPI-7 fixes to appear to
gentoo-dev for review, and then to merge all of that in the same push
(together with a trivial third change waiting in bugzilla). That
patchset has yet to appear here iirc, but was a topic of discussion
earlier today and I believe it should appear soon by author. Once we
are happy, I can merge them all at once.


Mart

> Le vendredi 06 septembre 2019 à 13:40 -0500, bkohler@gentoo.org a
> écrit :
> > From: Ben Kohler <bkohler@gentoo.org>
> > 
> > Signed-off-by: Ben Kohler <bkohler@gentoo.org>
> > ---
> >  eclass/gnome2-utils.eclass | 5 -----
> >  1 file changed, 5 deletions(-)
> > 
> > diff --git a/eclass/gnome2-utils.eclass b/eclass/gnome2-
> > utils.eclass
> > index 06683a7467f..c9765f6fd91 100644
> > --- a/eclass/gnome2-utils.eclass
> > +++ b/eclass/gnome2-utils.eclass
> > @@ -297,7 +297,6 @@ gnome2_schemas_savelist() {
> >  }
> >  
> >  # @FUNCTION: gnome2_schemas_update
> > -# @USAGE: gnome2_schemas_update
> >  # @DESCRIPTION:
> >  # Updates GSettings schemas.
> >  # This function should be called from pkg_postinst and pkg_postrm.
> > @@ -328,7 +327,6 @@ gnome2_gdk_pixbuf_savelist() {
> >  }
> >  
> >  # @FUNCTION: gnome2_gdk_pixbuf_update
> > -# @USAGE: gnome2_gdk_pixbuf_update
> >  # @DESCRIPTION:
> >  # Updates gdk-pixbuf loader cache if
> > GNOME2_ECLASS_GDK_PIXBUF_LOADERS has some.
> >  # This function should be called from pkg_postinst and pkg_postrm.
> > @@ -360,7 +358,6 @@ gnome2_gdk_pixbuf_update() {
> >  }
> >  
> >  # @FUNCTION: gnome2_query_immodules_gtk2
> > -# @USAGE: gnome2_query_immodules_gtk2
> >  # @DESCRIPTION:
> >  # Updates gtk2 immodules/gdk-pixbuf loaders listing.
> >  gnome2_query_immodules_gtk2() {
> > @@ -374,7 +371,6 @@ gnome2_query_immodules_gtk2() {
> >  }
> >  
> >  # @FUNCTION: gnome2_query_immodules_gtk3
> > -# @USAGE: gnome2_query_immodules_gtk3
> >  # @DESCRIPTION:
> >  # Updates gtk3 immodules/gdk-pixbuf loaders listing.
> >  gnome2_query_immodules_gtk3() {
> > @@ -388,7 +384,6 @@ gnome2_query_immodules_gtk3() {
> >  }
> >  
> >  # @FUNCTION: gnome2_giomodule_cache_update
> > -# @USAGE: gnome2_giomodule_cache_update
> >  # @DESCRIPTION:
> >  # Updates glib's gio modules cache.
> >  # This function should be called from pkg_postinst and pkg_postrm.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 981 bytes --]

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

end of thread, other threads:[~2019-10-09 20:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-06 18:40 [gentoo-dev] [PATCH 03/16] gnome2-utils.eclass: remove redundant @USAGE lines bkohler
2019-10-09 20:12 ` Gilles Dartiguelongue
2019-10-09 20:33   ` Mart Raudsepp

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox