Re: [RFC] A trivial change for DESKTOP_ENTRIES

2011-07-12 Thread Doug Barton
On 07/12/2011 21:29, Stephen Montgomery-Smith wrote:
> On 07/12/2011 11:17 PM, Doug Barton wrote:
>> On 07/12/2011 21:08, Stephen Montgomery-Smith wrote:
>>> Thinking more about it, it seems to me that instead of silently deleting
>>> the disallowed characters in the filename, that the port should declare
>>> itself broken if there are disallowed characters.  That way, this
>>> particular error would have been caught far more easily.
>>
>> I was thinking along similar lines. My concern would be that if the
>> change to allow - and _ is done silently that it will break plists.
>>
>>
> 
> I don't see how it can break plists - a few lines later (around line
> 6440), bsd.port.mk dynamically generates the entries for plist from
> $filename.

Ah, never mind then. :)



-- 

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: [RFC] A trivial change for DESKTOP_ENTRIES

2011-07-12 Thread Stephen Montgomery-Smith

On 07/12/2011 11:17 PM, Doug Barton wrote:

On 07/12/2011 21:08, Stephen Montgomery-Smith wrote:

Thinking more about it, it seems to me that instead of silently deleting
the disallowed characters in the filename, that the port should declare
itself broken if there are disallowed characters.  That way, this
particular error would have been caught far more easily.


I was thinking along similar lines. My concern would be that if the
change to allow - and _ is done silently that it will break plists.




I don't see how it can break plists - a few lines later (around line 
6440), bsd.port.mk dynamically generates the entries for plist from 
$filename.

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: [RFC] A trivial change for DESKTOP_ENTRIES

2011-07-12 Thread Doug Barton
On 07/12/2011 21:08, Stephen Montgomery-Smith wrote:
> Thinking more about it, it seems to me that instead of silently deleting
> the disallowed characters in the filename, that the port should declare
> itself broken if there are disallowed characters.  That way, this
> particular error would have been caught far more easily.

I was thinking along similar lines. My concern would be that if the
change to allow - and _ is done silently that it will break plists.


Doug

-- 

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: [RFC] A trivial change for DESKTOP_ENTRIES

2011-07-12 Thread Stephen Montgomery-Smith

On 07/12/2011 05:25 PM, Jung-uk Kim wrote:

After I updated x11-wm/compiz, GNOME was not able to start the window
manager.  Basically, it complained that compiz-manager was not found.
Then, I realized compiz-manager.desktop was automagically replaced by
compizmanager.desktop.  Now I tracked it down to this commit:

Sat Nov 27 17:42:46 2010 UTC (7 months, 2 weeks ago) by pav

- DESKTOP_ENTRIES: commandline is used to name installed .desktop
file, this can lead to files containing whitespace and funny
characters; thus strip all non-alphanumeric characters

http://www.freebsd.org/cgi/cvsweb.cgi/ports/Mk/bsd.port.mk.diff?r1=1.656;r2=1.657

To me, it looks far too restrictive.  At least, I'd like to allow '-'
and '_'.  Please see the attached patch.

Any objections?

Jung-uk Kim


Thinking more about it, it seems to me that instead of silently deleting 
the disallowed characters in the filename, that the port should declare 
itself broken if there are disallowed characters.  That way, this 
particular error would have been caught far more easily.


Here is a simple patch, although I think you guys could come up with a 
better error message.


diff -u bsd.port.mk-orig bsd.port.mk
--- bsd.port.mk-orig2011-07-13 03:48:35.0 +
+++ bsd.port.mk 2011-07-13 04:04:14.0 +
@@ -6432,7 +6432,10 @@
${ECHO_CMD} "@cwd ${DESKTOPDIR}" >> ${TMPPLIST}; \
fi; \
while [ $$# -gt 6 ]; do \
-   filename="`${ECHO_CMD} "$$4" | ${TR} -cd [:alnum:]`.desktop"; \
+   filename="`${ECHO_CMD} "$$4" | ${TR} -cd 
"[:alnum:]-_"`.desktop"; \
+   if [ "$$filename" != "$$4.desktop" ]; then \
+   ${ECHO_MSG} "===> Disallowed characters in entry 4 of 
DESKTOP_ENTRIES \"$$4\""; exit 1; \
+   fi; \
pathname="${DESKTOPDIR}/$$filename"; \
categories="$$5"; \
if [ -z "$$categories" ]; then \

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Re: [RFC] A trivial change for DESKTOP_ENTRIES

2011-07-12 Thread Warren Block

On Tue, 12 Jul 2011, Jung-uk Kim wrote:


After I updated x11-wm/compiz, GNOME was not able to start the window
manager.  Basically, it complained that compiz-manager was not found.
Then, I realized compiz-manager.desktop was automagically replaced by
compizmanager.desktop.  Now I tracked it down to this commit:

Sat Nov 27 17:42:46 2010 UTC (7 months, 2 weeks ago) by pav

- DESKTOP_ENTRIES: commandline is used to name installed .desktop
file, this can lead to files containing whitespace and funny
characters; thus strip all non-alphanumeric characters

http://www.freebsd.org/cgi/cvsweb.cgi/ports/Mk/bsd.port.mk.diff?r1=1.656;r2=1.657


My fault, arising out of 
http://www.freebsd.org/cgi/query-pr.cgi?pr=147701


Additionally allowing dashes and underlines seems harmless.  Spaces and 
disallowed characters like slashes were the original concern.

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Some easy to commit pr's

2011-07-12 Thread Doug Barton
On 07/12/2011 12:39, Ruslan Mahmatkhanov wrote:
> 12.07.2011 22:03, Doug Barton пишет:
>> On 07/12/2011 07:38, Ruslan Mahmatkhanov wrote:
>>> In chromium follow to:
>>
>> You can do something similar in FF with keywords, but that doesn't
>> really help you when the PR number is in an e-mail.
>>
>> Yes, I realize it sounds incredibly lame to complain about the time it
>> takes to cut/paste one PR number. My point is simply that if you want to
>> get the maximum number of (very busy) people to have a chance to look at
>> your PR, your best bet is to include the link.
>>
>>
>> Doug
> 
> I'm fully agree with you, and i'm sent the link to pr's later (all of
> them are important for me). Chromium stuff was sent just in response to
> "magic ability", so you may treat it as joke and nothing more.

No problem. :)



-- 

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


find-packages-using-libs: request for feedback

2011-07-12 Thread Anton Berezin
Hi,

After the recent icu and libgcrypt updates I decided to try and find a
way to avoid rebuilding everything which depends on a particular
port when its shared library version is bumped.

Previously I was profitably using sysutils/libchk, producing in the end
the list of packages which *have* to be rebuilt.  Its use, however,
requires some substantial massaging of the output it produces.

So I wrote a little tool which automates such tasks.  As a side effect,
it can also be used to simply list all packages using a shared library
(or libraries).

Fetch it at https://github.com/tobez/find-packages-using-libs .

Usage examples:

Finding every installed package using libgcrypt:

./find-packages-using-libs libgcrypt.so\*

Finding every installed package using libgcrypt OR libicu*:

./find-packages-using-libs libgcrypt.so\* libicu*

Finding every installed package which uses libraries that do
not exist (or exist in non-standard paths without any RPATH):

./find-packages-using-libs -b

Finding every installed package which uses a non-existing libgcrypt:

./find-packages-using-libs -b libgcrypt.so\*

There are a couple of minor options as well,
but for now, this about covers it.

I am interested in you feedback:

- would you use it?  does it solve a problem for you, or do you foresee
  it will solve a problem for you in the future?
- does it work for you?  any bugs?
- any wishes with regard to missing features?

Most of the package-walking code shamelessly (for a good reason) stolen
from the perl-after-upgrade script.

The code is in public domain.

Cheers,
\Anton.
-- 
Our society can survive even a large amount of irrational regulation.
  -- John McCarthy
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: [RFC] A trivial change for DESKTOP_ENTRIES

2011-07-12 Thread Stephen Montgomery-Smith

On 07/12/2011 05:25 PM, Jung-uk Kim wrote:

After I updated x11-wm/compiz, GNOME was not able to start the window
manager.  Basically, it complained that compiz-manager was not found.
Then, I realized compiz-manager.desktop was automagically replaced by
compizmanager.desktop.  Now I tracked it down to this commit:

Sat Nov 27 17:42:46 2010 UTC (7 months, 2 weeks ago) by pav

- DESKTOP_ENTRIES: commandline is used to name installed .desktop
file, this can lead to files containing whitespace and funny
characters; thus strip all non-alphanumeric characters

http://www.freebsd.org/cgi/cvsweb.cgi/ports/Mk/bsd.port.mk.diff?r1=1.656;r2=1.657

To me, it looks far too restrictive.  At least, I'd like to allow '-'
and '_'.  Please see the attached patch.

Any objections?

Jung-uk Kim


It sounds like a good idea to me.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


[RFC] A trivial change for DESKTOP_ENTRIES

2011-07-12 Thread Jung-uk Kim
After I updated x11-wm/compiz, GNOME was not able to start the window 
manager.  Basically, it complained that compiz-manager was not found.  
Then, I realized compiz-manager.desktop was automagically replaced by 
compizmanager.desktop.  Now I tracked it down to this commit:

Sat Nov 27 17:42:46 2010 UTC (7 months, 2 weeks ago) by pav

- DESKTOP_ENTRIES: commandline is used to name installed .desktop 
file, this can lead to files containing whitespace and funny 
characters; thus strip all non-alphanumeric characters

http://www.freebsd.org/cgi/cvsweb.cgi/ports/Mk/bsd.port.mk.diff?r1=1.656;r2=1.657

To me, it looks far too restrictive.  At least, I'd like to allow '-' 
and '_'.  Please see the attached patch.

Any objections?

Jung-uk Kim
Index: bsd.port.mk
===
RCS file: /home/pcvs/ports/Mk/bsd.port.mk,v
retrieving revision 1.687
diff -u -r1.687 bsd.port.mk
--- bsd.port.mk 3 Jul 2011 15:51:18 -   1.687
+++ bsd.port.mk 12 Jul 2011 21:58:02 -
@@ -6432,7 +6432,7 @@
${ECHO_CMD} "@cwd ${DESKTOPDIR}" >> ${TMPPLIST}; \
fi; \
while [ $$# -gt 6 ]; do \
-   filename="`${ECHO_CMD} "$$4" | ${TR} -cd [:alnum:]`.desktop"; \
+   filename="`${ECHO_CMD} "$$4" | ${TR} -cd 
"[:alnum:]-_"`.desktop"; \
pathname="${DESKTOPDIR}/$$filename"; \
categories="$$5"; \
if [ -z "$$categories" ]; then \
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Re: Some easy to commit pr's

2011-07-12 Thread Ruslan Mahmatkhanov

12.07.2011 22:03, Doug Barton пишет:

On 07/12/2011 07:38, Ruslan Mahmatkhanov wrote:

In chromium follow to:


You can do something similar in FF with keywords, but that doesn't
really help you when the PR number is in an e-mail.

Yes, I realize it sounds incredibly lame to complain about the time it
takes to cut/paste one PR number. My point is simply that if you want to
get the maximum number of (very busy) people to have a chance to look at
your PR, your best bet is to include the link.


Doug


I'm fully agree with you, and i'm sent the link to pr's later (all of them are 
important for me). Chromium stuff was sent just in response to "magic ability", 
so you may treat it as joke and nothing more.


--
Regards,
Ruslan
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: /usr/ports/audio/hydrogen/Makefile

2011-07-12 Thread Ashish SHUKLA
Chris Rees writes:
> On 12 July 2011 11:54, Hans Petter Selasky  wrote:
>> Hi,
>> 
>> OPTIONS=        JACK "JACK support" on \
>>                ALSA "ALSA support" off \
>>                PORTAUDIO "PortAudio support" off \
>>                LIBARCHIVE "LibArchive support" off \
>>                LASH "Lash support" off \
>>                PORTAUDIO "Portaudio support" off \
>> 
>> 
>> PORTAUDIO option is listed twice.

My apologies, that is really stupid on my part. Not only PORTAUDIO option is
listed twice, but despite being last option it still has slash at the end.

I'll remove this in few minutes, unless you're doing it.

Thanks
-- 
Ashish SHUKLA  | GPG: F682 CDCC 39DC 0FEA E116  20B6 C746 CFA9 E74F A4B0
freebsd.org!ashish | http://people.freebsd.org/~ashish/

Avoid Success At All Costs !!


pgpPbQIpqtU28.pgp
Description: PGP signature


Re: Some easy to commit pr's

2011-07-12 Thread Doug Barton
On 07/12/2011 07:38, Ruslan Mahmatkhanov wrote:
> In chromium follow to:

You can do something similar in FF with keywords, but that doesn't
really help you when the PR number is in an e-mail.

Yes, I realize it sounds incredibly lame to complain about the time it
takes to cut/paste one PR number. My point is simply that if you want to
get the maximum number of (very busy) people to have a chance to look at
your PR, your best bet is to include the link.


Doug

-- 

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Some easy to commit pr's

2011-07-12 Thread Ruslan Mahmatkhanov

12.07.2011 19:29, Shaun Amott пишет:

On Tue, Jul 12, 2011 at 06:38:05PM +0400, Ruslan Mahmatkhanov wrote:

12.07.2011 17:48, Chris Rees ??:

On 12 July 2011 06:54, Doug Barton   wrote:

On 07/11/2011 22:51, Stephen Montgomery-Smith wrote:

On 07/12/2011 12:37 AM, Doug Barton wrote:

You'll likely get better results posting URls, FYI.


I used to give complete URLs.  Then I got told off, and told only to
write ports/x.


Well that's just silly. It's always easier to click on a URL than it is
to look it up other ways. If you(pl.) want people to look at the PR,
include the full URL in the e-mail. If anyone tells you different, send
them to me. :)



+10.

Sometimes I wonder if some people think we have a magic ability to get
to a PR by double-clicking on the number!


I can teach such a magic :)
In chromium follow to:
chrome://settings/searchEngines

Wrote this in fields:
"Add a new search engine": FreeBSD GNATS
"Keyword": g
"Url with % in place of query": http://www.freebsd.org/cgi/query-pr.cgi?pr=%s

Then just type "g ports/158797" in address bar and you are done :)




We also have a fancy easy-to-remember alias:

http://bugs.freebsd.org/123456


Nice one. Didn't know about it. Thanks.

--
Regards,
Ruslan
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Some easy to commit pr's

2011-07-12 Thread Shaun Amott
On Tue, Jul 12, 2011 at 06:38:05PM +0400, Ruslan Mahmatkhanov wrote:
> 12.07.2011 17:48, Chris Rees ??:
> > On 12 July 2011 06:54, Doug Barton  wrote:
> >> On 07/11/2011 22:51, Stephen Montgomery-Smith wrote:
> >>> On 07/12/2011 12:37 AM, Doug Barton wrote:
>  You'll likely get better results posting URls, FYI.
> >>>
> >>> I used to give complete URLs.  Then I got told off, and told only to
> >>> write ports/x.
> >>
> >> Well that's just silly. It's always easier to click on a URL than it is
> >> to look it up other ways. If you(pl.) want people to look at the PR,
> >> include the full URL in the e-mail. If anyone tells you different, send
> >> them to me. :)
> >>
> >
> > +10.
> >
> > Sometimes I wonder if some people think we have a magic ability to get
> > to a PR by double-clicking on the number!
> 
> I can teach such a magic :)
> In chromium follow to:
> chrome://settings/searchEngines
> 
> Wrote this in fields:
> "Add a new search engine": FreeBSD GNATS
> "Keyword": g
> "Url with % in place of query": http://www.freebsd.org/cgi/query-pr.cgi?pr=%s
> 
> Then just type "g ports/158797" in address bar and you are done :)
> 


We also have a fancy easy-to-remember alias:

http://bugs.freebsd.org/123456

-- 
Shaun Amott // PGP: 0x6B387A9A
"A foolish consistency is the hobgoblin
of little minds." - Ralph Waldo Emerson
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Some easy to commit pr's

2011-07-12 Thread Stephen Montgomery-Smith

Chris Rees wrote:



+10.

Sometimes I wonder if some people think we have a magic ability to get
to a PR by double-clicking on the number!

Stephen, I think you perhaps may have been told off for putting links
into PR audit trails? THAT is a bad idea; audit trails automatically
link PRs -- as you (I would expect) know very well.


Maybe that was it.  it was a long time ago.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


readlink -f

2011-07-12 Thread Warren Block
At the end of 2010, the -f option was added to the native 
readlink/stat(1) for CURRENT[1].  It was MFCed to RELENG-7 and -8 two 
weeks later[2].


"readlink -f" works in CURRENT, 7-STABLE, or 8-STABLE since then.

Porters running these newer versions may find "readlink -f" slipping 
through in their ports.  But it fails on 7.4-RELEASE and 8.2-RELEASE.[3]


One way to fix the problem is to replace 'readlink -f' with 'realpath', 
as done in the graphics/darktable port[4] and shamelessly copied by me 
for the Arduino port[5].


More elegant would be to check OSVERSION and only patch if necessary. 
These are untested:

RELENG-7: >=704100
RELENG-8: >=802501
CURRENT:  >=900027

1.  http://svnweb.freebsd.org/base?view=revision&revision=216203
2.  http://www.freebsd.org/cgi/cvsweb.cgi/src/usr.bin/stat/stat.c
3.  http://forums.freebsd.org/showthread.php?t=24839
4.  
http://www.freebsd.org/cgi/cvsweb.cgi/ports/graphics/darktable/Makefile?rev=1.13;content-type=text%2Fplain
5.  http://www.freebsd.org/cgi/query-pr.cgi?pr=158832
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Some easy to commit pr's

2011-07-12 Thread Ruslan Mahmatkhanov

12.07.2011 17:48, Chris Rees пишет:

On 12 July 2011 06:54, Doug Barton  wrote:

On 07/11/2011 22:51, Stephen Montgomery-Smith wrote:

On 07/12/2011 12:37 AM, Doug Barton wrote:

You'll likely get better results posting URls, FYI.


I used to give complete URLs.  Then I got told off, and told only to
write ports/x.


Well that's just silly. It's always easier to click on a URL than it is
to look it up other ways. If you(pl.) want people to look at the PR,
include the full URL in the e-mail. If anyone tells you different, send
them to me. :)



+10.

Sometimes I wonder if some people think we have a magic ability to get
to a PR by double-clicking on the number!


I can teach such a magic :)
In chromium follow to:
chrome://settings/searchEngines

Wrote this in fields:
"Add a new search engine": FreeBSD GNATS
"Keyword": g
"Url with % in place of query": http://www.freebsd.org/cgi/query-pr.cgi?pr=%s

Then just type "g ports/158797" in address bar and you are done :)




Stephen, I think you perhaps may have been told off for putting links
into PR audit trails? THAT is a bad idea; audit trails automatically
link PRs -- as you (I would expect) know very well.

Chris




--
Regards,
Ruslan
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Some easy to commit pr's

2011-07-12 Thread Matthias Andree
Am 12.07.2011 15:48, schrieb Chris Rees:
> On 12 July 2011 06:54, Doug Barton  wrote:
>> On 07/11/2011 22:51, Stephen Montgomery-Smith wrote:
>>> On 07/12/2011 12:37 AM, Doug Barton wrote:
 You'll likely get better results posting URls, FYI.
>>>
>>> I used to give complete URLs.  Then I got told off, and told only to
>>> write ports/x.
>>
>> Well that's just silly. It's always easier to click on a URL than it is
>> to look it up other ways. If you(pl.) want people to look at the PR,
>> include the full URL in the e-mail. If anyone tells you different, send
>> them to me. :)
>>
> 
> +10.
> 
> Sometimes I wonder if some people think we have a magic ability to get
> to a PR by double-clicking on the number!

You can sed FreeBSD mails per maildrop or (eek!) procmail or
thereabouts, but I prefer full URLs for security or PR IDs too -- of
course not in the PR: line unless we know for certain that all scripts
can parse fully-fledged URLs.

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: /usr/ports/audio/hydrogen/Makefile

2011-07-12 Thread Chris Rees
On 12 July 2011 11:54, Hans Petter Selasky  wrote:
> Hi,
>
> OPTIONS=        JACK "JACK support" on \
>                ALSA "ALSA support" off \
>                PORTAUDIO "PortAudio support" off \
>                LIBARCHIVE "LibArchive support" off \
>                LASH "Lash support" off \
>                PORTAUDIO "Portaudio support" off \
>
>
> PORTAUDIO option is listed twice.
>

Has been for a while now.

http://www.freebsd.org/cgi/cvsweb.cgi/ports/audio/hydrogen/Makefile.diff?r1=1.22;r2=1.23;f=h

Responsible parties CCd.

Chris
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Some easy to commit pr's

2011-07-12 Thread Chris Rees
On 12 July 2011 06:54, Doug Barton  wrote:
> On 07/11/2011 22:51, Stephen Montgomery-Smith wrote:
>> On 07/12/2011 12:37 AM, Doug Barton wrote:
>>> You'll likely get better results posting URls, FYI.
>>
>> I used to give complete URLs.  Then I got told off, and told only to
>> write ports/x.
>
> Well that's just silly. It's always easier to click on a URL than it is
> to look it up other ways. If you(pl.) want people to look at the PR,
> include the full URL in the e-mail. If anyone tells you different, send
> them to me. :)
>

+10.

Sometimes I wonder if some people think we have a magic ability to get
to a PR by double-clicking on the number!

Stephen, I think you perhaps may have been told off for putting links
into PR audit trails? THAT is a bad idea; audit trails automatically
link PRs -- as you (I would expect) know very well.

Chris
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


/usr/ports/audio/hydrogen/Makefile

2011-07-12 Thread Hans Petter Selasky
Hi,

OPTIONS=JACK "JACK support" on \
ALSA "ALSA support" off \
PORTAUDIO "PortAudio support" off \
LIBARCHIVE "LibArchive support" off \
LASH "Lash support" off \
PORTAUDIO "Portaudio support" off \


PORTAUDIO option is listed twice.

--HPS
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: exiv2 version number

2011-07-12 Thread Baptiste Daroussin

On Tue, 12 Jul 2011 11:28:29 +0200, Leslie Jensen wrote:

At the moment when I do


pkg_version -vIL=


I get

exiv2-0.21,1   >   succeeds index (index has 
0.21.1)



From what I can see the difference is a comma or a dot, so maybe it's
just a typo but I think it needs to be corrected.

Thanks

/Leslie
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to 
"freebsd-ports-unsubscr...@freebsd.org"



My mistake, this should be fixed.

Bapt
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: www/p5-libwww dependency detection broken in mail/p5-Mail-SpamAssassin

2011-07-12 Thread wen heping
2011/7/12 Matthias Andree :
> Am 12.07.2011 03:22, schrieb Doug Barton:
>> spamassassin has the following for RUN_ and BUILD_:
>>
>> ${SITE_PERL}/Bundle/LWP.pm:${PORTSDIR}/www/p5-libwww
>>
>> That path is no longer correct, resulting in a loop. I can fix it here
>> if the maintainer agrees, but it should likely be searched for all other
>> ports that depend on this module to be sure that it's not broken elsewhere.
>
> Perhaps the port would want to be called www/p5-libwww6 if it causes

+1

> breakage all along?  It would also solve the portmaster incapability to
> handle the p5-libwww conflicts looping around p5-Net-HTTP...
> ___
> freebsd-ports@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-ports
> To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
>
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


exiv2 version number

2011-07-12 Thread Leslie Jensen


At the moment when I do


pkg_version -vIL=


I get

exiv2-0.21,1   >   succeeds index (index has 0.21.1)


From what I can see the difference is a comma or a dot, so maybe it's 
just a typo but I think it needs to be corrected.


Thanks

/Leslie
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: www/p5-libwww dependency detection broken in mail/p5-Mail-SpamAssassin

2011-07-12 Thread Matthias Andree
Am 12.07.2011 03:22, schrieb Doug Barton:
> spamassassin has the following for RUN_ and BUILD_:
> 
> ${SITE_PERL}/Bundle/LWP.pm:${PORTSDIR}/www/p5-libwww
> 
> That path is no longer correct, resulting in a loop. I can fix it here
> if the maintainer agrees, but it should likely be searched for all other
> ports that depend on this module to be sure that it's not broken elsewhere.

Perhaps the port would want to be called www/p5-libwww6 if it causes
breakage all along?  It would also solve the portmaster incapability to
handle the p5-libwww conflicts looping around p5-Net-HTTP...
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"