зеркало из https://github.com/mono/mail-archives.git
Import mono-packagers-list
This commit is contained in:
Родитель
9b969982f5
Коммит
d88a6b21fd
|
@ -0,0 +1,211 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] The $(prefix)/lib vs $(libdir) argument
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/lib%20vs%20%24%28libdir%29%20argument&In-Reply-To=295e750a0811290903u53d9b07ci813e84626ac5f642%40mail.gmail.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
|
||||
<LINK REL="Next" HREF="000066.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] The $(prefix)/lib vs $(libdir) argument</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/lib%20vs%20%24%28libdir%29%20argument&In-Reply-To=295e750a0811290903u53d9b07ci813e84626ac5f642%40mail.gmail.com"
|
||||
TITLE="[mono-packagers] The $(prefix)/lib vs $(libdir) argument">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Mon Dec 1 15:44:01 EST 2008</I>
|
||||
<P><UL>
|
||||
|
||||
<LI>Next message: <A HREF="000066.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#65">[ date ]</a>
|
||||
<a href="thread.html#65">[ thread ]</a>
|
||||
<a href="subject.html#65">[ subject ]</a>
|
||||
<a href="author.html#65">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>So, to further muddy the waters...
|
||||
|
||||
CIL (as produced by vbnc, gmcs, booc, etc.) as located within .dll
|
||||
and .exe files are *conceptually* platform-independent. In theory, it
|
||||
is fully platform independent, except for the minor issue of P/Invokes
|
||||
(below). This is what miguel was likely referring to with suggesting
|
||||
that IL code should be in $prefix/share, which I would normally agree
|
||||
with.
|
||||
|
||||
The JIT is a complete non-sequitur here, as the JIT produces code at
|
||||
runtime. Specifically, if we did install IL into /usr/share, you could
|
||||
have *both* mono32 and mono64 programs running the same IL code. The
|
||||
JIT isn't a problem.
|
||||
|
||||
The problems are twofold:
|
||||
|
||||
1. P/Invokes: P/Invoke methods & classes/structures used by P/Invokes
|
||||
usually refer to fixed-size data types. This is often fine, e.g.
|
||||
getpid(2) is unlikely to return anything other than a 32-bit integer on
|
||||
platforms we care about. This *can* be problematic with anything
|
||||
dealing with C/C++ variably sized types such as `long` (which is 32-bits
|
||||
on ILP32 platforms like Linux & Win32, 64-bits on LP64 platforms like
|
||||
Linux & most Unix platforms, and 32-bits on P64 platforms like Win64).
|
||||
|
||||
It is possible to write platform-agnostic IL that uses P/Invokes, but it
|
||||
is also very easy to make a mistake, e.g. by declaring fseek(3) to use
|
||||
an `int offset' parameter, thus tying it to 32-bit platforms.
|
||||
|
||||
If code is properly written, this shouldn't be an impediment to placing
|
||||
IL into /usr/share.
|
||||
|
||||
2. Ahead-Of-Time code (`mono --aot`). The JIT can pre-compile IL into
|
||||
native machine code, and (obviously) this native code is specific to the
|
||||
target machine. Furthermore:
|
||||
|
||||
i. the generated native code (a .so file) is placed into the same
|
||||
directory as the "source" IL.
|
||||
|
||||
ii. The .so filename does NOT currently have any architecture
|
||||
information encoded within it.
|
||||
|
||||
Thus, the use of AOT functionality should nix the idea of /usr/share, as
|
||||
e.g. /usr/share/mono/2.0/mscorlib.dll.so could only be for a single
|
||||
architecture.
|
||||
|
||||
However, this likely could be fixed (e.g. by placing the .so files for
|
||||
GAC'd assemblies within $(libdir)), and no one (afaik) uses --aot for
|
||||
the mono-provided assemblies anyway, so this concern is as theoretical
|
||||
as the P/Invoke issue. :-)
|
||||
|
||||
So, the waters sufficiently muddied, I don't see any reason why mono
|
||||
packages for .dll files could not be .noarch, AS LONG AS --aot is not
|
||||
used with them (which usually isn't the case).
|
||||
|
||||
The case-in-point example for this is openSUSE, where on 64-bit
|
||||
platforms the mono-core package provides /usr/lib/mono/2.0/mscorlib.dll
|
||||
(and the platform /usr/bin/mono and /usr/lib64/libmono.so) and a
|
||||
mono-core-32bit package provides /usr/bin/mono32 and /usr/lib/libmono.so
|
||||
(and hardly anything else):
|
||||
|
||||
<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">jon at lina</A>:tmp$ rpm -ql mono-core-32bit
|
||||
/usr/bin/mono32
|
||||
/usr/lib/libMonoPosixHelper.so
|
||||
/usr/lib/libikvm-native.so
|
||||
/usr/lib/libmono.so
|
||||
/usr/lib/libmono.so.0
|
||||
/usr/lib/libmono.so.0.0.0
|
||||
|
||||
Now, for this platform there would be no impediment to placing the .dll
|
||||
files into /usr/share (aside from inertia and time), as it's ~no
|
||||
different from always placing .dll files into $prefix/lib -- there will
|
||||
only ever be one set of .dll files, ever, and NOT one set per mono JIT
|
||||
architecture.
|
||||
|
||||
(Obviously, if you change the requirements things will change -- if AOT
|
||||
were actually used, openSUSE may then require two sets of .dll files,
|
||||
one per architecture, or (preferrably?) a better AOT setup so that AOT
|
||||
files aren't placed in the same directory as the "source" IL code...)
|
||||
|
||||
- Jon
|
||||
|
||||
On Sat, 2008-11-29 at 18:03 +0100, Zoltan Varga wrote:
|
||||
><i> Hi,
|
||||
</I>><i>
|
||||
</I>><i> I have no idea whenever $(prefix)/lib or $(libdir) is the correct
|
||||
</I>><i> approach, but the assemblies
|
||||
</I>><i> shipped with mono _are_ platform independent, whenever they are
|
||||
</I>><i> 'built' using a JIT or
|
||||
</I>><i> not. For proof, they can be copied to any other architecture supported
|
||||
</I>><i> by mono, like arm
|
||||
</I>><i> or itanium, or even windows, and they will run just fine there.
|
||||
</I>><i>
|
||||
</I>><i> Zoltan
|
||||
</I>><i>
|
||||
</I>><i> On Sat, Nov 29, 2008 at 3:21 PM, Paul <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">paul at all-the-johnsons.co.uk</A>> wrote:
|
||||
</I>><i> > Hi,
|
||||
</I>><i> >
|
||||
</I>><i> > I know this argument has been going on for a while, but I feel it's now
|
||||
</I>><i> > something that really needs to be resolved across all of the mono stack
|
||||
</I>><i> > (and dependencies).
|
||||
</I>><i> >
|
||||
</I>><i> > Many many moons ago, Miguel said that as CIL is completely agnostic as
|
||||
</I>><i> > to what it is on, that everything mono related should really be
|
||||
</I>><i> > in /usr/share. Noises were made, but nothing really much happened. There
|
||||
</I>><i> > is logic in using /usr/share, but nothing completely overwhelming.
|
||||
</I>><i> >
|
||||
</I>><i> > There is then the argument that all mono packages should be .noarch.
|
||||
</I>><i> > This really is a non-starter, I'll explain below.
|
||||
</I>><i> >
|
||||
</I>><i> > The current situation is that by default, mono is installed to
|
||||
</I>><i> > $(prefix)/lib with scripts from $(prefix)/bin pointing to the CIL
|
||||
</I>><i> > binaries or libraries. The only problem is that if you're compiling
|
||||
</I>><i> > using JIT, then binaries (and libraries) are targetting a particular
|
||||
</I>><i> > architecture (albeit x86, PPC, PPC64, x86_64 or any other processor
|
||||
</I>><i> > type) and are therefore incorrectly polluting the /usr/lib directory
|
||||
</I>><i> > which on non-x86 platforms is there for *purely* 32 bit libs.
|
||||
</I>><i> >
|
||||
</I>><i> > This means that for mono to be correctly packaged for non-x86 platforms,
|
||||
</I>><i> > all of the makefiles, .pc files and anything else like that has to
|
||||
</I>><i> > patched to use $(libdir) rather than $(prefix)/lib. Okay, it probably
|
||||
</I>><i> > doesn't seem like much, but given the size of mono (and associated
|
||||
</I>><i> > packages), patching becomes a major ball ache!
|
||||
</I>><i> >
|
||||
</I>><i> > While I understand that not every distro builds the JIT compiler, using
|
||||
</I>><i> > $(libdir) would mean that for the sake of argument, files are correctly
|
||||
</I>><i> > installed to the correct libdir. I also don't know how Windows is
|
||||
</I>><i> > handled with respect to this.
|
||||
</I>><i> >
|
||||
</I>><i> > Using JIT also makes anything built using it a non-noarch package.
|
||||
</I>><i> >
|
||||
</I>><i> > There is the flipside in that there is currently no fixed guideline of
|
||||
</I>><i> > where to place files for mono. Some mono packages use $(libdir) in the
|
||||
</I>><i> > makefiles (mono-basic is an example of this), some mix and match (makes
|
||||
</I>><i> > a bloody awful mess of things) and some just use $(prefix)/lib.
|
||||
</I>><i> >
|
||||
</I>><i> > I have a whole raft of patches available if we go over to $(libdir) - I
|
||||
</I>><i> > mean lots of them, probably coming up to 100k worth, but we certainly
|
||||
</I>><i> > need to get this sorted as it's starting to get ridiculous.
|
||||
</I>><i> >
|
||||
</I>><i> > TTFN
|
||||
</I>><i> >
|
||||
</I>><i> > Paul
|
||||
</I>><i> > (long time mono user and mono packager for Fedora)
|
||||
</I>><i> > --
|
||||
</I>><i> > Sie können mich aufreizen und wirklich heiß machen!
|
||||
</I>><i> >
|
||||
</I>><i> > _______________________________________________
|
||||
</I>><i> > mono-packagers-list mailing list
|
||||
</I>><i> > <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mono-packagers-list at lists.ximian.com</A>
|
||||
</I>><i> > <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">http://lists.ximian.com/mailman/listinfo/mono-packagers-list</A>
|
||||
</I>><i> >
|
||||
</I>><i> >
|
||||
</I>><i> _______________________________________________
|
||||
</I>><i> mono-packagers-list mailing list
|
||||
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mono-packagers-list at lists.ximian.com</A>
|
||||
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">http://lists.ximian.com/mailman/listinfo/mono-packagers-list</A>
|
||||
</I>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
|
||||
<LI>Next message: <A HREF="000066.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#65">[ date ]</a>
|
||||
<a href="thread.html#65">[ thread ]</a>
|
||||
<a href="subject.html#65">[ subject ]</a>
|
||||
<a href="author.html#65">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,100 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=1227988146.31448.51.camel%40PB3.Linux">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000065.html">
|
||||
<LINK REL="Next" HREF="000067.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] The $(prefix)/usr vs $(libdir) argument</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=1227988146.31448.51.camel%40PB3.Linux"
|
||||
TITLE="[mono-packagers] The $(prefix)/usr vs $(libdir) argument">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Mon Dec 1 15:55:26 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000065.html">[mono-packagers] The $(prefix)/lib vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000067.html">[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#66">[ date ]</a>
|
||||
<a href="thread.html#66">[ thread ]</a>
|
||||
<a href="subject.html#66">[ subject ]</a>
|
||||
<a href="author.html#66">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Sat, 2008-11-29 at 19:49 +0000, Paul wrote:
|
||||
><i>
|
||||
</I>><i> Assuming a 32 bit system, binaries /usr/bin, libs /usr/lib
|
||||
</I>><i> 64 bit /usr/bin, /usr/lib64
|
||||
</I>><i>
|
||||
</I>><i> On a 64 bit system if a library comes from a vendor who has only
|
||||
</I>><i> provided a 32 bit binary with a lib or a binary which requires a 32 bit
|
||||
</I>><i> lib, then /usr/lib is used.
|
||||
</I>><i>
|
||||
</I>><i> It's a carte blanche approach for everything.
|
||||
</I>
|
||||
Yes, but it doesn't quite answer the question;
|
||||
|
||||
1. On a 64-bit platform, can you install *both* 32-bit and 64-bit
|
||||
versions of Perl/Python/etc.?
|
||||
|
||||
2. If (1) is true, how is this done?
|
||||
|
||||
On openSUSE, (1) is true, and the 64-bit `perl` package contains both
|
||||
platform-independent files (e.g. /usr/lib/perl5/5.10.0/CGI.pm) AND
|
||||
platform-specific files
|
||||
(e.g. /usr/lib/perl5/5.10.0/x86_64-linux-thread-multi/auto/B/B.so).
|
||||
|
||||
Meanwhile, the 32-bit `perl-32bit` package contains *just* the .so files
|
||||
for 32-bit use,
|
||||
e.g. /usr/lib/perl5/5.10.0/i586-linux-thread-multi/auto/B/B.so.
|
||||
|
||||
Oddly, there isn't a /usr/bin/perl32 program in there, so I have no idea
|
||||
how to _use_ these 32-bit Perl libraries, but the point remains that
|
||||
this is partially how openSUSE handles the dual-architecture question.
|
||||
|
||||
Python is ~identical to Perl -- the "main" `python` package includes
|
||||
both source & platform-compiled versions of Python packages, while the
|
||||
`python-32bit` package contains *only* shared libraries for 32-bit use
|
||||
and NOT the source files. (Doubly oddly, Python places .py files
|
||||
under /usr/lib64 while Perl places .pm files under /usr/lib, and (again)
|
||||
there isn't a python32 app to actually use these 32-bit libraries, but
|
||||
the pattern for bi-arch support is fairly evident here.)
|
||||
|
||||
So how does Fedora support bi-arch platforms?
|
||||
|
||||
- Jon
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000065.html">[mono-packagers] The $(prefix)/lib vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000067.html">[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#66">[ date ]</a>
|
||||
<a href="thread.html#66">[ thread ]</a>
|
||||
<a href="subject.html#66">[ subject ]</a>
|
||||
<a href="author.html#66">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,58 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMoonlight-list%5D%20%5BMono-dev%5D%20Moonlight%201.0%20Beta%0A%091%20released%21&In-Reply-To=493574A7.3030902%40gmail.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000066.html">
|
||||
<LINK REL="Next" HREF="000068.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!</H1>
|
||||
<B>Rusty Howell</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMoonlight-list%5D%20%5BMono-dev%5D%20Moonlight%201.0%20Beta%0A%091%20released%21&In-Reply-To=493574A7.3030902%40gmail.com"
|
||||
TITLE="[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!">rhowell at novell.com
|
||||
</A><BR>
|
||||
<I>Tue Dec 2 13:45:36 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000066.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000068.html">[mono-packagers] Moonlight 1.0 Beta 1 released!
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#67">[ date ]</a>
|
||||
<a href="thread.html#67">[ thread ]</a>
|
||||
<a href="subject.html#67">[ subject ]</a>
|
||||
<a href="author.html#67">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>An HTML attachment was scrubbed...
|
||||
URL: <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081202/6f56d051/attachment.html">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081202/6f56d051/attachment.html</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000066.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000068.html">[mono-packagers] Moonlight 1.0 Beta 1 released!
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#67">[ date ]</a>
|
||||
<a href="thread.html#67">[ thread ]</a>
|
||||
<a href="subject.html#67">[ subject ]</a>
|
||||
<a href="author.html#67">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Moonlight 1.0 Beta 1 released!
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Moonlight%201.0%20Beta%201%20released%21&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000067.html">
|
||||
<LINK REL="Next" HREF="000069.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Moonlight 1.0 Beta 1 released!</H1>
|
||||
<B>Rusty Howell</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Moonlight%201.0%20Beta%201%20released%21&In-Reply-To="
|
||||
TITLE="[mono-packagers] Moonlight 1.0 Beta 1 released!">rhowell at novell.com
|
||||
</A><BR>
|
||||
<I>Tue Dec 2 13:46:17 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000067.html">[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000069.html">[mono-packagers] sed problem
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#68">[ date ]</a>
|
||||
<a href="thread.html#68">[ thread ]</a>
|
||||
<a href="subject.html#68">[ subject ]</a>
|
||||
<a href="author.html#68">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>An HTML attachment was scrubbed...
|
||||
URL: <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081202/6aebd31a/attachment.html">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081202/6aebd31a/attachment.html</A>
|
||||
-------------- next part --------------
|
||||
An embedded and charset-unspecified text was scrubbed...
|
||||
Name: Attached Message Part
|
||||
Url: <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081202/6aebd31a/attachment.pl">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081202/6aebd31a/attachment.pl</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000067.html">[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000069.html">[mono-packagers] sed problem
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#68">[ date ]</a>
|
||||
<a href="thread.html#68">[ thread ]</a>
|
||||
<a href="subject.html#68">[ subject ]</a>
|
||||
<a href="author.html#68">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,102 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] sed problem
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20sed%20problem&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000068.html">
|
||||
<LINK REL="Next" HREF="000070.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] sed problem</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20sed%20problem&In-Reply-To="
|
||||
TITLE="[mono-packagers] sed problem">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Fri Dec 5 14:47:27 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000068.html">[mono-packagers] Moonlight 1.0 Beta 1 released!
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000070.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#69">[ date ]</a>
|
||||
<a href="thread.html#69">[ thread ]</a>
|
||||
<a href="subject.html#69">[ subject ]</a>
|
||||
<a href="author.html#69">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
This is a fedora packaging problem, but one which someone here may be
|
||||
able to help with.
|
||||
|
||||
As you are probably sick of hearing, but Fedora package to /usr/lib
|
||||
and /usr/lib64. Traditionally, this meant a tonne and a half of patches
|
||||
which would always have to be reworked with each build and to be honest
|
||||
it's a pain!
|
||||
|
||||
I've now got a sed script for our spec files which fishes out all of the
|
||||
instances of /usr/lib (and things similar). Unfortuately, when it builds
|
||||
on x86_64, I'm finding something, somewhere is inserting /usr/lib6464
|
||||
(I'm seeing it in the mono/scripts file).
|
||||
|
||||
Does anyone know which file I need to look at to stop this from
|
||||
happening?
|
||||
|
||||
My sed script is this (it's not the best, but it works)
|
||||
|
||||
find . -name Makefile.in -or -name Makefile.am -or -name \*.pc.in \
|
||||
-or -name \*.in -or -name \*.make \
|
||||
| while read f ;
|
||||
do
|
||||
sed -i -e 's!$(prefix)/lib!%{_libdir}!' "$f"
|
||||
sed -i -e 's!@prefix@/lib!%{_libdir}!' "$f"
|
||||
sed -i -e 's!/usr/lib!%{_libdir}!' "$f"
|
||||
sed -i -e 's!${prefix}/lib!%{_libdir}!' "$f"
|
||||
sed -i -e 's!${exec_prefix}/lib!%{_libdir}!' "$f"
|
||||
sed -i -e 's!$(exec_prefix)/lib!%{_libdir}!' "$f"
|
||||
sed -i -e 's!${prefix}/@reloc_libdir@!%{_libdir}!' "$f";
|
||||
done
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
(building preview 2 for rawhide)
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081205/a5b1013b/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081205/a5b1013b/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000068.html">[mono-packagers] Moonlight 1.0 Beta 1 released!
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000070.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#69">[ date ]</a>
|
||||
<a href="thread.html#69">[ thread ]</a>
|
||||
<a href="subject.html#69">[ subject ]</a>
|
||||
<a href="author.html#69">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,61 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] release frequency
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20release%20frequency&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000069.html">
|
||||
<LINK REL="Next" HREF="000071.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] release frequency</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20release%20frequency&In-Reply-To="
|
||||
TITLE="[mono-packagers] release frequency">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Mon Dec 8 19:37:28 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000069.html">[mono-packagers] sed problem
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000071.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#70">[ date ]</a>
|
||||
<a href="thread.html#70">[ thread ]</a>
|
||||
<a href="subject.html#70">[ subject ]</a>
|
||||
<a href="author.html#70">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>A discussion has started on our internal mailing list regarding mono's release frequency. The current plan is 4 releases per year. We want input from packagers. Please reply with your thoughts about this and I will do my best to champion them. How does our release schedule impact you? How does it impact your distro? How many releases per year would work best? Any other thoughts?
|
||||
|
||||
Best Regards,
|
||||
Andrew Jorgensen
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000069.html">[mono-packagers] sed problem
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000071.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#70">[ date ]</a>
|
||||
<a href="thread.html#70">[ thread ]</a>
|
||||
<a href="subject.html#70">[ subject ]</a>
|
||||
<a href="author.html#70">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,88 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] release frequency
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20release%20frequency&In-Reply-To=493D5B58020000400004A438%40lucius.provo.novell.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000070.html">
|
||||
<LINK REL="Next" HREF="000072.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] release frequency</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20release%20frequency&In-Reply-To=493D5B58020000400004A438%40lucius.provo.novell.com"
|
||||
TITLE="[mono-packagers] release frequency">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Tue Dec 9 05:19:48 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000070.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000072.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#71">[ date ]</a>
|
||||
<a href="thread.html#71">[ thread ]</a>
|
||||
<a href="subject.html#71">[ subject ]</a>
|
||||
<a href="author.html#71">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i> A discussion has started on our internal mailing list regarding mono's
|
||||
</I>><i> release frequency. The current plan is 4 releases per year. We want
|
||||
</I>><i> input from packagers. Please reply with your thoughts about this and
|
||||
</I>><i> I will do my best to champion them. How does our release schedule
|
||||
</I>><i> impact you? How does it impact your distro? How many releases per
|
||||
</I>><i> year would work best? Any other thoughts?
|
||||
</I>
|
||||
I would go for either 3 or 4 a year. For fedora rawhide, it makes little
|
||||
difference, they're released, I build and submit. Job done. For f10 and
|
||||
f9 though, these are typically 1 and 2 releases behind rawhide (f10 is
|
||||
on 2.0.1 and f9 is on 1.9.1). Unless there is a massive change in API or
|
||||
a runtime library, then having 3 or 4 releases will have little impact
|
||||
on them.
|
||||
|
||||
What I will say though is that when you release them, you have something
|
||||
on the preview website which says "changed on <date>" so that needless
|
||||
building is avoided.
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081209/74dfe9d0/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081209/74dfe9d0/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000070.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000072.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#71">[ date ]</a>
|
||||
<a href="thread.html#71">[ thread ]</a>
|
||||
<a href="subject.html#71">[ subject ]</a>
|
||||
<a href="author.html#71">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,153 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] release frequency
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20release%20frequency&In-Reply-To=493D5B58020000400004A438%40lucius.provo.novell.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000071.html">
|
||||
<LINK REL="Next" HREF="000073.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] release frequency</H1>
|
||||
<B>Jo Shields</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20release%20frequency&In-Reply-To=493D5B58020000400004A438%40lucius.provo.novell.com"
|
||||
TITLE="[mono-packagers] release frequency">directhex at apebox.org
|
||||
</A><BR>
|
||||
<I>Tue Dec 9 05:34:18 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000071.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000073.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#72">[ date ]</a>
|
||||
<a href="thread.html#72">[ thread ]</a>
|
||||
<a href="subject.html#72">[ subject ]</a>
|
||||
<a href="author.html#72">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Mon, 2008-12-08 at 17:37 -0700, Andrew Jorgensen wrote:
|
||||
><i> A discussion has started on our internal mailing list regarding mono's release frequency. The current plan is 4 releases per year. We want input from packagers. Please reply with your thoughts about this and I will do my best to champion them. How does our release schedule impact you? How does it impact your distro? How many releases per year would work best? Any other thoughts?
|
||||
</I>
|
||||
It's probably easiest for me to point back to a message I sent last
|
||||
month for this:
|
||||
<A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/2008-November/000040.html">http://lists.ximian.com/pipermail/mono-packagers-list/2008-November/000040.html</A>
|
||||
|
||||
Paul can correct me on this, but I believe Ubuntu is not the only
|
||||
distribution on a 6-month schedule - Fedora's last four releases (and
|
||||
their next one) seem to be released in late May and late November. For
|
||||
Ubuntu, releases are in late April and October.
|
||||
|
||||
OpenSUSE doesn't seem to have anything quite so concrete - the gaps from
|
||||
10.0 onwards were 7 months, 7 months, 8 months, 8 months, and a
|
||||
projected 6 months.
|
||||
|
||||
I don't know about Fedora, but for Ubuntu, those dates are pretty firm.
|
||||
Importantly, the QA cycle is a little longer in Ubuntu, meaning package
|
||||
versions are frozen relatively far in advance (a major update to a core
|
||||
framework like Mono would be very hard to argue past T-2, and impossible
|
||||
past T-1).
|
||||
|
||||
Given the need for thorough testing, and the frequent major changes
|
||||
between upstream versions, even if the dates matched up perfectly, I
|
||||
doubt we'd ever be able to include a "current" Mono in a stable release
|
||||
(i.e. by the time we have a version packaged, tested, and integrated
|
||||
into the distro, and the distro released - a new version will be out and
|
||||
people moaning that we're obsolete). Certainly not with 4 major releases
|
||||
a year.
|
||||
|
||||
The question from where I'm sat, then, becomes "who benefits from your
|
||||
3-month proposal"? If no distribution is releasing that frequently, then
|
||||
where is the advantage in integrating a Mono release into a development
|
||||
distro (cooker, rawhide, factory, whatever) when you know it will never
|
||||
be part of that release?
|
||||
|
||||
Here's my counter-proposal: In keeping with the majority of
|
||||
distributions running on a 6-month (or approximately 6-month) schedule,
|
||||
how about releasing major Mono versions on a 6-month basis as well? A
|
||||
major Mono version every 6 months which warrants the packaging work
|
||||
involved - with as many intermediary bugfix-only releases in between as
|
||||
are deemed necessary. Packagers then know which "major" release they
|
||||
need to work with, work towards, and test - and at worst they only
|
||||
differ by minor point releases (where some or all of the point release
|
||||
fixes may end up being used anyway).
|
||||
|
||||
Now, time for some stats. Here's a table of major distro releases, the
|
||||
Mono versions included, the release date, and the age of the Mono
|
||||
release on that date. It should help to give an indication of which
|
||||
distros need how much time to work, and point towards a good date for
|
||||
major Mono releases:
|
||||
|
||||
Fedora 7 | 2007/05/31 | 1.2.3 | 4 months
|
||||
Fedora 8 | 2007/11/08 | 1.2.4 | 4 months
|
||||
Fedora 9 | 2008/05/13 | 1.9.1 | 1 month
|
||||
Fedora 10 | 2008/11/25 | 2.0.1 | 1 month
|
||||
SUSE 10.3 | 2007/10/04 | 1.2.5 | 3 months
|
||||
SUSE 11.0 | 2008/06/19 | 1.9.1 | 2 months
|
||||
Ubun 7.04 | 2007/04/19 | 1.2.3.1 | 2 months
|
||||
Ubun 7.10 | 2007/10/18 | 1.2.4 | 3 months
|
||||
Ubun 8.04 | 2008/04/24 | 1.2.6 | 5 months
|
||||
Ubun 8.10 | 2008/10/30 | 1.9.1 | 6 months
|
||||
|
||||
Clearly the turnaround is longer for Ubuntu than the others. There are a
|
||||
few reasons for this, which can generally be summed up with "more
|
||||
complex packaging, more QA, more architectures" - our cooperation with
|
||||
Debian is invaluable, but also makes us weak to the sometimes (always)
|
||||
protracted delays between Debian releases. I've declined to list Debian
|
||||
in the table since, despite being one of the oldest Mono-containing
|
||||
distributions, it's essentially impossible to predict or work towards
|
||||
Debian release dates.
|
||||
|
||||
Some of those delays are of our own making: because we split pretty much
|
||||
everything into its own package, we save a lot on disk space, but it
|
||||
takes more time to test.
|
||||
|
||||
Some of them are yours:
|
||||
* Arbitrarily changing whether 'foo' is a 1.0 or 2.0 corlib app is a
|
||||
major problem, especially when mixed & matched, as it breaks automated
|
||||
dependency tracking
|
||||
* Major releases frequently require significant patching, such as the 25
|
||||
patches to 1.9.1 shown on
|
||||
<A HREF="http://svn.debian.org/wsvn/pkg-mono/mono/branches/1.9.1-X/debian/patches/?rev=0&sc=0">http://svn.debian.org/wsvn/pkg-mono/mono/branches/1.9.1-X/debian/patches/?rev=0&sc=0</A> - yes, some are Debianisms, but three are security patches and ten are required SVN backports to fix real problems. This number of patches is not an anomaly.
|
||||
|
||||
So. Back to the start again. What would I like to see from upstream
|
||||
release schedules?
|
||||
* 2 major releases, and as many bugfix-only releases as seem necessary,
|
||||
per year
|
||||
* Feature freeze ASAP - so packaging work can begin as soon as possible
|
||||
and potential changes or issues resolved early
|
||||
* Don't make a major Mono release days before a distro releases, unless
|
||||
they have a phenomenal turnaround time - it makes the distro look bad,
|
||||
and has users breaking their systems with "make install" from pretty
|
||||
much day of release
|
||||
|
||||
--Jo Shields
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000071.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000073.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#72">[ date ]</a>
|
||||
<a href="thread.html#72">[ thread ]</a>
|
||||
<a href="subject.html#72">[ subject ]</a>
|
||||
<a href="author.html#72">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,141 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] release frequency
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20release%20frequency&In-Reply-To=1228818858.7408.59.camel%40osc-bigmac">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000072.html">
|
||||
<LINK REL="Next" HREF="000074.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] release frequency</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20release%20frequency&In-Reply-To=1228818858.7408.59.camel%40osc-bigmac"
|
||||
TITLE="[mono-packagers] release frequency">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Tue Dec 9 05:54:48 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000072.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000074.html">[mono-packagers] mono on opensolaris 2008.11?
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#73">[ date ]</a>
|
||||
<a href="thread.html#73">[ thread ]</a>
|
||||
<a href="subject.html#73">[ subject ]</a>
|
||||
<a href="author.html#73">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i> Paul can correct me on this, but I believe Ubuntu is not the only
|
||||
</I>><i> distribution on a 6-month schedule - Fedora's last four releases (and
|
||||
</I>><i> their next one) seem to be released in late May and late November. For
|
||||
</I>><i> Ubuntu, releases are in late April and October.
|
||||
</I>
|
||||
Fedora does 3 a year, though depending on the release schedule, it can
|
||||
be miss (it's every 4 months, but they're not released jan/may/dec
|
||||
exactly, so there can be over-runs, show stoppers and the such).
|
||||
|
||||
What's the release schedule for Mandriva these days?
|
||||
|
||||
><i> Given the need for thorough testing, and the frequent major changes
|
||||
</I>><i> between upstream versions, even if the dates matched up perfectly, I
|
||||
</I>><i> doubt we'd ever be able to include a "current" Mono in a stable release
|
||||
</I>><i> (i.e. by the time we have a version packaged, tested, and integrated
|
||||
</I>><i> into the distro, and the distro released - a new version will be out and
|
||||
</I>><i> people moaning that we're obsolete). Certainly not with 4 major releases
|
||||
</I>><i> a year.
|
||||
</I>
|
||||
Well, 2.0.1 was shipped by default with F10, but that was by the skin of
|
||||
it's teeth!
|
||||
|
||||
><i> The question from where I'm sat, then, becomes "who benefits from your
|
||||
</I>><i> 3-month proposal"? If no distribution is releasing that frequently, then
|
||||
</I>><i> where is the advantage in integrating a Mono release into a development
|
||||
</I>><i> distro (cooker, rawhide, factory, whatever) when you know it will never
|
||||
</I>><i> be part of that release?
|
||||
</I>
|
||||
A 3 month turn around is quite useful, but only depending on the release
|
||||
dates. For example, f11 is pencilled in for March 2009. If we have a
|
||||
full 2.2 release by early-mid Feb 2009, then there is a really good
|
||||
chance of f11 shipping with 2.2. Obviously, YMMV depending on distro
|
||||
|
||||
><i> Here's my counter-proposal: In keeping with the majority of
|
||||
</I>><i> distributions running on a 6-month (or approximately 6-month) schedule,
|
||||
</I>><i> how about releasing major Mono versions on a 6-month basis as well? A
|
||||
</I>><i> major Mono version every 6 months which warrants the packaging work
|
||||
</I>><i> involved - with as many intermediary bugfix-only releases in between as
|
||||
</I>><i> are deemed necessary. Packagers then know which "major" release they
|
||||
</I>><i> need to work with, work towards, and test - and at worst they only
|
||||
</I>><i> differ by minor point releases (where some or all of the point release
|
||||
</I>><i> fixes may end up being used anyway).
|
||||
</I>
|
||||
The only thing which causes me a headache with packaging mono is fixing
|
||||
the plethora of $(prefix)/lib problems for non-x86 architecture ;-) -
|
||||
the actual build process is very easy.
|
||||
|
||||
><i> Now, time for some stats. Here's a table of major distro releases, the
|
||||
</I>><i> Mono versions included, the release date, and the age of the Mono
|
||||
</I>><i> release on that date. It should help to give an indication of which
|
||||
</I>><i> distros need how much time to work, and point towards a good date for
|
||||
</I>><i> major Mono releases:
|
||||
</I>><i>
|
||||
</I>><i> Fedora 7 | 2007/05/31 | 1.2.3 | 4 months
|
||||
</I>><i> Fedora 8 | 2007/11/08 | 1.2.4 | 4 months
|
||||
</I>
|
||||
Both F7 and F8 are no longer supported at all.
|
||||
|
||||
><i> Clearly the turnaround is longer for Ubuntu than the others. There are a
|
||||
</I>><i> few reasons for this, which can generally be summed up with "more
|
||||
</I>><i> complex packaging, more QA, more architectures" - our cooperation with
|
||||
</I>><i> Debian is invaluable, but also makes us weak to the sometimes (always)
|
||||
</I>><i> protracted delays between Debian releases. I've declined to list Debian
|
||||
</I>><i> in the table since, despite being one of the oldest Mono-containing
|
||||
</I>><i> distributions, it's essentially impossible to predict or work towards
|
||||
</I>><i> Debian release dates.
|
||||
</I>
|
||||
(speaking personally) I have always felt Debian is the achillies heal of
|
||||
Ubuntu...
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081209/4136885a/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081209/4136885a/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000072.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000074.html">[mono-packagers] mono on opensolaris 2008.11?
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#73">[ date ]</a>
|
||||
<a href="thread.html#73">[ thread ]</a>
|
||||
<a href="subject.html#73">[ subject ]</a>
|
||||
<a href="author.html#73">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,66 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] mono on opensolaris 2008.11?
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono%20on%20opensolaris%202008.11%3F&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000073.html">
|
||||
<LINK REL="Next" HREF="000075.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] mono on opensolaris 2008.11?</H1>
|
||||
<B>antonandreev at fmi.uni-sofia.bg</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono%20on%20opensolaris%202008.11%3F&In-Reply-To="
|
||||
TITLE="[mono-packagers] mono on opensolaris 2008.11?">antonandreev at fmi.uni-sofia.bg
|
||||
</A><BR>
|
||||
<I>Thu Dec 11 17:25:47 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000073.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000075.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#74">[ date ]</a>
|
||||
<a href="thread.html#74">[ thread ]</a>
|
||||
<a href="subject.html#74">[ subject ]</a>
|
||||
<a href="author.html#74">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
Is someone working on Mono packages for Open Solaris?
|
||||
|
||||
The new Open Solaris 2008.11 is much GNU oriented.
|
||||
|
||||
Regards,
|
||||
Anton
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000073.html">[mono-packagers] release frequency
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000075.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#74">[ date ]</a>
|
||||
<a href="thread.html#74">[ thread ]</a>
|
||||
<a href="subject.html#74">[ subject ]</a>
|
||||
<a href="author.html#74">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,72 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000074.html">
|
||||
<LINK REL="Next" HREF="000076.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] mono-find-(provides|requires)</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To="
|
||||
TITLE="[mono-packagers] mono-find-(provides|requires)">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Fri Dec 12 10:56:48 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000074.html">[mono-packagers] mono on opensolaris 2008.11?
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000076.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#75">[ date ]</a>
|
||||
<a href="thread.html#75">[ thread ]</a>
|
||||
<a href="subject.html#75">[ subject ]</a>
|
||||
<a href="author.html#75">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>There are some significant problems with the mono-find-(provides|requires) scripts as they exist now. Some examples will illustrate the problem best:
|
||||
|
||||
smuxi requires mono(log4net) which is provided by log4net but it is also provided by mojoportal. If you install mojoportal and then smuxi you will not get log4net and smuxi will not run. As a stop-gap we currently filter the provides to remove things likelog4net from the provides list of mojoportal, for instance, but this is hacky and difficult to maintain.
|
||||
|
||||
The first logical step is to modify mono-find-provides so that it does not emit a provides for anything which is not in the gac. This has the following problem:
|
||||
|
||||
monodevelop-boo requires mono(MonoDevelop.Core) but if mono-find-provides does not emit provides for things not installed in the gac then nothing provides mono(MonoDevelop.Core).
|
||||
|
||||
We could manually say that monodevelop provides mono(MonoDevelop.Core) but this would be error-prone and difficult to maintain, particularly as API versions may change between releases and the packager has no easy way to see that change.
|
||||
|
||||
Perhaps there's a way to check if a particular requirement is going tobe satisfied from the gac or from some other location and not emit arequires if it's not satisfied by the gac? Then packagers would have to manually add a requires on the package that provides the assembly. Also not desirable I think.
|
||||
|
||||
Another option would be to insist that MonoDevelop installMonoDevelop.Core to the gac but maybe that's undesirable. Or maybe itis? Please let me know if that's a good solution.
|
||||
|
||||
I don't know how best to solve this issue but it needs to be solved. As more mono-based packages are added to linux distributions the problem will grow. Please share your well-reasoned ideas and / or proposed patches.
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000074.html">[mono-packagers] mono on opensolaris 2008.11?
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000076.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#75">[ date ]</a>
|
||||
<a href="thread.html#75">[ thread ]</a>
|
||||
<a href="subject.html#75">[ subject ]</a>
|
||||
<a href="author.html#75">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,91 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=49422750020000400004ADDA%40lucius.provo.novell.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000075.html">
|
||||
<LINK REL="Next" HREF="000079.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] mono-find-(provides|requires)</H1>
|
||||
<B>Jo Shields</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=49422750020000400004ADDA%40lucius.provo.novell.com"
|
||||
TITLE="[mono-packagers] mono-find-(provides|requires)">directhex at apebox.org
|
||||
</A><BR>
|
||||
<I>Fri Dec 12 11:28:45 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000075.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000079.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#76">[ date ]</a>
|
||||
<a href="thread.html#76">[ thread ]</a>
|
||||
<a href="subject.html#76">[ subject ]</a>
|
||||
<a href="author.html#76">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 2008-12-12 at 08:56 -0700, Andrew Jorgensen wrote:
|
||||
><i> There are some significant problems with the mono-find-(provides|requires) scripts as they exist now. Some examples will illustrate the problem best:
|
||||
</I>><i>
|
||||
</I>><i> smuxi requires mono(log4net) which is provided by log4net but it is also provided by mojoportal. If you install mojoportal and then smuxi you will not get log4net and smuxi will not run. As a stop-gap we currently filter the provides to remove things likelog4net from the provides list of mojoportal, for instance, but this is hacky and difficult to maintain.
|
||||
</I>><i>
|
||||
</I>><i> The first logical step is to modify mono-find-provides so that it does not emit a provides for anything which is not in the gac. This has the following problem:
|
||||
</I>><i>
|
||||
</I>><i> monodevelop-boo requires mono(MonoDevelop.Core) but if mono-find-provides does not emit provides for things not installed in the gac then nothing provides mono(MonoDevelop.Core).
|
||||
</I>><i>
|
||||
</I>><i> We could manually say that monodevelop provides mono(MonoDevelop.Core) but this would be error-prone and difficult to maintain, particularly as API versions may change between releases and the packager has no easy way to see that change.
|
||||
</I>><i>
|
||||
</I>><i> Perhaps there's a way to check if a particular requirement is going tobe satisfied from the gac or from some other location and not emit arequires if it's not satisfied by the gac? Then packagers would have to manually add a requires on the package that provides the assembly. Also not desirable I think.
|
||||
</I>><i>
|
||||
</I>><i> Another option would be to insist that MonoDevelop installMonoDevelop.Core to the gac but maybe that's undesirable. Or maybe itis? Please let me know if that's a good solution.
|
||||
</I>><i>
|
||||
</I>><i> I don't know how best to solve this issue but it needs to be solved. As more mono-based packages are added to linux distributions the problem will grow. Please share your well-reasoned ideas and / or proposed patches.
|
||||
</I>
|
||||
I'll bite.
|
||||
|
||||
1) Why does mojoportal provide mono(log4net)? If it's a private bundled
|
||||
lib which is not added to the GAC, then why lie and say it's provided
|
||||
when it isn't?
|
||||
|
||||
If something isn't hitting the GAC, don't say you provide it, because
|
||||
you simply don't. If you need to depend on a specific non-GAC app, then
|
||||
depend on that app - don't muck about with putting things where they
|
||||
don't belong, or with badly formed automatic dependency. Just say "I
|
||||
require monodevelop, y'all"
|
||||
|
||||
2) Why does mojoportal even bundle that lib? Every bundled lib is a
|
||||
security liability. If you didn't have ten copies of every lib across
|
||||
ten different packages, you wouldn't have a problem.
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000075.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000079.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#76">[ date ]</a>
|
||||
<a href="thread.html#76">[ thread ]</a>
|
||||
<a href="subject.html#76">[ subject ]</a>
|
||||
<a href="author.html#76">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,95 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229103186.19128.127.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000085.html">
|
||||
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] mono-find-(provides|requires)</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229103186.19128.127.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] mono-find-(provides|requires)">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Fri Dec 12 13:06:00 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000085.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#77">[ date ]</a>
|
||||
<a href="thread.html#77">[ thread ]</a>
|
||||
<a href="subject.html#77">[ subject ]</a>
|
||||
<a href="author.html#77">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 2008-12-12 at 17:33 +0000, Jonathan Pryor wrote:
|
||||
><i> *Both* public & private assemblies need to be output (lest we break the
|
||||
</I>><i> aforementioned MonoDevelop.Core issue), especially since it's not always
|
||||
</I>><i> appropriate to place assemblies into the GAC (e.g. unstable APIs, the
|
||||
</I>><i> upstream maintainers don't care to maintain compatibility, etc.).
|
||||
</I>><i>
|
||||
</I>><i> Thus, I suggest that we modify the output so that public assemblies
|
||||
</I>><i> remain as they are -- mono(base-name-of-assembly) -- or modify the
|
||||
</I>><i> output so that the assembly version is included. It might be best,
|
||||
</I>><i> actually, to just use the fully-qualified assembly name, e.g.
|
||||
</I>><i> mono(mscorlib, Version=2.0.0.0, Culture=neutral,
|
||||
</I>><i> PublicKeyToken=b77a5c561934e089).
|
||||
</I>
|
||||
It does include version, I failed to mention that. They look like
|
||||
mono(MonoDevelop.Core) = 1.9.1.0. I agree that it would be better to
|
||||
use the fully qualified name but it would break compatibility. We'd
|
||||
need to figure out an upgrade path or something.
|
||||
|
||||
><i> Private assemblies *must* contain the full path, e.g.
|
||||
</I>><i> mono(/full/path/to/assembly.dll).
|
||||
</I>><i>
|
||||
</I>><i> This approach would allow multiple apps to bundle the same assembly
|
||||
</I>><i> privately (e.g. log4net) w/o screwing up other apps, and would allow
|
||||
</I>><i> apps to strongly specify which public assemblies they depend upon -- two
|
||||
</I>><i> different use cases which we've been trying to shoehorn into the same
|
||||
</I>><i> solution.
|
||||
</I>
|
||||
This would work decently if there were a good way to find out the path
|
||||
of the assembly required by a package that needs it. We would have to
|
||||
be able to automatically determine that monodevelop-boo requires
|
||||
mono(/usr/lib/monodevelop/bin/MonoDevelop.Core.dll).
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000085.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#77">[ date ]</a>
|
||||
<a href="thread.html#77">[ thread ]</a>
|
||||
<a href="subject.html#77">[ subject ]</a>
|
||||
<a href="author.html#77">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,97 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=49422750020000400004ADDA%40lucius.provo.novell.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000087.html">
|
||||
<LINK REL="Next" HREF="000083.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] mono-find-(provides|requires)</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=49422750020000400004ADDA%40lucius.provo.novell.com"
|
||||
TITLE="[mono-packagers] mono-find-(provides|requires)">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Fri Dec 12 12:33:06 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000087.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000083.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#78">[ date ]</a>
|
||||
<a href="thread.html#78">[ thread ]</a>
|
||||
<a href="subject.html#78">[ subject ]</a>
|
||||
<a href="author.html#78">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 2008-12-12 at 08:56 -0700, Andrew Jorgensen wrote:
|
||||
><i> There are some significant problems with the mono-find-(provides|
|
||||
</I>><i> requires) scripts as they exist now. Some examples will illustrate
|
||||
</I>><i> the problem best:
|
||||
</I>
|
||||
<snip examples/>
|
||||
|
||||
I think the fundamental problem is that mono-find-{provides,requires}
|
||||
doesn't distinguish between public assemblies (located in the GAC) and
|
||||
private assemblies (not in the GAC). They are both emitted as
|
||||
mono(base-name-off-assembly).
|
||||
|
||||
*Both* public & private assemblies need to be output (lest we break the
|
||||
aforementioned MonoDevelop.Core issue), especially since it's not always
|
||||
appropriate to place assemblies into the GAC (e.g. unstable APIs, the
|
||||
upstream maintainers don't care to maintain compatibility, etc.).
|
||||
|
||||
Thus, I suggest that we modify the output so that public assemblies
|
||||
remain as they are -- mono(base-name-of-assembly) -- or modify the
|
||||
output so that the assembly version is included. It might be best,
|
||||
actually, to just use the fully-qualified assembly name, e.g.
|
||||
mono(mscorlib, Version=2.0.0.0, Culture=neutral,
|
||||
PublicKeyToken=b77a5c561934e089).
|
||||
|
||||
Private assemblies *must* contain the full path, e.g.
|
||||
mono(/full/path/to/assembly.dll).
|
||||
|
||||
This approach would allow multiple apps to bundle the same assembly
|
||||
privately (e.g. log4net) w/o screwing up other apps, and would allow
|
||||
apps to strongly specify which public assemblies they depend upon -- two
|
||||
different use cases which we've been trying to shoehorn into the same
|
||||
solution.
|
||||
|
||||
- Jon
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000087.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000083.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#78">[ date ]</a>
|
||||
<a href="thread.html#78">[ thread ]</a>
|
||||
<a href="subject.html#78">[ subject ]</a>
|
||||
<a href="author.html#78">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,80 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229099325.30256.8.camel%40osc-franzibald">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000076.html">
|
||||
<LINK REL="Next" HREF="000080.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] mono-find-(provides|requires)</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229099325.30256.8.camel%40osc-franzibald"
|
||||
TITLE="[mono-packagers] mono-find-(provides|requires)">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Fri Dec 12 15:49:25 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000076.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000080.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#79">[ date ]</a>
|
||||
<a href="thread.html#79">[ thread ]</a>
|
||||
<a href="subject.html#79">[ subject ]</a>
|
||||
<a href="author.html#79">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 2008-12-12 at 16:28 +0000, Jo Shields wrote:
|
||||
><i> 1) Why does mojoportal provide mono(log4net)? If it's a private bundled
|
||||
</I>><i> lib which is not added to the GAC, then why lie and say it's provided
|
||||
</I>><i> when it isn't?
|
||||
</I>><i>
|
||||
</I>><i> If something isn't hitting the GAC, don't say you provide it, because
|
||||
</I>><i> you simply don't. If you need to depend on a specific non-GAC app, then
|
||||
</I>><i> depend on that app - don't muck about with putting things where they
|
||||
</I>><i> don't belong, or with badly formed automatic dependency. Just say "I
|
||||
</I>><i> require monodevelop, y'all"
|
||||
</I>
|
||||
Trouble is that it's not easy to determine if a required assembly will
|
||||
be found in the gac or in some other location.
|
||||
|
||||
><i> 2) Why does mojoportal even bundle that lib? Every bundled lib is a
|
||||
</I>><i> security liability. If you didn't have ten copies of every lib across
|
||||
</I>><i> ten different packages, you wouldn't have a problem.
|
||||
</I>
|
||||
There are many good reasons for an app to bundle it's own dependencies.
|
||||
There are also many problems with that approach. Rather than discuss it
|
||||
I accept it as a reality.
|
||||
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000076.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000080.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#79">[ date ]</a>
|
||||
<a href="thread.html#79">[ thread ]</a>
|
||||
<a href="subject.html#79">[ subject ]</a>
|
||||
<a href="author.html#79">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,80 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229114965.11723.172.camel%40linux-byzx">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000079.html">
|
||||
<LINK REL="Next" HREF="000081.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-dev] mono-find-(provides|requires)</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229114965.11723.172.camel%40linux-byzx"
|
||||
TITLE="[mono-packagers] [Mono-dev] mono-find-(provides|requires)">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Fri Dec 12 16:10:49 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000079.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000081.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#80">[ date ]</a>
|
||||
<a href="thread.html#80">[ thread ]</a>
|
||||
<a href="subject.html#80">[ subject ]</a>
|
||||
<a href="author.html#80">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 2008-12-12 at 13:49 -0700, Andrew Jorgensen wrote:
|
||||
><i> Trouble is that it's not easy to determine if a required assembly will
|
||||
</I>><i> be found in the gac or in some other location.
|
||||
</I>
|
||||
We might be able to make a simplifying (if potentially invalid)
|
||||
assumption here: if the `monodis --assemblyref` output doesn't include a
|
||||
Public Key, then the assembly is a private assembly, and thus the full
|
||||
path should be included.
|
||||
|
||||
Of course, then we need to determine which path should be used, as the
|
||||
executable could do funny things with AppDomain loading & adding
|
||||
additional directories to probe for assemblies, but it would likely be a
|
||||
fair first-pass to just assume that if the required assembly doesn't
|
||||
have a public key then it must exist in the same directory as the
|
||||
assembly being processed...
|
||||
|
||||
BTW, where is the source for mono-find-provides and mono-find-requires?
|
||||
The only versions I see are shell scripts that do odd things
|
||||
with /usr/share/doc and don't seem to do anything but sit there when I
|
||||
execute them...
|
||||
|
||||
- Jon
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000079.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000081.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#80">[ date ]</a>
|
||||
<a href="thread.html#80">[ thread ]</a>
|
||||
<a href="subject.html#80">[ subject ]</a>
|
||||
<a href="author.html#80">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,66 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229116249.19128.135.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000080.html">
|
||||
<LINK REL="Next" HREF="000082.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-dev] mono-find-(provides|requires)</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229116249.19128.135.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] [Mono-dev] mono-find-(provides|requires)">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Fri Dec 12 17:49:22 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000080.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000082.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#81">[ date ]</a>
|
||||
<a href="thread.html#81">[ thread ]</a>
|
||||
<a href="subject.html#81">[ subject ]</a>
|
||||
<a href="author.html#81">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 2008-12-12 at 21:10 +0000, Jonathan Pryor wrote:
|
||||
><i> BTW, where is the source for mono-find-provides and mono-find-requires?
|
||||
</I>><i> The only versions I see are shell scripts that do odd things
|
||||
</I>><i> with /usr/share/doc and don't seem to do anything but sit there when I
|
||||
</I>><i> execute them...
|
||||
</I>
|
||||
In the mono svn module:
|
||||
scripts/mono-find-provides.in
|
||||
scripts/mono-find-requires.in
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000080.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000082.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#81">[ date ]</a>
|
||||
<a href="thread.html#81">[ thread ]</a>
|
||||
<a href="subject.html#81">[ subject ]</a>
|
||||
<a href="author.html#81">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,83 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229122162.11723.173.camel%40linux-byzx">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000081.html">
|
||||
<LINK REL="Next" HREF="000087.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-dev] mono-find-(provides|requires)</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229122162.11723.173.camel%40linux-byzx"
|
||||
TITLE="[mono-packagers] [Mono-dev] mono-find-(provides|requires)">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Fri Dec 12 21:55:20 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000081.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000087.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#82">[ date ]</a>
|
||||
<a href="thread.html#82">[ thread ]</a>
|
||||
<a href="subject.html#82">[ subject ]</a>
|
||||
<a href="author.html#82">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 2008-12-12 at 15:49 -0700, Andrew Jorgensen wrote:
|
||||
><i> On Fri, 2008-12-12 at 21:10 +0000, Jonathan Pryor wrote:
|
||||
</I>><i> > BTW, where is the source for mono-find-provides and mono-find-requires?
|
||||
</I>><i> > The only versions I see are shell scripts that do odd things
|
||||
</I>><i> > with /usr/share/doc and don't seem to do anything but sit there when I
|
||||
</I>><i> > execute them...
|
||||
</I>><i>
|
||||
</I>><i> In the mono svn module:
|
||||
</I>><i> scripts/mono-find-provides.in
|
||||
</I>><i> scripts/mono-find-requires.in
|
||||
</I>
|
||||
How's this patch do for you?
|
||||
|
||||
It's not perfect -- for one, it won't distinguish between foo.dll and
|
||||
foo.exe within the same directory, which is permitted -- but it should
|
||||
fare better than the current scripts wrt public & private assembly
|
||||
distinctions.
|
||||
|
||||
- Jon
|
||||
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-find.patch
|
||||
Type: text/x-patch
|
||||
Size: 3584 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081213/9eb0bcd8/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081213/9eb0bcd8/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000081.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000087.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#82">[ date ]</a>
|
||||
<a href="thread.html#82">[ thread ]</a>
|
||||
<a href="subject.html#82">[ subject ]</a>
|
||||
<a href="author.html#82">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,89 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=49422750020000400004ADDA%40lucius.provo.novell.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000078.html">
|
||||
<LINK REL="Next" HREF="000084.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-dev] mono-find-(provides|requires)</H1>
|
||||
<B>Mike Kestner</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=49422750020000400004ADDA%40lucius.provo.novell.com"
|
||||
TITLE="[mono-packagers] [Mono-dev] mono-find-(provides|requires)">mkestner at gmail.com
|
||||
</A><BR>
|
||||
<I>Fri Dec 12 23:35:58 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000078.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000084.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#83">[ date ]</a>
|
||||
<a href="thread.html#83">[ thread ]</a>
|
||||
<a href="subject.html#83">[ subject ]</a>
|
||||
<a href="author.html#83">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 2008-12-12 at 08:56 -0700, Andrew Jorgensen wrote:
|
||||
|
||||
><i> I don't know how best to solve this issue but it needs to be solved.
|
||||
</I>><i> As more mono-based packages are added to linux distributions the
|
||||
</I>><i> problem will grow. Please share your well-reasoned ideas and / or
|
||||
</I>><i> proposed patches.
|
||||
</I>
|
||||
We seem to have 3 classes of DLLs now: gac, addin, and private.
|
||||
|
||||
gac is obvious: Anything that installs one provides it, anything that
|
||||
references one requires it.
|
||||
|
||||
private is any installed non-gac assembly which is not associated with
|
||||
addins. This includes local libraries installed by apps for their own
|
||||
use, and unstable libraries using the guidelines per the wiki. There is
|
||||
no reason for these libraries to be advertised as provides.
|
||||
|
||||
The tricky one is addin-related libraries, like MonoDevelop.Core.dll
|
||||
which is consumed by Boo. These are loaded via the addin manifest
|
||||
dependency mechanism so they don't have to be installed in the GAC to be
|
||||
public.
|
||||
|
||||
><i>From a package dependency standpoint, any assembly reference not
|
||||
</I>installed by the rpm itself needs to be listed by mono-find-requires.
|
||||
For mono-find-provides, gac and addin assemblies need to be listed.
|
||||
Gac libraries are easy enough to identify. Lluis and I were discussing
|
||||
it and he said it should be possible to extend the addin tools to
|
||||
provide an addin detection capability.
|
||||
|
||||
--
|
||||
Mike Kestner <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mkestner at gmail.com</A>>
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000078.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000084.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#83">[ date ]</a>
|
||||
<a href="thread.html#83">[ thread ]</a>
|
||||
<a href="subject.html#83">[ subject ]</a>
|
||||
<a href="author.html#83">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,77 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229142958.5717.45.camel%40linux-wpou.site">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000083.html">
|
||||
<LINK REL="Next" HREF="000086.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-dev] mono-find-(provides|requires)</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229142958.5717.45.camel%40linux-wpou.site"
|
||||
TITLE="[mono-packagers] [Mono-dev] mono-find-(provides|requires)">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Sat Dec 13 10:23:09 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000083.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000086.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#84">[ date ]</a>
|
||||
<a href="thread.html#84">[ thread ]</a>
|
||||
<a href="subject.html#84">[ subject ]</a>
|
||||
<a href="author.html#84">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 2008-12-12 at 22:35 -0600, Mike Kestner wrote:
|
||||
><i> On Fri, 2008-12-12 at 08:56 -0700, Andrew Jorgensen wrote:
|
||||
</I>><i>
|
||||
</I>><i> > I don't know how best to solve this issue but it needs to be solved.
|
||||
</I>><i> > As more mono-based packages are added to linux distributions the
|
||||
</I>><i> > problem will grow. Please share your well-reasoned ideas and / or
|
||||
</I>><i> > proposed patches.
|
||||
</I>><i>
|
||||
</I>><i> We seem to have 3 classes of DLLs now: gac, addin, and private.
|
||||
</I>
|
||||
I'm not entirely sure that we want to distinguish between addins and
|
||||
private. Somewhat because it's additional code to write/test, but
|
||||
mostly because I can't see this covering the log4net case, in which a
|
||||
plugin/addin/etc. wants to make use of the application's copy of e.g.
|
||||
log4net.dll (as presumably log4net won't be an addin any time soon).
|
||||
|
||||
- Jon
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000083.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000086.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#84">[ date ]</a>
|
||||
<a href="thread.html#84">[ thread ]</a>
|
||||
<a href="subject.html#84">[ subject ]</a>
|
||||
<a href="author.html#84">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,130 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=49422750020000400004ADDA%40lucius.provo.novell.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000086.html">
|
||||
<LINK REL="Next" HREF="000077.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-dev] mono-find-(provides|requires)</H1>
|
||||
<B>Lluis Sanchez Gual</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=49422750020000400004ADDA%40lucius.provo.novell.com"
|
||||
TITLE="[mono-packagers] [Mono-dev] mono-find-(provides|requires)">lluis at novell.com
|
||||
</A><BR>
|
||||
<I>Mon Dec 15 11:06:42 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000086.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000077.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#85">[ date ]</a>
|
||||
<a href="thread.html#85">[ thread ]</a>
|
||||
<a href="subject.html#85">[ subject ]</a>
|
||||
<a href="author.html#85">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>El dv 12 de 12 de 2008 a les 08:56 -0700, en/na Andrew Jorgensen va
|
||||
escriure:
|
||||
><i> There are some significant problems with the mono-find-(provides|
|
||||
</I>><i> requires) scripts as they exist now. Some examples will illustrate
|
||||
</I>><i> the problem best:
|
||||
</I>><i>
|
||||
</I>><i> smuxi requires mono(log4net) which is provided by log4net but it is
|
||||
</I>><i> also provided by mojoportal. If you install mojoportal and then smuxi
|
||||
</I>><i> you will not get log4net and smuxi will not run. As a stop-gap we
|
||||
</I>><i> currently filter the provides to remove things likelog4net from the
|
||||
</I>><i> provides list of mojoportal, for instance, but this is hacky and
|
||||
</I>><i> difficult to maintain.
|
||||
</I>><i>
|
||||
</I>><i> The first logical step is to modify mono-find-provides so that it does
|
||||
</I>><i> not emit a provides for anything which is not in the gac. This has
|
||||
</I>><i> the following problem:
|
||||
</I>><i>
|
||||
</I>><i> monodevelop-boo requires mono(MonoDevelop.Core) but if
|
||||
</I>><i> mono-find-provides does not emit provides for things not installed in
|
||||
</I>><i> the gac then nothing provides mono(MonoDevelop.Core).
|
||||
</I>><i>
|
||||
</I>><i> We could manually say that monodevelop provides mono(MonoDevelop.Core)
|
||||
</I>><i> but this would be error-prone and difficult to maintain, particularly
|
||||
</I>><i> as API versions may change between releases and the packager has no
|
||||
</I>><i> easy way to see that change.
|
||||
</I>
|
||||
What's special about monodevelop-boo is that it is an add-in, and
|
||||
add-ins depend on private (non-gac) assemblies of the applications they
|
||||
extend.
|
||||
|
||||
I think the best solution is to have a tool which can detect add-ins and
|
||||
extract information about what they provide/require. Add-ins have an ID
|
||||
and a version number, and explicit information about which other add-ins
|
||||
they depend upon (with version numbers too). So it makes sense to use
|
||||
that information when building package dependencies.
|
||||
|
||||
There is already a tool called mautil which can detect and show
|
||||
information about add-ins. You can run 'mautil info some.dll' and it
|
||||
will print the header of the add-in and some other information. I can
|
||||
implement a new option in that command to show the list of
|
||||
provides/requires in a way that can be easily parsed by
|
||||
mono-find-provides/requires.
|
||||
|
||||
Mono.Addins supports several ways of declaring add-ins and dependencies.
|
||||
It can be done with an standalone xml manifest, or with an xml manifest
|
||||
embedded as resource, or using custom attributes. mautil would have to
|
||||
be used to check every assembly, but also all .addin and .addin.xml
|
||||
files.
|
||||
|
||||
Improving mono-find-provides/requires in this way would be useful not
|
||||
only for MD, but also for any application based on Mono.Addins.
|
||||
|
||||
><i>
|
||||
</I>><i> Perhaps there's a way to check if a particular requirement is going
|
||||
</I>><i> tobe satisfied from the gac or from some other location and not emit
|
||||
</I>><i> arequires if it's not satisfied by the gac? Then packagers would have
|
||||
</I>><i> to manually add a requires on the package that provides the assembly.
|
||||
</I>><i> Also not desirable I think.
|
||||
</I>><i>
|
||||
</I>><i> Another option would be to insist that MonoDevelop
|
||||
</I>><i> installMonoDevelop.Core to the gac but maybe that's undesirable. Or
|
||||
</I>><i> maybe itis? Please let me know if that's a good solution.
|
||||
</I>><i>
|
||||
</I>><i> I don't know how best to solve this issue but it needs to be solved.
|
||||
</I>><i> As more mono-based packages are added to linux distributions the
|
||||
</I>><i> problem will grow. Please share your well-reasoned ideas and / or
|
||||
</I>><i> proposed patches.
|
||||
</I>><i>
|
||||
</I>><i> _______________________________________________
|
||||
</I>><i> Mono-devel-list mailing list
|
||||
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">Mono-devel-list at lists.ximian.com</A>
|
||||
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/mono-devel-list">http://lists.ximian.com/mailman/listinfo/mono-devel-list</A>
|
||||
</I>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000086.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000077.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#85">[ date ]</a>
|
||||
<a href="thread.html#85">[ thread ]</a>
|
||||
<a href="subject.html#85">[ subject ]</a>
|
||||
<a href="author.html#85">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,89 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229181789.19128.143.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000084.html">
|
||||
<LINK REL="Next" HREF="000085.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-dev] mono-find-(provides|requires)</H1>
|
||||
<B>Mike Kestner</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229181789.19128.143.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] [Mono-dev] mono-find-(provides|requires)">mkestner at gmail.com
|
||||
</A><BR>
|
||||
<I>Sat Dec 13 12:23:38 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000084.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000085.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#86">[ date ]</a>
|
||||
<a href="thread.html#86">[ thread ]</a>
|
||||
<a href="subject.html#86">[ subject ]</a>
|
||||
<a href="author.html#86">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Sat, 2008-12-13 at 15:23 +0000, Jonathan Pryor wrote:
|
||||
><i> On Fri, 2008-12-12 at 22:35 -0600, Mike Kestner wrote:
|
||||
</I>><i> > On Fri, 2008-12-12 at 08:56 -0700, Andrew Jorgensen wrote:
|
||||
</I>><i> >
|
||||
</I>><i> > > I don't know how best to solve this issue but it needs to be solved.
|
||||
</I>><i> > > As more mono-based packages are added to linux distributions the
|
||||
</I>><i> > > problem will grow. Please share your well-reasoned ideas and / or
|
||||
</I>><i> > > proposed patches.
|
||||
</I>><i> >
|
||||
</I>><i> > We seem to have 3 classes of DLLs now: gac, addin, and private.
|
||||
</I>><i>
|
||||
</I>><i> I'm not entirely sure that we want to distinguish between addins and
|
||||
</I>><i> private. Somewhat because it's additional code to write/test, but
|
||||
</I>><i> mostly because I can't see this covering the log4net case, in which a
|
||||
</I>><i> plugin/addin/etc. wants to make use of the application's copy of e.g.
|
||||
</I>><i> log4net.dll (as presumably log4net won't be an addin any time soon).
|
||||
</I>
|
||||
The advantage to doing so is not cluttering up the provides output with
|
||||
an entry for every non-gac assembly in an rpm when the majority of them
|
||||
are not realistically consumable at runtime.
|
||||
|
||||
AFAICT, it solves the log4net problem as described because only the
|
||||
log4net rpm would advertise a provides for mono(log4net). It appears to
|
||||
be a gac installed assembly by that rpm. The mojoportal rpm would not
|
||||
advertise a provides, because it apparently installs the assembly to a
|
||||
private dir. mojoportal would not have a requires for it since it
|
||||
installs a copy itself. smuxi on the other hand would have a requires
|
||||
since it does not install log4net.dll, but instead uses the gac'd copy
|
||||
from log4net.rpm
|
||||
|
||||
--
|
||||
Mike Kestner <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mkestner at gmail.com</A>>
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000084.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000085.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#86">[ date ]</a>
|
||||
<a href="thread.html#86">[ thread ]</a>
|
||||
<a href="subject.html#86">[ subject ]</a>
|
||||
<a href="author.html#86">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,94 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229099325.30256.8.camel%40osc-franzibald">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000082.html">
|
||||
<LINK REL="Next" HREF="000078.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-dev] mono-find-(provides|requires)</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-dev%5D%20%20mono-find-%28provides%7Crequires%29&In-Reply-To=1229099325.30256.8.camel%40osc-franzibald"
|
||||
TITLE="[mono-packagers] [Mono-dev] mono-find-(provides|requires)">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Tue Dec 16 13:22:16 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000082.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000078.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#87">[ date ]</a>
|
||||
<a href="thread.html#87">[ thread ]</a>
|
||||
<a href="subject.html#87">[ subject ]</a>
|
||||
<a href="author.html#87">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 2008-12-12 at 16:28 +0000, Jo Shields wrote:
|
||||
><i> 1) Why does mojoportal provide mono(log4net)? If it's a private bundled
|
||||
</I>><i> lib which is not added to the GAC, then why lie and say it's provided
|
||||
</I>><i> when it isn't?
|
||||
</I>
|
||||
Because the automagic tools were stupid and said that every assembly
|
||||
found was a public assembly (even when that wasn't the case).
|
||||
|
||||
><i> If something isn't hitting the GAC, don't say you provide it, because
|
||||
</I>><i> you simply don't. If you need to depend on a specific non-GAC app, then
|
||||
</I>><i> depend on that app - don't muck about with putting things where they
|
||||
</I>><i> don't belong, or with badly formed automatic dependency. Just say "I
|
||||
</I>><i> require monodevelop, y'all"
|
||||
</I>
|
||||
The problem with this is that it requires manual intervention to specify
|
||||
which packages are required. Ideally this could all be done
|
||||
automatically without any manual intervention, and assembly-name ->
|
||||
package will always be manual.
|
||||
|
||||
Which is where listing private assemblies -- with their full path --
|
||||
could be a workable compromise. No manual intervention is needed, and
|
||||
private assemblies are marked as "private" (by using their full path
|
||||
name), thus removing package conflicts.
|
||||
|
||||
><i> 2) Why does mojoportal even bundle that lib? Every bundled lib is a
|
||||
</I>><i> security liability. If you didn't have ten copies of every lib across
|
||||
</I>><i> ten different packages, you wouldn't have a problem.
|
||||
</I>
|
||||
Not every lib should be in the GAC. Being in the GAC is an indication
|
||||
that your public API is stable, documented, and won't change, which is
|
||||
NOT the case for most libraries (and has bitten us before when we placed
|
||||
non-stable libs into the GAC, such as ICSharpCode.SharpZipLib, iirc).
|
||||
|
||||
Requiring use of the GAC isn't a solution, so private assemblies need to
|
||||
be well supported by whatever tooling we use.
|
||||
|
||||
- Jon
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000082.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000078.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#87">[ date ]</a>
|
||||
<a href="thread.html#87">[ thread ]</a>
|
||||
<a href="subject.html#87">[ subject ]</a>
|
||||
<a href="author.html#87">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,162 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list December 2008 Archive by author</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>December 2008 Archives by author</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Mon Dec 1 15:44:01 EST 2008</i><br>
|
||||
<b>Ending:</b> <i>Tue Dec 16 13:22:16 EST 2008</i><br>
|
||||
<b>Messages:</b> 23<p>
|
||||
<ul>
|
||||
|
||||
<LI><A HREF="000085.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="85"> </A>
|
||||
<I>Lluis Sanchez Gual
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000067.html">[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!
|
||||
</A><A NAME="67"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000068.html">[mono-packagers] Moonlight 1.0 Beta 1 released!
|
||||
</A><A NAME="68"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000070.html">[mono-packagers] release frequency
|
||||
</A><A NAME="70"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000075.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="75"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000077.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="77"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000079.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="79"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000081.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="81"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000083.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="83"> </A>
|
||||
<I>Mike Kestner
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000086.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="86"> </A>
|
||||
<I>Mike Kestner
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000069.html">[mono-packagers] sed problem
|
||||
</A><A NAME="69"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000071.html">[mono-packagers] release frequency
|
||||
</A><A NAME="71"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000073.html">[mono-packagers] release frequency
|
||||
</A><A NAME="73"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000065.html">[mono-packagers] The $(prefix)/lib vs $(libdir) argument
|
||||
</A><A NAME="65"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000066.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="66"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000078.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="78"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000080.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="80"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000082.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="82"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000084.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="84"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000087.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="87"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000072.html">[mono-packagers] release frequency
|
||||
</A><A NAME="72"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000076.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="76"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000074.html">[mono-packagers] mono on opensolaris 2008.11?
|
||||
</A><A NAME="74"> </A>
|
||||
<I>antonandreev at fmi.uni-sofia.bg
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Tue Dec 16 13:22:16 EST 2008</i><br>
|
||||
<b>Archived on:</b> <i>Tue Dec 16 13:22:26 EST 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,162 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list December 2008 Archive by date</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>December 2008 Archives by date</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Mon Dec 1 15:44:01 EST 2008</i><br>
|
||||
<b>Ending:</b> <i>Tue Dec 16 13:22:16 EST 2008</i><br>
|
||||
<b>Messages:</b> 23<p>
|
||||
<ul>
|
||||
|
||||
<LI><A HREF="000065.html">[mono-packagers] The $(prefix)/lib vs $(libdir) argument
|
||||
</A><A NAME="65"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000066.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="66"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000067.html">[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!
|
||||
</A><A NAME="67"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000068.html">[mono-packagers] Moonlight 1.0 Beta 1 released!
|
||||
</A><A NAME="68"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000069.html">[mono-packagers] sed problem
|
||||
</A><A NAME="69"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000070.html">[mono-packagers] release frequency
|
||||
</A><A NAME="70"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000071.html">[mono-packagers] release frequency
|
||||
</A><A NAME="71"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000072.html">[mono-packagers] release frequency
|
||||
</A><A NAME="72"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000073.html">[mono-packagers] release frequency
|
||||
</A><A NAME="73"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000074.html">[mono-packagers] mono on opensolaris 2008.11?
|
||||
</A><A NAME="74"> </A>
|
||||
<I>antonandreev at fmi.uni-sofia.bg
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000075.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="75"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000076.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="76"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000078.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="78"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000077.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="77"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000079.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="79"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000080.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="80"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000081.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="81"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000082.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="82"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000083.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="83"> </A>
|
||||
<I>Mike Kestner
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000084.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="84"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000086.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="86"> </A>
|
||||
<I>Mike Kestner
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000085.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="85"> </A>
|
||||
<I>Lluis Sanchez Gual
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000087.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="87"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Tue Dec 16 13:22:16 EST 2008</i><br>
|
||||
<b>Archived on:</b> <i>Tue Dec 16 13:22:26 EST 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list December 2008 Archive by thread</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>December 2008 Archives by thread</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Mon Dec 1 15:44:01 EST 2008</i><br>
|
||||
<b>Ending:</b> <i>Tue Dec 16 13:22:16 EST 2008</i><br>
|
||||
<b>Messages:</b> 23<p>
|
||||
<ul>
|
||||
|
||||
<!--0 01228164241- -->
|
||||
<LI><A HREF="000065.html">[mono-packagers] The $(prefix)/lib vs $(libdir) argument
|
||||
</A><A NAME="65"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--0 01228164926- -->
|
||||
<LI><A HREF="000066.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="66"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--0 01228243536- -->
|
||||
<LI><A HREF="000067.html">[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!
|
||||
</A><A NAME="67"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<!--0 01228243577- -->
|
||||
<LI><A HREF="000068.html">[mono-packagers] Moonlight 1.0 Beta 1 released!
|
||||
</A><A NAME="68"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<!--0 01228506447- -->
|
||||
<LI><A HREF="000069.html">[mono-packagers] sed problem
|
||||
</A><A NAME="69"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01228783048- -->
|
||||
<LI><A HREF="000070.html">[mono-packagers] release frequency
|
||||
</A><A NAME="70"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01228783048-01228817988- -->
|
||||
<LI><A HREF="000071.html">[mono-packagers] release frequency
|
||||
</A><A NAME="71"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--1 01228783048-01228818858- -->
|
||||
<LI><A HREF="000072.html">[mono-packagers] release frequency
|
||||
</A><A NAME="72"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01228783048-01228818858-01228820088- -->
|
||||
<LI><A HREF="000073.html">[mono-packagers] release frequency
|
||||
</A><A NAME="73"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01229034347- -->
|
||||
<LI><A HREF="000074.html">[mono-packagers] mono on opensolaris 2008.11?
|
||||
</A><A NAME="74"> </A>
|
||||
<I>antonandreev at fmi.uni-sofia.bg
|
||||
</I>
|
||||
|
||||
<!--0 01229097408- -->
|
||||
<LI><A HREF="000075.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="75"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01229097408-01229099325- -->
|
||||
<LI><A HREF="000076.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="76"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01229097408-01229099325-01229114965- -->
|
||||
<LI><A HREF="000079.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="79"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--3 01229097408-01229099325-01229114965-01229116249- -->
|
||||
<LI><A HREF="000080.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="80"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--3 01229097408-01229099325-01229114965-01229116249-01229122162- -->
|
||||
<LI><A HREF="000081.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="81"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--3 01229097408-01229099325-01229114965-01229116249-01229122162-01229136920- -->
|
||||
<LI><A HREF="000082.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="82"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--2 01229097408-01229099325-01229451736- -->
|
||||
<LI><A HREF="000087.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="87"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--1 01229097408-01229103186- -->
|
||||
<LI><A HREF="000078.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="78"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--1 01229097408-01229142958- -->
|
||||
<LI><A HREF="000083.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="83"> </A>
|
||||
<I>Mike Kestner
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01229097408-01229142958-01229181789- -->
|
||||
<LI><A HREF="000084.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="84"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--3 01229097408-01229142958-01229181789-01229189018- -->
|
||||
<LI><A HREF="000086.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="86"> </A>
|
||||
<I>Mike Kestner
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
<!--1 01229097408-01229357202- -->
|
||||
<LI><A HREF="000085.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="85"> </A>
|
||||
<I>Lluis Sanchez Gual
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--0 01229105160- -->
|
||||
<LI><A HREF="000077.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="77"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Tue Dec 16 13:22:16 EST 2008</i><br>
|
||||
<b>Archived on:</b> <i>Tue Dec 16 13:22:26 EST 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,162 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list December 2008 Archive by subject</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>December 2008 Archives by subject</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Mon Dec 1 15:44:01 EST 2008</i><br>
|
||||
<b>Ending:</b> <i>Tue Dec 16 13:22:16 EST 2008</i><br>
|
||||
<b>Messages:</b> 23<p>
|
||||
<ul>
|
||||
|
||||
<LI><A HREF="000080.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="80"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000081.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="81"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000082.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="82"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000087.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="87"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000083.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="83"> </A>
|
||||
<I>Mike Kestner
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000084.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="84"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000086.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="86"> </A>
|
||||
<I>Mike Kestner
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000085.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="85"> </A>
|
||||
<I>Lluis Sanchez Gual
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000067.html">[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!
|
||||
</A><A NAME="67"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000074.html">[mono-packagers] mono on opensolaris 2008.11?
|
||||
</A><A NAME="74"> </A>
|
||||
<I>antonandreev at fmi.uni-sofia.bg
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000075.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="75"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000076.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="76"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000078.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="78"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000077.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="77"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000079.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="79"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000068.html">[mono-packagers] Moonlight 1.0 Beta 1 released!
|
||||
</A><A NAME="68"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000070.html">[mono-packagers] release frequency
|
||||
</A><A NAME="70"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000071.html">[mono-packagers] release frequency
|
||||
</A><A NAME="71"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000072.html">[mono-packagers] release frequency
|
||||
</A><A NAME="72"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000073.html">[mono-packagers] release frequency
|
||||
</A><A NAME="73"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000069.html">[mono-packagers] sed problem
|
||||
</A><A NAME="69"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000065.html">[mono-packagers] The $(prefix)/lib vs $(libdir) argument
|
||||
</A><A NAME="65"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000066.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="66"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Tue Dec 16 13:22:16 EST 2008</i><br>
|
||||
<b>Archived on:</b> <i>Tue Dec 16 13:22:26 EST 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list December 2008 Archive by thread</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>December 2008 Archives by thread</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Mon Dec 1 15:44:01 EST 2008</i><br>
|
||||
<b>Ending:</b> <i>Tue Dec 16 13:22:16 EST 2008</i><br>
|
||||
<b>Messages:</b> 23<p>
|
||||
<ul>
|
||||
|
||||
<!--0 01228164241- -->
|
||||
<LI><A HREF="000065.html">[mono-packagers] The $(prefix)/lib vs $(libdir) argument
|
||||
</A><A NAME="65"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--0 01228164926- -->
|
||||
<LI><A HREF="000066.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="66"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--0 01228243536- -->
|
||||
<LI><A HREF="000067.html">[mono-packagers] [Moonlight-list] [Mono-dev] Moonlight 1.0 Beta 1 released!
|
||||
</A><A NAME="67"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<!--0 01228243577- -->
|
||||
<LI><A HREF="000068.html">[mono-packagers] Moonlight 1.0 Beta 1 released!
|
||||
</A><A NAME="68"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<!--0 01228506447- -->
|
||||
<LI><A HREF="000069.html">[mono-packagers] sed problem
|
||||
</A><A NAME="69"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01228783048- -->
|
||||
<LI><A HREF="000070.html">[mono-packagers] release frequency
|
||||
</A><A NAME="70"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01228783048-01228817988- -->
|
||||
<LI><A HREF="000071.html">[mono-packagers] release frequency
|
||||
</A><A NAME="71"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--1 01228783048-01228818858- -->
|
||||
<LI><A HREF="000072.html">[mono-packagers] release frequency
|
||||
</A><A NAME="72"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01228783048-01228818858-01228820088- -->
|
||||
<LI><A HREF="000073.html">[mono-packagers] release frequency
|
||||
</A><A NAME="73"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01229034347- -->
|
||||
<LI><A HREF="000074.html">[mono-packagers] mono on opensolaris 2008.11?
|
||||
</A><A NAME="74"> </A>
|
||||
<I>antonandreev at fmi.uni-sofia.bg
|
||||
</I>
|
||||
|
||||
<!--0 01229097408- -->
|
||||
<LI><A HREF="000075.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="75"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01229097408-01229099325- -->
|
||||
<LI><A HREF="000076.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="76"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01229097408-01229099325-01229114965- -->
|
||||
<LI><A HREF="000079.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="79"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--3 01229097408-01229099325-01229114965-01229116249- -->
|
||||
<LI><A HREF="000080.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="80"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--3 01229097408-01229099325-01229114965-01229116249-01229122162- -->
|
||||
<LI><A HREF="000081.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="81"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--3 01229097408-01229099325-01229114965-01229116249-01229122162-01229136920- -->
|
||||
<LI><A HREF="000082.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="82"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--2 01229097408-01229099325-01229451736- -->
|
||||
<LI><A HREF="000087.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="87"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--1 01229097408-01229103186- -->
|
||||
<LI><A HREF="000078.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="78"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--1 01229097408-01229142958- -->
|
||||
<LI><A HREF="000083.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="83"> </A>
|
||||
<I>Mike Kestner
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01229097408-01229142958-01229181789- -->
|
||||
<LI><A HREF="000084.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="84"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--3 01229097408-01229142958-01229181789-01229189018- -->
|
||||
<LI><A HREF="000086.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="86"> </A>
|
||||
<I>Mike Kestner
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
<!--1 01229097408-01229357202- -->
|
||||
<LI><A HREF="000085.html">[mono-packagers] [Mono-dev] mono-find-(provides|requires)
|
||||
</A><A NAME="85"> </A>
|
||||
<I>Lluis Sanchez Gual
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--0 01229105160- -->
|
||||
<LI><A HREF="000077.html">[mono-packagers] mono-find-(provides|requires)
|
||||
</A><A NAME="77"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Tue Dec 16 13:22:16 EST 2008</i><br>
|
||||
<b>Archived on:</b> <i>Tue Dec 16 13:22:26 EST 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Branching Moonlight for 1.0 release
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Branching%20Moonlight%20for%201.0%20release&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
|
||||
<LINK REL="Next" HREF="000040.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Branching Moonlight for 1.0 release</H1>
|
||||
<B>Rusty Howell</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Branching%20Moonlight%20for%201.0%20release&In-Reply-To="
|
||||
TITLE="[mono-packagers] Branching Moonlight for 1.0 release">rhowell at novell.com
|
||||
</A><BR>
|
||||
<I>Mon Nov 3 16:52:46 EST 2008</I>
|
||||
<P><UL>
|
||||
|
||||
<LI>Next message: <A HREF="000040.html">[mono-packagers] FYI: Ubuntu 9.04 Release Schedule
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#39">[ date ]</a>
|
||||
<a href="thread.html#39">[ thread ]</a>
|
||||
<a href="subject.html#39">[ subject ]</a>
|
||||
<a href="author.html#39">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hey everyone,
|
||||
|
||||
We've branched Moonlight! You can find the Moonlight 1.0 branch at
|
||||
<A HREF="http://anonsvn.mono-project.com/sources/branches/moon-1-0">http://anonsvn.mono-project.com/sources/branches/moon-1-0</A>
|
||||
We're gearing up for our 1.0 release and the first beta release will
|
||||
beout very soon.
|
||||
|
||||
As always, feel free to search the bugs list or log any new bugs at via
|
||||
<A HREF="http://mono-project.com/Bugs">http://mono-project.com/Bugs</A>
|
||||
|
||||
Rusty Howell
|
||||
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
|
||||
<LI>Next message: <A HREF="000040.html">[mono-packagers] FYI: Ubuntu 9.04 Release Schedule
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#39">[ date ]</a>
|
||||
<a href="thread.html#39">[ thread ]</a>
|
||||
<a href="subject.html#39">[ subject ]</a>
|
||||
<a href="author.html#39">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,76 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] FYI: Ubuntu 9.04 Release Schedule
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20FYI%3A%20Ubuntu%209.04%20Release%20Schedule&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000039.html">
|
||||
<LINK REL="Next" HREF="000041.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] FYI: Ubuntu 9.04 Release Schedule</H1>
|
||||
<B>Jo Shields</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20FYI%3A%20Ubuntu%209.04%20Release%20Schedule&In-Reply-To="
|
||||
TITLE="[mono-packagers] FYI: Ubuntu 9.04 Release Schedule">directhex at apebox.org
|
||||
</A><BR>
|
||||
<I>Wed Nov 5 04:48:35 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000039.html">[mono-packagers] Branching Moonlight for 1.0 release
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000041.html">[mono-packagers] Mono 2.2 has been branched
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#40">[ date ]</a>
|
||||
<a href="thread.html#40">[ thread ]</a>
|
||||
<a href="subject.html#40">[ subject ]</a>
|
||||
<a href="author.html#40">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>The release schedule for the next version of Ubuntu Linux (Ubuntu 9.04,
|
||||
the Jaunty Jackalope) has been published, at
|
||||
<A HREF="https://wiki.ubuntu.com/JauntyReleaseSchedule">https://wiki.ubuntu.com/JauntyReleaseSchedule</A>
|
||||
|
||||
The important dates to look at where things like Mono are concerned is
|
||||
the FeatureFreeze, on the week of Feb 19th - after that date, it becomes
|
||||
much harder to convince anyone that an update to a major software stack
|
||||
isn't a terrible idea, and after BetaFreeze (week of March 19th) it's
|
||||
essentially impossible.
|
||||
|
||||
Comparing against dates shown on <A HREF="http://mono-project.com/Roadmap">http://mono-project.com/Roadmap</A> this
|
||||
therefore means that Ubuntu 9.04 will ship with Mono 2.2(.x). And
|
||||
whichever releases for matching software stack items (e.g. Moonlight,
|
||||
Monodevelop) are out by FeatureFreeze. The versions included will need
|
||||
to be supported by the Ubuntu people until October 2010. The next
|
||||
release of Ubuntu after 9.04 will be in October 2009, with a
|
||||
FeatureFreeze date of around the end of August.
|
||||
|
||||
--Jo Shields
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000039.html">[mono-packagers] Branching Moonlight for 1.0 release
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000041.html">[mono-packagers] Mono 2.2 has been branched
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#40">[ date ]</a>
|
||||
<a href="thread.html#40">[ thread ]</a>
|
||||
<a href="subject.html#40">[ subject ]</a>
|
||||
<a href="author.html#40">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Mono 2.2 has been branched
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Mono%202.2%20has%20been%20branched&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000040.html">
|
||||
<LINK REL="Next" HREF="000042.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Mono 2.2 has been branched</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Mono%202.2%20has%20been%20branched&In-Reply-To="
|
||||
TITLE="[mono-packagers] Mono 2.2 has been branched">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Mon Nov 10 19:15:38 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000040.html">[mono-packagers] FYI: Ubuntu 9.04 Release Schedule
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000042.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#41">[ date ]</a>
|
||||
<a href="thread.html#41">[ thread ]</a>
|
||||
<a href="subject.html#41">[ subject ]</a>
|
||||
<a href="author.html#41">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>The branch is at branches/mono-2-2 in svn and we will be making a
|
||||
preview build sometime this week. Please help us make this the best and
|
||||
most stable release of Mono yet.
|
||||
|
||||
Trunk revision at which we branched is 118441.
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000040.html">[mono-packagers] FYI: Ubuntu 9.04 Release Schedule
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000042.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#41">[ date ]</a>
|
||||
<a href="thread.html#41">[ thread ]</a>
|
||||
<a href="subject.html#41">[ subject ]</a>
|
||||
<a href="author.html#41">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,74 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 yet?
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20yet%3F&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000041.html">
|
||||
<LINK REL="Next" HREF="000043.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 yet?</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20yet%3F&In-Reply-To="
|
||||
TITLE="[mono-packagers] 2.2 yet?">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Sat Nov 15 03:15:35 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000041.html">[mono-packagers] Mono 2.2 has been branched
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000043.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#42">[ date ]</a>
|
||||
<a href="thread.html#42">[ thread ]</a>
|
||||
<a href="subject.html#42">[ subject ]</a>
|
||||
<a href="author.html#42">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
Now 2.2 has been branched, is there any sign of the tarballs being
|
||||
released for building? I'd like to get it into rawhide at the same time
|
||||
as being released elsewhere.
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081115/6681a76c/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081115/6681a76c/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000041.html">[mono-packagers] Mono 2.2 has been branched
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000043.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#42">[ date ]</a>
|
||||
<a href="thread.html#42">[ thread ]</a>
|
||||
<a href="subject.html#42">[ subject ]</a>
|
||||
<a href="author.html#42">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 yet?
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20yet%3F&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000042.html">
|
||||
<LINK REL="Next" HREF="000044.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 yet?</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20yet%3F&In-Reply-To="
|
||||
TITLE="[mono-packagers] 2.2 yet?">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Sat Nov 15 20:20:49 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000042.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000044.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#43">[ date ]</a>
|
||||
<a href="thread.html#43">[ thread ]</a>
|
||||
<a href="subject.html#43">[ subject ]</a>
|
||||
<a href="author.html#43">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Sadly we are not passing all unit tests yet, but we are down to one failure on linux/intel. Once that is fixed we will build the first preview. I can send out pre-preview tarballs on monday if it would help though.
|
||||
|
||||
The final release will not be available for a while. If you start working on previews will your users still get 2.0?
|
||||
-------------- next part --------------
|
||||
An HTML attachment was scrubbed...
|
||||
URL: <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081115/41fed3d7/attachment.html">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081115/41fed3d7/attachment.html</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000042.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000044.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#43">[ date ]</a>
|
||||
<a href="thread.html#43">[ thread ]</a>
|
||||
<a href="subject.html#43">[ subject ]</a>
|
||||
<a href="author.html#43">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,83 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 yet?
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20yet%3F&In-Reply-To=1226798449.3945.6.camel%40Nokia-N810-36-5">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000043.html">
|
||||
<LINK REL="Next" HREF="000045.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 yet?</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20yet%3F&In-Reply-To=1226798449.3945.6.camel%40Nokia-N810-36-5"
|
||||
TITLE="[mono-packagers] 2.2 yet?">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Sun Nov 16 04:12:27 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000043.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000045.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#44">[ date ]</a>
|
||||
<a href="thread.html#44">[ thread ]</a>
|
||||
<a href="subject.html#44">[ subject ]</a>
|
||||
<a href="author.html#44">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i> Sadly we are not passing all unit tests yet, but we are down to one
|
||||
</I>><i> failure on linux/intel. Once that is fixed we will build the first
|
||||
</I>><i> preview. I can send out pre-preview tarballs on monday if it would
|
||||
</I>><i> help though.
|
||||
</I>
|
||||
That would help :-)
|
||||
|
||||
><i> The final release will not be available for a while. If you start
|
||||
</I>><i> working on previews will your users still get 2.0?
|
||||
</I>
|
||||
Rawhide users are currently using 2.0.1 with f9 using 1.9.1 (I have a
|
||||
fail somewhere with 2.0 on f9 which I'm trying to fix).
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081116/42c9f052/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081116/42c9f052/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000043.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000045.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#44">[ date ]</a>
|
||||
<a href="thread.html#44">[ thread ]</a>
|
||||
<a href="subject.html#44">[ subject ]</a>
|
||||
<a href="author.html#44">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,98 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1226826747.21103.375.camel%40PB3.Linux">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000044.html">
|
||||
<LINK REL="Next" HREF="000046.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1226826747.21103.375.camel%40PB3.Linux"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Mon Nov 17 16:18:31 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000044.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000046.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#45">[ date ]</a>
|
||||
<a href="thread.html#45">[ thread ]</a>
|
||||
<a href="subject.html#45">[ subject ]</a>
|
||||
<a href="author.html#45">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Pre-preview tarballs are available here:
|
||||
<A HREF="http://go-mono.com/mono-packagers/">http://go-mono.com/mono-packagers/</A>
|
||||
|
||||
MonoDevelop 1.9.1 previews are there also, and note that mono-addins-0.4
|
||||
was released a while back:
|
||||
<A HREF="http://ftp.novell.com/pub/mono/sources/mono-addins/">http://ftp.novell.com/pub/mono/sources/mono-addins/</A>
|
||||
|
||||
There are some new files from the mono module:
|
||||
csharp and it's relatives, the mono interactive C# interpreter
|
||||
mono-core:
|
||||
Mono.Simd
|
||||
Mono.Management
|
||||
mono-wcf:
|
||||
System.IdentityModel
|
||||
System.IdentityModel.Selectors
|
||||
System.Runtime.Serialization
|
||||
System.ServiceModel
|
||||
System.ServiceModel.Web
|
||||
mono-web:
|
||||
System.Web.Abstractions
|
||||
System.Web.Routing
|
||||
System.Web.Extensions.Design
|
||||
System.Web.DynamicData
|
||||
System.ComponentModel.DataAnnotations
|
||||
mono-devel:
|
||||
mono-cil-strip
|
||||
mono-source-libs
|
||||
mono-options.pc
|
||||
mono-lineeditor.pc
|
||||
monodoc-core is now built out of the mono tarball
|
||||
(same files as monodoc)
|
||||
|
||||
sqlsharp and mono-shlib-cop are now 2.0 profile, not 1.0
|
||||
|
||||
The mono-tools source has some new items:
|
||||
gsharp (gui for csharp)
|
||||
gendarme-wizard gui
|
||||
mperfmon (performance monitor)
|
||||
|
||||
I can probably get folks to add the rest of the script wrappers in this
|
||||
release cycle.
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000044.html">[mono-packagers] 2.2 yet?
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000046.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#45">[ date ]</a>
|
||||
<a href="thread.html#45">[ thread ]</a>
|
||||
<a href="subject.html#45">[ subject ]</a>
|
||||
<a href="author.html#45">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,80 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1226956711.1752.40.camel%40linux-byzx">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000045.html">
|
||||
<LINK REL="Next" HREF="000047.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1226956711.1752.40.camel%40linux-byzx"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 02:09:22 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000045.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000047.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#46">[ date ]</a>
|
||||
<a href="thread.html#46">[ thread ]</a>
|
||||
<a href="subject.html#46">[ subject ]</a>
|
||||
<a href="author.html#46">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i> Pre-preview tarballs are available here:
|
||||
</I>><i> <A HREF="http://go-mono.com/mono-packagers/">http://go-mono.com/mono-packagers/</A>
|
||||
</I>
|
||||
|
||||
Um...
|
||||
|
||||
The requested URL /mono-packagers/ was not found on this server.
|
||||
|
||||
Checked 07.09 GMT, 18/11/08
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081118/8b777ff3/attachment-0001.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081118/8b777ff3/attachment-0001.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000045.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000047.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#46">[ date ]</a>
|
||||
<a href="thread.html#46">[ thread ]</a>
|
||||
<a href="subject.html#46">[ subject ]</a>
|
||||
<a href="author.html#46">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,73 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1226992162.21103.404.camel%40PB3.Linux">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000046.html">
|
||||
<LINK REL="Next" HREF="000051.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Benjamin Reed</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1226992162.21103.404.camel%40PB3.Linux"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">rangerrick at gmail.com
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 09:10:55 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000046.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000051.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#47">[ date ]</a>
|
||||
<a href="thread.html#47">[ thread ]</a>
|
||||
<a href="subject.html#47">[ subject ]</a>
|
||||
<a href="author.html#47">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>2008/11/18 Paul <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">paul at all-the-johnsons.co.uk</A>>:
|
||||
|
||||
>><i> Pre-preview tarballs are available here:
|
||||
</I>>><i> <A HREF="http://go-mono.com/mono-packagers/">http://go-mono.com/mono-packagers/</A>
|
||||
</I>><i>
|
||||
</I>><i> The requested URL /mono-packagers/ was not found on this server.
|
||||
</I>
|
||||
Same here, and the raw files in
|
||||
<A HREF="http://ftp.novell.com/pub/mono/sources/">http://ftp.novell.com/pub/mono/sources/</A> are not there either.
|
||||
|
||||
--
|
||||
Benjamin Reed a.k.a. Ranger Rick
|
||||
Fink, KDE, and Mac OS X development
|
||||
|
||||
Blog: <A HREF="http://www.raccoonfink.com/">http://www.raccoonfink.com/</A>
|
||||
Music: <A HREF="http://music.raccoonfink.com/">http://music.raccoonfink.com/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000046.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000051.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#47">[ date ]</a>
|
||||
<a href="thread.html#47">[ thread ]</a>
|
||||
<a href="subject.html#47">[ subject ]</a>
|
||||
<a href="author.html#47">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,63 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000052.html">
|
||||
<LINK REL="Next" HREF="000049.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To="
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 09:35:58 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000052.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000049.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#48">[ date ]</a>
|
||||
<a href="thread.html#48">[ thread ]</a>
|
||||
<a href="subject.html#48">[ subject ]</a>
|
||||
<a href="author.html#48">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Oops, I forgot to fix that URL. It's <A HREF="http://mono.ximian.com/mono-packagers/">http://mono.ximian.com/mono-packagers/</A>
|
||||
-------------- next part --------------
|
||||
An HTML attachment was scrubbed...
|
||||
URL: <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081118/4dabb8f6/attachment.html">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081118/4dabb8f6/attachment.html</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000052.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000049.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#48">[ date ]</a>
|
||||
<a href="thread.html#48">[ thread ]</a>
|
||||
<a href="subject.html#48">[ subject ]</a>
|
||||
<a href="author.html#48">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,72 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1227018958.5100.6.camel%40Nokia-N810-36-5">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000048.html">
|
||||
<LINK REL="Next" HREF="000053.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Jo Shields</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1227018958.5100.6.camel%40Nokia-N810-36-5"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">directhex at apebox.org
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 09:54:22 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000048.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000053.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#49">[ date ]</a>
|
||||
<a href="thread.html#49">[ thread ]</a>
|
||||
<a href="subject.html#49">[ subject ]</a>
|
||||
<a href="author.html#49">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Tue, 2008-11-18 at 07:35 -0700, Andrew Jorgensen wrote:
|
||||
><i> Oops, I forgot to fix that URL. It's
|
||||
</I>><i> <A HREF="http://mono.ximian.com/mono-packagers/">http://mono.ximian.com/mono-packagers/</A>
|
||||
</I>
|
||||
Is there any intention to make any further changes to the runtime
|
||||
versions of the tools & scripts in these, especially where 'foo' starts
|
||||
running in 2.0 profile by default whilst a 1.0 versions continues to
|
||||
exist, before release?
|
||||
|
||||
Or can we take the contents of /usr/bin as final now, especially WRT
|
||||
framework versions?
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000048.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000053.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#49">[ date ]</a>
|
||||
<a href="thread.html#49">[ thread ]</a>
|
||||
<a href="subject.html#49">[ subject ]</a>
|
||||
<a href="author.html#49">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,73 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1227018958.5100.6.camel%40Nokia-N810-36-5">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000053.html">
|
||||
<LINK REL="Next" HREF="000054.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Benjamin Reed</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1227018958.5100.6.camel%40Nokia-N810-36-5"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">rangerrick at gmail.com
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 10:16:13 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000053.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000054.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#50">[ date ]</a>
|
||||
<a href="thread.html#50">[ thread ]</a>
|
||||
<a href="subject.html#50">[ subject ]</a>
|
||||
<a href="author.html#50">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Tue, Nov 18, 2008 at 9:35 AM, Andrew Jorgensen <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">ajorgensen at novell.com</A>> wrote:
|
||||
><i> Oops, I forgot to fix that URL. It's <A HREF="http://mono.ximian.com/mono-packagers/">http://mono.ximian.com/mono-packagers/</A>
|
||||
</I>
|
||||
Dunno if it's a packaging process issue or what, but monodevelop is
|
||||
missing it's COPYING file; I assume that having the license in there
|
||||
would be important. ;)
|
||||
|
||||
--
|
||||
Benjamin Reed a.k.a. Ranger Rick
|
||||
Fink, KDE, and Mac OS X development
|
||||
|
||||
Blog: <A HREF="http://www.raccoonfink.com/">http://www.raccoonfink.com/</A>
|
||||
Music: <A HREF="http://music.raccoonfink.com/">http://music.raccoonfink.com/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000053.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000054.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#50">[ date ]</a>
|
||||
<a href="thread.html#50">[ thread ]</a>
|
||||
<a href="subject.html#50">[ subject ]</a>
|
||||
<a href="author.html#50">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,157 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1226956711.1752.40.camel%40linux-byzx">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000047.html">
|
||||
<LINK REL="Next" HREF="000055.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Benjamin Reed</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1226956711.1752.40.camel%40linux-byzx"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">rangerrick at gmail.com
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 10:22:02 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000047.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000055.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#51">[ date ]</a>
|
||||
<a href="thread.html#51">[ thread ]</a>
|
||||
<a href="subject.html#51">[ subject ]</a>
|
||||
<a href="author.html#51">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Mon, Nov 17, 2008 at 4:18 PM, Andrew Jorgensen <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">ajorgensen at novell.com</A>> wrote:
|
||||
|
||||
><i> MonoDevelop 1.9.1 previews are there also, and note that mono-addins-0.4
|
||||
</I>><i> was released a while back:
|
||||
</I>><i> <A HREF="http://ftp.novell.com/pub/mono/sources/mono-addins/">http://ftp.novell.com/pub/mono/sources/mono-addins/</A>
|
||||
</I>
|
||||
Does MonoDevelop require mono 2.2, or am I missing something? I get
|
||||
this building on OSX with mono 2.0.1:
|
||||
|
||||
mkdir -p ../../../build/bin
|
||||
/sw/bin/gmcs -debug -codepage:utf8 /resource:./bookmark.png
|
||||
/resource:./EditorBindings.glade /resource:./gtk-gui/gui.stetic
|
||||
/resource:./gtk-gui/objects.xml
|
||||
/resource:./MonoDevelop.SourceEditor.addin.xml
|
||||
/resource:./texteditoraddin.glade ./gtk-gui/generated.cs
|
||||
./MonoDevelop.SourceEditor.Actions/DefaultEditActions.cs
|
||||
./MonoDevelop.SourceEditor.Actions/EditActionCollection.cs
|
||||
./MonoDevelop.SourceEditor.Actions/IEditAction.cs
|
||||
./MonoDevelop.SourceEditor.Codons/EditActionCodon.cs
|
||||
./MonoDevelop.SourceEditor.FormattingStrategy/DefaultFormattingStrategy.cs
|
||||
./MonoDevelop.SourceEditor.FormattingStrategy/IFormattingStrategy.cs
|
||||
./MonoDevelop.SourceEditor.Gui.Dialogs/EditTemplateGroupDialog.cs
|
||||
./MonoDevelop.SourceEditor.Gui.Dialogs/GotoLineNumberDialog.cs
|
||||
./MonoDevelop.SourceEditor.Gui.OptionPanels/BehaviorTextEditorPanel.cs
|
||||
./MonoDevelop.SourceEditor.Gui.OptionPanels/GeneralTextEditorPanel.cs
|
||||
./MonoDevelop.SourceEditor.Gui.OptionPanels/MarkersTextEditorPanel.cs
|
||||
./MonoDevelop.SourceEditor.Gui.OptionPanels/SyntaxHighlightingPanel.cs
|
||||
./MonoDevelop.SourceEditor.Gui/LanguageItemWindow.cs
|
||||
./MonoDevelop.SourceEditor.Gui/SourceEditorBuffer.cs
|
||||
./MonoDevelop.SourceEditor.Gui/SourceEditorDisplayBinding.cs
|
||||
./MonoDevelop.SourceEditor.Gui/SourceEditorView.cs
|
||||
./MonoDevelop.SourceEditor.Gui/SourceEditorWidget.cs
|
||||
./MonoDevelop.SourceEditor.Gui/TextNavigationPoint.cs
|
||||
./MonoDevelop.SourceEditor/EditorCommands.cs
|
||||
./MonoDevelop.SourceEditor/Services.cs
|
||||
./MonoDevelop.SourceEditor/SourceViewService.cs AssemblyInfo.cs
|
||||
-out:../../../build/AddIns/MonoDevelop.SourceEditor.dll -t:library
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gconf-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glib-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/pango-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/atk-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gdk-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gtk-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glade-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glib-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-vfs-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glib-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/pango-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/atk-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gdk-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gtk-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glib-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/pango-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/atk-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gdk-sharp.dll
|
||||
-r:/sw/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gtk-sharp.dll
|
||||
-r:/sw/lib/mono/gtksourceview2-sharp-2.0/gtksourceview2-sharp.dll
|
||||
-r:/sw/lib/mono/mono-addins/Mono.Addins.dll
|
||||
-r:../../../build/bin/MonoDevelop.Components.dll
|
||||
-r:../../../build/bin/MonoDevelop.Core.dll
|
||||
-r:../../../build/bin/MonoDevelop.Core.Gui.dll
|
||||
-r:../../../build/bin/MonoDevelop.Ide.dll
|
||||
-r:../../../build/bin/MonoDevelop.Projects.dll
|
||||
-r:../../../build/bin/MonoDevelop.Projects.Gui.dll -r:Mono.Cairo
|
||||
-r:Mono.Posix -r:System -r:System.Drawing -r:System.Xml
|
||||
./MonoDevelop.SourceEditor.Gui/SourceEditorBuffer.cs(9,28): error
|
||||
CS0234: The type or namespace name `Parser' does not exist in the
|
||||
namespace `MonoDevelop.Projects'. Are you missing an assembly
|
||||
reference?
|
||||
./MonoDevelop.SourceEditor.Gui/SourceEditorDisplayBinding.cs(25,28):
|
||||
error CS0234: The type or namespace name `Parser' does not exist in
|
||||
the namespace `MonoDevelop.Projects'. Are you missing an assembly
|
||||
reference?
|
||||
./MonoDevelop.SourceEditor.Gui/SourceEditorDisplayBinding.cs(74,40):
|
||||
error CS0246: The type or namespace name `ICodeStyleOperations' could
|
||||
not be found. Are you missing a using directive or an assembly
|
||||
reference?
|
||||
./MonoDevelop.SourceEditor.Gui/SourceEditorDisplayBinding.cs(1207,32):
|
||||
error CS0540: `MonoDevelop.SourceEditor.Gui.SourceEditorDisplayBindingWrapper.ITextFile.GetCharAt(int)':
|
||||
containing type does not implement interface
|
||||
`MonoDevelop.Projects.Text.ITextFile'
|
||||
/sw/src/fink.build/monodevelop-1.9.1-1/monodevelop-1.9.1/build/bin/MonoDevelop.Projects.dll
|
||||
(Location of the symbol related to previous error)
|
||||
./MonoDevelop.SourceEditor.Gui/SourceEditorView.cs(25,28): error
|
||||
CS0234: The type or namespace name `Parser' does not exist in the
|
||||
namespace `MonoDevelop.Projects'. Are you missing an assembly
|
||||
reference?
|
||||
./MonoDevelop.SourceEditor.Gui/TextNavigationPoint.cs(18,44): error
|
||||
CS0246: The type or namespace name `DefaultNavigationPoint' could not
|
||||
be found. Are you missing a using directive or an assembly reference?
|
||||
Compilation failed: 6 error(s), 0 warnings
|
||||
make[3]: *** [../../../build/AddIns/MonoDevelop.SourceEditor.dll] Error 1
|
||||
|
||||
|
||||
--
|
||||
Benjamin Reed a.k.a. Ranger Rick
|
||||
Fink, KDE, and Mac OS X development
|
||||
|
||||
Blog: <A HREF="http://www.raccoonfink.com/">http://www.raccoonfink.com/</A>
|
||||
Music: <A HREF="http://music.raccoonfink.com/">http://music.raccoonfink.com/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000047.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000055.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#51">[ date ]</a>
|
||||
<a href="thread.html#51">[ thread ]</a>
|
||||
<a href="subject.html#51">[ subject ]</a>
|
||||
<a href="author.html#51">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,67 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1226956711.1752.40.camel%40linux-byzx">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000055.html">
|
||||
<LINK REL="Next" HREF="000048.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Jo Shields</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1226956711.1752.40.camel%40linux-byzx"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">directhex at apebox.org
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 10:42:10 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000055.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000048.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#52">[ date ]</a>
|
||||
<a href="thread.html#52">[ thread ]</a>
|
||||
<a href="subject.html#52">[ subject ]</a>
|
||||
<a href="author.html#52">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Mon, 2008-11-17 at 14:18 -0700, Andrew Jorgensen wrote:
|
||||
><i> Pre-preview tarballs are available here:
|
||||
</I>><i> <A HREF="http://go-mono.com/mono-packagers/">http://go-mono.com/mono-packagers/</A>
|
||||
</I>
|
||||
Please fix <A HREF="https://bugzilla.novell.com/show_bug.cgi?id=428212">https://bugzilla.novell.com/show_bug.cgi?id=428212</A> - it ought
|
||||
to be a minimal change.
|
||||
|
||||
Thank you for deleting the remaining nunit binaries from the mono-basic
|
||||
tarball though - this will decrease the volume of work needed to
|
||||
maintain the package
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000055.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000048.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#52">[ date ]</a>
|
||||
<a href="thread.html#52">[ thread ]</a>
|
||||
<a href="subject.html#52">[ subject ]</a>
|
||||
<a href="author.html#52">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,65 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1227020062.16870.64.camel%40osc-franzibald">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000049.html">
|
||||
<LINK REL="Next" HREF="000050.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1227020062.16870.64.camel%40osc-franzibald"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 12:19:04 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000049.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000050.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#53">[ date ]</a>
|
||||
<a href="thread.html#53">[ thread ]</a>
|
||||
<a href="subject.html#53">[ subject ]</a>
|
||||
<a href="author.html#53">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Tue, 2008-11-18 at 14:54 +0000, Jo Shields wrote:
|
||||
><i> Is there any intention to make any further changes to the runtime
|
||||
</I>><i> versions of the tools & scripts in these, especially where 'foo' starts
|
||||
</I>><i> running in 2.0 profile by default whilst a 1.0 versions continues to
|
||||
</I>><i> exist, before release?
|
||||
</I>
|
||||
I am going to push for getting the rest of those fixed up. Which ones
|
||||
are not done yet?
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000049.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000050.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#53">[ date ]</a>
|
||||
<a href="thread.html#53">[ thread ]</a>
|
||||
<a href="subject.html#53">[ subject ]</a>
|
||||
<a href="author.html#53">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,68 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=57eba2250811180716l61aa4894hd0824c9313787bff%40mail.gmail.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000050.html">
|
||||
<LINK REL="Next" HREF="000056.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=57eba2250811180716l61aa4894hd0824c9313787bff%40mail.gmail.com"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 12:20:52 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000050.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000056.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#54">[ date ]</a>
|
||||
<a href="thread.html#54">[ thread ]</a>
|
||||
<a href="subject.html#54">[ subject ]</a>
|
||||
<a href="author.html#54">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Tue, 2008-11-18 at 10:16 -0500, Benjamin Reed wrote:
|
||||
><i> On Tue, Nov 18, 2008 at 9:35 AM, Andrew Jorgensen <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">ajorgensen at novell.com</A>> wrote:
|
||||
</I>><i> > Oops, I forgot to fix that URL. It's <A HREF="http://mono.ximian.com/mono-packagers/">http://mono.ximian.com/mono-packagers/</A>
|
||||
</I>><i>
|
||||
</I>><i> Dunno if it's a packaging process issue or what, but monodevelop is
|
||||
</I>><i> missing it's COPYING file; I assume that having the license in there
|
||||
</I>><i> would be important. ;)
|
||||
</I>
|
||||
SVN doesn't have a COPYING file either. Would you mind filing a bug
|
||||
and I'll poke the right people?
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000050.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000056.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#54">[ date ]</a>
|
||||
<a href="thread.html#54">[ thread ]</a>
|
||||
<a href="subject.html#54">[ subject ]</a>
|
||||
<a href="author.html#54">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,63 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=57eba2250811180722w19f4d22ev134a9a0d31789a58%40mail.gmail.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000051.html">
|
||||
<LINK REL="Next" HREF="000052.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=57eba2250811180722w19f4d22ev134a9a0d31789a58%40mail.gmail.com"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 12:28:17 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000051.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000052.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#55">[ date ]</a>
|
||||
<a href="thread.html#55">[ thread ]</a>
|
||||
<a href="subject.html#55">[ subject ]</a>
|
||||
<a href="author.html#55">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Tue, 2008-11-18 at 10:22 -0500, Benjamin Reed wrote:
|
||||
><i> Does MonoDevelop require mono 2.2, or am I missing something? I get
|
||||
</I>><i> this building on OSX with mono 2.0.1:
|
||||
</I>
|
||||
Those errors are probably coming from the now-broken and unneeded
|
||||
gtksourceview piece. Try building without that. It should build fine
|
||||
against 2.0.
|
||||
|
||||
</PRE>
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000051.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000052.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#55">[ date ]</a>
|
||||
<a href="thread.html#55">[ thread ]</a>
|
||||
<a href="subject.html#55">[ subject ]</a>
|
||||
<a href="author.html#55">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,79 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1227028852.4283.1.camel%40linux-byzx">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000054.html">
|
||||
<LINK REL="Next" HREF="000057.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Benjamin Reed</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=1227028852.4283.1.camel%40linux-byzx"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">rangerrick at gmail.com
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 16:34:44 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000054.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000057.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#56">[ date ]</a>
|
||||
<a href="thread.html#56">[ thread ]</a>
|
||||
<a href="subject.html#56">[ subject ]</a>
|
||||
<a href="author.html#56">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Tue, Nov 18, 2008 at 12:20 PM, Andrew Jorgensen
|
||||
<<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">ajorgensen at novell.com</A>> wrote:
|
||||
><i> SVN doesn't have a COPYING file either. Would you mind filing a bug
|
||||
</I>><i> and I'll poke the right people?
|
||||
</I>
|
||||
Done.
|
||||
|
||||
><i> Those errors are probably coming from the now-broken and unneeded
|
||||
</I>><i> gtksourceview piece. Try building without that. It should build fine
|
||||
</I>><i> against 2.0.
|
||||
</I>
|
||||
OK, so that feature is unsupported? I'm fine with removing it, just
|
||||
want to make sure that as a packager, it's OK and should be documented
|
||||
as no longer a part of the package.
|
||||
|
||||
Thanks!
|
||||
|
||||
--
|
||||
Benjamin Reed a.k.a. Ranger Rick
|
||||
Fink, KDE, and Mac OS X development
|
||||
|
||||
Blog: <A HREF="http://www.raccoonfink.com/">http://www.raccoonfink.com/</A>
|
||||
Music: <A HREF="http://music.raccoonfink.com/">http://music.raccoonfink.com/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000054.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000057.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#56">[ date ]</a>
|
||||
<a href="thread.html#56">[ thread ]</a>
|
||||
<a href="subject.html#56">[ subject ]</a>
|
||||
<a href="author.html#56">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,64 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] 2.2 pre-preview
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=57eba2250811181334w7a6ae661iea6a54605c67fdf7%40mail.gmail.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000056.html">
|
||||
<LINK REL="Next" HREF="000058.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] 2.2 pre-preview</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%202.2%20pre-preview&In-Reply-To=57eba2250811181334w7a6ae661iea6a54605c67fdf7%40mail.gmail.com"
|
||||
TITLE="[mono-packagers] 2.2 pre-preview">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Tue Nov 18 16:36:58 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000056.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000058.html">[mono-packagers] Mono in fedora rawhide
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#57">[ date ]</a>
|
||||
<a href="thread.html#57">[ thread ]</a>
|
||||
<a href="subject.html#57">[ subject ]</a>
|
||||
<a href="author.html#57">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Tue, 2008-11-18 at 16:34 -0500, Benjamin Reed wrote:
|
||||
><i> OK, so that feature is unsupported? I'm fine with removing it, just
|
||||
</I>><i> want to make sure that as a packager, it's OK and should be documented
|
||||
</I>><i> as no longer a part of the package.
|
||||
</I>
|
||||
I've talked to the engineers, they will probably be removing it
|
||||
entirely. The non-gtksourceview stuff is supposed to be better anyway.
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000056.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000058.html">[mono-packagers] Mono in fedora rawhide
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#57">[ date ]</a>
|
||||
<a href="thread.html#57">[ thread ]</a>
|
||||
<a href="subject.html#57">[ subject ]</a>
|
||||
<a href="author.html#57">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,73 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Mono in fedora rawhide
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Mono%20in%20fedora%20rawhide&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000057.html">
|
||||
<LINK REL="Next" HREF="000059.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Mono in fedora rawhide</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Mono%20in%20fedora%20rawhide&In-Reply-To="
|
||||
TITLE="[mono-packagers] Mono in fedora rawhide">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Tue Nov 25 10:19:50 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000057.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000059.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#58">[ date ]</a>
|
||||
<a href="thread.html#58">[ thread ]</a>
|
||||
<a href="subject.html#58">[ subject ]</a>
|
||||
<a href="author.html#58">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
Just a quick note to say Fedora rawhide (what will be f11) will be open
|
||||
from tomorrow and the full mono-2.2 will be there from the word go!
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081125/dc5d011c/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081125/dc5d011c/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000057.html">[mono-packagers] 2.2 pre-preview
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000059.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#58">[ date ]</a>
|
||||
<a href="thread.html#58">[ thread ]</a>
|
||||
<a href="subject.html#58">[ subject ]</a>
|
||||
<a href="author.html#58">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,113 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000058.html">
|
||||
<LINK REL="Next" HREF="000060.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] The $(prefix)/usr vs $(libdir) argument</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To="
|
||||
TITLE="[mono-packagers] The $(prefix)/usr vs $(libdir) argument">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Sat Nov 29 09:21:10 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000058.html">[mono-packagers] Mono in fedora rawhide
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000060.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#59">[ date ]</a>
|
||||
<a href="thread.html#59">[ thread ]</a>
|
||||
<a href="subject.html#59">[ subject ]</a>
|
||||
<a href="author.html#59">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
I know this argument has been going on for a while, but I feel it's now
|
||||
something that really needs to be resolved across all of the mono stack
|
||||
(and dependencies).
|
||||
|
||||
Many many moons ago, Miguel said that as CIL is completely agnostic as
|
||||
to what it is on, that everything mono related should really be
|
||||
in /usr/share. Noises were made, but nothing really much happened. There
|
||||
is logic in using /usr/share, but nothing completely overwhelming.
|
||||
|
||||
There is then the argument that all mono packages should be .noarch.
|
||||
This really is a non-starter, I'll explain below.
|
||||
|
||||
The current situation is that by default, mono is installed to
|
||||
$(prefix)/lib with scripts from $(prefix)/bin pointing to the CIL
|
||||
binaries or libraries. The only problem is that if you're compiling
|
||||
using JIT, then binaries (and libraries) are targetting a particular
|
||||
architecture (albeit x86, PPC, PPC64, x86_64 or any other processor
|
||||
type) and are therefore incorrectly polluting the /usr/lib directory
|
||||
which on non-x86 platforms is there for *purely* 32 bit libs.
|
||||
|
||||
This means that for mono to be correctly packaged for non-x86 platforms,
|
||||
all of the makefiles, .pc files and anything else like that has to
|
||||
patched to use $(libdir) rather than $(prefix)/lib. Okay, it probably
|
||||
doesn't seem like much, but given the size of mono (and associated
|
||||
packages), patching becomes a major ball ache!
|
||||
|
||||
While I understand that not every distro builds the JIT compiler, using
|
||||
$(libdir) would mean that for the sake of argument, files are correctly
|
||||
installed to the correct libdir. I also don't know how Windows is
|
||||
handled with respect to this.
|
||||
|
||||
Using JIT also makes anything built using it a non-noarch package.
|
||||
|
||||
There is the flipside in that there is currently no fixed guideline of
|
||||
where to place files for mono. Some mono packages use $(libdir) in the
|
||||
makefiles (mono-basic is an example of this), some mix and match (makes
|
||||
a bloody awful mess of things) and some just use $(prefix)/lib.
|
||||
|
||||
I have a whole raft of patches available if we go over to $(libdir) - I
|
||||
mean lots of them, probably coming up to 100k worth, but we certainly
|
||||
need to get this sorted as it's starting to get ridiculous.
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
(long time mono user and mono packager for Fedora)
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081129/7fed16de/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081129/7fed16de/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000058.html">[mono-packagers] Mono in fedora rawhide
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000060.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#59">[ date ]</a>
|
||||
<a href="thread.html#59">[ thread ]</a>
|
||||
<a href="subject.html#59">[ subject ]</a>
|
||||
<a href="author.html#59">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,126 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=1227968470.31448.23.camel%40PB3.Linux">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000059.html">
|
||||
<LINK REL="Next" HREF="000061.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] The $(prefix)/usr vs $(libdir) argument</H1>
|
||||
<B>Zoltan Varga</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=1227968470.31448.23.camel%40PB3.Linux"
|
||||
TITLE="[mono-packagers] The $(prefix)/usr vs $(libdir) argument">vargaz at gmail.com
|
||||
</A><BR>
|
||||
<I>Sat Nov 29 12:03:39 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000059.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000061.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#60">[ date ]</a>
|
||||
<a href="thread.html#60">[ thread ]</a>
|
||||
<a href="subject.html#60">[ subject ]</a>
|
||||
<a href="author.html#60">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
I have no idea whenever $(prefix)/lib or $(libdir) is the correct
|
||||
approach, but the assemblies
|
||||
shipped with mono _are_ platform independent, whenever they are
|
||||
'built' using a JIT or
|
||||
not. For proof, they can be copied to any other architecture supported
|
||||
by mono, like arm
|
||||
or itanium, or even windows, and they will run just fine there.
|
||||
|
||||
Zoltan
|
||||
|
||||
On Sat, Nov 29, 2008 at 3:21 PM, Paul <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">paul at all-the-johnsons.co.uk</A>> wrote:
|
||||
><i> Hi,
|
||||
</I>><i>
|
||||
</I>><i> I know this argument has been going on for a while, but I feel it's now
|
||||
</I>><i> something that really needs to be resolved across all of the mono stack
|
||||
</I>><i> (and dependencies).
|
||||
</I>><i>
|
||||
</I>><i> Many many moons ago, Miguel said that as CIL is completely agnostic as
|
||||
</I>><i> to what it is on, that everything mono related should really be
|
||||
</I>><i> in /usr/share. Noises were made, but nothing really much happened. There
|
||||
</I>><i> is logic in using /usr/share, but nothing completely overwhelming.
|
||||
</I>><i>
|
||||
</I>><i> There is then the argument that all mono packages should be .noarch.
|
||||
</I>><i> This really is a non-starter, I'll explain below.
|
||||
</I>><i>
|
||||
</I>><i> The current situation is that by default, mono is installed to
|
||||
</I>><i> $(prefix)/lib with scripts from $(prefix)/bin pointing to the CIL
|
||||
</I>><i> binaries or libraries. The only problem is that if you're compiling
|
||||
</I>><i> using JIT, then binaries (and libraries) are targetting a particular
|
||||
</I>><i> architecture (albeit x86, PPC, PPC64, x86_64 or any other processor
|
||||
</I>><i> type) and are therefore incorrectly polluting the /usr/lib directory
|
||||
</I>><i> which on non-x86 platforms is there for *purely* 32 bit libs.
|
||||
</I>><i>
|
||||
</I>><i> This means that for mono to be correctly packaged for non-x86 platforms,
|
||||
</I>><i> all of the makefiles, .pc files and anything else like that has to
|
||||
</I>><i> patched to use $(libdir) rather than $(prefix)/lib. Okay, it probably
|
||||
</I>><i> doesn't seem like much, but given the size of mono (and associated
|
||||
</I>><i> packages), patching becomes a major ball ache!
|
||||
</I>><i>
|
||||
</I>><i> While I understand that not every distro builds the JIT compiler, using
|
||||
</I>><i> $(libdir) would mean that for the sake of argument, files are correctly
|
||||
</I>><i> installed to the correct libdir. I also don't know how Windows is
|
||||
</I>><i> handled with respect to this.
|
||||
</I>><i>
|
||||
</I>><i> Using JIT also makes anything built using it a non-noarch package.
|
||||
</I>><i>
|
||||
</I>><i> There is the flipside in that there is currently no fixed guideline of
|
||||
</I>><i> where to place files for mono. Some mono packages use $(libdir) in the
|
||||
</I>><i> makefiles (mono-basic is an example of this), some mix and match (makes
|
||||
</I>><i> a bloody awful mess of things) and some just use $(prefix)/lib.
|
||||
</I>><i>
|
||||
</I>><i> I have a whole raft of patches available if we go over to $(libdir) - I
|
||||
</I>><i> mean lots of them, probably coming up to 100k worth, but we certainly
|
||||
</I>><i> need to get this sorted as it's starting to get ridiculous.
|
||||
</I>><i>
|
||||
</I>><i> TTFN
|
||||
</I>><i>
|
||||
</I>><i> Paul
|
||||
</I>><i> (long time mono user and mono packager for Fedora)
|
||||
</I>><i> --
|
||||
</I>><i> Sie können mich aufreizen und wirklich heiß machen!
|
||||
</I>><i>
|
||||
</I>><i> _______________________________________________
|
||||
</I>><i> mono-packagers-list mailing list
|
||||
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mono-packagers-list at lists.ximian.com</A>
|
||||
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">http://lists.ximian.com/mailman/listinfo/mono-packagers-list</A>
|
||||
</I>><i>
|
||||
</I>><i>
|
||||
</I></PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000059.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000061.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#60">[ date ]</a>
|
||||
<a href="thread.html#60">[ thread ]</a>
|
||||
<a href="subject.html#60">[ subject ]</a>
|
||||
<a href="author.html#60">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,145 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000060.html">
|
||||
<LINK REL="Next" HREF="000062.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] The $(prefix)/usr vs $(libdir) argument</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To="
|
||||
TITLE="[mono-packagers] The $(prefix)/usr vs $(libdir) argument">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Sat Nov 29 12:09:14 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000060.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000062.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#61">[ date ]</a>
|
||||
<a href="thread.html#61">[ thread ]</a>
|
||||
<a href="subject.html#61">[ subject ]</a>
|
||||
<a href="author.html#61">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>He probably meant AOT, not JIT. In practice AOT is not used but in
|
||||
principle it's certainly arch-dependent. I believe Paolo was in the
|
||||
$(libdir) camp IIRC. The discussion is certainly worth having.
|
||||
|
||||
>>><i> "Zoltan Varga" <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">vargaz at gmail.com</A>> 11/29/08 10:03 AM >>>
|
||||
</I>Hi,
|
||||
|
||||
I have no idea whenever $(prefix)/lib or $(libdir) is the correct
|
||||
approach, but the assemblies
|
||||
shipped with mono _are_ platform independent, whenever they are
|
||||
'built' using a JIT or
|
||||
not. For proof, they can be copied to any other architecture supported
|
||||
by mono, like arm
|
||||
or itanium, or even windows, and they will run just fine there.
|
||||
|
||||
Zoltan
|
||||
|
||||
On Sat, Nov 29, 2008 at 3:21 PM, Paul <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">paul at all-the-johnsons.co.uk</A>>
|
||||
wrote:
|
||||
><i> Hi,
|
||||
</I>><i>
|
||||
</I>><i> I know this argument has been going on for a while, but I feel it's
|
||||
</I>now
|
||||
><i> something that really needs to be resolved across all of the mono
|
||||
</I>stack
|
||||
><i> (and dependencies).
|
||||
</I>><i>
|
||||
</I>><i> Many many moons ago, Miguel said that as CIL is completely agnostic as
|
||||
</I>><i> to what it is on, that everything mono related should really be
|
||||
</I>><i> in /usr/share. Noises were made, but nothing really much happened.
|
||||
</I>There
|
||||
><i> is logic in using /usr/share, but nothing completely overwhelming.
|
||||
</I>><i>
|
||||
</I>><i> There is then the argument that all mono packages should be .noarch.
|
||||
</I>><i> This really is a non-starter, I'll explain below.
|
||||
</I>><i>
|
||||
</I>><i> The current situation is that by default, mono is installed to
|
||||
</I>><i> $(prefix)/lib with scripts from $(prefix)/bin pointing to the CIL
|
||||
</I>><i> binaries or libraries. The only problem is that if you're compiling
|
||||
</I>><i> using JIT, then binaries (and libraries) are targetting a particular
|
||||
</I>><i> architecture (albeit x86, PPC, PPC64, x86_64 or any other processor
|
||||
</I>><i> type) and are therefore incorrectly polluting the /usr/lib directory
|
||||
</I>><i> which on non-x86 platforms is there for *purely* 32 bit libs.
|
||||
</I>><i>
|
||||
</I>><i> This means that for mono to be correctly packaged for non-x86
|
||||
</I>platforms,
|
||||
><i> all of the makefiles, .pc files and anything else like that has to
|
||||
</I>><i> patched to use $(libdir) rather than $(prefix)/lib. Okay, it probably
|
||||
</I>><i> doesn't seem like much, but given the size of mono (and associated
|
||||
</I>><i> packages), patching becomes a major ball ache!
|
||||
</I>><i>
|
||||
</I>><i> While I understand that not every distro builds the JIT compiler,
|
||||
</I>using
|
||||
><i> $(libdir) would mean that for the sake of argument, files are
|
||||
</I>correctly
|
||||
><i> installed to the correct libdir. I also don't know how Windows is
|
||||
</I>><i> handled with respect to this.
|
||||
</I>><i>
|
||||
</I>><i> Using JIT also makes anything built using it a non-noarch package.
|
||||
</I>><i>
|
||||
</I>><i> There is the flipside in that there is currently no fixed guideline of
|
||||
</I>><i> where to place files for mono. Some mono packages use $(libdir) in the
|
||||
</I>><i> makefiles (mono-basic is an example of this), some mix and match
|
||||
</I>(makes
|
||||
><i> a bloody awful mess of things) and some just use $(prefix)/lib.
|
||||
</I>><i>
|
||||
</I>><i> I have a whole raft of patches available if we go over to $(libdir) -
|
||||
</I>I
|
||||
><i> mean lots of them, probably coming up to 100k worth, but we certainly
|
||||
</I>><i> need to get this sorted as it's starting to get ridiculous.
|
||||
</I>><i>
|
||||
</I>><i> TTFN
|
||||
</I>><i>
|
||||
</I>><i> Paul
|
||||
</I>><i> (long time mono user and mono packager for Fedora)
|
||||
</I>><i> --
|
||||
</I>><i> Sie können mich aufreizen und wirklich heiß machen!
|
||||
</I>><i>
|
||||
</I>><i> _______________________________________________
|
||||
</I>><i> mono-packagers-list mailing list
|
||||
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mono-packagers-list at lists.ximian.com</A>
|
||||
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">http://lists.ximian.com/mailman/listinfo/mono-packagers-list</A>
|
||||
</I>><i>
|
||||
</I>><i>
|
||||
</I>_______________________________________________
|
||||
mono-packagers-list mailing list
|
||||
<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mono-packagers-list at lists.ximian.com</A>
|
||||
<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">http://lists.ximian.com/mailman/listinfo/mono-packagers-list</A>
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000060.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000062.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#61">[ date ]</a>
|
||||
<a href="thread.html#61">[ thread ]</a>
|
||||
<a href="subject.html#61">[ subject ]</a>
|
||||
<a href="author.html#61">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,83 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=493114CA0200004000048E1F%40lucius.provo.novell.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000061.html">
|
||||
<LINK REL="Next" HREF="000063.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] The $(prefix)/usr vs $(libdir) argument</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=493114CA0200004000048E1F%40lucius.provo.novell.com"
|
||||
TITLE="[mono-packagers] The $(prefix)/usr vs $(libdir) argument">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Sat Nov 29 12:16:54 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000061.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000063.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#62">[ date ]</a>
|
||||
<a href="thread.html#62">[ thread ]</a>
|
||||
<a href="subject.html#62">[ subject ]</a>
|
||||
<a href="author.html#62">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i> He probably meant AOT, not JIT. In practice AOT is not used but in
|
||||
</I>><i> principle it's certainly arch-dependent. I believe Paolo was in the
|
||||
</I>><i> $(libdir) camp IIRC. The discussion is certainly worth having.
|
||||
</I>
|
||||
Um, when we build for fedora, JIT is used which is why we need to have
|
||||
them in /usr/lib64 rather than /usr/lib. While I agree that the
|
||||
assemblies are independent (I can run something on my x86 box under
|
||||
Win32 and x86_64), where they are put is important.
|
||||
|
||||
I agree with Andrew, we need to discuss this properly so that things
|
||||
don't get messed up on people's boxes.
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
(trying to fix MD 1.9.1 so it ships in the correct libdirs for fedora)
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081129/f9e85bc2/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081129/f9e85bc2/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000061.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000063.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#62">[ date ]</a>
|
||||
<a href="thread.html#62">[ thread ]</a>
|
||||
<a href="subject.html#62">[ subject ]</a>
|
||||
<a href="author.html#62">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,73 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=1227979014.31448.45.camel%40PB3.Linux">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000062.html">
|
||||
<LINK REL="Next" HREF="000064.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] The $(prefix)/usr vs $(libdir) argument</H1>
|
||||
<B>Jo Shields</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=1227979014.31448.45.camel%40PB3.Linux"
|
||||
TITLE="[mono-packagers] The $(prefix)/usr vs $(libdir) argument">directhex at apebox.org
|
||||
</A><BR>
|
||||
<I>Sat Nov 29 12:36:30 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000062.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000064.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#63">[ date ]</a>
|
||||
<a href="thread.html#63">[ thread ]</a>
|
||||
<a href="subject.html#63">[ subject ]</a>
|
||||
<a href="author.html#63">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Sat, 2008-11-29 at 17:16 +0000, Paul wrote:
|
||||
><i> Hi,
|
||||
</I>><i>
|
||||
</I>><i> > He probably meant AOT, not JIT. In practice AOT is not used but in
|
||||
</I>><i> > principle it's certainly arch-dependent. I believe Paolo was in the
|
||||
</I>><i> > $(libdir) camp IIRC. The discussion is certainly worth having.
|
||||
</I>><i>
|
||||
</I>><i> Um, when we build for fedora, JIT is used which is why we need to have
|
||||
</I>><i> them in /usr/lib64 rather than /usr/lib. While I agree that the
|
||||
</I>><i> assemblies are independent (I can run something on my x86 box under
|
||||
</I>><i> Win32 and x86_64), where they are put is important.
|
||||
</I>><i>
|
||||
</I>><i> I agree with Andrew, we need to discuss this properly so that things
|
||||
</I>><i> don't get messed up on people's boxes.
|
||||
</I>
|
||||
What does Fedora do with Perl or Python apps?
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000062.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000064.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#63">[ date ]</a>
|
||||
<a href="thread.html#63">[ thread ]</a>
|
||||
<a href="subject.html#63">[ subject ]</a>
|
||||
<a href="author.html#63">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,87 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=1227987580.14963.0.camel%40destiny">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000063.html">
|
||||
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] The $(prefix)/usr vs $(libdir) argument</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20%24%28prefix%29/usr%20vs%20%24%28libdir%29%20argument&In-Reply-To=1227987580.14963.0.camel%40destiny"
|
||||
TITLE="[mono-packagers] The $(prefix)/usr vs $(libdir) argument">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Sat Nov 29 14:49:06 EST 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000063.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#64">[ date ]</a>
|
||||
<a href="thread.html#64">[ thread ]</a>
|
||||
<a href="subject.html#64">[ subject ]</a>
|
||||
<a href="author.html#64">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i> > > What does Fedora do with Perl or Python apps?
|
||||
</I>><i> >
|
||||
</I>><i> > Uses a script to put it in the right place in spec files
|
||||
</I>><i> >
|
||||
</I>><i> > %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from
|
||||
</I>><i> > distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||
</I>><i>
|
||||
</I>><i> And what's considered the "right place"? I'm not trying to be facetious,
|
||||
</I>><i> I just want to better understand the layout as it applies to Fedora
|
||||
</I>
|
||||
|
||||
Assuming a 32 bit system, binaries /usr/bin, libs /usr/lib
|
||||
64 bit /usr/bin, /usr/lib64
|
||||
|
||||
On a 64 bit system if a library comes from a vendor who has only
|
||||
provided a 32 bit binary with a lib or a binary which requires a 32 bit
|
||||
lib, then /usr/lib is used.
|
||||
|
||||
It's a carte blanche approach for everything.
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081129/bd320d90/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081129/bd320d90/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000063.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A></li>
|
||||
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#64">[ date ]</a>
|
||||
<a href="thread.html#64">[ thread ]</a>
|
||||
<a href="subject.html#64">[ subject ]</a>
|
||||
<a href="author.html#64">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,177 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list November 2008 Archive by author</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>November 2008 Archives by author</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Mon Nov 3 16:52:46 EST 2008</i><br>
|
||||
<b>Ending:</b> <i>Sat Nov 29 14:49:06 EST 2008</i><br>
|
||||
<b>Messages:</b> 26<p>
|
||||
<ul>
|
||||
|
||||
<LI><A HREF="000039.html">[mono-packagers] Branching Moonlight for 1.0 release
|
||||
</A><A NAME="39"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000041.html">[mono-packagers] Mono 2.2 has been branched
|
||||
</A><A NAME="41"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000043.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="43"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000045.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="45"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000048.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="48"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000053.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="53"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000054.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="54"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000055.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="55"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000057.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="57"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000061.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="61"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000042.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="42"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000044.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="44"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000046.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="46"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000058.html">[mono-packagers] Mono in fedora rawhide
|
||||
</A><A NAME="58"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000059.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="59"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000062.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="62"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000064.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="64"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000047.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="47"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000050.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="50"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000051.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="51"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000056.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="56"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000040.html">[mono-packagers] FYI: Ubuntu 9.04 Release Schedule
|
||||
</A><A NAME="40"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000049.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="49"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000052.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="52"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000063.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="63"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000060.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="60"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Sat Nov 29 14:49:06 EST 2008</i><br>
|
||||
<b>Archived on:</b> <i>Sat Nov 29 14:49:11 EST 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,177 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list November 2008 Archive by date</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>November 2008 Archives by date</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Mon Nov 3 16:52:46 EST 2008</i><br>
|
||||
<b>Ending:</b> <i>Sat Nov 29 14:49:06 EST 2008</i><br>
|
||||
<b>Messages:</b> 26<p>
|
||||
<ul>
|
||||
|
||||
<LI><A HREF="000039.html">[mono-packagers] Branching Moonlight for 1.0 release
|
||||
</A><A NAME="39"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000040.html">[mono-packagers] FYI: Ubuntu 9.04 Release Schedule
|
||||
</A><A NAME="40"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000041.html">[mono-packagers] Mono 2.2 has been branched
|
||||
</A><A NAME="41"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000042.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="42"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000043.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="43"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000044.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="44"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000045.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="45"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000046.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="46"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000047.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="47"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000048.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="48"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000049.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="49"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000050.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="50"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000051.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="51"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000052.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="52"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000053.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="53"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000054.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="54"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000055.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="55"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000056.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="56"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000057.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="57"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000058.html">[mono-packagers] Mono in fedora rawhide
|
||||
</A><A NAME="58"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000059.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="59"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000060.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="60"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000061.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="61"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000062.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="62"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000063.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="63"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000064.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="64"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Sat Nov 29 14:49:06 EST 2008</i><br>
|
||||
<b>Archived on:</b> <i>Sat Nov 29 14:49:11 EST 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,223 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list November 2008 Archive by thread</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>November 2008 Archives by thread</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Mon Nov 3 16:52:46 EST 2008</i><br>
|
||||
<b>Ending:</b> <i>Sat Nov 29 14:49:06 EST 2008</i><br>
|
||||
<b>Messages:</b> 26<p>
|
||||
<ul>
|
||||
|
||||
<!--0 01225749166- -->
|
||||
<LI><A HREF="000039.html">[mono-packagers] Branching Moonlight for 1.0 release
|
||||
</A><A NAME="39"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<!--0 01225878515- -->
|
||||
<LI><A HREF="000040.html">[mono-packagers] FYI: Ubuntu 9.04 Release Schedule
|
||||
</A><A NAME="40"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<!--0 01226362538- -->
|
||||
<LI><A HREF="000041.html">[mono-packagers] Mono 2.2 has been branched
|
||||
</A><A NAME="41"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01226736935- -->
|
||||
<LI><A HREF="000042.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="42"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01226798449- -->
|
||||
<LI><A HREF="000043.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="43"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01226798449-01226826747- -->
|
||||
<LI><A HREF="000044.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="44"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01226798449-01226826747-01226956711- -->
|
||||
<LI><A HREF="000045.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="45"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--3 01226798449-01226826747-01226956711-01226992162- -->
|
||||
<LI><A HREF="000046.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="46"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--3 01226798449-01226826747-01226956711-01226992162-01227017455- -->
|
||||
<LI><A HREF="000047.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="47"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<!--3 01226798449-01226826747-01226956711-01227021722- -->
|
||||
<LI><A HREF="000051.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="51"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<!--3 01226798449-01226826747-01226956711-01227021722-01227029297- -->
|
||||
<LI><A HREF="000055.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="55"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--3 01226798449-01226826747-01226956711-01227022930- -->
|
||||
<LI><A HREF="000052.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="52"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01227018958- -->
|
||||
<LI><A HREF="000048.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="48"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01227018958-01227020062- -->
|
||||
<LI><A HREF="000049.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="49"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01227018958-01227020062-01227028744- -->
|
||||
<LI><A HREF="000053.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="53"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--1 01227018958-01227021373- -->
|
||||
<LI><A HREF="000050.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="50"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01227018958-01227021373-01227028852- -->
|
||||
<LI><A HREF="000054.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="54"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--3 01227018958-01227021373-01227028852-01227044084- -->
|
||||
<LI><A HREF="000056.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="56"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<!--3 01227018958-01227021373-01227028852-01227044084-01227044218- -->
|
||||
<LI><A HREF="000057.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="57"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01227626390- -->
|
||||
<LI><A HREF="000058.html">[mono-packagers] Mono in fedora rawhide
|
||||
</A><A NAME="58"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01227968470- -->
|
||||
<LI><A HREF="000059.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="59"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01227968470-01227978219- -->
|
||||
<LI><A HREF="000060.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="60"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--0 01227978554- -->
|
||||
<LI><A HREF="000061.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="61"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01227978554-01227979014- -->
|
||||
<LI><A HREF="000062.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="62"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01227978554-01227979014-01227980190- -->
|
||||
<LI><A HREF="000063.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="63"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01227988146- -->
|
||||
<LI><A HREF="000064.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="64"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Sat Nov 29 14:49:06 EST 2008</i><br>
|
||||
<b>Archived on:</b> <i>Sat Nov 29 14:49:11 EST 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,177 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list November 2008 Archive by subject</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>November 2008 Archives by subject</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Mon Nov 3 16:52:46 EST 2008</i><br>
|
||||
<b>Ending:</b> <i>Sat Nov 29 14:49:06 EST 2008</i><br>
|
||||
<b>Messages:</b> 26<p>
|
||||
<ul>
|
||||
|
||||
<LI><A HREF="000045.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="45"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000046.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="46"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000047.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="47"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000048.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="48"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000049.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="49"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000050.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="50"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000051.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="51"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000052.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="52"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000053.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="53"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000054.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="54"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000055.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="55"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000056.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="56"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000057.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="57"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000042.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="42"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000043.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="43"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000044.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="44"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000039.html">[mono-packagers] Branching Moonlight for 1.0 release
|
||||
</A><A NAME="39"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000040.html">[mono-packagers] FYI: Ubuntu 9.04 Release Schedule
|
||||
</A><A NAME="40"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000041.html">[mono-packagers] Mono 2.2 has been branched
|
||||
</A><A NAME="41"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000058.html">[mono-packagers] Mono in fedora rawhide
|
||||
</A><A NAME="58"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000059.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="59"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000060.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="60"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000061.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="61"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000062.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="62"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000063.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="63"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000064.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="64"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Sat Nov 29 14:49:06 EST 2008</i><br>
|
||||
<b>Archived on:</b> <i>Sat Nov 29 14:49:11 EST 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,223 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list November 2008 Archive by thread</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>November 2008 Archives by thread</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Mon Nov 3 16:52:46 EST 2008</i><br>
|
||||
<b>Ending:</b> <i>Sat Nov 29 14:49:06 EST 2008</i><br>
|
||||
<b>Messages:</b> 26<p>
|
||||
<ul>
|
||||
|
||||
<!--0 01225749166- -->
|
||||
<LI><A HREF="000039.html">[mono-packagers] Branching Moonlight for 1.0 release
|
||||
</A><A NAME="39"> </A>
|
||||
<I>Rusty Howell
|
||||
</I>
|
||||
|
||||
<!--0 01225878515- -->
|
||||
<LI><A HREF="000040.html">[mono-packagers] FYI: Ubuntu 9.04 Release Schedule
|
||||
</A><A NAME="40"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<!--0 01226362538- -->
|
||||
<LI><A HREF="000041.html">[mono-packagers] Mono 2.2 has been branched
|
||||
</A><A NAME="41"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01226736935- -->
|
||||
<LI><A HREF="000042.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="42"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01226798449- -->
|
||||
<LI><A HREF="000043.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="43"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01226798449-01226826747- -->
|
||||
<LI><A HREF="000044.html">[mono-packagers] 2.2 yet?
|
||||
</A><A NAME="44"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01226798449-01226826747-01226956711- -->
|
||||
<LI><A HREF="000045.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="45"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--3 01226798449-01226826747-01226956711-01226992162- -->
|
||||
<LI><A HREF="000046.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="46"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--3 01226798449-01226826747-01226956711-01226992162-01227017455- -->
|
||||
<LI><A HREF="000047.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="47"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<!--3 01226798449-01226826747-01226956711-01227021722- -->
|
||||
<LI><A HREF="000051.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="51"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<!--3 01226798449-01226826747-01226956711-01227021722-01227029297- -->
|
||||
<LI><A HREF="000055.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="55"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--3 01226798449-01226826747-01226956711-01227022930- -->
|
||||
<LI><A HREF="000052.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="52"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01227018958- -->
|
||||
<LI><A HREF="000048.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="48"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01227018958-01227020062- -->
|
||||
<LI><A HREF="000049.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="49"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01227018958-01227020062-01227028744- -->
|
||||
<LI><A HREF="000053.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="53"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--1 01227018958-01227021373- -->
|
||||
<LI><A HREF="000050.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="50"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01227018958-01227021373-01227028852- -->
|
||||
<LI><A HREF="000054.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="54"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--3 01227018958-01227021373-01227028852-01227044084- -->
|
||||
<LI><A HREF="000056.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="56"> </A>
|
||||
<I>Benjamin Reed
|
||||
</I>
|
||||
|
||||
<!--3 01227018958-01227021373-01227028852-01227044084-01227044218- -->
|
||||
<LI><A HREF="000057.html">[mono-packagers] 2.2 pre-preview
|
||||
</A><A NAME="57"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01227626390- -->
|
||||
<LI><A HREF="000058.html">[mono-packagers] Mono in fedora rawhide
|
||||
</A><A NAME="58"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01227968470- -->
|
||||
<LI><A HREF="000059.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="59"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01227968470-01227978219- -->
|
||||
<LI><A HREF="000060.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="60"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--0 01227978554- -->
|
||||
<LI><A HREF="000061.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="61"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01227978554-01227979014- -->
|
||||
<LI><A HREF="000062.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="62"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01227978554-01227979014-01227980190- -->
|
||||
<LI><A HREF="000063.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="63"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01227988146- -->
|
||||
<LI><A HREF="000064.html">[mono-packagers] The $(prefix)/usr vs $(libdir) argument
|
||||
</A><A NAME="64"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Sat Nov 29 14:49:06 EST 2008</i><br>
|
||||
<b>Archived on:</b> <i>Sat Nov 29 14:49:11 EST 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,79 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Mono 2.0 RC3 for rawhide
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Mono%202.0%20RC3%20for%20rawhide&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
|
||||
<LINK REL="Next" HREF="000004.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Mono 2.0 RC3 for rawhide</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Mono%202.0%20RC3%20for%20rawhide&In-Reply-To="
|
||||
TITLE="[mono-packagers] Mono 2.0 RC3 for rawhide">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Wed Oct 1 15:34:48 EDT 2008</I>
|
||||
<P><UL>
|
||||
|
||||
<LI>Next message: <A HREF="000004.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#3">[ date ]</a>
|
||||
<a href="thread.html#3">[ thread ]</a>
|
||||
<a href="subject.html#3">[ subject ]</a>
|
||||
<a href="author.html#3">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
I'm going to be building RC3 of Mono 2.0 for release tomorrow. It's not
|
||||
broken anything big time here, but it's worth mentioning that I've
|
||||
backported a few extra patches into RC3 which haven't made it to the RC3
|
||||
release, but are due in 2.1 (I think that's due end of 2008/start of
|
||||
2009).
|
||||
|
||||
Updated : libgdiplus, mono, mono-basic, xsp, mod_mono, monodoc,
|
||||
mono-tools
|
||||
|
||||
Please let me know if it kills anything big style!
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081001/bfed0b58/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081001/bfed0b58/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
|
||||
<LI>Next message: <A HREF="000004.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#3">[ date ]</a>
|
||||
<a href="thread.html#3">[ thread ]</a>
|
||||
<a href="subject.html#3">[ subject ]</a>
|
||||
<a href="author.html#3">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,77 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Fedora rawhide release...
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Fedora%20rawhide%20release...&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000003.html">
|
||||
<LINK REL="Next" HREF="000005.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Fedora rawhide release...</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Fedora%20rawhide%20release...&In-Reply-To="
|
||||
TITLE="[mono-packagers] Fedora rawhide release...">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Thu Oct 2 20:32:05 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000003.html">[mono-packagers] Mono 2.0 RC3 for rawhide
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000005.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#4">[ date ]</a>
|
||||
<a href="thread.html#4">[ thread ]</a>
|
||||
<a href="subject.html#4">[ subject ]</a>
|
||||
<a href="author.html#4">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
RC4 will hit the fedora rawhide users with today's push (3rd Oct).
|
||||
|
||||
One useful thing for the mono website (for previews) is that if there is
|
||||
no change between (say) RC3 and RC4 on a package, that it's marked
|
||||
somehow. It would save packagers a heck of a lot of time in rebuilding
|
||||
when there is no need to.
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081003/91e93c63/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081003/91e93c63/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000003.html">[mono-packagers] Mono 2.0 RC3 for rawhide
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000005.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#4">[ date ]</a>
|
||||
<a href="thread.html#4">[ thread ]</a>
|
||||
<a href="subject.html#4">[ subject ]</a>
|
||||
<a href="author.html#4">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,88 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Fedora rawhide release...
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Fedora%20rawhide%20release...&In-Reply-To=1222993925.6325.6.camel%40PB3.Linux">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000004.html">
|
||||
<LINK REL="Next" HREF="000006.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Fedora rawhide release...</H1>
|
||||
<B>Zoltan Varga</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Fedora%20rawhide%20release...&In-Reply-To=1222993925.6325.6.camel%40PB3.Linux"
|
||||
TITLE="[mono-packagers] Fedora rawhide release...">vargaz at gmail.com
|
||||
</A><BR>
|
||||
<I>Thu Oct 2 20:55:27 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000004.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000006.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#5">[ date ]</a>
|
||||
<a href="thread.html#5">[ thread ]</a>
|
||||
<a href="subject.html#5">[ subject ]</a>
|
||||
<a href="author.html#5">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
I believe the compiler/runtime in the core mono package is used to
|
||||
build the other
|
||||
packages, so even if the source of those packages has not changed, the
|
||||
binaries might
|
||||
change, so its best to rebuild those too.
|
||||
|
||||
Zoltan
|
||||
|
||||
On Fri, Oct 3, 2008 at 2:32 AM, Paul <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">paul at all-the-johnsons.co.uk</A>> wrote:
|
||||
><i> Hi,
|
||||
</I>><i>
|
||||
</I>><i> RC4 will hit the fedora rawhide users with today's push (3rd Oct).
|
||||
</I>><i>
|
||||
</I>><i> One useful thing for the mono website (for previews) is that if there is
|
||||
</I>><i> no change between (say) RC3 and RC4 on a package, that it's marked
|
||||
</I>><i> somehow. It would save packagers a heck of a lot of time in rebuilding
|
||||
</I>><i> when there is no need to.
|
||||
</I>><i>
|
||||
</I>><i> TTFN
|
||||
</I>><i>
|
||||
</I>><i> Paul
|
||||
</I>><i> --
|
||||
</I>><i> Sie können mich aufreizen und wirklich heiß machen!
|
||||
</I>><i>
|
||||
</I>><i> _______________________________________________
|
||||
</I>><i> mono-packagers-list mailing list
|
||||
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mono-packagers-list at lists.ximian.com</A>
|
||||
</I>><i> <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">http://lists.ximian.com/mailman/listinfo/mono-packagers-list</A>
|
||||
</I>><i>
|
||||
</I>><i>
|
||||
</I></PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000004.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000006.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#5">[ date ]</a>
|
||||
<a href="thread.html#5">[ thread ]</a>
|
||||
<a href="subject.html#5">[ subject ]</a>
|
||||
<a href="author.html#5">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,78 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Fedora rawhide release...
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Fedora%20rawhide%20release...&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000005.html">
|
||||
<LINK REL="Next" HREF="000007.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Fedora rawhide release...</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Fedora%20rawhide%20release...&In-Reply-To="
|
||||
TITLE="[mono-packagers] Fedora rawhide release...">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Thu Oct 2 22:05:40 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000005.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000007.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#6">[ date ]</a>
|
||||
<a href="thread.html#6">[ thread ]</a>
|
||||
<a href="subject.html#6">[ subject ]</a>
|
||||
<a href="author.html#6">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>That's a really good point. At the very least we should have announced
|
||||
which packages changed. I take it you figured out that on this round it
|
||||
was mono and xsp.
|
||||
|
||||
- Andrew
|
||||
|
||||
>>><i> Paul <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">paul at all-the-johnsons.co.uk</A>> 10/02/08 6:40 PM >>>
|
||||
</I>Hi,
|
||||
|
||||
RC4 will hit the fedora rawhide users with today's push (3rd Oct).
|
||||
|
||||
One useful thing for the mono website (for previews) is that if there is
|
||||
no change between (say) RC3 and RC4 on a package, that it's marked
|
||||
somehow. It would save packagers a heck of a lot of time in rebuilding
|
||||
when there is no need to.
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000005.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000007.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#6">[ date ]</a>
|
||||
<a href="thread.html#6">[ thread ]</a>
|
||||
<a href="subject.html#6">[ subject ]</a>
|
||||
<a href="author.html#6">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] RC4 is 2.0 Final
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20RC4%20is%202.0%20Final&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000006.html">
|
||||
<LINK REL="Next" HREF="000008.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] RC4 is 2.0 Final</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20RC4%20is%202.0%20Final&In-Reply-To="
|
||||
TITLE="[mono-packagers] RC4 is 2.0 Final">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Sat Oct 4 23:14:21 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000006.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000008.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#7">[ date ]</a>
|
||||
<a href="thread.html#7">[ thread ]</a>
|
||||
<a href="subject.html#7">[ subject ]</a>
|
||||
<a href="author.html#7">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hello dear packagers, RC4 has been declared good enough by QA and will be announced as 2.0 on Monday. Sources are already available on ftp.novell.com.
|
||||
|
||||
If you're already applying some patches we'd like to have a chance to see what you're applying and why. We have engineers who are willing to review patches and make recommendations. In the past patches have been applied which may have plugged one hole but opened another, so to speak, and we'd like to avoid that in the future.
|
||||
|
||||
In general as you apply patches please let us know and I'll do my best to make sure they get upstreamed or improved on and given back to you.
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000006.html">[mono-packagers] Fedora rawhide release...
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000008.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#7">[ date ]</a>
|
||||
<a href="thread.html#7">[ thread ]</a>
|
||||
<a href="subject.html#7">[ subject ]</a>
|
||||
<a href="author.html#7">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,95 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] RC4 is 2.0 Final
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20RC4%20is%202.0%20Final&In-Reply-To=48E7DCAD020000400003FECA%40lucius.provo.novell.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000007.html">
|
||||
<LINK REL="Next" HREF="000010.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] RC4 is 2.0 Final</H1>
|
||||
<B>Mirco Bauer</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20RC4%20is%202.0%20Final&In-Reply-To=48E7DCAD020000400003FECA%40lucius.provo.novell.com"
|
||||
TITLE="[mono-packagers] RC4 is 2.0 Final">meebey at debian.org
|
||||
</A><BR>
|
||||
<I>Sun Oct 5 06:48:49 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000007.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000010.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#8">[ date ]</a>
|
||||
<a href="thread.html#8">[ thread ]</a>
|
||||
<a href="subject.html#8">[ subject ]</a>
|
||||
<a href="author.html#8">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Sat, 04 Oct 2008 21:14:21 -0600
|
||||
"Andrew Jorgensen" <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">ajorgensen at novell.com</A>> wrote:
|
||||
|
||||
><i> Hello dear packagers, RC4 has been declared good enough by QA and
|
||||
</I>><i> will be announced as 2.0 on Monday. Sources are already available on
|
||||
</I>><i> ftp.novell.com.
|
||||
</I>
|
||||
Thanks for the note! I will try to get Debian packages ready till
|
||||
Monday.
|
||||
|
||||
><i>
|
||||
</I>><i> If you're already applying some patches we'd like to have a chance to
|
||||
</I>><i> see what you're applying and why. We have engineers who are willing
|
||||
</I>><i> to review patches and make recommendations. In the past patches have
|
||||
</I>><i> been applied which may have plugged one hole but opened another, so
|
||||
</I>><i> to speak, and we'd like to avoid that in the future.
|
||||
</I>><i>
|
||||
</I>><i> In general as you apply patches please let us know and I'll do my
|
||||
</I>><i> best to make sure they get upstreamed or improved on and given back
|
||||
</I>><i> to you.
|
||||
</I>
|
||||
The list of patches for 1.9.1 is very long [0] (but most are taken from
|
||||
Mono's SVN), will see how much I might need to patch in 2.0...
|
||||
|
||||
[0] patches: <A HREF="http://svn.debian.org/wsvn/pkg-mono/mono/trunk/debian/patches/?rev=0&sc=0">http://svn.debian.org/wsvn/pkg-mono/mono/trunk/debian/patches/?rev=0&sc=0</A>
|
||||
the list of actually applied patches is here though:
|
||||
<A HREF="http://svn.debian.org/wsvn/pkg-mono/mono/trunk/debian/patches/00list?op=file&rev=0&sc=0">http://svn.debian.org/wsvn/pkg-mono/mono/trunk/debian/patches/00list?op=file&rev=0&sc=0</A>
|
||||
|
||||
--
|
||||
Regards,
|
||||
|
||||
Mirco 'meebey' Bauer
|
||||
|
||||
PGP-Key ID: 0xEEF946C8
|
||||
|
||||
FOSS Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at meebey.net</A> <A HREF="http://www.meebey.net/">http://www.meebey.net/</A>
|
||||
PEAR Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at php.net</A> <A HREF="http://pear.php.net/">http://pear.php.net/</A>
|
||||
Debian Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A> <A HREF="http://www.debian.org/">http://www.debian.org/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000007.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000010.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#8">[ date ]</a>
|
||||
<a href="thread.html#8">[ thread ]</a>
|
||||
<a href="subject.html#8">[ subject ]</a>
|
||||
<a href="author.html#8">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,95 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Re-Licensing%20of%20Mono%27s%20JSON.NET%20code%20in%20Mono%202.0&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000016.html">
|
||||
<LINK REL="Next" HREF="000011.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0</H1>
|
||||
<B>Mirco Bauer</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Re-Licensing%20of%20Mono%27s%20JSON.NET%20code%20in%20Mono%202.0&In-Reply-To="
|
||||
TITLE="[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0">meebey at debian.org
|
||||
</A><BR>
|
||||
<I>Sun Oct 5 08:05:45 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000016.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000011.html">[mono-packagers] Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#9">[ date ]</a>
|
||||
<a href="thread.html#9">[ thread ]</a>
|
||||
<a href="subject.html#9">[ subject ]</a>
|
||||
<a href="author.html#9">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi everyone,
|
||||
|
||||
today I am working on Mono 2.0 Debian package and noticed that JSON.NET
|
||||
(mcs/class/System.Web.Extensions/System.Web.Script.Serialization/JSON/)
|
||||
was relicensed from Creative Common to MIT/X11, which is very nice. I
|
||||
was trying to verify how the relicensing was done, which would be either
|
||||
re-sync code from upstream as the latest releases are MIT/X11 already
|
||||
or ask all copyright holders for permission to relicense the current
|
||||
code.
|
||||
|
||||
The changelog revealed:
|
||||
2008-05-20 Jb Evain <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">jbevain at novell.com</A>>
|
||||
|
||||
*.cs: all files from JSon.NET are now re-licensed under the
|
||||
MIT/X11 license, thanks to his author James Newton-King
|
||||
for relicensing them.
|
||||
|
||||
Which made me worrying as James Newton-King is not the only copyright
|
||||
holder of the code:
|
||||
grep "Copyright" -r ./mcs/class/System.Web.Extensions/System.Web.Script.Serialization/JSON/ | cut -f2 -d ':' | sort | uniq
|
||||
// Copyright (c) 2007 James Newton-King
|
||||
// Copyright 2007 Konstantin Triger <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">kostat at mainsoft.com</A>>
|
||||
|
||||
I asked Jb on IRC if he explicitly asked Konstantin Triger if he agreed
|
||||
on the re-license but he said he hadn't. Thus I am bringing up this
|
||||
issue on this mailing list.
|
||||
|
||||
--
|
||||
Regards,
|
||||
|
||||
Mirco 'meebey' Bauer
|
||||
|
||||
PGP-Key ID: 0xEEF946C8
|
||||
|
||||
FOSS Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at meebey.net</A> <A HREF="http://www.meebey.net/">http://www.meebey.net/</A>
|
||||
PEAR Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at php.net</A> <A HREF="http://pear.php.net/">http://pear.php.net/</A>
|
||||
Debian Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A> <A HREF="http://www.debian.org/">http://www.debian.org/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000016.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000011.html">[mono-packagers] Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#9">[ date ]</a>
|
||||
<a href="thread.html#9">[ thread ]</a>
|
||||
<a href="subject.html#9">[ subject ]</a>
|
||||
<a href="author.html#9">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,185 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] RC4 is 2.0 Final
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20RC4%20is%202.0%20Final&In-Reply-To=48E7DCAD020000400003FECA%40lucius.provo.novell.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000008.html">
|
||||
<LINK REL="Next" HREF="000016.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] RC4 is 2.0 Final</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20RC4%20is%202.0%20Final&In-Reply-To=48E7DCAD020000400003FECA%40lucius.provo.novell.com"
|
||||
TITLE="[mono-packagers] RC4 is 2.0 Final">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Sun Oct 5 14:54:36 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000008.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000016.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#10">[ date ]</a>
|
||||
<a href="thread.html#10">[ thread ]</a>
|
||||
<a href="subject.html#10">[ subject ]</a>
|
||||
<a href="author.html#10">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i> Hello dear packagers, RC4 has been declared good enough by QA and
|
||||
</I>><i> will be announced as 2.0 on Monday. Sources are already available on
|
||||
</I>><i> ftp.novell.com.
|
||||
</I>
|
||||
Excellent. I intend to roll this out for rawhide from tomorrow, though
|
||||
RC4 is already in there.
|
||||
|
||||
><i> If you're already applying some patches we'd like to have a chance to
|
||||
</I>><i> see what you're applying and why. We have engineers who are willing
|
||||
</I>><i> to review patches and make recommendations. In the past patches have
|
||||
</I>><i> been applied which may have plugged one hole but opened another, so to
|
||||
</I>><i> speak, and we'd like to avoid that in the future.
|
||||
</I>
|
||||
For fedora, we're running off the 2.0 branch with some additional
|
||||
patches, namely (*) indicates Fedora patch for our systems
|
||||
|
||||
(*) selinux-ia64
|
||||
(*) ppc-treading
|
||||
(*) libdir (use $(libdir) instead of $(prefix)/lib
|
||||
big-integer-CVE-2007-5197
|
||||
(*) mcs-config (another $(libdir) bit)
|
||||
(*) pc files (again redirect to $(libdir))
|
||||
(*) monoservice (point to $(libdir)/mono)
|
||||
(*) metadata ($(libdir))
|
||||
tablelayout (fixes a problem in
|
||||
MWF.Layout/TableLayoutSettingsTypeConverter.cs that stops you building
|
||||
from a non-desktop environment)
|
||||
mimeicon (fixes icon problem if there isn't a mime icon for a file)
|
||||
BinarySerialization (System.Data/BinarySerialization test)
|
||||
DataTable (System.Data/DataTable)
|
||||
StringReplace (corlib/System.Text stringbuilder fixes)
|
||||
|
||||
><i> In general as you apply patches please let us know and I'll do my best
|
||||
</I>><i> to make sure they get upstreamed or improved on and given back to you.
|
||||
</I>
|
||||
I've attached all of our non-standard patches. The selinux and ppc
|
||||
threading ones should be of the greatest use.
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-1.1.13.4-selinux-ia64.patch
|
||||
Type: text/x-patch
|
||||
Size: 751 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-1.2.3-use-monodir.patch
|
||||
Type: text/x-patch
|
||||
Size: 776 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0001.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0001.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-2.0-metadata-makefile.patch
|
||||
Type: text/x-patch
|
||||
Size: 933 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0002.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0002.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-2.0-monoservice.patch
|
||||
Type: text/x-patch
|
||||
Size: 717 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0003.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0003.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-2.0-pcfiles.patch
|
||||
Type: text/x-patch
|
||||
Size: 1631 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0004.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0004.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-2.0-ppc-threading.patch
|
||||
Type: text/x-patch
|
||||
Size: 518 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0005.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0005.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-2.0-uselibdir.patch
|
||||
Type: text/x-patch
|
||||
Size: 601 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0006.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0006.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-big-integer-CVE-2007-5197.patch
|
||||
Type: text/x-patch
|
||||
Size: 870 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0007.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0007.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: monodir.c
|
||||
Type: text/x-csrc
|
||||
Size: 92 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0008.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0008.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-libdir-126.patch
|
||||
Type: text/x-patch
|
||||
Size: 3381 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0009.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0009.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: mono-mcs-config.patch
|
||||
Type: text/x-patch
|
||||
Size: 1834 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0010.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0010.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0011.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/04fb7130/attachment-0011.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000008.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000016.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#10">[ date ]</a>
|
||||
<a href="thread.html#10">[ thread ]</a>
|
||||
<a href="subject.html#10">[ subject ]</a>
|
||||
<a href="author.html#10">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,91 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Mono 2.0
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Mono%202.0&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000009.html">
|
||||
<LINK REL="Next" HREF="000013.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Mono 2.0</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Mono%202.0&In-Reply-To="
|
||||
TITLE="[mono-packagers] Mono 2.0">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Sun Oct 5 15:49:46 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000009.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000013.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#11">[ date ]</a>
|
||||
<a href="thread.html#11">[ thread ]</a>
|
||||
<a href="subject.html#11">[ subject ]</a>
|
||||
<a href="author.html#11">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
I've been told from Novell that Mono rc4 (currently in rawhide) will be
|
||||
released as the real 2.0 version tomorrow (Monday).
|
||||
|
||||
As there is no difference between RC4 and the release version, I'm not
|
||||
intending to repackage them just for the sake of it as it seems an
|
||||
exercise in futility to be honest.
|
||||
|
||||
My plan is to roll out the full mono 2.0 stack to F9 as soon as F10 is
|
||||
released. This will mean that for the first time, both the current and
|
||||
previous versions of Fedora will be running on the same version of mono.
|
||||
What will then happen is this
|
||||
|
||||
Mono releases version 2.1, rawhide gets this plus any bug fixes. After a
|
||||
month, this is rolled down to release and after 2 months, release - 1.
|
||||
This will also apply to Monodevelop. As I don't have control over other
|
||||
Mono packages (or mono-based packages), can I ask that if you do have a
|
||||
mono package that you also adopt this system. Currently things in F8 and
|
||||
F9 are a mess and they need a good clean up.
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/10096ef8/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/10096ef8/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000009.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000013.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#11">[ date ]</a>
|
||||
<a href="thread.html#11">[ thread ]</a>
|
||||
<a href="subject.html#11">[ subject ]</a>
|
||||
<a href="author.html#11">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,108 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Re-Licensing%20of%20Mono%27s%20JSON.NET%20code%20in%09%20Mono%0A%092.0&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000013.html">
|
||||
<LINK REL="Next" HREF="000014.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Re-Licensing%20of%20Mono%27s%20JSON.NET%20code%20in%09%20Mono%0A%092.0&In-Reply-To="
|
||||
TITLE="[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Mon Oct 6 11:27:59 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000013.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000014.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#12">[ date ]</a>
|
||||
<a href="thread.html#12">[ thread ]</a>
|
||||
<a href="subject.html#12">[ subject ]</a>
|
||||
<a href="author.html#12">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Konstantin,
|
||||
|
||||
Do you approve of the re-licensing of JSon.NET?
|
||||
|
||||
Thanks,
|
||||
Andrew Jorgensen
|
||||
|
||||
>>><i> Mirco Bauer <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A>> 10/05/08 6:08 AM >>>
|
||||
</I>Hi everyone,
|
||||
|
||||
today I am working on Mono 2.0 Debian package and noticed that JSON.NET
|
||||
(mcs/class/System.Web.Extensions/System.Web.Script.Serialization/JSON/)
|
||||
was relicensed from Creative Common to MIT/X11, which is very nice. I
|
||||
was trying to verify how the relicensing was done, which would be either
|
||||
re-sync code from upstream as the latest releases are MIT/X11 already
|
||||
or ask all copyright holders for permission to relicense the current
|
||||
code.
|
||||
|
||||
The changelog revealed:
|
||||
2008-05-20 Jb Evain <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">jbevain at novell.com</A>>
|
||||
|
||||
*.cs: all files from JSon.NET are now re-licensed under the
|
||||
MIT/X11 license, thanks to his author James Newton-King
|
||||
for relicensing them.
|
||||
|
||||
Which made me worrying as James Newton-King is not the only copyright
|
||||
holder of the code:
|
||||
grep "Copyright" -r ./mcs/class/System.Web.Extensions/System.Web.Script.Serialization/JSON/ | cut -f2 -d ':' | sort | uniq
|
||||
// Copyright (c) 2007 James Newton-King
|
||||
// Copyright 2007 Konstantin Triger <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">kostat at mainsoft.com</A>>
|
||||
|
||||
I asked Jb on IRC if he explicitly asked Konstantin Triger if he agreed
|
||||
on the re-license but he said he hadn't. Thus I am bringing up this
|
||||
issue on this mailing list.
|
||||
|
||||
--
|
||||
Regards,
|
||||
|
||||
Mirco 'meebey' Bauer
|
||||
|
||||
PGP-Key ID: 0xEEF946C8
|
||||
|
||||
FOSS Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at meebey.net</A> <A HREF="http://www.meebey.net/">http://www.meebey.net/</A>
|
||||
PEAR Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at php.net</A> <A HREF="http://pear.php.net/">http://pear.php.net/</A>
|
||||
Debian Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A> <A HREF="http://www.debian.org/">http://www.debian.org/</A>
|
||||
_______________________________________________
|
||||
mono-packagers-list mailing list
|
||||
<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mono-packagers-list at lists.ximian.com</A>
|
||||
<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">http://lists.ximian.com/mailman/listinfo/mono-packagers-list</A>
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000013.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000014.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#12">[ date ]</a>
|
||||
<a href="thread.html#12">[ thread ]</a>
|
||||
<a href="subject.html#12">[ subject ]</a>
|
||||
<a href="author.html#12">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,376 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Moonlight for Debian - packaging report
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Moonlight%20for%20Debian%20-%20packaging%20report&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000011.html">
|
||||
<LINK REL="Next" HREF="000012.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Moonlight for Debian - packaging report</H1>
|
||||
<B>Jo Shields</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Moonlight%20for%20Debian%20-%20packaging%20report&In-Reply-To="
|
||||
TITLE="[mono-packagers] Moonlight for Debian - packaging report">directhex at apebox.org
|
||||
</A><BR>
|
||||
<I>Sun Oct 5 17:50:41 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000011.html">[mono-packagers] Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000012.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#13">[ date ]</a>
|
||||
<a href="thread.html#13">[ thread ]</a>
|
||||
<a href="subject.html#13">[ subject ]</a>
|
||||
<a href="author.html#13">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>I'm hoping that this report on Moonlight packaging should be helpful
|
||||
both to upstream and other distribution developers. The same is true of
|
||||
Ubuntu as well (indeed, the actual package development was done on
|
||||
Ubuntu first).
|
||||
|
||||
== Source Issues ==
|
||||
=== Missing LICENSE ===
|
||||
Moonlight 0.8.1
|
||||
(<A HREF="http://ftp.novell.com/pub/mono/sources/moon/moon-0.8.1.tar.bz2">http://ftp.novell.com/pub/mono/sources/moon/moon-0.8.1.tar.bz2</A>) is
|
||||
missing a LICENSE file. This has been manually worked around using SVN,
|
||||
and we use a machine-readable copyright format anyway
|
||||
(<A HREF="http://svn.debian.org/wsvn/pkg-mono/moon/trunk/debian/copyright?op=file&rev=0&sc=0">http://svn.debian.org/wsvn/pkg-mono/moon/trunk/debian/copyright?op=file&rev=0&sc=0</A>)
|
||||
|
||||
=== Extra binary DLLs ===
|
||||
Moonlight 0.8.1 contains two binary DLLs:
|
||||
+ ./test/harness/test-runner/NDesk.Options.dll
|
||||
+ ./test/harness/test-runner/MySql.Data.dll
|
||||
Whilst these obviously aren't needed for moon to operate, it's not
|
||||
considered acceptable by Debian's powers that be to include binary-only
|
||||
builds with unknown version numbers. It would be vastly preferable if
|
||||
DLLs needed for the test harness were replaced with source code
|
||||
snapshots (or, indeed, excluded entirely)
|
||||
|
||||
=== Silverlight.js ===
|
||||
Moonlight 0.8.1 contains four copies of an unmodifiable Silverlight.js:
|
||||
+ ./test/xaml/Silverlight.js
|
||||
+ ./test/xaml/clock/Silverlight.js
|
||||
+ ./test/xaml/enums/Silverlight.js
|
||||
+ ./test/xaml/fullscreen/Silverlight.js
|
||||
The Silverlight SDK 1.0 license
|
||||
(<A HREF="http://msdn.microsoft.com/en-us/silverlight/bb743266.aspx">http://msdn.microsoft.com/en-us/silverlight/bb743266.aspx</A>) means these
|
||||
files aren't even technically distributable:
|
||||
|
||||
"2. a. iii. Distribution Restrictions. You may not distribute
|
||||
Distributable Code for use with any runtime other than Microsoft
|
||||
Silverlight runtimes;".
|
||||
|
||||
It's certainly not modifiable ("2. a. iii. Distribution Restrictions.
|
||||
You may not modify or distribute the source code of any Distributable
|
||||
Code so that any part of it becomes subject to an Excluded License. An
|
||||
Excluded License is one that requires, as a condition of use,
|
||||
modification or distribution, that others have the right to modify it.")
|
||||
|
||||
And any arguments should go to <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">debian-legal at lists.debian.org</A>, not me.
|
||||
|
||||
=== Summary ===
|
||||
The second two of the three points above have forced us to "dfsg" the
|
||||
package, which essentially means we build our own altered "upstream"
|
||||
tarball without any problem files included. It carries a slightly higher
|
||||
maintainer overhead.
|
||||
|
||||
== Compilation Issues ==
|
||||
A full build log from the package is attached, for reference. However,
|
||||
the following sections deserve highlighting:
|
||||
|
||||
=== Rpath ===
|
||||
[code]
|
||||
(cd /tmp/buildd/moon-0.8.1
|
||||
+dfsg/plugin/firefox/ff3; /bin/bash /tmp/buildd/moon-0.8.1
|
||||
+dfsg/plugin/firefox/ff3/../../../libtool --tag=CXX --mode=relink g++
|
||||
-fno-inline -g -fno-inline-functions -g -DCOMPATIBILITY_BUGS=1
|
||||
-Wl,-Bsymbolic-functions -o libmoonplugin-ff3bridge.la
|
||||
-rpath /usr/lib/moon/plugin ff3-bridge.lo ff3-dom.lo ff3-http.lo
|
||||
-L/usr/lib/xulrunner-devel-1.9.0.3/lib -lxpcomglue_s -lxul -lxpcom
|
||||
-lpthread -ldl ../../libmoonplugin.la ../../../src/libmoon.la -lrt
|
||||
-inst-prefix-dir /tmp/buildd/moon-0.8.1+dfsg/debian/tmp)
|
||||
[/code]
|
||||
|
||||
Forcing non-standard RPATH is considered a problem in Debian, and is
|
||||
flagged up by our package sanity checker 'lintian' as a problem. It's
|
||||
discussed in depth at <A HREF="http://wiki.debian.org/RpathIssue">http://wiki.debian.org/RpathIssue</A>
|
||||
|
||||
Rather than manually hacking on the build system, we are reversing this
|
||||
unneccessary setting later in the build:
|
||||
[code]
|
||||
# Mangle rpath for lintain cleanness
|
||||
chrpath -d /tmp/buildd/moon-0.8.1
|
||||
+dfsg/debian/tmp/usr/lib/moon/plugin/libmoonplugin-ff3bridge.so.0.0.0
|
||||
[/code]
|
||||
|
||||
Note that there are NO observed adverse effects from doing this with our
|
||||
packages.
|
||||
|
||||
=== Over-eager linking ===
|
||||
Our dependency building mechanisms perform some analysis of whether a
|
||||
given link is actually required or not, to help minimise enormous
|
||||
dependency chains. The following are flagged up:
|
||||
|
||||
[code]
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libavcodec.so.1d (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libtheora.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libvorbisenc.so.2 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libraw1394.so.8 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libavutil.so.1d (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libvorbis.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libogg.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libfreetype.so.6 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libfontconfig.so.1 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libatk-1.0.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libgdk_pixbuf-2.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libpangocairo-1.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libpango-1.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libcairo.so.2 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libgmodule-2.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libasound.so.2 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with libz.so.1 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonplugin.so
|
||||
shouldn't be linked with librt.so.1 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libavcodec.so.1d (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libtheora.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libvorbisenc.so.2 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libraw1394.so.8 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libavutil.so.1d (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libvorbis.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libogg.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libfreetype.so.6 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libfontconfig.so.1 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libgtk-x11-2.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libgdk-x11-2.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libatk-1.0.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libgdk_pixbuf-2.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libpangocairo-1.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libpango-1.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libcairo.so.2 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libgobject-2.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libgmodule-2.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libgthread-2.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libasound.so.2 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libz.so.1 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libpthread.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with librt.so.1 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-core/usr/lib/moon/plugin/libmoonloader.so
|
||||
shouldn't be linked with libgcc_s.so.1 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-mozilla/usr/lib/moon/plugin/libmoonplugin-ff3bridge.so.0.0.0 shouldn't be linked with libpthread.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-mozilla/usr/lib/moon/plugin/libmoonplugin-ff3bridge.so.0.0.0 shouldn't be linked with libdl.so.2 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-mozilla/usr/lib/moon/plugin/libmoonplugin-ff3bridge.so.0.0.0 shouldn't be linked with libmoon.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning:
|
||||
debian/moonlight-plugin-mozilla/usr/lib/moon/plugin/libmoonplugin-ff3bridge.so.0.0.0 shouldn't be linked with librt.so.1 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libtheora.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libvorbisenc.so.2 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libraw1394.so.8 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libvorbis.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libogg.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libatk-1.0.so.0 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libpangocairo-1.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libpango-1.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libgmodule-2.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libdl.so.2 (it uses none of its symbols).
|
||||
dpkg-shlibdeps: warning: debian/libmoon0/usr/lib/libmoon.so.0.0.0
|
||||
shouldn't be linked with libgthread-2.0.so.0 (it uses none of its
|
||||
symbols).
|
||||
[/code]
|
||||
|
||||
We're not doing anything fancy with our linking, and this causes us some
|
||||
fairly extended dependencies:
|
||||
[code]
|
||||
Package: libmoon0
|
||||
Depends: libasound2 (>> 1.0.14), libatk1.0-0 (>= 1.20.0), libavcodec1d
|
||||
(>= 0.cvs20070307), libavutil1d (>= 0.cvs20070307), libc6 (>= 2.4),
|
||||
libcairo2 (>= 1.6.0), libfontconfig1 (>= 2.4.0), libfreetype6 (>=
|
||||
2.3.5), libgcc1 (>= 1:4.1.1-21), libglib2.0-0 (>= 2.16.0), libgtk2.0-0
|
||||
(>= 2.12.0), libogg0, libpango1.0-0 (>= 1.20.5), libraw1394-8, libstdc
|
||||
++6 (>= 4.1.1-21), libtheora0, libvorbis0a (>= 1.2.0), libvorbisenc2 (>=
|
||||
1.1.2), zlib1g (>= 1:1.2.3.3.dfsg-1)
|
||||
|
||||
Package: moonlight-plugin-core
|
||||
Depends: libasound2 (>> 1.0.14), libatk1.0-0 (>= 1.20.0), libavcodec1d
|
||||
(>= 0.cvs20070307), libavutil1d (>= 0.cvs20070307), libc6 (>= 2.4),
|
||||
libcairo2 (>= 1.6.0), libfontconfig1 (>= 2.4.0), libfreetype6 (>=
|
||||
2.3.5), libgcc1 (>= 1:4.1.1-21), libglib2.0-0 (>= 2.14.0), libgtk2.0-0
|
||||
(>= 2.12.0), libmoon0, libogg0, libpango1.0-0 (>= 1.20.5), libraw1394-8,
|
||||
libstdc++6 (>= 4.1.1-21), libtheora0, libvorbis0a (>= 1.2.0),
|
||||
libvorbisenc2 (>= 1.1.2), zlib1g (>= 1:1.2.3.3.dfsg-1)
|
||||
|
||||
Package: moonlight-plugin-mozilla
|
||||
Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1-21), libmoon0, libstdc++6
|
||||
(>= 4.1.1-21), moonlight-plugin-core (>= 0.8.1+dfsg-1), xulrunner-1.9
|
||||
[/code]
|
||||
|
||||
I expect a number of these come from libavcodec, and the problem will go
|
||||
away when libavcodec is replaced with the MS plugin pack - but we have
|
||||
concerns about Moonlight becoming another arch-constrained plugin like
|
||||
Flash if we need to rely on third parties for codecs.
|
||||
|
||||
=== Summary ===
|
||||
There are no insurmountable problems with packaging, but certainly with
|
||||
the Rpath issue it would be ice to analyse exactly why this Rpath is set
|
||||
(I can't imagine a scenario where the bridge would be loaded in
|
||||
isolation from the rest of the plugin such that it's necessary)
|
||||
|
||||
== Summary ==
|
||||
We now have a functional initial package ready for offering Moonlight to
|
||||
users, with the SL 1.0 profile. All current work can be seen in our SVN
|
||||
repository, at
|
||||
<A HREF="http://svn.debian.org/wsvn/pkg-mono/moon/trunk/debian/?rev=0&sc=0">http://svn.debian.org/wsvn/pkg-mono/moon/trunk/debian/?rev=0&sc=0</A>
|
||||
|
||||
SL 2.0 support will be added to the packaging at some point in the
|
||||
future, after Mono 2.0 packages have been tested & validated
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: build.log
|
||||
Type: text/x-log
|
||||
Size: 173290 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/e49d2b6b/attachment-0001.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081005/e49d2b6b/attachment-0001.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000011.html">[mono-packagers] Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000012.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#13">[ date ]</a>
|
||||
<a href="thread.html#13">[ thread ]</a>
|
||||
<a href="subject.html#13">[ subject ]</a>
|
||||
<a href="author.html#13">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,115 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Re-Licensing%20of%20Mono%27s%20JSON.NET%20code%20in%09%09%0A%09Mono2.0&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000012.html">
|
||||
<LINK REL="Next" HREF="000015.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Re-Licensing%20of%20Mono%27s%20JSON.NET%20code%20in%09%09%0A%09Mono2.0&In-Reply-To="
|
||||
TITLE="[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Mon Oct 6 12:24:20 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000012.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000015.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#14">[ date ]</a>
|
||||
<a href="thread.html#14">[ thread ]</a>
|
||||
<a href="subject.html#14">[ subject ]</a>
|
||||
<a href="author.html#14">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Oops, Konstantin isn't at mainsoft anymore, I'll get to him another way.
|
||||
|
||||
>>><i> "Andrew Jorgensen" <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">ajorgensen at novell.com</A>> 10/06/08 9:28 AM >>>
|
||||
</I>Konstantin,
|
||||
|
||||
Do you approve of the re-licensing of JSon.NET?
|
||||
|
||||
Thanks,
|
||||
Andrew Jorgensen
|
||||
|
||||
>>><i> Mirco Bauer <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A>> 10/05/08 6:08 AM >>>
|
||||
</I>Hi everyone,
|
||||
|
||||
today I am working on Mono 2.0 Debian package and noticed that JSON.NET
|
||||
(mcs/class/System.Web.Extensions/System.Web.Script.Serialization/JSON/)
|
||||
was relicensed from Creative Common to MIT/X11, which is very nice. I
|
||||
was trying to verify how the relicensing was done, which would be either
|
||||
re-sync code from upstream as the latest releases are MIT/X11 already
|
||||
or ask all copyright holders for permission to relicense the current
|
||||
code.
|
||||
|
||||
The changelog revealed:
|
||||
2008-05-20 Jb Evain <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">jbevain at novell.com</A>>
|
||||
|
||||
*.cs: all files from JSon.NET are now re-licensed under the
|
||||
MIT/X11 license, thanks to his author James Newton-King
|
||||
for relicensing them.
|
||||
|
||||
Which made me worrying as James Newton-King is not the only copyright
|
||||
holder of the code:
|
||||
grep "Copyright" -r ./mcs/class/System.Web.Extensions/System.Web.Script.Serialization/JSON/ | cut -f2 -d ':' | sort | uniq
|
||||
// Copyright (c) 2007 James Newton-King
|
||||
// Copyright 2007 Konstantin Triger <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">kostat at mainsoft.com</A>>
|
||||
|
||||
I asked Jb on IRC if he explicitly asked Konstantin Triger if he agreed
|
||||
on the re-license but he said he hadn't. Thus I am bringing up this
|
||||
issue on this mailing list.
|
||||
|
||||
--
|
||||
Regards,
|
||||
|
||||
Mirco 'meebey' Bauer
|
||||
|
||||
PGP-Key ID: 0xEEF946C8
|
||||
|
||||
FOSS Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at meebey.net</A> <A HREF="http://www.meebey.net/">http://www.meebey.net/</A>
|
||||
PEAR Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at php.net</A> <A HREF="http://pear.php.net/">http://pear.php.net/</A>
|
||||
Debian Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A> <A HREF="http://www.debian.org/">http://www.debian.org/</A>
|
||||
_______________________________________________
|
||||
mono-packagers-list mailing list
|
||||
<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mono-packagers-list at lists.ximian.com</A>
|
||||
<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">http://lists.ximian.com/mailman/listinfo/mono-packagers-list</A>
|
||||
|
||||
_______________________________________________
|
||||
mono-packagers-list mailing list
|
||||
<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">mono-packagers-list at lists.ximian.com</A>
|
||||
<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">http://lists.ximian.com/mailman/listinfo/mono-packagers-list</A>
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000012.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000015.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#14">[ date ]</a>
|
||||
<a href="thread.html#14">[ thread ]</a>
|
||||
<a href="subject.html#14">[ subject ]</a>
|
||||
<a href="author.html#14">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,83 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Re-Licensing%20of%20Mono%27s%20JSON.NET%20code%20in%20Mono%0A%202.0&In-Reply-To=e342a9a90810070122j2d71fd9cvdca17f07ff7138a8%40mail.gmail.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000014.html">
|
||||
<LINK REL="Next" HREF="000017.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0</H1>
|
||||
<B>Mirco Bauer</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Re-Licensing%20of%20Mono%27s%20JSON.NET%20code%20in%20Mono%0A%202.0&In-Reply-To=e342a9a90810070122j2d71fd9cvdca17f07ff7138a8%40mail.gmail.com"
|
||||
TITLE="[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0">meebey at debian.org
|
||||
</A><BR>
|
||||
<I>Tue Oct 7 16:35:41 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000014.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000017.html">[mono-packagers] Bugzilla Keyword: downstream
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#15">[ date ]</a>
|
||||
<a href="thread.html#15">[ thread ]</a>
|
||||
<a href="subject.html#15">[ subject ]</a>
|
||||
<a href="author.html#15">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi Konstantin,
|
||||
|
||||
><i> From: "Konstantin Triger" <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">kostat at gmail.com</A>>
|
||||
</I>><i> To: "Andrew Jorgensen" <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">ajorgensen at novell.com</A>>
|
||||
</I>><i> Cc: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A>
|
||||
</I>><i> Subject: Re: [mono-packagers] Re-Licensing of Mono's JSON.NET code in
|
||||
</I>><i> Mono 2.0 Date: Tue, 7 Oct 2008 10:22:27 +0200
|
||||
</I>><i>
|
||||
</I>><i> Yes, feel free to relicense.
|
||||
</I>><i>
|
||||
</I>><i> Kosta
|
||||
</I>
|
||||
Great, thanks for solving this licensing issue!
|
||||
|
||||
[for the mailing list archive purpose the full email reply of Konstantin
|
||||
Triger was quoted]
|
||||
--
|
||||
Regards,
|
||||
|
||||
Mirco 'meebey' Bauer
|
||||
|
||||
PGP-Key ID: 0xEEF946C8
|
||||
|
||||
FOSS Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at meebey.net</A> <A HREF="http://www.meebey.net/">http://www.meebey.net/</A>
|
||||
PEAR Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at php.net</A> <A HREF="http://pear.php.net/">http://pear.php.net/</A>
|
||||
Debian Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A> <A HREF="http://www.debian.org/">http://www.debian.org/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000014.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000017.html">[mono-packagers] Bugzilla Keyword: downstream
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#15">[ date ]</a>
|
||||
<a href="thread.html#15">[ thread ]</a>
|
||||
<a href="subject.html#15">[ subject ]</a>
|
||||
<a href="author.html#15">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,66 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] RC4 is 2.0 Final
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20RC4%20is%202.0%20Final&In-Reply-To=1223232876.30801.18.camel%40PB3.Linux">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000010.html">
|
||||
<LINK REL="Next" HREF="000009.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] RC4 is 2.0 Final</H1>
|
||||
<B>Zoltan Varga</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20RC4%20is%202.0%20Final&In-Reply-To=1223232876.30801.18.camel%40PB3.Linux"
|
||||
TITLE="[mono-packagers] RC4 is 2.0 Final">vargaz at gmail.com
|
||||
</A><BR>
|
||||
<I>Wed Oct 8 04:53:17 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000010.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000009.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#16">[ date ]</a>
|
||||
<a href="thread.html#16">[ thread ]</a>
|
||||
<a href="subject.html#16">[ subject ]</a>
|
||||
<a href="author.html#16">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i>
|
||||
</I>><i> For fedora, we're running off the 2.0 branch with some additional
|
||||
</I>><i> patches, namely (*) indicates Fedora patch for our systems
|
||||
</I>><i>
|
||||
</I>><i> (*) selinux-ia64
|
||||
</I>
|
||||
This has been checked in into SVN HEAD and the 2.0 branch.
|
||||
|
||||
Zoltan
|
||||
</PRE>
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000010.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000009.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#16">[ date ]</a>
|
||||
<a href="thread.html#16">[ thread ]</a>
|
||||
<a href="subject.html#16">[ subject ]</a>
|
||||
<a href="author.html#16">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,69 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Bugzilla Keyword: downstream
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Bugzilla%20Keyword%3A%20downstream&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000015.html">
|
||||
<LINK REL="Next" HREF="000018.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Bugzilla Keyword: downstream</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Bugzilla%20Keyword%3A%20downstream&In-Reply-To="
|
||||
TITLE="[mono-packagers] Bugzilla Keyword: downstream">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Wed Oct 8 12:29:34 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000015.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000018.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#17">[ date ]</a>
|
||||
<a href="thread.html#17">[ thread ]</a>
|
||||
<a href="subject.html#17">[ subject ]</a>
|
||||
<a href="author.html#17">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hello Packagers!
|
||||
|
||||
We had the Novell Bugzilla team add us a keyword you can add to your bug reports. The keyword is "downstream" and the intended meaning is that the bug has a patch attached to it and that this patch is already applied downstream somewhere. There should be a "Keywords" field on the bug report page.
|
||||
|
||||
We recognize that downstream patches are particularly urgent because upstreaming them saves you grief on the next release and an incorrect downstream patch could cause problems.
|
||||
|
||||
I will personally check the list of bugs having the "downstream" keyword at least weekly and bug people to get them reviewed (and improved if needed). Please don't file patches that are specific to your distro, of course. If you backport a patch from trunk then it might be prudent to file that, though, as there are sometimes problems with backports. Patches from the proper branch are probably okay. Use your own judgement there.
|
||||
|
||||
If there are specific issues you're patching for that are distro-specific (like prefix/lib vs. libdir) we can discuss those here and I will try to get us understanding eachother at least and maybe our policy or yours could change as a result.
|
||||
|
||||
Hope this helps,
|
||||
Andrew Jorgensen
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000015.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000018.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#17">[ date ]</a>
|
||||
<a href="thread.html#17">[ thread ]</a>
|
||||
<a href="subject.html#17">[ subject ]</a>
|
||||
<a href="author.html#17">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,91 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Moonlight for Debian - packaging report
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Moonlight%20for%20Debian%20-%20packaging%20report&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000017.html">
|
||||
<LINK REL="Next" HREF="000019.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Moonlight for Debian - packaging report</H1>
|
||||
<B>Alan McGovern</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Moonlight%20for%20Debian%20-%20packaging%20report&In-Reply-To="
|
||||
TITLE="[mono-packagers] Moonlight for Debian - packaging report">alan.mcgovern at gmail.com
|
||||
</A><BR>
|
||||
<I>Thu Oct 9 12:39:52 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000017.html">[mono-packagers] Bugzilla Keyword: downstream
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000019.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#18">[ date ]</a>
|
||||
<a href="thread.html#18">[ thread ]</a>
|
||||
<a href="subject.html#18">[ subject ]</a>
|
||||
<a href="author.html#18">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hey,
|
||||
|
||||
Just an update:
|
||||
|
||||
== Source Issues ==
|
||||
=== Missing LICENSE ===
|
||||
Moonlight 0.8.1
|
||||
(<A HREF="http://ftp.novell.com/pub/mono/sources/moon/moon-0.8.1.tar.bz2">http://ftp.novell.com/pub/mono/sources/moon/moon-0.8.1.tar.bz2</A>) is
|
||||
missing a LICENSE file.
|
||||
|
||||
This should be included in the build now.
|
||||
|
||||
=== Extra binary DLLs ===
|
||||
Moonlight 0.8.1 contains two binary DLLs:
|
||||
+ ./test/harness/test-runner/NDesk.Options.dll
|
||||
+ ./test/harness/test-runner/MySql.Data.dll
|
||||
|
||||
These have been removed from svn.
|
||||
|
||||
=== Silverlight.js ===
|
||||
Moonlight 0.8.1 contains four copies of an unmodifiable Silverlight.js:
|
||||
+ ./test/xaml/Silverlight.js
|
||||
+ ./test/xaml/clock/Silverlight.js
|
||||
+ ./test/xaml/enums/Silverlight.js
|
||||
+ ./test/xaml/fullscreen/Silverlight.js
|
||||
|
||||
These have been replaced with a newer version which is licensed under MS-PL.
|
||||
|
||||
I'm not sure what the status of the rpath and linking issues are. I'm sure
|
||||
someone will reply when something happens regarding those.
|
||||
|
||||
Alan.
|
||||
-------------- next part --------------
|
||||
An HTML attachment was scrubbed...
|
||||
URL: <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081009/fe03db59/attachment.html">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081009/fe03db59/attachment.html</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000017.html">[mono-packagers] Bugzilla Keyword: downstream
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000019.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#18">[ date ]</a>
|
||||
<a href="thread.html#18">[ thread ]</a>
|
||||
<a href="subject.html#18">[ subject ]</a>
|
||||
<a href="author.html#18">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,148 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] monodoc & mcs/mono module merging
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000018.html">
|
||||
<LINK REL="Next" HREF="000020.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] monodoc & mcs/mono module merging</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To="
|
||||
TITLE="[mono-packagers] monodoc & mcs/mono module merging">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Fri Oct 17 21:10:38 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000018.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000020.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#19">[ date ]</a>
|
||||
<a href="thread.html#19">[ thread ]</a>
|
||||
<a href="subject.html#19">[ subject ]</a>
|
||||
<a href="author.html#19">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>This is a heads-up that the monodoc & mcs modules are merging for the
|
||||
Mono 2.2 release.
|
||||
|
||||
Why?
|
||||
|
||||
The largest reason is so that documentation is closer to the source, in
|
||||
the hopes that someone other than me will actually update the
|
||||
documentation stubs and write documentation for the class libraries.
|
||||
(This may be in vain, but I can hope, can't I?)
|
||||
|
||||
Another reason is that some class library source I've seen makes use of
|
||||
C#'s XML documentation features, and having the documentation in the
|
||||
same module as the source code should simplify importing this
|
||||
documentation.
|
||||
|
||||
(I would enable XML documentation importing now, but for mscorlib.dll it
|
||||
drops a fair bit of the existing docs...)
|
||||
|
||||
|
||||
How?
|
||||
|
||||
Files and directories from the monodoc svn module were `svn copy`d into
|
||||
the mcs and mono modules, so full file history should be preserved.
|
||||
This includes:
|
||||
|
||||
* monodoc/class/ASSEMBLY -> mcs/class/ASSEMBLY/Documentation.
|
||||
* monodoc/ecma334 -> mcs/docs/ecma334
|
||||
* monodoc/engine -> mcs/tools/monodoc
|
||||
* monodoc/man  -> mono/man
|
||||
* monodoc/scripts  -> mono/scripts
|
||||
* monodoc/tools/*  -> mcs/tools/mdoc.
|
||||
|
||||
The monodoc module hasn't gone (though we may remove it; no ETA), so it
|
||||
can still be referred to.
|
||||
|
||||
The mcs Makefiles have gained a new `doc-update` target, which when run
|
||||
will update the documentation stubs within the Documentation/en
|
||||
directory using mdoc. Running `doc-update` at the mcs toplevel will
|
||||
update the documentation stubs for all libraries within mcs (where
|
||||
"library" is defined as "anything including library.make" in Makefile).
|
||||
|
||||
The doc-update target is NOT currently run automatically by the build
|
||||
system. It is up to those wishing to update the documentation to run
|
||||
this target. (This decision may be revisited in the future; I just
|
||||
didn't think it a good idea to have several files changed whenever a
|
||||
library was built, increasing the amount of "noise" developers need to
|
||||
sort through before committing...)
|
||||
|
||||
The mcs/docs directory assembles the Documentation directories
|
||||
into .tree and .zip files for use by monodoc, and installs them into the
|
||||
same location these files have always been: $prefix/lib/monodoc/sources.
|
||||
|
||||
mcs now contains and will build and install the documentation-related
|
||||
tools that were in the monodoc module, such as mdoc, monodoc.dll, mod,
|
||||
etc.
|
||||
|
||||
In terms of packaging, I *hope* that very little will change,
|
||||
big-picture wise. For example, mono-core.spec already creates 18
|
||||
packages, so it should be possible to create a new %package which
|
||||
contains the same files as the previous monodoc package...[0]
|
||||
|
||||
|
||||
Related issues:
|
||||
|
||||
Many of the monodoc/tools and monodoc/engine programs, which used to be
|
||||
separate, have been bundled together into the mdoc program. (mdoc was
|
||||
introduced in Mono 2.0, but it was just a wrapper for the other apps.)
|
||||
To maintain compatibility, I'll be writing shell scripts which convert
|
||||
the previous command-lines to mdoc command lines. This will impact the
|
||||
commands: mdassembler, mdvalidater, monodocer, monodocs2html,
|
||||
monodocs2slashdoc.
|
||||
|
||||
I would like to remove the commands mdcs2ecma and mdnormalizer, as
|
||||
mdcs2ecma hasn't been maintained in eons (and monodocer/mdoc already has
|
||||
Microsoft XML documentation import support), and mdnormalizer seems
|
||||
~pointless (xmllint, anyone?).
|
||||
|
||||
|
||||
Unanswered Questions:
|
||||
|
||||
What should be done about monodoc/engine/web, the ASP.NET frontend to
|
||||
monodoc documentation? I don't believe that it's actually packaged, nor
|
||||
do I know of anyone using it except for <A HREF="http://go-mono.com/docs,">http://go-mono.com/docs,</A> but if
|
||||
we want to remove the monodoc module we'll need to move it _somewhere_
|
||||
(standalone svn module?).
|
||||
|
||||
|
||||
- Jon
|
||||
|
||||
[0] Famous Last Words (TM)
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000018.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000020.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#19">[ date ]</a>
|
||||
<a href="thread.html#19">[ thread ]</a>
|
||||
<a href="subject.html#19">[ subject ]</a>
|
||||
<a href="author.html#19">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,75 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] monodoc & mcs/mono module merging
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=1224292239.6192.56.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000019.html">
|
||||
<LINK REL="Next" HREF="000021.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] monodoc & mcs/mono module merging</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=1224292239.6192.56.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] monodoc & mcs/mono module merging">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Sat Oct 18 05:39:17 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000019.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000021.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#20">[ date ]</a>
|
||||
<a href="thread.html#20">[ thread ]</a>
|
||||
<a href="subject.html#20">[ subject ]</a>
|
||||
<a href="author.html#20">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i> This is a heads-up that the monodoc & mcs modules are merging for the
|
||||
</I>><i> Mono 2.2 release.
|
||||
</I>
|
||||
Is there an eta on this release?
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081018/270f8c14/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081018/270f8c14/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000019.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000021.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#20">[ date ]</a>
|
||||
<a href="thread.html#20">[ thread ]</a>
|
||||
<a href="subject.html#20">[ subject ]</a>
|
||||
<a href="author.html#20">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,102 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] monodoc & mcs/mono module merging
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=1224292239.6192.56.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000020.html">
|
||||
<LINK REL="Next" HREF="000022.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] monodoc & mcs/mono module merging</H1>
|
||||
<B>Mirco Bauer</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=1224292239.6192.56.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] monodoc & mcs/mono module merging">meebey at debian.org
|
||||
</A><BR>
|
||||
<I>Sat Oct 18 07:10:33 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000020.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000022.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#21">[ date ]</a>
|
||||
<a href="thread.html#21">[ thread ]</a>
|
||||
<a href="subject.html#21">[ subject ]</a>
|
||||
<a href="author.html#21">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Fri, 17 Oct 2008 21:10:38 -0400
|
||||
Jonathan Pryor <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">jonpryor at vt.edu</A>> wrote:
|
||||
|
||||
><i> > Unanswered Questions:
|
||||
</I>><i>
|
||||
</I>><i> What should be done about monodoc/engine/web, the ASP.NET frontend to
|
||||
</I>><i> monodoc documentation? I don't believe that it's actually packaged,
|
||||
</I>><i> nor do I know of anyone using it except for <A HREF="http://go-mono.com/docs,">http://go-mono.com/docs,</A>
|
||||
</I>
|
||||
Debian and thus Ubuntu ship the web-frontend of monodoc:
|
||||
<A HREF="http://packages.debian.org/search?keywords=monodoc-http">http://packages.debian.org/search?keywords=monodoc-http</A>
|
||||
|
||||
And according to popcon 108 installs of it are counted:
|
||||
<A HREF="http://qa.debian.org/popcon.php?package=monodoc">http://qa.debian.org/popcon.php?package=monodoc</A>
|
||||
|
||||
><i> but if we want to remove the monodoc module we'll need to move it
|
||||
</I>><i> _somewhere_ (standalone svn module?).
|
||||
</I>
|
||||
I see the point moving the documentation files to mcs, but why the
|
||||
tools too? IMHO the monodoc tarball should provide only the
|
||||
documentation framework, and mono (mcs) would then ship the actual
|
||||
documentation... Most library packages in debian ship monodoc manual
|
||||
packages:
|
||||
<A HREF="http://packages.debian.org/search?searchon=names&keywords=monodoc+manual">http://packages.debian.org/search?searchon=names&keywords=monodoc+manual</A>
|
||||
|
||||
But of course a circular dependency must be prevented between mono,
|
||||
xsp and monodoc... one of the reasons the gtk# frontend was moved to
|
||||
mono-tools and gtk# docs to gtk-sharp-2.0...
|
||||
|
||||
Apropros monodoc, in debian we are working on a better way (packaging
|
||||
wise) to integrate documentation from non-Mono projects in monodoc:
|
||||
<A HREF="http://wiki.debian.org/Teams/DebianMonoGroup/MonodocIntegration">http://wiki.debian.org/Teams/DebianMonoGroup/MonodocIntegration</A>
|
||||
|
||||
><i> - Jon
|
||||
</I>><i>
|
||||
</I>
|
||||
--
|
||||
Regards,
|
||||
|
||||
Mirco 'meebey' Bauer
|
||||
|
||||
PGP-Key ID: 0xEEF946C8
|
||||
|
||||
FOSS Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at meebey.net</A> <A HREF="http://www.meebey.net/">http://www.meebey.net/</A>
|
||||
PEAR Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at php.net</A> <A HREF="http://pear.php.net/">http://pear.php.net/</A>
|
||||
Debian Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A> <A HREF="http://www.debian.org/">http://www.debian.org/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000020.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000022.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#21">[ date ]</a>
|
||||
<a href="thread.html#21">[ thread ]</a>
|
||||
<a href="subject.html#21">[ subject ]</a>
|
||||
<a href="author.html#21">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,198 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] monodoc & mcs/mono module merging
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=20081018131033.5ef04914%40redbull.qnetp.net">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000021.html">
|
||||
<LINK REL="Next" HREF="000026.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] monodoc & mcs/mono module merging</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=20081018131033.5ef04914%40redbull.qnetp.net"
|
||||
TITLE="[mono-packagers] monodoc & mcs/mono module merging">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Sun Oct 19 10:20:14 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000021.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000026.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#22">[ date ]</a>
|
||||
<a href="thread.html#22">[ thread ]</a>
|
||||
<a href="subject.html#22">[ subject ]</a>
|
||||
<a href="author.html#22">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Sat, 2008-10-18 at 13:10 +0200, Mirco Bauer wrote:
|
||||
><i> On Fri, 17 Oct 2008 21:10:38 -0400
|
||||
</I>><i> Jonathan Pryor <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">jonpryor at vt.edu</A>> wrote:
|
||||
</I>><i>
|
||||
</I>><i> > > Unanswered Questions:
|
||||
</I>><i> >
|
||||
</I>><i> > What should be done about monodoc/engine/web, the ASP.NET frontend to
|
||||
</I>><i> > monodoc documentation? I don't believe that it's actually packaged,
|
||||
</I>><i> > nor do I know of anyone using it except for <A HREF="http://go-mono.com/docs,">http://go-mono.com/docs,</A>
|
||||
</I>><i>
|
||||
</I>><i> Debian and thus Ubuntu ship the web-frontend of monodoc:
|
||||
</I>><i> <A HREF="http://packages.debian.org/search?keywords=monodoc-http">http://packages.debian.org/search?keywords=monodoc-http</A>
|
||||
</I>><i>
|
||||
</I>><i> And according to popcon 108 installs of it are counted:
|
||||
</I>><i> <A HREF="http://qa.debian.org/popcon.php?package=monodoc">http://qa.debian.org/popcon.php?package=monodoc</A>
|
||||
</I>
|
||||
Wow, it is being used. Incredible.
|
||||
|
||||
So, there are three solutions:
|
||||
|
||||
1. Move the ASP.NET web-frontend into mcs/tools as well.
|
||||
2. Keep it in monodoc, and have it be the _only_ thing packaged from it.
|
||||
3. Move it to a new svn module.
|
||||
|
||||
I'm leaning toward (1)...
|
||||
|
||||
><i> I see the point moving the documentation files to mcs, but why the
|
||||
</I>><i> tools too? IMHO the monodoc tarball should provide only the
|
||||
</I>><i> documentation framework, and mono (mcs) would then ship the actual
|
||||
</I>><i> documentation... Most library packages in debian ship monodoc manual
|
||||
</I>><i> packages:
|
||||
</I>><i> <A HREF="http://packages.debian.org/search?searchon=names&keywords=monodoc+manual">http://packages.debian.org/search?searchon=names&keywords=monodoc+manual</A>
|
||||
</I>><i>
|
||||
</I>><i> But of course a circular dependency must be prevented between mono,
|
||||
</I>><i> xsp and monodoc... one of the reasons the gtk# frontend was moved to
|
||||
</I>><i> mono-tools and gtk# docs to gtk-sharp-2.0...
|
||||
</I>
|
||||
Exactly. It doesn't make a whole lot of sense to include documentation
|
||||
within mcs, but provide the tools to update that documentation in
|
||||
monodoc -- mcs would then depend upon monodoc for doc update and
|
||||
assembling purposes.
|
||||
|
||||
This is doubly problematic for packaging: if we kept the tools in
|
||||
monodoc, then to build the monodoc package you would *require* a
|
||||
parallel mcs checkout. (Technically this is already necessary so that
|
||||
monodoc can use the mcs/errors directory for error examples, but iirc
|
||||
this isn't an ideal situation, and I don't think anyone wants to make it
|
||||
"worse" by also depending upon mcs/class/*/Documentation in addition to
|
||||
mcs/errors...)
|
||||
|
||||
So overall I think this is an improvement -- building monodoc used to
|
||||
require parallel mcs & mono directories (to find mcs/errors and mono/man
|
||||
for documentation inclusion), and by moving these into mcs it seems we
|
||||
simplify packaging as well (no such silly requirements, except that mcs
|
||||
& mono be checked out at the same time, which has been a requirement
|
||||
since the beginning...)
|
||||
|
||||
><i> Apropros monodoc, in debian we are working on a better way (packaging
|
||||
</I>><i> wise) to integrate documentation from non-Mono projects in monodoc:
|
||||
</I>><i> <A HREF="http://wiki.debian.org/Teams/DebianMonoGroup/MonodocIntegration">http://wiki.debian.org/Teams/DebianMonoGroup/MonodocIntegration</A>
|
||||
</I>
|
||||
Why not discuss this on mono-docs-list? :-)
|
||||
|
||||
The easy, flippant answer for monodoc integration is that all "3rd
|
||||
party" documentation should be placed under the "Various" node, and then
|
||||
you don't need to worry about anything, as monodoc.xml doesn't need
|
||||
modification, etc.
|
||||
|
||||
Though I will admit that isn't an ideal solution, it's just an easy one.
|
||||
|
||||
Reading the MonodocIntegration wiki, one potential problem with the
|
||||
*.installmonodoc format is the [PARENT] entry -- what should happen if
|
||||
the specified parent node isn't present (because the PARENT node is from
|
||||
an uninstalled *.installmonodoc file)?
|
||||
|
||||
I think a better strategy would be to make PARENT a "node path" instead,
|
||||
e.g. "/Various/NUnit Libraries", which would bypass the whole "PARENT
|
||||
node doesn't exist" problem (as it could always be created automatically
|
||||
from the path).
|
||||
|
||||
But why have a *.installmonodoc file and $libdir/monodoc/manuals.d at
|
||||
all? Why not have the current requirements -- that all files must be
|
||||
placed in $libdir/monodoc/sources -- and instead extend the
|
||||
*.source /monodoc/source/@path attribute semantics so that instead of
|
||||
referring to nodes "by name" it can instead hold a labeled path (as
|
||||
suggested above for PARENT). The semantic choice between node-name and
|
||||
Labeled path could be based on whether @path starts with a '/'.
|
||||
|
||||
Which brings us to the final question: is allowing external
|
||||
documentation teams to specify their documentation location (within the
|
||||
GUI tree) a good idea at all? The possible problem is that there won't
|
||||
be any "structure" to the documentation, as docs could be placed
|
||||
anywhere/everywhere within the tree view, potentially making it more
|
||||
difficult to find things.
|
||||
|
||||
Arguably we're there already -- why do we need Mono Libraries, Gnome
|
||||
Libraries, and Novell Libraries as toplevel nodes? And who is going to
|
||||
think to look under Various for the NUnit docs?
|
||||
|
||||
So perhaps instead of making the tree uber-extensible, we should instead
|
||||
rethink the treeview so that we can keep things as they are --
|
||||
monodoc.xml is the sole source of the toplevel nodes in the treeview --
|
||||
but 3rd party docs have "sensible" places to insert themselves without
|
||||
inviting a "tragedy of the commons" scenario, in which the resulting
|
||||
tree view is effectively unstructured as every project decides that
|
||||
they're important enough to be toplevel nodes...
|
||||
|
||||
So perhaps this structure would be a good start:
|
||||
|
||||
- Libraries
|
||||
- Base Class Library
|
||||
- [Namespace List -- System, etc.]
|
||||
- Gnome Libraries
|
||||
- Mono Libraries
|
||||
- Mozilla Libraries
|
||||
- ...
|
||||
- Languages
|
||||
- C#
|
||||
- C# Language Specification
|
||||
- C# Error Reference
|
||||
- [ Nemerle, Boo, etc. ]
|
||||
- Testing
|
||||
- NUnit
|
||||
- [ MbUnit, etc. ]
|
||||
- Programs [ or Tools? ]
|
||||
- MonoDevelop IDE
|
||||
- Mono Utilities
|
||||
- [man pages]
|
||||
|
||||
The point being that if we can make the toplevel nodes sufficiently high
|
||||
level, we (hopefully) won't need 3rd parties to be able to place nodes
|
||||
"anywhere", as there is already a well-designed place for them to insert
|
||||
themselves.
|
||||
|
||||
And if someone wants/needs a new node to insert themselves under, then
|
||||
they can bring it up on mono-docs-list and we can discuss the
|
||||
appropriate place to insert themselves or create a new node for them.
|
||||
|
||||
- Jon
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000021.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000026.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#22">[ date ]</a>
|
||||
<a href="thread.html#22">[ thread ]</a>
|
||||
<a href="subject.html#22">[ subject ]</a>
|
||||
<a href="author.html#22">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,190 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Startup%20Scripts%20Inconsistency%20in%20Mono%202.0&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000037.html">
|
||||
<LINK REL="Next" HREF="000024.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Startup Scripts Inconsistency in Mono 2.0</H1>
|
||||
<B>Mirco Bauer</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Startup%20Scripts%20Inconsistency%20in%20Mono%202.0&In-Reply-To="
|
||||
TITLE="[mono-packagers] Startup Scripts Inconsistency in Mono 2.0">meebey at debian.org
|
||||
</A><BR>
|
||||
<I>Sun Oct 19 11:00:40 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000037.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000024.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#23">[ date ]</a>
|
||||
<a href="thread.html#23">[ thread ]</a>
|
||||
<a href="subject.html#23">[ subject ]</a>
|
||||
<a href="author.html#23">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
in Mono 2.0 I noticed a serious inconsistency in the startup scripts.
|
||||
This makes is very difficult to package it correctly, as I am splitting
|
||||
applications that target the 1.0 and 2.0 runtime.
|
||||
|
||||
It seems that most scripts without a version number are now call the 2.0
|
||||
version instead of the 1.0 version.
|
||||
|
||||
I see major issues with this though as there are many applications that rely
|
||||
on this scripts during the build, and suddenly the helper tools start using
|
||||
the 2.0 profile and not 1.0 like they did before.
|
||||
|
||||
As example if an application builds using mcs and al, al is now 2.0 while
|
||||
mcs (as expected) 1.0....
|
||||
|
||||
IMHO all development tools should ship 2 flavors (1.0 and 2.0) with 2 scripts
|
||||
(one for 1.0 and one for 2.0) and a default script that either calls 1.0 for
|
||||
_all_ scripts or 2.0, but not a mix between of that!
|
||||
|
||||
This is not only a build issue but also a packaging issue, as files shipped
|
||||
in packages (at least for debian) are not allowed to overwrite files of other
|
||||
packages (if not explicitly allowed). Thus making /usr/bin/al suddenly use /usr/lib/mono/2.0/al.exe
|
||||
means the script has to be moved from mono-1.0-devel to mono-2.0-devel and existing
|
||||
source packages in debian will now break as they have a build-dependency on
|
||||
mono-1.0-devel and not mono-2.0-devel.
|
||||
|
||||
I am stopping packaging Mono 2.0 for Debian because of this issue, as regardless
|
||||
of what the solution will be, moving things forth and back will make packaging
|
||||
error prone, cause unexpected corner cases and needlessly complicated.
|
||||
|
||||
So please lets find a solution that is a) consistent and b) back-wards compatible!
|
||||
(compared to < 2.0 of course)
|
||||
|
||||
Here a list of the scripts and which version they start:
|
||||
al1:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/al.exe "$@"
|
||||
al2:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/al.exe "$@"
|
||||
al:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/al.exe "$@"
|
||||
|
||||
al was changed to 2.0
|
||||
|
||||
gacutil2:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/gacutil.exe "$@"
|
||||
gacutil:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/gacutil.exe "$@"
|
||||
|
||||
gacutil was not changed to 2.0? and no gacutil1 script?
|
||||
|
||||
genxs1:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/genxs.exe "$@"
|
||||
genxs2:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/genxs.exe "$@"
|
||||
genxs:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/genxs.exe "$@"
|
||||
|
||||
ilasm1:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/ilasm.exe "$@"
|
||||
ilasm2:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/ilasm.exe "$@"
|
||||
ilasm:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/ilasm.exe "$@"
|
||||
|
||||
ilasm was changed to 2.0
|
||||
|
||||
mcs1:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/mcs.exe "$@"
|
||||
mcs:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/mcs.exe "$@"
|
||||
|
||||
mcs1? what eh? :)
|
||||
|
||||
mkbundle1:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/mkbundle.exe "$@"
|
||||
mkbundle2:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/mkbundle.exe "$@"
|
||||
mkbundle:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/mkbundle.exe "$@"
|
||||
|
||||
mkbundle was changed to 2.0
|
||||
|
||||
mono-api-diff:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/mono-api-diff.exe "$@"
|
||||
|
||||
no 1 nor 2?
|
||||
|
||||
mono-api-info1:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/mono-api-info.exe "$@"
|
||||
mono-api-info2:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/mono-api-info.exe "$@"
|
||||
mono-api-info:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/mono-api-info.exe "$@"
|
||||
|
||||
mono-api-info was changed to 2.0
|
||||
|
||||
mono-service2: exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/mono-service.exe $args
|
||||
mono-service: exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/mono-service.exe $args
|
||||
|
||||
mono-service is still 1.0, no mono-service1 script?
|
||||
|
||||
monolinker:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/monolinker.exe "$@"
|
||||
|
||||
no monolinker(1|2) and still 1.0?
|
||||
|
||||
monop1:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/monop.exe "$@"
|
||||
monop2:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/monop.exe "$@"
|
||||
monop:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/monop.exe "$@"
|
||||
|
||||
nunit-console2:exec /usr/bin/mono --debug $MONO_OPTIONS /usr/lib/mono/2.0/nunit-console.exe "$@"
|
||||
nunit-console:exec /usr/bin/mono --debug $MONO_OPTIONS /usr/lib/mono/1.0/nunit-console.exe "$@"
|
||||
|
||||
resgen1:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/resgen.exe "$@"
|
||||
resgen2:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/resgen.exe "$@"
|
||||
resgen:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/resgen.exe "$@"
|
||||
|
||||
signcode:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/signcode.exe "$@"
|
||||
|
||||
sn:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/sn.exe "$@"
|
||||
|
||||
no sn(1|2) and still 1.0?
|
||||
|
||||
wsdl1:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/wsdl.exe "$@"
|
||||
wsdl2:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/wsdl.exe "$@"
|
||||
wsdl:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/wsdl.exe "$@"
|
||||
|
||||
wsdsl was changed to 2.0
|
||||
|
||||
xbuild:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/xbuild.exe "$@"
|
||||
|
||||
well this is 2.0-only app, so nothing to fix.
|
||||
|
||||
xsd2:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/2.0/xsd.exe "$@"
|
||||
xsd:exec /usr/bin/mono $MONO_OPTIONS /usr/lib/mono/1.0/xsd.exe "$@"
|
||||
|
||||
no xsd1 and xsd still 1.0?
|
||||
|
||||
--
|
||||
Regards,
|
||||
|
||||
Mirco 'meebey' Bauer
|
||||
|
||||
PGP-Key ID: 0xEEF946C8
|
||||
|
||||
FOSS Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at meebey.net</A> <A HREF="http://www.meebey.net/">http://www.meebey.net/</A>
|
||||
PEAR Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at php.net</A> <A HREF="http://pear.php.net/">http://pear.php.net/</A>
|
||||
Debian Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A> <A HREF="http://www.debian.org/">http://www.debian.org/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000037.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000024.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#23">[ date ]</a>
|
||||
<a href="thread.html#23">[ thread ]</a>
|
||||
<a href="subject.html#23">[ subject ]</a>
|
||||
<a href="author.html#23">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,177 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Startup%20Scripts%20Inconsistency%20in%20Mono%202.0&In-Reply-To=20081019170040.44ff8672%40redbull.qnetp.net">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000023.html">
|
||||
<LINK REL="Next" HREF="000025.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Startup Scripts Inconsistency in Mono 2.0</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Startup%20Scripts%20Inconsistency%20in%20Mono%202.0&In-Reply-To=20081019170040.44ff8672%40redbull.qnetp.net"
|
||||
TITLE="[mono-packagers] Startup Scripts Inconsistency in Mono 2.0">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Sun Oct 19 16:47:10 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000023.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000025.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#24">[ date ]</a>
|
||||
<a href="thread.html#24">[ thread ]</a>
|
||||
<a href="subject.html#24">[ subject ]</a>
|
||||
<a href="author.html#24">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Sun, 2008-10-19 at 17:00 +0200, Mirco Bauer wrote:
|
||||
><i> in Mono 2.0 I noticed a serious inconsistency in the startup scripts.
|
||||
</I>><i> This makes is very difficult to package it correctly, as I am splitting
|
||||
</I>><i> applications that target the 1.0 and 2.0 runtime.
|
||||
</I>
|
||||
Perhaps unsurprisingly, I don't consider this to be a serious
|
||||
inconsistency. I consider it a necessary evil to move on and follow
|
||||
convention.
|
||||
|
||||
Ignore Mono for the moment. If I have gcc 3.x and 4.x installed, which
|
||||
version should `gcc` refer to? If I have multiple versions of Java
|
||||
installed, which does `java` refer to (by default)? What about for
|
||||
Python?
|
||||
|
||||
As far as I'm aware, for ~every "platform"/program that allows multiple
|
||||
versions to be installed, the "versionless" program name is always the
|
||||
most recent version of the program.
|
||||
|
||||
Except for Mono. Which makes ~no sense to me. Mono is the exact
|
||||
opposite of ~everyone else -- instead of "opting in" to a *previous*
|
||||
version, you "opt in" to the *current* version. It's ass-backwards.
|
||||
|
||||
Because of things like this, we have for _years_ had people who thought
|
||||
Mono didn't support generics because mcs was restricted to the 1.x
|
||||
profile. Ditto for xsd and everything else. NO ONE thinks to
|
||||
themselves "xsd doesn't support my generics code; perhaps I should use
|
||||
xsd2" (because most of the time they're not going to know xsd2 exists,
|
||||
much less that they should look for it). If we're *lucky*, they'll pop
|
||||
in on IRC and we can tell them what they're doing wrong.
|
||||
|
||||
Except they're not doing anything wrong, *Mono* is doing something
|
||||
wrong, by not following convention.
|
||||
|
||||
Tools should always default to their most recent versions, full stop.
|
||||
Anything else is asking for pain, pain that has been going on for years,
|
||||
and pain that we should stop if at all possible.
|
||||
|
||||
><i> It seems that most scripts without a version number are now call the 2.0
|
||||
</I>><i> version instead of the 1.0 version.
|
||||
</I>><i>
|
||||
</I>><i> I see major issues with this though as there are many applications that rely
|
||||
</I>><i> on this scripts during the build, and suddenly the helper tools start using
|
||||
</I>><i> the 2.0 profile and not 1.0 like they did before.
|
||||
</I>
|
||||
This is a necessary evil in order to fix Mono's broken-ness as described
|
||||
above.
|
||||
|
||||
><i> As example if an application builds using mcs and al, al is now 2.0 while
|
||||
</I>><i> mcs (as expected) 1.0....
|
||||
</I>
|
||||
Which wouldn't be a problem if mcs targeted 1.0 at the same time. :-)
|
||||
|
||||
><i> IMHO all development tools should ship 2 flavors (1.0 and 2.0) with 2 scripts
|
||||
</I>><i> (one for 1.0 and one for 2.0) and a default script that either calls 1.0 for
|
||||
</I>><i> _all_ scripts or 2.0, but not a mix between of that!
|
||||
</I>
|
||||
Agreed, the tools need to be consistent, and (as stated above) they
|
||||
should default to the 2.0 profile in all cases. (And when .NET 4.0
|
||||
comes out -- assuming it requires a different profile -- then the tools
|
||||
should run under the 4.0 profile, etc., etc., such that the tools
|
||||
*always* run under the *current* framework version.)
|
||||
|
||||
><i> This is not only a build issue but also a packaging issue, as files shipped
|
||||
</I>><i> in packages (at least for debian) are not allowed to overwrite files of other
|
||||
</I>><i> packages (if not explicitly allowed). Thus making /usr/bin/al suddenly use /usr/lib/mono/2.0/al.exe
|
||||
</I>><i> means the script has to be moved from mono-1.0-devel to mono-2.0-devel and existing
|
||||
</I>><i> source packages in debian will now break as they have a build-dependency on
|
||||
</I>><i> mono-1.0-devel and not mono-2.0-devel.
|
||||
</I>
|
||||
This is bad.
|
||||
|
||||
However, by that logic there is NO way to support the conventional
|
||||
"unversioned apps default to the most recent version", unless you start
|
||||
introducing alternatives (as with update-alternatives(8), which iirc is
|
||||
how many of the Java packages handle things).
|
||||
|
||||
Which is perhaps what we should be doing, relying on the alternatives
|
||||
infrastructure...
|
||||
|
||||
Thus e.g. mono-1.0-devel would ship al1, and mono-2.0-devel would ship
|
||||
al2, and both would use /etc/alternatives to decide which file `al`
|
||||
refers to.
|
||||
|
||||
Would this break existing packages? Possibly (probably?). But I also
|
||||
don't see how this is any different from what other systems require --
|
||||
e.g. if you depend upon `javac`, which version is that? Java 5.0, or
|
||||
6.0? I don't actually know the packaging answer to that, but I do
|
||||
realize that the scenario already exists, and thus a solution
|
||||
(presumably) already exists, so if at all possible we should follow
|
||||
pre-existing convention.
|
||||
|
||||
><i> So please lets find a solution that is a) consistent and b) back-wards compatible!
|
||||
</I>><i> (compared to < 2.0 of course)
|
||||
</I>
|
||||
Yes, let's find a solution that's consistent. I personally don't care
|
||||
as much about backwards compatibility, because (as mentioned above) the
|
||||
current situation is horribly broken (to "newbies") and inconsistent
|
||||
with everything else. If backward compatibility needs to be broken, so
|
||||
be it, as long as the result is newby-friendly, coherent, and
|
||||
consistent.
|
||||
|
||||
Another point: not all tools _need_ to be listed under multiple
|
||||
profiles. Take mono-shlib-cop, for example, which looks for all
|
||||
DllImport-attribute methods in an assembly and checks that the specified
|
||||
library is actually loadable. Unless you need to run this on
|
||||
mscorlib.dll, it doesn't matter if it's a 2.0-profile app, as it can
|
||||
still load 1.0 assemblies. However, if it were a 1.0-profile app, it
|
||||
could NOT load 2.0 assemblies, so only providing a 2.0 version makes
|
||||
perfect sense. (Except it results in a "movement" of the program from
|
||||
mono-1.0-devel to mono-2.0-devel, but this is a user-friendly change,
|
||||
and I'm not sure how otherwise to handle it...)
|
||||
|
||||
- Jon
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000023.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000025.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#24">[ date ]</a>
|
||||
<a href="thread.html#24">[ thread ]</a>
|
||||
<a href="subject.html#24">[ subject ]</a>
|
||||
<a href="author.html#24">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,167 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Startup%20Scripts%20Inconsistency%20in%20Mono%202.0&In-Reply-To=1224449230.6192.122.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000024.html">
|
||||
<LINK REL="Next" HREF="000027.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Startup Scripts Inconsistency in Mono 2.0</H1>
|
||||
<B>Mirco Bauer</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Startup%20Scripts%20Inconsistency%20in%20Mono%202.0&In-Reply-To=1224449230.6192.122.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] Startup Scripts Inconsistency in Mono 2.0">meebey at debian.org
|
||||
</A><BR>
|
||||
<I>Mon Oct 20 16:27:47 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000024.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000027.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#25">[ date ]</a>
|
||||
<a href="thread.html#25">[ thread ]</a>
|
||||
<a href="subject.html#25">[ subject ]</a>
|
||||
<a href="author.html#25">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Sun, 19 Oct 2008 16:47:10 -0400
|
||||
Jonathan Pryor <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">jonpryor at vt.edu</A>> wrote:
|
||||
|
||||
><i> On Sun, 2008-10-19 at 17:00 +0200, Mirco Bauer wrote:
|
||||
</I>><i> Ignore Mono for the moment. If I have gcc 3.x and 4.x installed,
|
||||
</I>><i> which version should `gcc` refer to? If I have multiple versions of
|
||||
</I>><i> Java installed, which does `java` refer to (by default)? What about
|
||||
</I>><i> for Python?
|
||||
</I>
|
||||
No need to argue here, I am with you.
|
||||
|
||||
><i>
|
||||
</I>><i> Tools should always default to their most recent versions, full stop.
|
||||
</I>><i> Anything else is asking for pain, pain that has been going on for
|
||||
</I>><i> years, and pain that we should stop if at all possible.
|
||||
</I>
|
||||
Yes it should, but it doesn't.
|
||||
|
||||
><i> Agreed, the tools need to be consistent, and (as stated above) they
|
||||
</I>><i> should default to the 2.0 profile in all cases. (And when .NET 4.0
|
||||
</I>><i> comes out -- assuming it requires a different profile -- then the
|
||||
</I>><i> tools should run under the 4.0 profile, etc., etc., such that the
|
||||
</I>><i> tools *always* run under the *current* framework version.)
|
||||
</I>
|
||||
Yes, then please make this happening!
|
||||
|
||||
One thing that needs to be solved too is the compiler. There is no
|
||||
improvement when an application uses mcs and al at build time making it
|
||||
mixed 1.0 and 2.0 with Mono 2.0.
|
||||
|
||||
Rather we should introduce a compiler default that always points to the
|
||||
latest runtime version, e.g. csc pointing to gmcs. This way developers
|
||||
can use the known tools: csc/al/sn/gacutil and always get them for the
|
||||
latest installed runtime version. That's what I call consistency at
|
||||
least.
|
||||
|
||||
Right now, there is only mcs (1.0), al (2.0), sn (1.0), gacutil (1.0),
|
||||
which is the inconstent mix I am referring to.
|
||||
|
||||
><i> However, by that logic there is NO way to support the conventional
|
||||
</I>><i> "unversioned apps default to the most recent version", unless you
|
||||
</I>><i> start introducing alternatives (as with update-alternatives(8), which
|
||||
</I>><i> iirc is how many of the Java packages handle things).
|
||||
</I>><i>
|
||||
</I>><i> Which is perhaps what we should be doing, relying on the alternatives
|
||||
</I>><i> infrastructure...
|
||||
</I>
|
||||
Well we could (and should) go this route if there is no interest in
|
||||
solving this right in Mono (using symlinks or the "default scripts").
|
||||
|
||||
><i>
|
||||
</I>><i> > So please lets find a solution that is a) consistent and b)
|
||||
</I>><i> > back-wards compatible! (compared to < 2.0 of course)
|
||||
</I>><i>
|
||||
</I>><i> Yes, let's find a solution that's consistent. I personally don't care
|
||||
</I>><i> as much about backwards compatibility, because (as mentioned above)
|
||||
</I>><i> the current situation is horribly broken (to "newbies") and
|
||||
</I>><i> inconsistent with everything else. If backward compatibility needs
|
||||
</I>><i> to be broken, so be it, as long as the result is newby-friendly,
|
||||
</I>><i> coherent, and consistent.
|
||||
</I>
|
||||
I welcome your solution with make all default scripts (without the
|
||||
version number) pointing to the latest runtime version and supply for
|
||||
backwards compatibility and other needs the versioned scripts like foo1
|
||||
and foo2.
|
||||
|
||||
But please make sure that we do the _same_ thing with the compiler else
|
||||
this will not make IMHO anything better.
|
||||
|
||||
I need some final decision for this before I can finish the Debian
|
||||
packages for Mono 2.0, as I have no intention to make the packages ugly
|
||||
(by using Replaces everywhere) because of moving things to a non-final
|
||||
solution.
|
||||
|
||||
><i>
|
||||
</I>><i> Another point: not all tools _need_ to be listed under multiple
|
||||
</I>><i> profiles. Take mono-shlib-cop, for example, which looks for all
|
||||
</I>><i> DllImport-attribute methods in an assembly and checks that the
|
||||
</I>><i> specified library is actually loadable. Unless you need to run this
|
||||
</I>><i> on mscorlib.dll, it doesn't matter if it's a 2.0-profile app, as it
|
||||
</I>><i> can still load 1.0 assemblies. However, if it were a 1.0-profile
|
||||
</I>><i> app, it could NOT load 2.0 assemblies, so only providing a 2.0
|
||||
</I>><i> version makes perfect sense. (Except it results in a "movement" of
|
||||
</I>><i> the program from mono-1.0-devel to mono-2.0-devel, but this is a
|
||||
</I>><i> user-friendly change, and I'm not sure how otherwise to handle it...)
|
||||
</I>
|
||||
ACK, not all tools really need a 1.0 and a 2.0 version, anything that
|
||||
reads or produces something (like assemblies) should though, as it might
|
||||
be incompatible otherwise.
|
||||
|
||||
><i>
|
||||
</I>><i> - Jon
|
||||
</I>><i>
|
||||
</I>><i>
|
||||
</I>
|
||||
--
|
||||
Regards,
|
||||
|
||||
Mirco 'meebey' Bauer
|
||||
|
||||
PGP-Key ID: 0xEEF946C8
|
||||
|
||||
FOSS Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at meebey.net</A> <A HREF="http://www.meebey.net/">http://www.meebey.net/</A>
|
||||
PEAR Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at php.net</A> <A HREF="http://pear.php.net/">http://pear.php.net/</A>
|
||||
Debian Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A> <A HREF="http://www.debian.org/">http://www.debian.org/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000024.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000027.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#25">[ date ]</a>
|
||||
<a href="thread.html#25">[ thread ]</a>
|
||||
<a href="subject.html#25">[ subject ]</a>
|
||||
<a href="author.html#25">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,215 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] monodoc & mcs/mono module merging
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=1224426014.6192.95.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000022.html">
|
||||
<LINK REL="Next" HREF="000032.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] monodoc & mcs/mono module merging</H1>
|
||||
<B>Mirco Bauer</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=1224426014.6192.95.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] monodoc & mcs/mono module merging">meebey at debian.org
|
||||
</A><BR>
|
||||
<I>Mon Oct 20 16:44:29 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000022.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000032.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#26">[ date ]</a>
|
||||
<a href="thread.html#26">[ thread ]</a>
|
||||
<a href="subject.html#26">[ subject ]</a>
|
||||
<a href="author.html#26">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Sun, 19 Oct 2008 10:20:14 -0400
|
||||
Jonathan Pryor <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">jonpryor at vt.edu</A>> wrote:
|
||||
|
||||
><i> On Sat, 2008-10-18 at 13:10 +0200, Mirco Bauer wrote:
|
||||
</I>><i> > Debian and thus Ubuntu ship the web-frontend of monodoc:
|
||||
</I>><i> > <A HREF="http://packages.debian.org/search?keywords=monodoc-http">http://packages.debian.org/search?keywords=monodoc-http</A>
|
||||
</I>><i> >
|
||||
</I>><i> > And according to popcon 108 installs of it are counted:
|
||||
</I>><i> > <A HREF="http://qa.debian.org/popcon.php?package=monodoc">http://qa.debian.org/popcon.php?package=monodoc</A>
|
||||
</I>><i>
|
||||
</I>><i> Wow, it is being used. Incredible.
|
||||
</I>
|
||||
Yes! And I like it! :)
|
||||
|
||||
><i>
|
||||
</I>><i> So, there are three solutions:
|
||||
</I>><i>
|
||||
</I>><i> 1. Move the ASP.NET web-frontend into mcs/tools as well.
|
||||
</I>><i> 2. Keep it in monodoc, and have it be the _only_ thing packaged from
|
||||
</I>><i> it. 3. Move it to a new svn module.
|
||||
</I>><i>
|
||||
</I>><i> I'm leaning toward (1)...
|
||||
</I>
|
||||
hm the gtk-frontend lives in mono-tools... maybe put it there?
|
||||
|
||||
><i> So overall I think this is an improvement -- building monodoc used to
|
||||
</I>><i> require parallel mcs & mono directories (to find mcs/errors and
|
||||
</I>><i> mono/man for documentation inclusion), and by moving these into mcs
|
||||
</I>><i> it seems we simplify packaging as well (no such silly requirements,
|
||||
</I>><i> except that mcs & mono be checked out at the same time, which has
|
||||
</I>><i> been a requirement since the beginning...)
|
||||
</I>
|
||||
For downstream packaging is not an issue anyhow, the monodoc ->
|
||||
mono/mcs merge, except that the mono (downstream) source package will
|
||||
become even more complex :-P
|
||||
|
||||
><i>
|
||||
</I>><i> > Apropros monodoc, in debian we are working on a better way
|
||||
</I>><i> > (packaging wise) to integrate documentation from non-Mono projects
|
||||
</I>><i> > in monodoc:
|
||||
</I>><i> > <A HREF="http://wiki.debian.org/Teams/DebianMonoGroup/MonodocIntegration">http://wiki.debian.org/Teams/DebianMonoGroup/MonodocIntegration</A>
|
||||
</I>><i>
|
||||
</I>><i> Why not discuss this on mono-docs-list? :-)
|
||||
</I>
|
||||
We tried to identify the issue first, and like the wiki shows there is
|
||||
an upstream solution path but wasn't followed yet.
|
||||
|
||||
><i>
|
||||
</I>><i> The easy, flippant answer for monodoc integration is that all "3rd
|
||||
</I>><i> party" documentation should be placed under the "Various" node, and
|
||||
</I>><i> then you don't need to worry about anything, as monodoc.xml doesn't
|
||||
</I>><i> need modification, etc.
|
||||
</I>
|
||||
That's we do, we put all libs under Various, but monodoc-browser didnt
|
||||
show them.
|
||||
|
||||
><i>
|
||||
</I>><i> Though I will admit that isn't an ideal solution, it's just an easy
|
||||
</I>><i> one.
|
||||
</I>><i>
|
||||
</I>><i> Reading the MonodocIntegration wiki, one potential problem with the
|
||||
</I>><i> *.installmonodoc format is the [PARENT] entry -- what should happen if
|
||||
</I>><i> the specified parent node isn't present (because the PARENT node is
|
||||
</I>><i> from an uninstalled *.installmonodoc file)?
|
||||
</I>
|
||||
We planned to make PARENT actually a defined list of supported/allowed
|
||||
nodes...
|
||||
|
||||
><i>
|
||||
</I>><i> I think a better strategy would be to make PARENT a "node path"
|
||||
</I>><i> instead, e.g. "/Various/NUnit Libraries", which would bypass the
|
||||
</I>><i> whole "PARENT node doesn't exist" problem (as it could always be
|
||||
</I>><i> created automatically from the path).
|
||||
</I>
|
||||
Hm we tried to keep actual structure stuff out, as it might change
|
||||
upstream one day, and then we should need to patch the generator-tool
|
||||
instead of all source packages using monodoc.
|
||||
|
||||
><i>
|
||||
</I>><i> But why have a *.installmonodoc file and $libdir/monodoc/manuals.d at
|
||||
</I>><i> all? Why not have the current requirements -- that all files must be
|
||||
</I>><i> placed in $libdir/monodoc/sources -- and instead extend the
|
||||
</I>><i> *.source /monodoc/source/@path attribute semantics so that instead of
|
||||
</I>><i> referring to nodes "by name" it can instead hold a labeled path (as
|
||||
</I>><i> suggested above for PARENT). The semantic choice between node-name
|
||||
</I>><i> and Labeled path could be based on whether @path starts with a '/'.
|
||||
</I>
|
||||
Well I am all for a solution that doesn't require any additional
|
||||
handling besides putting the docs in the right place! :) But he had no
|
||||
such solution so we tried to address the short comings of what he have
|
||||
now...
|
||||
|
||||
><i> So perhaps instead of making the tree uber-extensible, we should
|
||||
</I>><i> instead rethink the treeview so that we can keep things as they are --
|
||||
</I>><i> monodoc.xml is the sole source of the toplevel nodes in the treeview
|
||||
</I>><i> -- but 3rd party docs have "sensible" places to insert themselves
|
||||
</I>><i> without inviting a "tragedy of the commons" scenario, in which the
|
||||
</I>><i> resulting tree view is effectively unstructured as every project
|
||||
</I>><i> decides that they're important enough to be toplevel nodes...
|
||||
</I>><i>
|
||||
</I>><i> So perhaps this structure would be a good start:
|
||||
</I>><i>
|
||||
</I>><i> - Libraries
|
||||
</I>><i> - Base Class Library
|
||||
</I>><i> - [Namespace List -- System, etc.]
|
||||
</I>><i> - Gnome Libraries
|
||||
</I>><i> - Mono Libraries
|
||||
</I>><i> - Mozilla Libraries
|
||||
</I>><i> - ...
|
||||
</I>><i> - Languages
|
||||
</I>><i> - C#
|
||||
</I>><i> - C# Language Specification
|
||||
</I>><i> - C# Error Reference
|
||||
</I>><i> - [ Nemerle, Boo, etc. ]
|
||||
</I>><i> - Testing
|
||||
</I>><i> - NUnit
|
||||
</I>><i> - [ MbUnit, etc. ]
|
||||
</I>><i> - Programs [ or Tools? ]
|
||||
</I>><i> - MonoDevelop IDE
|
||||
</I>><i> - Mono Utilities
|
||||
</I>><i> - [man pages]
|
||||
</I>
|
||||
I really like this one!
|
||||
|
||||
Just testing is IMHO unneeded as testing is either a tool or a library
|
||||
(depending which part).
|
||||
|
||||
><i>
|
||||
</I>><i> The point being that if we can make the toplevel nodes sufficiently
|
||||
</I>><i> high level, we (hopefully) won't need 3rd parties to be able to place
|
||||
</I>><i> nodes "anywhere", as there is already a well-designed place for them
|
||||
</I>><i> to insert themselves.
|
||||
</I>
|
||||
Well but where would libfoo go then? in that "- ..." slot?
|
||||
|
||||
><i>
|
||||
</I>><i> And if someone wants/needs a new node to insert themselves under, then
|
||||
</I>><i> they can bring it up on mono-docs-list and we can discuss the
|
||||
</I>><i> appropriate place to insert themselves or create a new node for them.
|
||||
</I>
|
||||
Did you take a list of the monodoc manual packages we ship in debian?
|
||||
most of them have nothing in common....
|
||||
|
||||
><i>
|
||||
</I>><i> - Jon
|
||||
</I>><i>
|
||||
</I>><i>
|
||||
</I>
|
||||
|
||||
--
|
||||
Regards,
|
||||
|
||||
Mirco 'meebey' Bauer
|
||||
|
||||
PGP-Key ID: 0xEEF946C8
|
||||
|
||||
FOSS Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at meebey.net</A> <A HREF="http://www.meebey.net/">http://www.meebey.net/</A>
|
||||
PEAR Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at php.net</A> <A HREF="http://pear.php.net/">http://pear.php.net/</A>
|
||||
Debian Developer <A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">meebey at debian.org</A> <A HREF="http://www.debian.org/">http://www.debian.org/</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000022.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000032.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#26">[ date ]</a>
|
||||
<a href="thread.html#26">[ thread ]</a>
|
||||
<a href="subject.html#26">[ subject ]</a>
|
||||
<a href="author.html#26">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,82 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Disabling moonlight extensions
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Disabling%20moonlight%20extensions&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000025.html">
|
||||
<LINK REL="Next" HREF="000028.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Disabling moonlight extensions</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Disabling%20moonlight%20extensions&In-Reply-To="
|
||||
TITLE="[mono-packagers] Disabling moonlight extensions">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Mon Oct 20 18:38:18 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000025.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000028.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#27">[ date ]</a>
|
||||
<a href="thread.html#27">[ thread ]</a>
|
||||
<a href="subject.html#27">[ subject ]</a>
|
||||
<a href="author.html#27">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
To comply with the Fedora packaging rules, I'm going through
|
||||
applications which may violate the rules.
|
||||
|
||||
MD [1.9] currently ships with support for moonlight. Is there any way to
|
||||
disable this through the configure script or do I have to hack a pile of
|
||||
stuff out?
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081020/55a5c21f/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081020/55a5c21f/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000025.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000028.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#27">[ date ]</a>
|
||||
<a href="thread.html#27">[ thread ]</a>
|
||||
<a href="subject.html#27">[ subject ]</a>
|
||||
<a href="author.html#27">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,80 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Disabling moonlight extensions
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%20Disabling%20moonlight%20extensions&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000027.html">
|
||||
<LINK REL="Next" HREF="000029.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Disabling moonlight extensions</H1>
|
||||
<B>Michael Hutchinson</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%20Disabling%20moonlight%20extensions&In-Reply-To="
|
||||
TITLE="[mono-packagers] Disabling moonlight extensions">m.j.hutchinson at gmail.com
|
||||
</A><BR>
|
||||
<I>Mon Oct 20 19:02:06 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000027.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000029.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#28">[ date ]</a>
|
||||
<a href="thread.html#28">[ thread ]</a>
|
||||
<a href="subject.html#28">[ subject ]</a>
|
||||
<a href="author.html#28">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>><i> MD [1.9] currently ships with support for moonlight. Is there any way to
|
||||
</I>><i> disable this through the configure script or do I have to hack a pile of
|
||||
</I>><i> stuff out?
|
||||
</I>
|
||||
1) MD does not depend on moonlight at all, any more than bash depends on smcs.
|
||||
2) It isn't hard to remove the extension anyway, though removing all
|
||||
references to the 2.1 runtime would be more difficult.
|
||||
3) You should not be shipping 1.9 as stable packages. Preview packages are okay.
|
||||
4) I'm not going to add a configure script option, since it's not a
|
||||
hard dependency.
|
||||
5) In future please cross-post MD questions to the MD list. I don't
|
||||
appreciate having to join yet another list just so that I can answer a
|
||||
question.
|
||||
6) Kneejerk reactions like this help nobody. Please investigate issues
|
||||
like this properly before making huge assumptions.
|
||||
|
||||
--
|
||||
Michael Hutchinson
|
||||
<A HREF="http://mjhutchinson.com">http://mjhutchinson.com</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000027.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000029.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#28">[ date ]</a>
|
||||
<a href="thread.html#28">[ thread ]</a>
|
||||
<a href="subject.html#28">[ subject ]</a>
|
||||
<a href="author.html#28">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,112 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Disabling moonlight extensions
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Disabling%20moonlight%20extensions&In-Reply-To=aec34c770810201602x89c3405i740a8d5ad6db89db%40mail.gmail.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000028.html">
|
||||
<LINK REL="Next" HREF="000030.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Disabling moonlight extensions</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Disabling%20moonlight%20extensions&In-Reply-To=aec34c770810201602x89c3405i740a8d5ad6db89db%40mail.gmail.com"
|
||||
TITLE="[mono-packagers] Disabling moonlight extensions">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Mon Oct 20 19:11:48 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000028.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000030.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#29">[ date ]</a>
|
||||
<a href="thread.html#29">[ thread ]</a>
|
||||
<a href="subject.html#29">[ subject ]</a>
|
||||
<a href="author.html#29">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i> > MD [1.9] currently ships with support for moonlight. Is there any way to
|
||||
</I>><i> > disable this through the configure script or do I have to hack a pile of
|
||||
</I>><i> > stuff out?
|
||||
</I>><i>
|
||||
</I>><i> 1) MD does not depend on moonlight at all, any more than bash depends on smcs.
|
||||
</I>
|
||||
I've not said it does as I know it doesn't. I'm asking if the support
|
||||
for it can be removed through the configure script.
|
||||
|
||||
><i> 2) It isn't hard to remove the extension anyway, though removing all
|
||||
</I>><i> references to the 2.1 runtime would be more difficult.
|
||||
</I>
|
||||
Can you let me know (off list) how to do this?
|
||||
|
||||
><i> 3) You should not be shipping 1.9 as stable packages. Preview packages are okay.
|
||||
</I>
|
||||
It's in Fedora rawhide (unstable packages r us)
|
||||
|
||||
><i> 4) I'm not going to add a configure script option, since it's not a
|
||||
</I>><i> hard dependency.
|
||||
</I>
|
||||
Not a problem.
|
||||
|
||||
><i> 5) In future please cross-post MD questions to the MD list. I don't
|
||||
</I>><i> appreciate having to join yet another list just so that I can answer a
|
||||
</I>><i> question.
|
||||
</I>
|
||||
Will do. I'm sorry, I thought you were on this list anyway.
|
||||
|
||||
><i> 6) Kneejerk reactions like this help nobody. Please investigate issues
|
||||
</I>><i> like this properly before making huge assumptions.
|
||||
</I>
|
||||
Whoa! What knee-jerk reaction are you on about? My questions was can the
|
||||
support be disabled through a script option - I've made no assumptions
|
||||
or anything like that (and for a change not gone into the politics
|
||||
surrounding moonlight and Fedora!).
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/6845b95c/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/6845b95c/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000028.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000030.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#29">[ date ]</a>
|
||||
<a href="thread.html#29">[ thread ]</a>
|
||||
<a href="subject.html#29">[ subject ]</a>
|
||||
<a href="author.html#29">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,77 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Disabling moonlight extensions
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Disabling%20moonlight%20extensions&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000029.html">
|
||||
<LINK REL="Next" HREF="000031.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Disabling moonlight extensions</H1>
|
||||
<B>Lluis Sanchez Gual</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Disabling%20moonlight%20extensions&In-Reply-To="
|
||||
TITLE="[mono-packagers] Disabling moonlight extensions">lluis at novell.com
|
||||
</A><BR>
|
||||
<I>Mon Oct 20 21:56:58 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000029.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000031.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#30">[ date ]</a>
|
||||
<a href="thread.html#30">[ thread ]</a>
|
||||
<a href="subject.html#30">[ subject ]</a>
|
||||
<a href="author.html#30">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>><i> Hi,
|
||||
</I>><i>
|
||||
</I>><i> To comply with the Fedora packaging rules, I'm going through
|
||||
</I>><i> applications which may violate the rules.
|
||||
</I>><i>
|
||||
</I>><i> MD [1.9] currently ships with support for moonlight. Is there any way to
|
||||
</I>><i> disable this through the configure script or do I have to hack a pile of
|
||||
</I>><i> stuff out?
|
||||
</I>
|
||||
Which rule is MD violating? AFAIK, Fedora forbids the inclusion of the
|
||||
Moonlight player, but that's all. The Moonlight add-in that MD provides
|
||||
is obviously not part of the player, it is just a development tool.
|
||||
|
||||
Lluis.
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000029.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000031.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#30">[ date ]</a>
|
||||
<a href="thread.html#30">[ thread ]</a>
|
||||
<a href="subject.html#30">[ subject ]</a>
|
||||
<a href="author.html#30">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,93 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Disabling moonlight extensions
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Disabling%20moonlight%20extensions&In-Reply-To=48FCECB802000040000427FA%40lucius.provo.novell.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000030.html">
|
||||
<LINK REL="Next" HREF="000035.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Disabling moonlight extensions</H1>
|
||||
<B>Andrew Jorgensen</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Disabling%20moonlight%20extensions&In-Reply-To=48FCECB802000040000427FA%40lucius.provo.novell.com"
|
||||
TITLE="[mono-packagers] Disabling moonlight extensions">ajorgensen at novell.com
|
||||
</A><BR>
|
||||
<I>Mon Oct 20 22:40:24 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000030.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000035.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#31">[ date ]</a>
|
||||
<a href="thread.html#31">[ thread ]</a>
|
||||
<a href="subject.html#31">[ subject ]</a>
|
||||
<a href="author.html#31">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Tue, 2008-10-21 at 00:11 +0100, Paul wrote:
|
||||
><i> Whoa! What knee-jerk reaction are you on about? My questions was can the
|
||||
</I>><i> support be disabled through a script option - I've made no assumptions
|
||||
</I>><i> or anything like that (and for a change not gone into the politics
|
||||
</I>><i> surrounding moonlight and Fedora!).
|
||||
</I>
|
||||
Sorry Paul, it's not so much your knee-jerk reaction as it is Fedora's.
|
||||
We're all still a little confused at the lengths Fedora seems to want
|
||||
you to go to to avoid a possible patent violation*. Every time it gets
|
||||
mentioned the confusion is relived.
|
||||
|
||||
For what it's worth we want MS to extend the patent covenant to all
|
||||
users of moonlight regardless of the (re)distributor. It's not exactly
|
||||
up to us though. I do understand Fedora's concern given their goal of
|
||||
being 100% redistributable.
|
||||
|
||||
It might be worth your while to push back a bit on Fedora legal. Tell
|
||||
them what we've told you about how these bits don't actually contain any
|
||||
moonlight bits so there's no real risk. See if they aren't level-headed
|
||||
enough to admit that there's no good reason for you to spin your wheels.
|
||||
I don't think they'll give on moonlight itself unless MS extends the
|
||||
covenant but they might agree with us that stripping stuff out of mono
|
||||
and MD is not needed.
|
||||
|
||||
I could talk to them myself if it would help but I think it will sound
|
||||
better coming from one of their own.
|
||||
|
||||
- Andrew
|
||||
|
||||
* All software carries this risk. All. Software. Ever. Always.
|
||||
Software patents suck.
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000030.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000035.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#31">[ date ]</a>
|
||||
<a href="thread.html#31">[ thread ]</a>
|
||||
<a href="subject.html#31">[ subject ]</a>
|
||||
<a href="author.html#31">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,162 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] monodoc & mcs/mono module merging
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=20081020224429.64bcf4b3%40redbull.qnetp.net">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000026.html">
|
||||
<LINK REL="Next" HREF="000033.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] monodoc & mcs/mono module merging</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=20081020224429.64bcf4b3%40redbull.qnetp.net"
|
||||
TITLE="[mono-packagers] monodoc & mcs/mono module merging">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Mon Oct 20 23:18:11 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000026.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000033.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#32">[ date ]</a>
|
||||
<a href="thread.html#32">[ thread ]</a>
|
||||
<a href="subject.html#32">[ subject ]</a>
|
||||
<a href="author.html#32">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Mon, 2008-10-20 at 22:44 +0200, Mirco Bauer wrote:
|
||||
><i> On Sun, 19 Oct 2008 10:20:14 -0400
|
||||
</I>><i> Jonathan Pryor <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">jonpryor at vt.edu</A>> wrote:
|
||||
</I>><i>
|
||||
</I>><i> > I think a better strategy would be to make PARENT a "node path"
|
||||
</I>><i> > instead, e.g. "/Various/NUnit Libraries", which would bypass the
|
||||
</I>><i> > whole "PARENT node doesn't exist" problem (as it could always be
|
||||
</I>><i> > created automatically from the path).
|
||||
</I>><i>
|
||||
</I>><i> Hm we tried to keep actual structure stuff out, as it might change
|
||||
</I>><i> upstream one day
|
||||
</I>
|
||||
Yes, I see your point. But some amount of structure needs to be
|
||||
necessary so that we can move related things into separate files/nodes,
|
||||
e.g. have cs-errors.zip in a /Languages/C#/Errors node and ecma334.zip
|
||||
in a /Languages/C#/Specification node, without monodoc.xml needing to
|
||||
care about anything below /Languages.
|
||||
|
||||
><i> > So perhaps instead of making the tree uber-extensible, we should
|
||||
</I>><i> > instead rethink the treeview so that we can keep things as they are --
|
||||
</I>><i> > monodoc.xml is the sole source of the toplevel nodes in the treeview
|
||||
</I>><i> > -- but 3rd party docs have "sensible" places to insert themselves
|
||||
</I>><i> > without inviting a "tragedy of the commons" scenario, in which the
|
||||
</I>><i> > resulting tree view is effectively unstructured as every project
|
||||
</I>><i> > decides that they're important enough to be toplevel nodes...
|
||||
</I>><i> >
|
||||
</I>><i> > So perhaps this structure would be a good start:
|
||||
</I>><i> >
|
||||
</I>><i> > - Libraries
|
||||
</I>><i> > - Base Class Library
|
||||
</I>><i> > - [Namespace List -- System, etc.]
|
||||
</I>><i> > - Gnome Libraries
|
||||
</I>><i> > - Mono Libraries
|
||||
</I>><i> > - Mozilla Libraries
|
||||
</I>><i> > - ...
|
||||
</I>><i> > - Languages
|
||||
</I>><i> > - C#
|
||||
</I>><i> > - C# Language Specification
|
||||
</I>><i> > - C# Error Reference
|
||||
</I>><i> > - [ Nemerle, Boo, etc. ]
|
||||
</I>><i> > - Testing
|
||||
</I>><i> > - NUnit
|
||||
</I>><i> > - [ MbUnit, etc. ]
|
||||
</I>><i> > - Programs [ or Tools? ]
|
||||
</I>><i> > - MonoDevelop IDE
|
||||
</I>><i> > - Mono Utilities
|
||||
</I>><i> > - [man pages]
|
||||
</I>><i>
|
||||
</I>><i> I really like this one!
|
||||
</I>
|
||||
Me too, and I managed to pass it by Miguel earlier today and he _didn't_
|
||||
like it. :-(
|
||||
|
||||
His problem: the purpose to monodoc is to document Libraries, not these
|
||||
other "things" (languages, programs), so it "buries" the purpose of
|
||||
monodoc in his opinion.
|
||||
|
||||
Consequently, I'm thinking of a slightly different track: drop Testing
|
||||
and Libraries as top-level nodes (leaving Languages, Programs/Tools, and
|
||||
Various), and make all libraries top-level nodes:
|
||||
|
||||
- Base Class Library
|
||||
- Namespaces [ System, etc. ]
|
||||
- Gnome Libraries
|
||||
- Namespaces [ Gtk, Gnome, etc. ]
|
||||
 - Languages
|
||||
- C#
|
||||
- ...
|
||||
- Mono Libraries
|
||||
- Namespaces [ Mono.Posix, etc. ]
|
||||
- NUnit Libraries
|
||||
- Namespaces [ NUnit.Framework, etc. ]
|
||||
- ...
|
||||
- Tools
|
||||
- Mono Development Tools
|
||||
- Man pages
|
||||
- MonoDevelop IDE
|
||||
- ...
|
||||
- Various
|
||||
|
||||
Every layer should be alphabetized (otherwise you can't find anything).
|
||||
This is slightly less structured, but should still be ~straightforward
|
||||
to implement with the previously suggested /monodoc/node/@parent
|
||||
attribute.
|
||||
|
||||
><i> Well but where would libfoo go then? in that "- ..." slot?
|
||||
</I>
|
||||
If libfoo is a library, then it could provide a /monodoc/node/@prefix
|
||||
attribute with the value of "root" (to create a toplevel node), and
|
||||
insert documentation under that node.
|
||||
|
||||
If it doesn't provide a /monodoc/node element, then the current
|
||||
semantics apply (and the documentation may wind up underneath Various).
|
||||
|
||||
><i> Did you take a list of the monodoc manual packages we ship in debian?
|
||||
</I>><i> most of them have nothing in common....
|
||||
</I>
|
||||
No, but I have seen lists of man pages in general, which frequently have
|
||||
~nothing in common. Which is precisely why external documentation needs
|
||||
to provide _some_ amount of structure, because there's no way monodoc
|
||||
could automatically provide any reasonable amount of structure (nor
|
||||
could any other app).
|
||||
|
||||
- Jon
|
||||
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000026.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000033.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#32">[ date ]</a>
|
||||
<a href="thread.html#32">[ thread ]</a>
|
||||
<a href="subject.html#32">[ subject ]</a>
|
||||
<a href="author.html#32">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,165 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] monodoc & mcs/mono module merging
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=1224559091.6192.184.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000032.html">
|
||||
<LINK REL="Next" HREF="000034.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] monodoc & mcs/mono module merging</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20monodoc%20%26%20mcs/mono%20module%20merging&In-Reply-To=1224559091.6192.184.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] monodoc & mcs/mono module merging">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Tue Oct 21 00:59:37 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000032.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000034.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#33">[ date ]</a>
|
||||
<a href="thread.html#33">[ thread ]</a>
|
||||
<a href="subject.html#33">[ subject ]</a>
|
||||
<a href="author.html#33">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Background: we'd the treeview to be generated at runtime, so that
|
||||
distros don't need to patch monodoc.xml to add additional documentation
|
||||
(without placing all additional documentation under the Various node).
|
||||
|
||||
This is doubly useful when we have projects like Gendarme looking to
|
||||
integrate their documentation (see the gendarme google group), but the
|
||||
patches I've seen for that _also_ involve monodoc.xml changes, so the
|
||||
current monodoc.xml architecture hostile toward 3rd parties...
|
||||
|
||||
With luck, we can get this finished for Mono 2.2...
|
||||
|
||||
On Mon, 2008-10-20 at 23:18 -0400, Jonathan Pryor wrote:
|
||||
><i> Consequently, I'm thinking of a slightly different track: drop Testing
|
||||
</I>><i> and Libraries as top-level nodes (leaving Languages, Programs/Tools, and
|
||||
</I>><i> Various), and make all libraries top-level nodes:
|
||||
</I>><i>
|
||||
</I>><i> - Base Class Library
|
||||
</I>><i> - Namespaces [ System, etc. ]
|
||||
</I>><i> - Gnome Libraries
|
||||
</I>><i> - Namespaces [ Gtk, Gnome, etc. ]
|
||||
</I>><i>  - Languages
|
||||
</I>><i> - C#
|
||||
</I>><i> - ...
|
||||
</I>><i> - Mono Libraries
|
||||
</I>><i> - Namespaces [ Mono.Posix, etc. ]
|
||||
</I>><i> - NUnit Libraries
|
||||
</I>><i> - Namespaces [ NUnit.Framework, etc. ]
|
||||
</I>><i> - ...
|
||||
</I>><i> - Tools
|
||||
</I>><i> - Mono Development Tools
|
||||
</I>><i> - Man pages
|
||||
</I>><i> - MonoDevelop IDE
|
||||
</I>><i> - ...
|
||||
</I>><i> - Various
|
||||
</I>><i>
|
||||
</I>><i> Every layer should be alphabetized (otherwise you can't find anything).
|
||||
</I>><i> This is slightly less structured, but should still be ~straightforward
|
||||
</I>><i> to implement with the previously suggested /monodoc/node/@parent
|
||||
</I>><i> attribute.
|
||||
</I>
|
||||
Attached is a monodoc.dll patch and sample files to drive the treeview.
|
||||
|
||||
parent.patch adds support for the //node/@parent attribute, which allows
|
||||
a //node element to specify the parent node to use "by name."
|
||||
|
||||
With that patch applied, you can use the new monodoc.xml (attached),
|
||||
which is significantly smaller than before. *.source files can now
|
||||
provide additional structure to the tree view.
|
||||
|
||||
netdocs.source is a minimal example of adding a root "Base Class
|
||||
Library" node, under which the normal "classlib" documentation is
|
||||
displayed.
|
||||
|
||||
cs-errors.source creates a "C# / C# Compiler Error Reference" node under
|
||||
the Languages node, while ecma334.source creates a "C# / C# Language
|
||||
Specification" node under the Languages node. Since cs-errors.source &
|
||||
ecma334.source refer to intermediate nodes with the same name, they get
|
||||
the same parent at runtime.
|
||||
|
||||
The result of patch + these new .source files is the default tree:
|
||||
|
||||
- Base Class Library
|
||||
- Languages
|
||||
- C#
|
||||
- C# Compiler Error Reference
|
||||
- C# Language Specification
|
||||
|
||||
It's ~fully dynamic, so if any additional structure is desired by a 3rd
|
||||
party, they can ~trivially add it.
|
||||
|
||||
Thoughts?
|
||||
|
||||
- Jon
|
||||
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: parent.patch
|
||||
Type: text/x-patch
|
||||
Size: 1499 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/4f98cfee/attachment-0001.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/4f98cfee/attachment-0001.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: monodoc.xml
|
||||
Type: application/xml
|
||||
Size: 244 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/4f98cfee/attachment-0004.rdf">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/4f98cfee/attachment-0004.rdf</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: cs-errors.source
|
||||
Type: application/xml
|
||||
Size: 239 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/4f98cfee/attachment-0005.rdf">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/4f98cfee/attachment-0005.rdf</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: ecma334.source
|
||||
Type: application/xml
|
||||
Size: 236 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/4f98cfee/attachment-0006.rdf">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/4f98cfee/attachment-0006.rdf</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: netdocs.source
|
||||
Type: application/xml
|
||||
Size: 174 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/4f98cfee/attachment-0007.rdf">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/4f98cfee/attachment-0007.rdf</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000032.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000034.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#33">[ date ]</a>
|
||||
<a href="thread.html#33">[ thread ]</a>
|
||||
<a href="subject.html#33">[ subject ]</a>
|
||||
<a href="author.html#33">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,90 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-docs-list%5D%20monodoc%20%26%20mcs/mono%0A%09module%09merging&In-Reply-To=1224565177.6192.212.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000033.html">
|
||||
<LINK REL="Next" HREF="000036.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging</H1>
|
||||
<B>Néstor Salceda</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-docs-list%5D%20monodoc%20%26%20mcs/mono%0A%09module%09merging&In-Reply-To=1224565177.6192.212.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging">nestor.salceda at gmail.com
|
||||
</A><BR>
|
||||
<I>Tue Oct 21 07:44:47 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000033.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000036.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#34">[ date ]</a>
|
||||
<a href="thread.html#34">[ thread ]</a>
|
||||
<a href="subject.html#34">[ subject ]</a>
|
||||
<a href="author.html#34">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>El mar, 21-10-2008 a las 00:59 -0400, Jonathan Pryor escribió:
|
||||
><i> Background: we'd the treeview to be generated at runtime, so that
|
||||
</I>><i> distros don't need to patch monodoc.xml to add additional documentation
|
||||
</I>><i> (without placing all additional documentation under the Various node).
|
||||
</I>><i>
|
||||
</I>><i> This is doubly useful when we have projects like Gendarme looking to
|
||||
</I>><i> integrate their documentation (see the gendarme google group), but the
|
||||
</I>><i> patches I've seen for that _also_ involve monodoc.xml changes, so the
|
||||
</I>><i> current monodoc.xml architecture hostile toward 3rd parties...
|
||||
</I>
|
||||
Yes, that's true. I could do it adding a <source> tag in the .source
|
||||
files, but then I have several Gendarme.Rules ... nodes without a
|
||||
relationship among them, under Various, and I will prefer group those
|
||||
nodes under a Rules node (because perhaps a Framework node should be
|
||||
added too). I had thought about send a patch to monodoc.xml, but I
|
||||
prefered wait until this stuff is finished :)
|
||||
|
||||
Personally, I like the solution you have thought, nesting in
|
||||
the .source files.
|
||||
|
||||
><i> With luck, we can get this finished for Mono 2.2...
|
||||
</I>
|
||||
Nice, if I can help you with something; I'll be glad to do it.
|
||||
|
||||
[...]
|
||||
><i> It's ~fully dynamic, so if any additional structure is desired by a 3rd
|
||||
</I>><i> party, they can ~trivially add it.
|
||||
</I>><i>
|
||||
</I>><i> Thoughts?
|
||||
</I>
|
||||
Well, as it allows defining "complicated" nesting I like it.
|
||||
|
||||
Néstor.
|
||||
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000033.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000036.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#34">[ date ]</a>
|
||||
<a href="thread.html#34">[ thread ]</a>
|
||||
<a href="subject.html#34">[ subject ]</a>
|
||||
<a href="author.html#34">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,107 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] Disabling moonlight extensions
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Disabling%20moonlight%20extensions&In-Reply-To=aec34c770810201725k3fc40c2cu1c6ac41687f50f5b%40mail.gmail.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000031.html">
|
||||
<LINK REL="Next" HREF="000038.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] Disabling moonlight extensions</H1>
|
||||
<B>Paul</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20Disabling%20moonlight%20extensions&In-Reply-To=aec34c770810201725k3fc40c2cu1c6ac41687f50f5b%40mail.gmail.com"
|
||||
TITLE="[mono-packagers] Disabling moonlight extensions">paul at all-the-johnsons.co.uk
|
||||
</A><BR>
|
||||
<I>Tue Oct 21 13:17:38 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000031.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000038.html">[mono-packagers] The foo/foo1/foo2 problem - ASP.NET Edition
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#35">[ date ]</a>
|
||||
<a href="thread.html#35">[ thread ]</a>
|
||||
<a href="subject.html#35">[ subject ]</a>
|
||||
<a href="author.html#35">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
><i> >> 2) It isn't hard to remove the extension anyway, though removing all
|
||||
</I>><i> >> references to the 2.1 runtime would be more difficult.
|
||||
</I>><i> >
|
||||
</I>><i> > Can you let me know (off list) how to do this?
|
||||
</I>><i>
|
||||
</I>><i> Don't include MonoDevelop.Moonlight.dll in the package. Simple as
|
||||
</I>><i> that. I would strongly recommend against anything more than that.
|
||||
</I>><i>
|
||||
</I>><i> But seriously, why strip out features for no good reason? it's only 16kB.
|
||||
</I>
|
||||
True and I can see your point on this. However the packaging rules for
|
||||
Fedora have a no-moonlight part in it. I've asked for clarification from
|
||||
the legal people at Red Hat over if the moonlight plug in does violate
|
||||
anything given that it doesn't drag anything moonlight related in. If it
|
||||
does, then I will have to remove the dll to comply. If it doesn't then
|
||||
the world can turn happily again!
|
||||
|
||||
><i> Very sorry if I sound touchy, but I wrote the moonlight addin and I
|
||||
</I>><i> hate to see it being removed for reasons which *I* don't think make
|
||||
</I>><i> any sense at all. Just because Fedora doesn't like Moonlight doesn't
|
||||
</I>><i> mean you have to strip out anything tangentially related to it. For
|
||||
</I>><i> example, smcs and the 2.1 corlib and System.dll are just reduced
|
||||
</I>><i> versions of the Mono ones. There's no Silverlight in them at all, and
|
||||
</I>><i> this applies to most of the Silverlight toolchain. You appear to be
|
||||
</I>><i> going above and beyond Fedora's stated anti-Moonlight stance.
|
||||
</I>
|
||||
I can totally understand you over the addin; I've had bits of code I've
|
||||
written for various applications ripped out for no real apparent reason.
|
||||
However, Fedora/RedHat have rules which I'm trying to make sure aren't
|
||||
broken. FWIW, it does seem to be excessive, but then it took Red Hat
|
||||
ages to agree to take Mono in and package it.
|
||||
|
||||
Personally, I think moonlight kicks ass, but as far as Fedora goes, it's
|
||||
not allowed.
|
||||
|
||||
TTFN
|
||||
|
||||
Paul
|
||||
--
|
||||
Sie können mich aufreizen und wirklich heiß machen!
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: not available
|
||||
Type: application/pgp-signature
|
||||
Size: 197 bytes
|
||||
Desc: This is a digitally signed message part
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/828ea1b2/attachment.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081021/828ea1b2/attachment.bin</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000031.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000038.html">[mono-packagers] The foo/foo1/foo2 problem - ASP.NET Edition
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#35">[ date ]</a>
|
||||
<a href="thread.html#35">[ thread ]</a>
|
||||
<a href="subject.html#35">[ subject ]</a>
|
||||
<a href="author.html#35">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,98 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-docs-list%5D%20monodoc%20%26%0A%09mcs/mono%09module%09merging&In-Reply-To=1224565177.6192.212.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000034.html">
|
||||
<LINK REL="Next" HREF="000037.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging</H1>
|
||||
<B>Jonathan Pryor</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-docs-list%5D%20monodoc%20%26%0A%09mcs/mono%09module%09merging&In-Reply-To=1224565177.6192.212.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging">jonpryor at vt.edu
|
||||
</A><BR>
|
||||
<I>Wed Oct 22 09:28:12 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000034.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000037.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#36">[ date ]</a>
|
||||
<a href="thread.html#36">[ thread ]</a>
|
||||
<a href="subject.html#36">[ subject ]</a>
|
||||
<a href="author.html#36">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>On Tue, 2008-10-21 at 00:59 -0400, Jonathan Pryor wrote:
|
||||
><i> Background: we'd the treeview to be generated at runtime, so that
|
||||
</I>><i> distros don't need to patch monodoc.xml to add additional documentation
|
||||
</I>><i> (without placing all additional documentation under the Various node).
|
||||
</I>
|
||||
Attached is an updated patch to mcs/tools/monodoc & mcs/docs to put this
|
||||
all into perspective -- monodoc.dll changes, monodoc.xml, and *.source
|
||||
changes.
|
||||
|
||||
This version supports the following non-Library top-level nodes:
|
||||
|
||||
- File Formats
|
||||
- [ Mono File Formats - mdoc.5, mono-config.5 ]
|
||||
- Languages
|
||||
- [ C#, etc. ]
|
||||
- Tools
|
||||
- [ Mono Development Tools, etc. ]
|
||||
- Various
|
||||
- [ Anything that has an invalid //source/@path value
|
||||
|
||||
Library nodes ("Base Class Library", "Mono Libraries", etc.) are also
|
||||
top-level nodes, and all top-level nodes are sorted by name.
|
||||
|
||||
A screenshot of the currrent tree also attached (which doesn't
|
||||
necessarily show all those nodes, as nodes with no children are hidden).
|
||||
|
||||
- Jon
|
||||
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: monodoc.patch
|
||||
Type: text/x-patch
|
||||
Size: 13915 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081022/dd75e7c5/attachment-0001.bin">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081022/dd75e7c5/attachment-0001.bin</A>
|
||||
-------------- next part --------------
|
||||
A non-text attachment was scrubbed...
|
||||
Name: monodoc.png
|
||||
Type: image/png
|
||||
Size: 91802 bytes
|
||||
Desc: not available
|
||||
Url : <A HREF="http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081022/dd75e7c5/attachment-0001.png">http://lists.ximian.com/pipermail/mono-packagers-list/attachments/20081022/dd75e7c5/attachment-0001.png</A>
|
||||
</PRE>
|
||||
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000034.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000037.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#36">[ date ]</a>
|
||||
<a href="thread.html#36">[ thread ]</a>
|
||||
<a href="subject.html#36">[ subject ]</a>
|
||||
<a href="author.html#36">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,88 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-docs-list%5D%20monodoc%0A%09%26%09mcs/mono%09module%09merging&In-Reply-To=1224682092.6192.231.camel%40lina.magi.jprl.com">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000036.html">
|
||||
<LINK REL="Next" HREF="000023.html">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging</H1>
|
||||
<B>Miguel de Icaza</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20%5BMono-docs-list%5D%20monodoc%0A%09%26%09mcs/mono%09module%09merging&In-Reply-To=1224682092.6192.231.camel%40lina.magi.jprl.com"
|
||||
TITLE="[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging">miguel at ximian.com
|
||||
</A><BR>
|
||||
<I>Fri Oct 24 01:38:24 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000036.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000023.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#37">[ date ]</a>
|
||||
<a href="thread.html#37">[ thread ]</a>
|
||||
<a href="subject.html#37">[ subject ]</a>
|
||||
<a href="author.html#37">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hello,
|
||||
|
||||
I love this! lets get it in.
|
||||
|
||||
><i> On Tue, 2008-10-21 at 00:59 -0400, Jonathan Pryor wrote:
|
||||
</I>><i> > Background: we'd the treeview to be generated at runtime, so that
|
||||
</I>><i> > distros don't need to patch monodoc.xml to add additional documentation
|
||||
</I>><i> > (without placing all additional documentation under the Various node).
|
||||
</I>><i>
|
||||
</I>><i> Attached is an updated patch to mcs/tools/monodoc & mcs/docs to put this
|
||||
</I>><i> all into perspective -- monodoc.dll changes, monodoc.xml, and *.source
|
||||
</I>><i> changes.
|
||||
</I>><i>
|
||||
</I>><i> This version supports the following non-Library top-level nodes:
|
||||
</I>><i>
|
||||
</I>><i> - File Formats
|
||||
</I>><i> - [ Mono File Formats - mdoc.5, mono-config.5 ]
|
||||
</I>><i> - Languages
|
||||
</I>><i> - [ C#, etc. ]
|
||||
</I>><i> - Tools
|
||||
</I>><i> - [ Mono Development Tools, etc. ]
|
||||
</I>><i> - Various
|
||||
</I>><i> - [ Anything that has an invalid //source/@path value
|
||||
</I>><i>
|
||||
</I>><i> Library nodes ("Base Class Library", "Mono Libraries", etc.) are also
|
||||
</I>><i> top-level nodes, and all top-level nodes are sorted by name.
|
||||
</I>><i>
|
||||
</I>><i> A screenshot of the currrent tree also attached (which doesn't
|
||||
</I>><i> necessarily show all those nodes, as nodes with no children are hidden).
|
||||
</I>><i>
|
||||
</I>><i> - Jon
|
||||
</I>><i>
|
||||
</I>
|
||||
</PRE>
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000036.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A></li>
|
||||
<LI>Next message: <A HREF="000023.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A></li>
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#37">[ date ]</a>
|
||||
<a href="thread.html#37">[ thread ]</a>
|
||||
<a href="subject.html#37">[ subject ]</a>
|
||||
<a href="author.html#37">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,79 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> [mono-packagers] The foo/foo1/foo2 problem - ASP.NET Edition
|
||||
</TITLE>
|
||||
<LINK REL="Index" HREF="index.html" >
|
||||
<LINK REL="made" HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20foo/foo1/foo2%20problem%20-%20ASP.NET%20Edition&In-Reply-To=">
|
||||
<META NAME="robots" CONTENT="index,nofollow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
<LINK REL="Previous" HREF="000035.html">
|
||||
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<H1>[mono-packagers] The foo/foo1/foo2 problem - ASP.NET Edition</H1>
|
||||
<B>Jo Shields</B>
|
||||
<A HREF="mailto:mono-packagers-list%40lists.ximian.com?Subject=%5Bmono-packagers%5D%20The%20foo/foo1/foo2%20problem%20-%20ASP.NET%20Edition&In-Reply-To="
|
||||
TITLE="[mono-packagers] The foo/foo1/foo2 problem - ASP.NET Edition">directhex at apebox.org
|
||||
</A><BR>
|
||||
<I>Thu Oct 30 11:08:26 EDT 2008</I>
|
||||
<P><UL>
|
||||
<LI>Previous message: <A HREF="000035.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#38">[ date ]</a>
|
||||
<a href="thread.html#38">[ thread ]</a>
|
||||
<a href="subject.html#38">[ subject ]</a>
|
||||
<a href="author.html#38">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
<HR>
|
||||
<!--beginarticle-->
|
||||
<PRE>Hi,
|
||||
|
||||
I'm taking a look at packaging for mod-mono and XSP, and I've discovered
|
||||
a problem: whilst mod_mono.conf deals happily with distinctions between
|
||||
mod-mono-server and mod-mono-server2 (due to settings like
|
||||
MonoServerPath), it is not possible to use MonoAutoApplication and get a
|
||||
2.0 server unless you muck around with symlinks (and delete 1.0 support
|
||||
from your system). mod_mono.so's MonoAutoApplication setting appears to
|
||||
be entirely hard-coded to use the "mod-mono-server" binary.
|
||||
|
||||
It's also not possible to combine the two - if you add a MonoServerPath
|
||||
setting after a MonoAutoApplication, then the autoconfig is disabled -
|
||||
causing errors to be thrown due to the "incomplete" configuration.
|
||||
|
||||
The "best" option would be for upstream to allow some kind of 2.0-aware
|
||||
autoconfig, preferably in addition to 1.0 autoconfig (e.g. a
|
||||
MonoAutoVersion setting). I'm not at all happy with the symlink idea -
|
||||
especially as it would mean Debian would need to create a
|
||||
mod-mono-server1 binary for 1.0 support, and it would become impossible
|
||||
to parallel-use them (as well as introducing another divergence from
|
||||
upstream).
|
||||
|
||||
Thoughts?
|
||||
|
||||
--Jo Shields
|
||||
|
||||
</PRE>
|
||||
|
||||
<!--endarticle-->
|
||||
<HR>
|
||||
<P><UL>
|
||||
<!--threads-->
|
||||
<LI>Previous message: <A HREF="000035.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A></li>
|
||||
|
||||
<LI> <B>Messages sorted by:</B>
|
||||
<a href="date.html#38">[ date ]</a>
|
||||
<a href="thread.html#38">[ thread ]</a>
|
||||
<a href="subject.html#38">[ subject ]</a>
|
||||
<a href="author.html#38">[ author ]</a>
|
||||
</LI>
|
||||
</UL>
|
||||
|
||||
<hr>
|
||||
<a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More information about the mono-packagers-list
|
||||
mailing list</a><br>
|
||||
</body></html>
|
|
@ -0,0 +1,227 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list October 2008 Archive by author</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>October 2008 Archives by author</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Wed Oct 1 15:34:48 EDT 2008</i><br>
|
||||
<b>Ending:</b> <i>Thu Oct 30 11:08:26 EDT 2008</i><br>
|
||||
<b>Messages:</b> 36<p>
|
||||
<ul>
|
||||
|
||||
<LI><A HREF="000008.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="8"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000009.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="9"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000015.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="15"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000021.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="21"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000023.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="23"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000025.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="25"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000026.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="26"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000030.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="30"> </A>
|
||||
<I>Lluis Sanchez Gual
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000028.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="28"> </A>
|
||||
<I>Michael Hutchinson
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000037.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="37"> </A>
|
||||
<I>Miguel de Icaza
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000006.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="6"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000007.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="7"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000012.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="12"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000014.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0
|
||||
</A><A NAME="14"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000017.html">[mono-packagers] Bugzilla Keyword: downstream
|
||||
</A><A NAME="17"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000031.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="31"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000018.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A><A NAME="18"> </A>
|
||||
<I>Alan McGovern
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000003.html">[mono-packagers] Mono 2.0 RC3 for rawhide
|
||||
</A><A NAME="3"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000004.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="4"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000010.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="10"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000011.html">[mono-packagers] Mono 2.0
|
||||
</A><A NAME="11"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000020.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="20"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000027.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="27"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000029.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="29"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000035.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="35"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000019.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="19"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000022.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="22"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000024.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="24"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000032.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="32"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000033.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="33"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000036.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="36"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000034.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="34"> </A>
|
||||
<I>Néstor Salceda
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000013.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A><A NAME="13"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000038.html">[mono-packagers] The foo/foo1/foo2 problem - ASP.NET Edition
|
||||
</A><A NAME="38"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000005.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="5"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000016.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="16"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Thu Oct 30 11:08:26 EDT 2008</i><br>
|
||||
<b>Archived on:</b> <i>Thu Oct 30 12:06:53 EDT 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,227 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list October 2008 Archive by date</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>October 2008 Archives by date</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Wed Oct 1 15:34:48 EDT 2008</i><br>
|
||||
<b>Ending:</b> <i>Thu Oct 30 11:08:26 EDT 2008</i><br>
|
||||
<b>Messages:</b> 36<p>
|
||||
<ul>
|
||||
|
||||
<LI><A HREF="000003.html">[mono-packagers] Mono 2.0 RC3 for rawhide
|
||||
</A><A NAME="3"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000004.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="4"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000005.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="5"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000006.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="6"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000007.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="7"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000008.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="8"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000009.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="9"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000010.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="10"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000011.html">[mono-packagers] Mono 2.0
|
||||
</A><A NAME="11"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000013.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A><A NAME="13"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000012.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="12"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000014.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0
|
||||
</A><A NAME="14"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000015.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="15"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000016.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="16"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000017.html">[mono-packagers] Bugzilla Keyword: downstream
|
||||
</A><A NAME="17"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000018.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A><A NAME="18"> </A>
|
||||
<I>Alan McGovern
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000019.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="19"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000020.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="20"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000021.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="21"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000022.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="22"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000023.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="23"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000024.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="24"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000025.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="25"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000026.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="26"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000027.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="27"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000028.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="28"> </A>
|
||||
<I>Michael Hutchinson
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000029.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="29"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000030.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="30"> </A>
|
||||
<I>Lluis Sanchez Gual
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000031.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="31"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000032.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="32"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000033.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="33"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000034.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="34"> </A>
|
||||
<I>Néstor Salceda
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000035.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="35"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000036.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="36"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000037.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="37"> </A>
|
||||
<I>Miguel de Icaza
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000038.html">[mono-packagers] The foo/foo1/foo2 problem - ASP.NET Edition
|
||||
</A><A NAME="38"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Thu Oct 30 11:08:26 EDT 2008</i><br>
|
||||
<b>Archived on:</b> <i>Thu Oct 30 12:06:53 EDT 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,281 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list October 2008 Archive by thread</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>October 2008 Archives by thread</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Wed Oct 1 15:34:48 EDT 2008</i><br>
|
||||
<b>Ending:</b> <i>Thu Oct 30 11:08:26 EDT 2008</i><br>
|
||||
<b>Messages:</b> 36<p>
|
||||
<ul>
|
||||
|
||||
<!--0 01222889688- -->
|
||||
<LI><A HREF="000003.html">[mono-packagers] Mono 2.0 RC3 for rawhide
|
||||
</A><A NAME="3"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01222993925- -->
|
||||
<LI><A HREF="000004.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="4"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01222993925-01222995327- -->
|
||||
<LI><A HREF="000005.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="5"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--0 01222999540- -->
|
||||
<LI><A HREF="000006.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="6"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01223176461- -->
|
||||
<LI><A HREF="000007.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="7"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01223176461-01223203729- -->
|
||||
<LI><A HREF="000008.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="8"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<!--1 01223176461-01223232876- -->
|
||||
<LI><A HREF="000010.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="10"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01223176461-01223232876-01223455997- -->
|
||||
<LI><A HREF="000016.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="16"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01223208345- -->
|
||||
<LI><A HREF="000009.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="9"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<!--0 01223236186- -->
|
||||
<LI><A HREF="000011.html">[mono-packagers] Mono 2.0
|
||||
</A><A NAME="11"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01223243441- -->
|
||||
<LI><A HREF="000013.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A><A NAME="13"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<!--0 01223306879- -->
|
||||
<LI><A HREF="000012.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="12"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01223310260- -->
|
||||
<LI><A HREF="000014.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0
|
||||
</A><A NAME="14"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01223411741- -->
|
||||
<LI><A HREF="000015.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="15"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<!--0 01223483374- -->
|
||||
<LI><A HREF="000017.html">[mono-packagers] Bugzilla Keyword: downstream
|
||||
</A><A NAME="17"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01223570392- -->
|
||||
<LI><A HREF="000018.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A><A NAME="18"> </A>
|
||||
<I>Alan McGovern
|
||||
</I>
|
||||
|
||||
<!--0 01224292238- -->
|
||||
<LI><A HREF="000019.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="19"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01224292238-01224322757- -->
|
||||
<LI><A HREF="000020.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="20"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--1 01224292238-01224328233- -->
|
||||
<LI><A HREF="000021.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="21"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01224292238-01224328233-01224426014- -->
|
||||
<LI><A HREF="000022.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="22"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469- -->
|
||||
<LI><A HREF="000026.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="26"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469-01224559091- -->
|
||||
<LI><A HREF="000032.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="32"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469-01224559091-01224565177- -->
|
||||
<LI><A HREF="000033.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="33"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469-01224559091-01224565177-01224589487- -->
|
||||
<LI><A HREF="000034.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="34"> </A>
|
||||
<I>Néstor Salceda
|
||||
</I>
|
||||
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469-01224559091-01224565177-01224682092- -->
|
||||
<LI><A HREF="000036.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="36"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469-01224559091-01224565177-01224682092-01224826704- -->
|
||||
<LI><A HREF="000037.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="37"> </A>
|
||||
<I>Miguel de Icaza
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01224428440- -->
|
||||
<LI><A HREF="000023.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="23"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01224428440-01224449230- -->
|
||||
<LI><A HREF="000024.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="24"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01224428440-01224449230-01224534467- -->
|
||||
<LI><A HREF="000025.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="25"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01224542298- -->
|
||||
<LI><A HREF="000027.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="27"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01224543726- -->
|
||||
<LI><A HREF="000028.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="28"> </A>
|
||||
<I>Michael Hutchinson
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01224543726-01224544308- -->
|
||||
<LI><A HREF="000029.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="29"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--0 01224554218- -->
|
||||
<LI><A HREF="000030.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="30"> </A>
|
||||
<I>Lluis Sanchez Gual
|
||||
</I>
|
||||
|
||||
<!--0 01224556824- -->
|
||||
<LI><A HREF="000031.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="31"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01224609458- -->
|
||||
<LI><A HREF="000035.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="35"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01225379306- -->
|
||||
<LI><A HREF="000038.html">[mono-packagers] The foo/foo1/foo2 problem - ASP.NET Edition
|
||||
</A><A NAME="38"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Thu Oct 30 11:08:26 EDT 2008</i><br>
|
||||
<b>Archived on:</b> <i>Thu Oct 30 12:06:53 EDT 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,227 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list October 2008 Archive by subject</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>October 2008 Archives by subject</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Wed Oct 1 15:34:48 EDT 2008</i><br>
|
||||
<b>Ending:</b> <i>Thu Oct 30 11:08:26 EDT 2008</i><br>
|
||||
<b>Messages:</b> 36<p>
|
||||
<ul>
|
||||
|
||||
<LI><A HREF="000037.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="37"> </A>
|
||||
<I>Miguel de Icaza
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000036.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="36"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000034.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="34"> </A>
|
||||
<I>Néstor Salceda
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000017.html">[mono-packagers] Bugzilla Keyword: downstream
|
||||
</A><A NAME="17"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000027.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="27"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000028.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="28"> </A>
|
||||
<I>Michael Hutchinson
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000029.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="29"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000030.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="30"> </A>
|
||||
<I>Lluis Sanchez Gual
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000031.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="31"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000035.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="35"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000004.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="4"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000005.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="5"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000006.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="6"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000011.html">[mono-packagers] Mono 2.0
|
||||
</A><A NAME="11"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000003.html">[mono-packagers] Mono 2.0 RC3 for rawhide
|
||||
</A><A NAME="3"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000019.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="19"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000020.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="20"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000021.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="21"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000022.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="22"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000026.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="26"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000032.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="32"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000033.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="33"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000013.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A><A NAME="13"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000018.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A><A NAME="18"> </A>
|
||||
<I>Alan McGovern
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000007.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="7"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000008.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="8"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000010.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="10"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000016.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="16"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000014.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0
|
||||
</A><A NAME="14"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000012.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="12"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000009.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="9"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000015.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="15"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000023.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="23"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000024.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="24"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000025.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="25"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<LI><A HREF="000038.html">[mono-packagers] The foo/foo1/foo2 problem - ASP.NET Edition
|
||||
</A><A NAME="38"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Thu Oct 30 11:08:26 EDT 2008</i><br>
|
||||
<b>Archived on:</b> <i>Thu Oct 30 12:06:53 EDT 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
<a href="thread.html#start">[ thread ]</a>
|
||||
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
@ -0,0 +1,281 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>The mono-packagers-list October 2008 Archive by thread</title>
|
||||
<META NAME="robots" CONTENT="noindex,follow">
|
||||
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
<a name="start"></A>
|
||||
<h1>October 2008 Archives by thread</h1>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p><b>Starting:</b> <i>Wed Oct 1 15:34:48 EDT 2008</i><br>
|
||||
<b>Ending:</b> <i>Thu Oct 30 11:08:26 EDT 2008</i><br>
|
||||
<b>Messages:</b> 36<p>
|
||||
<ul>
|
||||
|
||||
<!--0 01222889688- -->
|
||||
<LI><A HREF="000003.html">[mono-packagers] Mono 2.0 RC3 for rawhide
|
||||
</A><A NAME="3"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01222993925- -->
|
||||
<LI><A HREF="000004.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="4"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01222993925-01222995327- -->
|
||||
<LI><A HREF="000005.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="5"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--0 01222999540- -->
|
||||
<LI><A HREF="000006.html">[mono-packagers] Fedora rawhide release...
|
||||
</A><A NAME="6"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01223176461- -->
|
||||
<LI><A HREF="000007.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="7"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01223176461-01223203729- -->
|
||||
<LI><A HREF="000008.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="8"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<!--1 01223176461-01223232876- -->
|
||||
<LI><A HREF="000010.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="10"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01223176461-01223232876-01223455997- -->
|
||||
<LI><A HREF="000016.html">[mono-packagers] RC4 is 2.0 Final
|
||||
</A><A NAME="16"> </A>
|
||||
<I>Zoltan Varga
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01223208345- -->
|
||||
<LI><A HREF="000009.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="9"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<!--0 01223236186- -->
|
||||
<LI><A HREF="000011.html">[mono-packagers] Mono 2.0
|
||||
</A><A NAME="11"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01223243441- -->
|
||||
<LI><A HREF="000013.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A><A NAME="13"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
<!--0 01223306879- -->
|
||||
<LI><A HREF="000012.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="12"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01223310260- -->
|
||||
<LI><A HREF="000014.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono2.0
|
||||
</A><A NAME="14"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01223411741- -->
|
||||
<LI><A HREF="000015.html">[mono-packagers] Re-Licensing of Mono's JSON.NET code in Mono 2.0
|
||||
</A><A NAME="15"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<!--0 01223483374- -->
|
||||
<LI><A HREF="000017.html">[mono-packagers] Bugzilla Keyword: downstream
|
||||
</A><A NAME="17"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01223570392- -->
|
||||
<LI><A HREF="000018.html">[mono-packagers] Moonlight for Debian - packaging report
|
||||
</A><A NAME="18"> </A>
|
||||
<I>Alan McGovern
|
||||
</I>
|
||||
|
||||
<!--0 01224292238- -->
|
||||
<LI><A HREF="000019.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="19"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01224292238-01224322757- -->
|
||||
<LI><A HREF="000020.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="20"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--1 01224292238-01224328233- -->
|
||||
<LI><A HREF="000021.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="21"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01224292238-01224328233-01224426014- -->
|
||||
<LI><A HREF="000022.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="22"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469- -->
|
||||
<LI><A HREF="000026.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="26"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469-01224559091- -->
|
||||
<LI><A HREF="000032.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="32"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469-01224559091-01224565177- -->
|
||||
<LI><A HREF="000033.html">[mono-packagers] monodoc & mcs/mono module merging
|
||||
</A><A NAME="33"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469-01224559091-01224565177-01224589487- -->
|
||||
<LI><A HREF="000034.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="34"> </A>
|
||||
<I>Néstor Salceda
|
||||
</I>
|
||||
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469-01224559091-01224565177-01224682092- -->
|
||||
<LI><A HREF="000036.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="36"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<!--3 01224292238-01224328233-01224426014-01224535469-01224559091-01224565177-01224682092-01224826704- -->
|
||||
<LI><A HREF="000037.html">[mono-packagers] [Mono-docs-list] monodoc & mcs/mono module merging
|
||||
</A><A NAME="37"> </A>
|
||||
<I>Miguel de Icaza
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01224428440- -->
|
||||
<LI><A HREF="000023.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="23"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01224428440-01224449230- -->
|
||||
<LI><A HREF="000024.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="24"> </A>
|
||||
<I>Jonathan Pryor
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--2 01224428440-01224449230-01224534467- -->
|
||||
<LI><A HREF="000025.html">[mono-packagers] Startup Scripts Inconsistency in Mono 2.0
|
||||
</A><A NAME="25"> </A>
|
||||
<I>Mirco Bauer
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
</UL>
|
||||
<!--0 01224542298- -->
|
||||
<LI><A HREF="000027.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="27"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01224543726- -->
|
||||
<LI><A HREF="000028.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="28"> </A>
|
||||
<I>Michael Hutchinson
|
||||
</I>
|
||||
|
||||
<UL>
|
||||
<!--1 01224543726-01224544308- -->
|
||||
<LI><A HREF="000029.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="29"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
</UL>
|
||||
<!--0 01224554218- -->
|
||||
<LI><A HREF="000030.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="30"> </A>
|
||||
<I>Lluis Sanchez Gual
|
||||
</I>
|
||||
|
||||
<!--0 01224556824- -->
|
||||
<LI><A HREF="000031.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="31"> </A>
|
||||
<I>Andrew Jorgensen
|
||||
</I>
|
||||
|
||||
<!--0 01224609458- -->
|
||||
<LI><A HREF="000035.html">[mono-packagers] Disabling moonlight extensions
|
||||
</A><A NAME="35"> </A>
|
||||
<I>Paul
|
||||
</I>
|
||||
|
||||
<!--0 01225379306- -->
|
||||
<LI><A HREF="000038.html">[mono-packagers] The foo/foo1/foo2 problem - ASP.NET Edition
|
||||
</A><A NAME="38"> </A>
|
||||
<I>Jo Shields
|
||||
</I>
|
||||
|
||||
</ul>
|
||||
<p>
|
||||
<a name="end"><b>Last message date:</b></a>
|
||||
<i>Thu Oct 30 11:08:26 EDT 2008</i><br>
|
||||
<b>Archived on:</b> <i>Thu Oct 30 12:06:53 EDT 2008</i>
|
||||
<p>
|
||||
<ul>
|
||||
<li> <b>Messages sorted by:</b>
|
||||
|
||||
<a href="subject.html#start">[ subject ]</a>
|
||||
<a href="author.html#start">[ author ]</a>
|
||||
<a href="date.html#start">[ date ]</a>
|
||||
<li><b><a href="http://lists.ximian.com/mailman/listinfo/mono-packagers-list">More info on this list...
|
||||
</a></b></li>
|
||||
</ul>
|
||||
<p>
|
||||
<hr>
|
||||
<i>This archive was generated by
|
||||
Pipermail 0.09 (Mailman edition).</i>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче