Re: [Fink-devel] xcdroast-0.98alpha14-2 and Panther

2004-11-22 Thread Daniel Macks
On Sun, Nov 21, 2004 at 04:32:06AM -0600, Emily Jackson wrote:
 On Sat, 20 Nov 2004 21:09:45 -0500
 Chris Zubrzycki [EMAIL PROTECTED] wrote:
  On Nov 19, 2004, at 5:43 AM, Emily Jackson wrote:
  
   [This message was originally sent to xcdroast's maintainer, but the
   message bounced.]
  
   The autodiskmount process that xcdroast has to stop temporarily in 
   order to work doesn't exist on OS X 10.3;
[diagnosis and solution]

 I thought that maybe Fink's version should be
 corrected also in order to have a fully-functional program rather than a
 partially-functional one.

Most certainly! Seems like the maintainer-of-record is AWOL and this
thing sounds like it's broken for along time without anyone trying to
fix it. OTOH, you seem to understand how to get it working again.
Perhaps you would like to take over maintainership?

dan

-- 
Daniel Macks
[EMAIL PROTECTED]
http://www.netspace.org/~dmacks



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel


[Fink-devel] CompileScript no-op messages

2004-11-22 Thread Chris Dolan
When a package has nothing to compile, we are expected to include a 
CompileScript that does a no-op and returns a true value.  Maintainers 
usually implement this via something like echo Nothing to compile, 
but there is a wide range of solutions for this.  I ran the following 
commands to get the full list:

egrep -hr CompileScript: /sw/fink/10.3/unstable/*/finkinfo | egrep -vi 
'make|build' | sort -u

Below is the list of all no-ops I gleaned from that output.  I propose 
that we standardize on
  CompileScript: /usr/bin/true
or the following reasons
  * less verbose (it's a no-op after all)
  * doesn't emit any unnecessary English text (in case 
internationalization matters here)

If the community does not support /usr/bin/true, then at very least we 
should standardize on agreed verbiage for the echo.

Chris
CompileScript: /usr/bin/true
CompileScript: echo
CompileScript: echo 
CompileScript: echo Compile phase: nothing to do.
CompileScript: echo No Compile Script
CompileScript: echo No compile necessary
CompileScript: echo No compile needed
CompileScript: echo No compile needed.
CompileScript: echo No compile script
CompileScript: echo No configuration or compilation necessary.
CompileScript: echo Nothing is compiled in this section.
CompileScript: echo Nothing to be done for compile
CompileScript: echo Nothing to be done.
CompileScript: echo Nothing to compile
CompileScript: echo Nothing to compile.
CompileScript: echo Nothing to compile...
CompileScript: echo Nothing to do ...
CompileScript: echo Nothing to do for Compile
CompileScript: echo Nothing to do for compile
CompileScript: echo Nothing to do in this section.
CompileScript: echo Nothing to do
CompileScript: echo Nothing to do.
CompileScript: echo Nothing to do...
CompileScript: echo Unpacking...
CompileScript: echo moving files...
CompileScript: echo no CompileScript needed
CompileScript: echo no compilation needed
CompileScript: echo no compile needed
CompileScript: echo no compile script 
CompileScript: echo no compile script
CompileScript: echo no compile script
CompileScript: echo no compiling needed
CompileScript: echo none needed
CompileScript: echo none
CompileScript: echo nothing to compile ...
CompileScript: echo nothing to compile
CompileScript: echo nothing to do
CompileScript: echo we compile in the install phase
CompileScript: echo 'No assembly required!'
CompileScript: echo 'nothing to compile'
CompileScript: echo No compilation necessary.
CompileScript: echo None
CompileScript: echo no compilation
CompileScript: echo none
CompileScript: true
CompileScript: true
--
Chris Dolan, Software Developer, Clotho Advanced Media Inc.
608-294-7900, fax 294-7025, 1435 E Main St, Madison WI 53703
Clotho Advanced Media, Inc. - Creators of MediaLandscape Software 
(http://www.media-landscape.com/) and partners in the revolutionary 
Croquet project (http://www.opencroquet.org/)


PGP.sig
Description: This is a digitally signed message part


Re: [Fink-devel] CompileScript no-op messages

2004-11-22 Thread Daniel Macks
On Mon, Nov 22, 2004 at 04:59:02PM -0600, Chris Dolan wrote:
 When a package has nothing to compile, we are expected to include a 
 CompileScript that does a no-op and returns a true value.  Maintainers 
 usually implement this via something like echo Nothing to compile, 
 but there is a wide range of solutions for this.
[...]
 Below is the list of all no-ops I gleaned
[...]
 CompileScript: /usr/bin/true
 CompileScript: echo
 CompileScript: echo 
 CompileScript: echo Compile phase: nothing to do.
 CompileScript: echo No Compile Script
 CompileScript: echo No compile necessary
 CompileScript: echo No compile needed
 CompileScript: echo No compile needed.
 CompileScript: echo No compile script
 CompileScript: echo No configuration or compilation necessary.
 CompileScript: echo Nothing is compiled in this section.
 CompileScript: echo Nothing to be done for compile
 CompileScript: echo Nothing to be done.
 CompileScript: echo Nothing to compile
 CompileScript: echo Nothing to compile.
 CompileScript: echo Nothing to compile...
 CompileScript: echo Nothing to do ...
 CompileScript: echo Nothing to do for Compile
 CompileScript: echo Nothing to do for compile
 CompileScript: echo Nothing to do in this section.
 CompileScript: echo Nothing to do
 CompileScript: echo Nothing to do.
 CompileScript: echo Nothing to do...
 CompileScript: echo Unpacking...
 CompileScript: echo moving files...
 CompileScript: echo no CompileScript needed
 CompileScript: echo no compilation needed
 CompileScript: echo no compile needed
 CompileScript: echo no compile script 
 CompileScript: echo no compile script
 CompileScript: echo no compile script
 CompileScript: echo no compiling needed
 CompileScript: echo none needed
 CompileScript: echo none
 CompileScript: echo nothing to compile ...
 CompileScript: echo nothing to compile
 CompileScript: echo nothing to do
 CompileScript: echo we compile in the install phase
 CompileScript: echo 'No assembly required!'
 CompileScript: echo 'nothing to compile'
 CompileScript: echo No compilation necessary.
 CompileScript: echo None
 CompileScript: echo no compilation
 CompileScript: echo none
 CompileScript: true
 CompileScript: true

I don't see any in 10.3/unstable now, but I have previously seen:
  CompileScript: :
  CompileScript: #

dan

-- 
Daniel Macks
[EMAIL PROTECTED]
http://www.netspace.org/~dmacks



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] Question about a licence classification

2004-11-22 Thread Jeremy Higgs
OK, thanks for the clarification. What do you suggest I list it as in 
the package description?

Thanks!
On 23 Nov 2004, at 13:35, David R. Morrison wrote:
BSD-type licenses generally don't identify themselves as BSD.
The MIT X-license also counts as a BSD-type license, for example.
  -- Dave
On Nov 21, 2004, at 8:57 PM, Jeremy Higgs wrote:
On 22 Nov 2004, at 2:03, Benjamin Reed wrote:
Jeremy Higgs wrote:
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in 
the
   documentation and/or other materials provided with the 
distribution.
3. The name of the author may not be used to endorse or promote 
products
   derived from this software without specific prior written 
permission.
this sounds a lot like the BSD license to me
Thanks, Ben!
So even though it doesn't mention the BSD license in the license 
itself, it's alright to classify it as BSD?



PGP.sig
Description: This is a digitally signed message part


Re: [Fink-devel] Question about a licence classification

2004-11-22 Thread David R. Morrison
BSD.
On Nov 22, 2004, at 10:08 PM, Jeremy Higgs wrote:
OK, thanks for the clarification. What do you suggest I list it as in 
the package description?

Thanks!
On 23 Nov 2004, at 13:35, David R. Morrison wrote:
BSD-type licenses generally don't identify themselves as BSD.
The MIT X-license also counts as a BSD-type license, for example.
  -- Dave
On Nov 21, 2004, at 8:57 PM, Jeremy Higgs wrote:
On 22 Nov 2004, at 2:03, Benjamin Reed wrote:
Jeremy Higgs wrote:
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above 
copyright
   notice, this list of conditions and the following disclaimer in 
the
   documentation and/or other materials provided with the 
distribution.
3. The name of the author may not be used to endorse or promote 
products
   derived from this software without specific prior written 
permission.
this sounds a lot like the BSD license to me
Thanks, Ben!
So even though it doesn't mention the BSD license in the license 
itself, it's alright to classify it as BSD?


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] Question about a licence classification

2004-11-22 Thread David R. Morrison
BSD-type licenses generally don't identify themselves as BSD.
The MIT X-license also counts as a BSD-type license, for example.
  -- Dave
On Nov 21, 2004, at 8:57 PM, Jeremy Higgs wrote:
On 22 Nov 2004, at 2:03, Benjamin Reed wrote:
Jeremy Higgs wrote:
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in 
the
   documentation and/or other materials provided with the 
distribution.
3. The name of the author may not be used to endorse or promote 
products
   derived from this software without specific prior written 
permission.
this sounds a lot like the BSD license to me
Thanks, Ben!
So even though it doesn't mention the BSD license in the license 
itself, it's alright to classify it as BSD?

---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel