Page MenuHomeFreeBSD

graphics/webp-pixbuf-loader: Update to 0.0.1 -> stage_fs_violation
ClosedPublic

Authored by rigoletto on Jul 31 2020, 1:32 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Mar 14, 5:39 PM
Unknown Object (File)
Mon, Mar 4, 4:49 AM
Unknown Object (File)
Mon, Mar 4, 4:49 AM
Unknown Object (File)
Mon, Mar 4, 4:49 AM
Unknown Object (File)
Mon, Mar 4, 4:49 AM
Unknown Object (File)
Mon, Mar 4, 4:49 AM
Unknown Object (File)
Mon, Mar 4, 4:49 AM
Unknown Object (File)
Mon, Mar 4, 4:49 AM
Subscribers

Details

Summary
  • the port seems abbandoned
  • unfortunatelly there is a need to use PORTEPOCH (I would like to avoid if possible)
  • poudriere rise stage_fs_violation, and I have no clue of why
=>> Checking for staging violations... done
=>> Error: Filesystem touched during stage (files must install to ${STAGEDIR}):
usr/local/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache: 
	size (2841, 2840)

Diff Detail

Repository
rP FreeBSD ports repository
Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 32681
Build 30132: arc lint + arc unit

Event Timeline

rigoletto retitled this revision from graphics/webp-pixbuf-loader: Update to 0.0.1 -stage_fs_violation to graphics/webp-pixbuf-loader: Update to 0.0.1-stage_fs_violation.Jul 31 2020, 1:33 AM
rigoletto edited the summary of this revision. (Show Details)
rigoletto edited the summary of this revision. (Show Details)
rigoletto retitled this revision from graphics/webp-pixbuf-loader: Update to 0.0.1-stage_fs_violation to graphics/webp-pixbuf-loader: Update to 0.0.1 -> stage_fs_violation.Jul 31 2020, 1:36 AM

unfortunatelly there is a need to use PORTEPOCH

huh, why?

poudriere rise stage_fs_violation, and I have no clue of why
usr/local/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache

Because the build system is doing gdk-pixbuf-query-loaders --update-cache for us, that should be disabled.
(And should be done in pkg post install hooks..)

They have a gdk_pixbuf_query_loaders_path meson option now, so we could define that to something harmless like echo.

graphics/webp-pixbuf-loader/Makefile
22

I'm pretty sure it should be thumbnailers, that must be a mistake.

% ls /usr/local/share/thumbnailers
evince.thumbnailer                      gdk-pixbuf-webp-thumbnailer.thumbnailer heif.thumbnailer                        mypaint-ora.thumbnailer
gdk-pixbuf-thumbnailer.thumbnailer      gsf-office.thumbnailer                  librsvg.thumbnailer                     renderdoc.thumbnailer

Raised https://github.com/aruiz/webp-pixbuf-loader/issues/19

The port was not abandoned good. :-)

In D25899#573787, @greg_unrelenting.technology wrote:

unfortunatelly there is a need to use PORTEPOCH

huh, why?

20160329 > 0.0.1

When there is no version yet, please, use:

DISTVERSION=	g20160329

https://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/makefile-distfiles.html#makefile-master_sites-github-description

:-D

poudriere rise stage_fs_violation, and I have no clue of why
usr/local/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache

Because the build system is doing gdk-pixbuf-query-loaders --update-cache for us, that should be disabled.
(And should be done in pkg post install hooks..)

They have a gdk_pixbuf_query_loaders_path meson option now, so we could define that to something harmless like echo.

I was tough about that this night but I would need to have a look on how to do it since I am not used to gdk. Also, I have to have a look on that path but this is being done by upstream.

Thanks!

General update.

gdk-pixbuf-query-loaders --update-cache

brought a few doubts:

  1. it needs to be run by root hence the port could not be built by user;
  2. should it use FAKEROOT?
  3. the command could theoretically be run from anywhere, does it worth to run from ${STAGEDIR} or something?

@mat

PS. the path thing was already be fixed by upstream.

Thanks!

No, no, please read this carefully again:

Because the build system is doing gdk-pixbuf-query-loaders --update-cache for us, that should be disabled.
(And should be done in pkg post install hooks..)

We specifically MUST NOT run gdk-pixbuf-query-loaders --update-cache at BUILD time, only at pkg install time.

Basically copy the @postexec / @postunexec lines from graphics/librsvg2-rust/pkg-plist here.

And add something like MESON_ARGS+= -Dgdk_pixbuf_query_loaders_path=/bin/echo to not do it at build time

In D25899#573804, @greg_unrelenting.technology wrote:

No, no, please read this carefully again:

Because the build system is doing gdk-pixbuf-query-loaders --update-cache for us, that should be disabled.
(And should be done in pkg post install hooks..)

We specifically MUST NOT run gdk-pixbuf-query-loaders --update-cache at BUILD time, only at pkg install time.

Basically copy the @postexec / @postunexec lines from graphics/librsvg2-rust/pkg-plist here.

And add something like MESON_ARGS+= -Dgdk_pixbuf_query_loaders_path=/bin/echo to not do it at build time

I've commented that line out. Cleaner than doing things for no reason,

graphics/webp-pixbuf-loader/Makefile
26

???

You've commented it out in meson just to do the same manually at the same time. post-install is when the ports makefile "installs" the software into the staging directory.

Basically copy the @postexec / @postunexec lines from graphics/librsvg2-rust/pkg-plist here.

We have to have a pkg-plist that would do this IN PKG.

Seems to work as expected now.

graphics/webp-pixbuf-loader/Makefile
26

???

You've commented it out in meson just to do the same manually at the same time. post-install is when the ports makefile "installs" the software into the staging directory.

Basically copy the @postexec / @postunexec lines from graphics/librsvg2-rust/pkg-plist here.

We have to have a pkg-plist that would do this IN PKG.

Sorry, just saw I see your comment, and I have not finished yet. :-)

Well, I think this is more correct to be done at post-install phase. :-)

graphics/webp-pixbuf-loader/Makefile
26

That echo won't do anything unless you echo into TMPPLIST or PLIST whatever is appropriate for PLIST_FILES.

I'd rather switch to a real plist file.

graphics/webp-pixbuf-loader/Makefile
26

Hi, we can switch to a pkg-plist file but the project recommendation is to use PLIST_FILES when there are just a few files. :-)

Add pkg-plist. In this particular case not using the pkg-plist file proved to be worse than using it with a few files.

Thanks for your pacience. ;-)

I just still don't know why the cache was apparently being updated before but this is something I can investigate later.

I just still don't know why the cache was apparently being updated before but this is something I can investigate later.

Before as in..?

This revision is now accepted and ready to land.Aug 1 2020, 8:02 PM
In D25899#574151, @greg_unrelenting.technology wrote:

I just still don't know why the cache was apparently being updated before but this is something I can investigate later.

Before as in..?

I've run gdk-pixbuf-query-loaders --update-cache after removing the package, and I supposed it would remove it from the cache (what seems sane to me).

This revision was automatically updated to reflect the committed changes.