All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][thud] adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic
@ 2019-04-17 13:39 Andreas Müller
  2019-04-30  6:20 ` Andreas Müller
  0 siblings, 1 reply; 8+ messages in thread
From: Andreas Müller @ 2019-04-17 13:39 UTC (permalink / raw)
  To: openembedded-core

This fixes:
* gtk-icon-browser: for symbolic view almost all icons were missing
* xfce's thunar: 'home' and 'up' icons were missing. Had a long discussion with
  XFCE-people [1] and asked here [2].

How could I overlook the most obvious...

[1] https://bugzilla.xfce.org/show_bug.cgi?id=14443
[2] http://lists.openembedded.org/pipermail/openembedded-core/2018-November/275815.html

(From OE-Core rev: 0911e7d2f5443210b594a198ada8465af7a2fc78)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/recipes-gnome/gnome/adwaita-icon-theme_3.28.0.bb | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/meta/recipes-gnome/gnome/adwaita-icon-theme_3.28.0.bb b/meta/recipes-gnome/gnome/adwaita-icon-theme_3.28.0.bb
index 40dd35ba30..6e453a0163 100644
--- a/meta/recipes-gnome/gnome/adwaita-icon-theme_3.28.0.bb
+++ b/meta/recipes-gnome/gnome/adwaita-icon-theme_3.28.0.bb
@@ -18,13 +18,6 @@ SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz \
 SRC_URI[md5sum] = "b25b2d82cbebf2cc9cd469457b604f2c"
 SRC_URI[sha256sum] = "7aae8c1dffd6772fd1a21a3d365a0ea28b7c3988bdbbeafbf8742cda68242150"
 
-do_install_append() {
-	# Build uses gtk-encode-symbolic-svg to create png versions:
-        # no need to store the svgs anymore.
-	rm -f ${D}${prefix}/share/icons/Adwaita/scalable/*/*-symbolic.svg \
-	      ${D}${prefix}/share/icons/Adwaita/scalable/*/*-symbolic-rtl.svg
-}
-
 PACKAGES = "${PN}-cursors ${PN}-symbolic-hires ${PN}-symbolic ${PN}-hires ${PN}"
 
 RREPLACES_${PN} = "gnome-icon-theme"
@@ -37,7 +30,8 @@ FILES_${PN}-symbolic-hires = "${prefix}/share/icons/Adwaita/96x96/*/*.symbolic.p
                               ${prefix}/share/icons/Adwaita/48x48/*/*.symbolic.png \
                               ${prefix}/share/icons/Adwaita/32x32/*/*.symbolic.png"
 FILES_${PN}-symbolic = "${prefix}/share/icons/Adwaita/16x16/*/*.symbolic.png \
-                        ${prefix}/share/icons/Adwaita/24x24/*/*.symbolic.png"
+                        ${prefix}/share/icons/Adwaita/24x24/*/*.symbolic.png \
+                        ${prefix}/share/icons/Adwaita/scalable/*/*-symbolic*.svg"
 FILES_${PN}-hires = "${prefix}/share/icons/Adwaita/256x256/ \
                      ${prefix}/share/icons/Adwaita/512x512/"
 FILES_${PN} = "${prefix}/share/icons/Adwaita/ \
-- 
2.20.1



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

* Re: [PATCH][thud] adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic
  2019-04-17 13:39 [PATCH][thud] adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic Andreas Müller
@ 2019-04-30  6:20 ` Andreas Müller
  2019-05-07 10:51   ` Andreas Müller
  0 siblings, 1 reply; 8+ messages in thread
From: Andreas Müller @ 2019-04-30  6:20 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Wed, Apr 17, 2019 at 3:39 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> This fixes:
> * gtk-icon-browser: for symbolic view almost all icons were missing
> * xfce's thunar: 'home' and 'up' icons were missing. Had a long discussion with
>   XFCE-people [1] and asked here [2].
>
> How could I overlook the most obvious...
>
> [1] https://bugzilla.xfce.org/show_bug.cgi?id=14443
> [2] http://lists.openembedded.org/pipermail/openembedded-core/2018-November/275815.html
>
> (From OE-Core rev: 0911e7d2f5443210b594a198ada8465af7a2fc78)
>
> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
ping?


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

* Re: [PATCH][thud] adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic
  2019-04-30  6:20 ` Andreas Müller
@ 2019-05-07 10:51   ` Andreas Müller
  2019-05-14  7:47     ` Andreas Müller
  0 siblings, 1 reply; 8+ messages in thread
From: Andreas Müller @ 2019-05-07 10:51 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Tue, Apr 30, 2019 at 8:20 AM Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> On Wed, Apr 17, 2019 at 3:39 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
> >
> > This fixes:
> > * gtk-icon-browser: for symbolic view almost all icons were missing
> > * xfce's thunar: 'home' and 'up' icons were missing. Had a long discussion with
> >   XFCE-people [1] and asked here [2].
> >
> > How could I overlook the most obvious...
> >
> > [1] https://bugzilla.xfce.org/show_bug.cgi?id=14443
> > [2] http://lists.openembedded.org/pipermail/openembedded-core/2018-November/275815.html
> >
> > (From OE-Core rev: 0911e7d2f5443210b594a198ada8465af7a2fc78)
> >
> > Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ping?
Something wrong with this bugfix?

Andreas


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

* Re: [PATCH][thud] adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic
  2019-05-07 10:51   ` Andreas Müller
@ 2019-05-14  7:47     ` Andreas Müller
  2019-05-21  9:42       ` Andreas Müller
  0 siblings, 1 reply; 8+ messages in thread
From: Andreas Müller @ 2019-05-14  7:47 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Tue, May 7, 2019 at 12:51 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> On Tue, Apr 30, 2019 at 8:20 AM Andreas Müller <schnitzeltony@gmail.com> wrote:
> >
> > On Wed, Apr 17, 2019 at 3:39 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
> > >
> > > This fixes:
> > > * gtk-icon-browser: for symbolic view almost all icons were missing
> > > * xfce's thunar: 'home' and 'up' icons were missing. Had a long discussion with
> > >   XFCE-people [1] and asked here [2].
> > >
> > > How could I overlook the most obvious...
> > >
> > > [1] https://bugzilla.xfce.org/show_bug.cgi?id=14443
> > > [2] http://lists.openembedded.org/pipermail/openembedded-core/2018-November/275815.html
> > >
> > > (From OE-Core rev: 0911e7d2f5443210b594a198ada8465af7a2fc78)
> > >
> > > Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> > > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> > ping?
> Something wrong with this bugfix?
>
pingediping


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

* Re: [PATCH][thud] adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic
  2019-05-14  7:47     ` Andreas Müller
@ 2019-05-21  9:42       ` Andreas Müller
  2019-05-21 23:11         ` akuster808
  2019-05-22  4:47         ` akuster808
  0 siblings, 2 replies; 8+ messages in thread
From: Andreas Müller @ 2019-05-21  9:42 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Tue, May 14, 2019 at 9:47 AM Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> On Tue, May 7, 2019 at 12:51 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
> >
> > On Tue, Apr 30, 2019 at 8:20 AM Andreas Müller <schnitzeltony@gmail.com> wrote:
> > >
> > > On Wed, Apr 17, 2019 at 3:39 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
> > > >
> > > > This fixes:
> > > > * gtk-icon-browser: for symbolic view almost all icons were missing
> > > > * xfce's thunar: 'home' and 'up' icons were missing. Had a long discussion with
> > > >   XFCE-people [1] and asked here [2].
> > > >
> > > > How could I overlook the most obvious...
> > > >
> > > > [1] https://bugzilla.xfce.org/show_bug.cgi?id=14443
> > > > [2] http://lists.openembedded.org/pipermail/openembedded-core/2018-November/275815.html
> > > >
> > > > (From OE-Core rev: 0911e7d2f5443210b594a198ada8465af7a2fc78)
> > > >
> > > > Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> > > > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> > > ping?
> > Something wrong with this bugfix?
> >
> pingediping

Should write some auto-ping script..

PING


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

* Re: [PATCH][thud] adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic
  2019-05-21  9:42       ` Andreas Müller
@ 2019-05-21 23:11         ` akuster808
  2019-05-22  4:47         ` akuster808
  1 sibling, 0 replies; 8+ messages in thread
From: akuster808 @ 2019-05-21 23:11 UTC (permalink / raw)
  To: Andreas Müller, Patches and discussions about the oe-core layer



On 5/21/19 2:42 AM, Andreas Müller wrote:
> On Tue, May 14, 2019 at 9:47 AM Andreas Müller <schnitzeltony@gmail.com> wrote:
>> On Tue, May 7, 2019 at 12:51 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
>>> On Tue, Apr 30, 2019 at 8:20 AM Andreas Müller <schnitzeltony@gmail.com> wrote:
>>>> On Wed, Apr 17, 2019 at 3:39 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
>>>>> This fixes:
>>>>> * gtk-icon-browser: for symbolic view almost all icons were missing
>>>>> * xfce's thunar: 'home' and 'up' icons were missing. Had a long discussion with
>>>>>   XFCE-people [1] and asked here [2].
>>>>>
>>>>> How could I overlook the most obvious...
>>>>>
>>>>> [1] https://bugzilla.xfce.org/show_bug.cgi?id=14443
>>>>> [2] http://lists.openembedded.org/pipermail/openembedded-core/2018-November/275815.html
>>>>>
>>>>> (From OE-Core rev: 0911e7d2f5443210b594a198ada8465af7a2fc78)
>>>>>
>>>>> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
>>>>> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>>>> ping?
>>> Something wrong with this bugfix?
>>>
>> pingediping
> Should write some auto-ping script..

Its been sitting in stable/thud-next.

https://git.openembedded.org/openembedded-core-contrib/commit/?h=stable/thud-next&id=9c63433010aae6891149a7605a637bee879dc4ef


>
> PING



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

* Re: [PATCH][thud] adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic
  2019-05-21  9:42       ` Andreas Müller
  2019-05-21 23:11         ` akuster808
@ 2019-05-22  4:47         ` akuster808
  2019-05-22  5:38           ` Richard Purdie
  1 sibling, 1 reply; 8+ messages in thread
From: akuster808 @ 2019-05-22  4:47 UTC (permalink / raw)
  To: Andreas Müller, Patches and discussions about the oe-core layer



On 5/21/19 2:42 AM, Andreas Müller wrote:
> On Tue, May 14, 2019 at 9:47 AM Andreas Müller <schnitzeltony@gmail.com> wrote:
>> On Tue, May 7, 2019 at 12:51 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
>>> On Tue, Apr 30, 2019 at 8:20 AM Andreas Müller <schnitzeltony@gmail.com> wrote:
>>>> On Wed, Apr 17, 2019 at 3:39 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
>>>>> This fixes:
>>>>> * gtk-icon-browser: for symbolic view almost all icons were missing
>>>>> * xfce's thunar: 'home' and 'up' icons were missing. Had a long discussion with
>>>>>   XFCE-people [1] and asked here [2].
>>>>>
>>>>> How could I overlook the most obvious...
>>>>>
>>>>> [1] https://bugzilla.xfce.org/show_bug.cgi?id=14443
>>>>> [2] http://lists.openembedded.org/pipermail/openembedded-core/2018-November/275815.html
>>>>>
>>>>> (From OE-Core rev: 0911e7d2f5443210b594a198ada8465af7a2fc78)
>>>>>
>>>>> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
>>>>> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>>>> ping?
>>> Something wrong with this bugfix?
>>>
>> pingediping
> Should write some auto-ping script..

correction.. its in thud proper. I didn't send a patch review nor pull
request so I wasn't expecting it there.

https://git.openembedded.org/openembedded-core/commit/?h=thud&id=9c63433010aae6891149a7605a637bee879dc4ef


>
> PING



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

* Re: [PATCH][thud] adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic
  2019-05-22  4:47         ` akuster808
@ 2019-05-22  5:38           ` Richard Purdie
  0 siblings, 0 replies; 8+ messages in thread
From: Richard Purdie @ 2019-05-22  5:38 UTC (permalink / raw)
  To: akuster808, Andreas Müller,
	Patches and discussions about the oe-core layer

On Tue, 2019-05-21 at 21:47 -0700, akuster808 wrote:
> 
> On 5/21/19 2:42 AM, Andreas Müller wrote:
> > On Tue, May 14, 2019 at 9:47 AM Andreas Müller <
> > schnitzeltony@gmail.com> wrote:
> > > On Tue, May 7, 2019 at 12:51 PM Andreas Müller <
> > > schnitzeltony@gmail.com> wrote:
> > > > On Tue, Apr 30, 2019 at 8:20 AM Andreas Müller <
> > > > schnitzeltony@gmail.com> wrote:
> > > > > On Wed, Apr 17, 2019 at 3:39 PM Andreas Müller <
> > > > > schnitzeltony@gmail.com> wrote:
> > > > > > This fixes:
> > > > > > * gtk-icon-browser: for symbolic view almost all icons were
> > > > > > missing
> > > > > > * xfce's thunar: 'home' and 'up' icons were missing. Had a
> > > > > > long discussion with
> > > > > >   XFCE-people [1] and asked here [2].
> > > > > > 
> > > > > > How could I overlook the most obvious...
> > > > > > 
> > > > > > [1] https://bugzilla.xfce.org/show_bug.cgi?id=14443
> > > > > > [2] 
> > > > > > http://lists.openembedded.org/pipermail/openembedded-core/2018-November/275815.html
> > > > > > 
> > > > > > (From OE-Core rev:
> > > > > > 0911e7d2f5443210b594a198ada8465af7a2fc78)
> > > > > > 
> > > > > > Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> > > > > > Signed-off-by: Richard Purdie <
> > > > > > richard.purdie@linuxfoundation.org>
> > > > > ping?
> > > > Something wrong with this bugfix?
> > > > 
> > > pingediping
> > Should write some auto-ping script..
> 
> correction.. its in thud proper. I didn't send a patch review nor pull
> request so I wasn't expecting it there.
> 
> https://git.openembedded.org/openembedded-core/commit/?h=thud&id=9c63433010aae6891149a7605a637bee879dc4ef

Sorry, somehow I was thinking I'd somehow missed a pull request and
that needed merging :/

Cheers,

Richard





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

end of thread, other threads:[~2019-05-22  5:38 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-17 13:39 [PATCH][thud] adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic Andreas Müller
2019-04-30  6:20 ` Andreas Müller
2019-05-07 10:51   ` Andreas Müller
2019-05-14  7:47     ` Andreas Müller
2019-05-21  9:42       ` Andreas Müller
2019-05-21 23:11         ` akuster808
2019-05-22  4:47         ` akuster808
2019-05-22  5:38           ` Richard Purdie

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.