tech-pkg archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

NetBSD 5, X11_TYPE=native, x11/startup-notification (proposed FIX)



I believe the combination in the Subject header is well known to
fail, and many (well several) people are having problems because 
of it.  That is:
        NetBSD 5, X11_TYPE=native, x11/startup-notification
(where NetBSD 5 means a released version, I don't know about what's
on the netbsd-5 branch at the minute).

Lots of stuff depends upon x11/startup-notification so when it is failing
to build, a lot of other packages can't be built (or installed).  I include
a list from my last attempt (almost a week ago now, so there may have been
more revealed since) at building the subset of NetBSD 5 packages that I
build, of the ones that won't build because of this.   I assume the bulk
builds (if they're really based upon NetBSD 5) are showing the same kind
of thing.   [The list is the very last part of this message, as really,
almost no-one is going to be interested].

This is what led me to ask (some time ago now) whether NetBSD 5 users would
benefit from switching to X11_TYPE=modular ... I never got an actual answer
to that question, though a side effect seems to have been upgrading lots of
other systems (including NetBSD < 5) to modular X11 (which is a good thing).

Before I decided to abandon my (many) binary packages (I might have done
that with the freetype2 revbump had I noticed it happened before everything
had rebuilt) I thought I should instead see if startup-notification could be
fixed to work with X11_TYPE=native - after all, its previous version worked
just fine.

So, I compared the two versions, startup-notification-0.10, the old version
that worked, and startup-notification-0.12, the new one that doesn't, to see
if I could find a simple patch to fix things.

My guess after looking, is if that I was willing to delve into the autoconf
swamp, then most likely the test for x11-xcb that fails there could be fixed
to work, that is, I see nothing at all in the 0.12 version of 
startup-notification that looks to use anything new.   There are just two
changes of note there (aside from some minor doc, such as it is, changes, and
zillions of autoconf and libtool nuisance changes) - one was to add one minor
new feature, the other was to remove support for using Xlib for communication
purposes, using only xcb.   Note the xcb code was there, built, and compiled,
all the time, so there's no reason that code wouldn't build (in its modified
form - lots of unions and stuff were removed from the code as it no longer 
needs to support two alternative methods) and if it builds, I assume it would
work OK (I know, not necessarily a valid assumption, and as it turns out not
one I actually made in a way that matters.)

But that solution depended (for me) upon a willingness to get into autoconf,
and I'm just not willing to go there.   There are depths to which no-one should
be forced to sink...

So, instead I considered simply reinstating the old version of 
startup-notification.  The easy way would simply be to revert the upgrade.

Right now I see nothing that would be significantly harmed by doing that,
but it does mean carrying around, for people using newer X11, a whole bunch
of code that's never going to be used, so I didn't think that would be the
best solution.  That would also have lost the new feature that had been
added (though I doubt anyone would notice).

Instead, what I have done, and what seems to be working just fine for me
at the minute, is to add a new package ("new" in the sense only that it
is a new pkgsrc directory, the contents are not new at all,) containing the
old startup-notification (which I call x11/startup-notification010), and
then modified x11/startup-notification/buildlink3.mk to select either
x11/startup-notification or x11/startup-notification010 depending upon
which version of X11 is in use (always uses the new one for X11_TYPE=modular)
and which system version (use the new one for NetBSD current, and the
older one for older NetBSD's using native for X11_TYPE).   For other
(non-NetBSD) systems I've just left the status quo, using the new version,
though obviously they could also select.

I know it would be better to test whether the new xcb stuff is present or
not, rather than testing system versions, I don't know the right way to
do that (what test that make could perform that would actually give the
right answer), nor the best way to deal with the X11 files living in
random different places on different systems and with different X11_TYPE
settings.   If someone can do a better job of performing this test, please
do (similarly, if it is known that NetBSD 5.2 will not have the problem,
if it is ever released, and the test remains testing OS versions, then
a test for NetBSD 5.[2-9]* similar to the NetBSD 5.99.* and NetBSD [6-9]*
tests could be added.)

I did add patches to startup-notification010 to add the new feature that
had been added to the 0.12 version (extracting that was easy) - and I know
that I didn't name the patch files in the new approved way, but I've yet
to learn what that is, the old patch-aa scheme always worked for me, so that's
what I've done.   Feel free to rename (those or anything else).

I'd really appreciate it if something like this could be added to pkgsrc
sometime soon, as without it, X11_TYPE=native on NetBSD 5 is close to
dead, when it really doesn't need to be it seems.

This scheme does appear to work, both when building a package and
requiring startup-notification to be built from source, and when a
pre-built binary package exists already.   I am currently in the process
of rebuilding everything listed down below, so far, without problems.

What follows is in 3 pieces, first a patch for x11/startup-notification
(to its buildlink3.mk file and only that) that adds the support needed
to use the new x11/startup-notification010 package.   Second is a uuencoded
tgz file of the proposed x11/startup-notification010 pkgsrc directory (untar
this in pkgsrc/x11) - it is not very big (typical pkgsrc size).   And
third, from my build log of 4 days or so ago, when I last tried building
all of my NetBSD 5 packages that had been failing (which had just grown a
whole new set because of the revbump to freetype2 requiring lots of stuff
to be rebuilt - not that any of them would have worked without a working
startup-notification to use).  This last part is just to illustrate the
magnitude of the problem.   I had the startup-notification-0.10 distfile
already, so I did not actually confirm that it is still available to
be fetched, I can make a copy available for f.n.o if that is required.

Note that the binpkg for startup-notification010 is 
startup-notification-0.10nb1.tgz - the nb1 since is has grown patches
since it last existed.   It isn't startup-notification010-* to make it
more easily act as a replacement for startup-notification-0.12.
Because of that naming choice, no CONFLICTS entries are needed I
believe.  This also explains a new package starting out with
PKGREVISION=1 in its Makefile (needed to make the binpkg different than
it was 3-4 months ago).

I'd appreciate someone who knows more about all of this taking a look, and
doing *something* to make X11_TYPE=native work again on NetBSD 5 - either
that, or make NetBSD 5 be another of the systems that have made the
switch to X11_TYPE=modular by default.

kre

Index: buildlink3.mk
===================================================================
RCS file: /cvsroot/NetBSD/pkgsrc/x11/startup-notification/buildlink3.mk,v
retrieving revision 1.11
diff -u -r1.11 buildlink3.mk
--- buildlink3.mk       8 Nov 2009 18:59:56 -0000       1.11
+++ buildlink3.mk       9 Nov 2011 11:19:16 -0000
@@ -7,7 +7,21 @@
 
 BUILDLINK_API_DEPENDS.startup-notification+=   startup-notification>=0.5
 BUILDLINK_ABI_DEPENDS.startup-notification+=   startup-notification>=0.8nb1
+
+.include "../../mk/bsd.fast.prefs.mk"
+.if ${X11_TYPE} == "modular"
+BUILDLINK_PKGSRCDIR.startup-notification?=     ../../x11/startup-notification
+.else
+.if ${OPSYS} == "NetBSD"
+.if !empty(OS_VERSION:M5.99.*) || !empty(OS_VERSION:M[6789].*)
+BUILDLINK_PKGSRCDIR.startup-notification?=     ../../x11/startup-notification
+.else
+BUILDLINK_PKGSRCDIR.startup-notification?=     
../../x11/startup-notification010
+.endif
+.else #!NetBSD
 BUILDLINK_PKGSRCDIR.startup-notification?=     ../../x11/startup-notification
+.endif
+.endif
 
 .include "../../x11/libSM/buildlink3.mk"
 .include "../../x11/libX11/buildlink3.mk"



begin 644 startup-notification010.tgz
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
>!`0$!`0$!`0$!`0$!`0$!`0$3H__`MD4$04`4```
`
end


The following is from my (local, unique) build log - the times
are UTC+0700, the "SKIPPED needs x11/startup-notification" should
be self evident, when that message includes "and others" it means
there is some other dependency that also failed to build - I
believe that here, in I think all cases, that other deendency is
something else that needs x11/startup-notification itself, and appears
earlier in the list.   The gaps in the timeline is because this
log is from a build that included other packages that fail to build
for other reasons, and I deleted here, and perhaps also some that
successfully built.  There is an error log file that accompanies this
that gives the build logs of everything marked as "failed" - here
that's just startup-notification, and the reason is the well known
x11-xcb autoconf test failure, so I am not bothering to include that.

2011-11-05 18:14: x11/startup-notification ...   startup-notification-0.12 
...failed
2011-11-05 18:15: devel/libwnck ...   SKIPPED: needs x11/startup-notification
2011-11-05 18:15: x11/gnome-desktop ...   SKIPPED: needs 
x11/startup-notification
2011-11-05 18:15: x11/gnome-panel ...   SKIPPED: needs x11/startup-notification 
and others
2011-11-05 18:15: sysutils/gnome-settings-daemon ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/nautilus ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: wm/metacity ...   SKIPPED: needs x11/startup-notification
2011-11-05 18:15: x11/gnome-control-center ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: wm/compiz ...   SKIPPED: needs x11/startup-notification and 
others
2011-11-05 18:15: x11/libxfce4gui ...   SKIPPED: needs x11/startup-notification
2011-11-05 18:15: x11/xfce4-panel ...   SKIPPED: needs x11/startup-notification 
and others
2011-11-05 18:15: devel/libcompizconfig ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: x11/py-gnome2-desktop ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-thunar ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: mail/claws-mail ...   SKIPPED: needs x11/startup-notification
2011-11-05 18:15: mail/claws-mail-pgpcore ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: mail/claws-mail-pgpinline ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: mail/claws-mail-pgpmime ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: print/xfce4-print ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-appfinder ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-volman ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-xarchiver ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: time/xfce4-orage ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: wm/xfce4-wm ...   SKIPPED: needs x11/startup-notification and 
others
2011-11-05 18:15: x11/xfce4-desktop ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: x11/xfce4-session ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: x11/xfce4-settings ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: x11/xfce4-terminal ...   SKIPPED: needs 
x11/startup-notification
2011-11-05 18:15: x11/xfce4-utils ...   SKIPPED: needs x11/startup-notification 
and others
2011-11-05 18:15: misc/xfce4-weather-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: multimedia/xfce4-mpc-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: net/xfce4-wavelan-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-battery-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-cpugraph-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-diskperf-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-fsguard-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-genmon-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-netload-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-quicklauncher-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-systemload-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: sysutils/xfce4-xkb-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: textproc/xfce4-dict-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: time/xfce4-datetime-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: time/xfce4-timer-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: x11/xfce4-clipman-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: x11/xfce4-eyes-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: x11/xfce4-notes-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: x11/xfce4-places-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: x11/xfce4-screenshooter-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:15: wm/openbox ...   SKIPPED: needs x11/startup-notification
2011-11-05 18:17: audio/xfce4-mixer ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:17: audio/xfce4-xmms-plugin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:17: devel/compizconfig-backend-gconf ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:17: devel/p5-perl-headers ...   p5-perl-headers-5.1nb6 ...replaced
2011-11-05 18:18: devel/py-compizconfig ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:18: editors/xfce4-mousepad ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:18: games/gnome-games ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:18: graphics/eog ...   SKIPPED: needs x11/startup-notification 
and others
2011-11-05 18:18: graphics/ristretto ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-archive ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-attachwarner ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-attremover ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-bogofilter ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-cachesaver ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-dillo-viewer ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-fetchinfo ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-gtkhtml ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-mailmbox ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-newmail ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-notification ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-pgp ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-rssyl ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-smime ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-spamassassin ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-spamreport ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-synce ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-tnef ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-trayicon ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/claws-mail-vcalendar ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: mail/evolution ...   SKIPPED: needs x11/startup-notification 
and others
2011-11-05 18:19: mail/evolution-exchange ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: meta-pkgs/xfce4 ...   SKIPPED: needs x11/startup-notification 
and others
2011-11-05 18:19: meta-pkgs/xfce4-extras ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:19: misc/deskbar-applet ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:53: print/evince-nautilus ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:53: sysutils/brasero-nautilus ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:53: sysutils/gnome-mount ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:53: sysutils/nautilus-sendto ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:53: time/gtodo-applet ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:53: time/hamster-applet ...   SKIPPED: needs 
x11/startup-notification and others
2011-11-05 18:53: wm/obconf ...   SKIPPED: needs x11/startup-notification and 
others
2011-11-05 18:53: wm/oroborox ...   SKIPPED: needs x11/startup-notification
2011-11-05 18:56: x11/devilspie ...   SKIPPED: needs x11/startup-notification 
and others
2011-11-05 18:56: x11/matchbox-desktop ...   SKIPPED: needs 
x11/startup-notification
2011-11-05 18:56: x11/matchbox-panel ...   SKIPPED: needs 
x11/startup-notification






Home | Main Index | Thread Index | Old Index