Re: codeblocks-devel looking for a committer

2017-10-26 Thread Luca Pizzamiglio
I'll take care of it

Best regards,
pizzamig

On Thu, Oct 26, 2017 at 7:08 AM, L.Bartoletti  wrote:
> Hi all,
>
> Since codeblocks is still buggy, I'm looking for a committer to PR #221703
> to have codeblocks-devel which works.
>
> Thank you.
>
> Regards
>
> Loïc
>
> ___
> freebsd-ports@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-ports
> To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Re: can't link against math.h

2017-10-26 Thread Bob Eager
On Thu, 26 Oct 2017 10:05:00 +0800
blubee blubeeme  wrote:

> I wrote a simple test program to test and see if math.h has the
> function: exp10f
> 
> #include 
> 
> int main(int argc, char** argv)
> {
> (void)argv;
> return ((int*)(&exp10))[argc];
> }
> 
> tried compiling it with clang:
> clang++ test.cpp -o test -lm
> test.cpp:7:17: error: use of undeclared identifier 'expf10'
> return ((int*)(&expf10))[argc];
> ^
> 1 error generated.
> 
> tried with gcc:
> gcc test.cpp -o test -lm
> test.cpp: In function 'int main(int, char**)':
> test.cpp:7:17: error: 'expf10' was not declared in this scope
>  return ((int*)(&expf10))[argc];
> 
> Does FreeBSD math.h have expf10 and if so, how do I link against it?

It's not in the C standard (C99 or C11). So why would it be available?
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: can't link against math.h

2017-10-26 Thread blubee blubeeme
Thanks for the tips

I didn't know that it wasn't in the std c library and was GNU specific
code. I think I'll take Montgomery-Smith
advice and implement it as this:

#define exp10f(x) (powf(10.,x))

Porting software is some interesting work.

On Thu, Oct 26, 2017 at 4:41 PM, Bob Eager  wrote:

> On Thu, 26 Oct 2017 10:05:00 +0800
> blubee blubeeme  wrote:
>
> > I wrote a simple test program to test and see if math.h has the
> > function: exp10f
> >
> > #include 
> >
> > int main(int argc, char** argv)
> > {
> > (void)argv;
> > return ((int*)(&exp10))[argc];
> > }
> >
> > tried compiling it with clang:
> > clang++ test.cpp -o test -lm
> > test.cpp:7:17: error: use of undeclared identifier 'expf10'
> > return ((int*)(&expf10))[argc];
> > ^
> > 1 error generated.
> >
> > tried with gcc:
> > gcc test.cpp -o test -lm
> > test.cpp: In function 'int main(int, char**)':
> > test.cpp:7:17: error: 'expf10' was not declared in this scope
> >  return ((int*)(&expf10))[argc];
> >
> > Does FreeBSD math.h have expf10 and if so, how do I link against it?
>
> It's not in the C standard (C99 or C11). So why would it be available?
> ___
> freebsd-ports@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-ports
> To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
>
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: USES pgsql:plpython?

2017-10-26 Thread Chris Rees
Hey,

You can use variable modifiers instead of the != ECHO (should also be ECHO_CMD)

I'll test and show you the changes later.

I'd be happy to commit the pgsql.mk changes myself.

Chris


On 26 October 2017 06:15:29 BST, "L.Bartoletti"  
wrote:
>Hi Chris and all,
>
>I will propose soon a new patch for pgsql. Today you can select a 
>version like this 9.2+, 9.5- but not with an interval like this 9.5-10.
>
>It was ready, but pending since months, in this PR #213038. 
>
>
>Can you also take a look at this, or do you want to separate this other
>
>request?
>
>Since postgis24 is landing #222703 
>, I have to 
>rework on postgis.mk very soon.
>
>Regards
>
>Loïc
>
>On 05.09.2017 20:47, Lbartoletti wrote:
>> Yes sorry. I wrote too fast :)
>> My patch is near to be ready. Just some tests to be sure.
>>
>> Thanks.
>>
>> Envoyé de mon smartphone BlackBerry 10.
>>    Message d'origine
>> De: Chris Rees
>> Envoyé: mardi 5 septembre 2017 20:44
>> À: L.Bartoletti; po...@freebsd.org
>> Cc: pg...@freebsd.org
>> Objet: Re: USES pgsql:plpython?
>>
>> By the way, the syntax is:
>>
>> USES= pgsql
>> WANT_PGSQL= plpython
>>
>> The argument to USES is for version selection.
>>
>> Chris
>>
>> On 5 September 2017 19:33:53 BST, Chris Rees 
>wrote:
>>> Hey,
>>>
>>> No reason at all... I just missed it out when I wrote that bit of
>>> pgsql.mk :)
>>>
>>> If you feel up to patching Mk/Uses/pgsql.mk (have a look at line
>135,
>>> add plpython and make another line below it to match the others).
>>> Please alphabetise the list while you're at it!
>>>
>>> If you can't get it to work, I'll do it.
>>>
>>> Cheers,
>>>
>>> Chris
>>>
>>> On 5 September 2017 19:25:41 BST, "L.Bartoletti"
>>>  wrote:
 Hi,

 I prepare a port which needs plpython. Is there any reason that we
 don't
 have the choice to write in our Makefile "USES pgsql:plpython"?

 Only because there are no ports dependent upon this port? Can I add
>it
 to my diff?

 Regards

 Loïc Bartoletti.

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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

Sale 10 Prozent Rabatt auf alles

2017-10-26 Thread citydisc.ch
Klicken Sie bitte 
[hier,](http://p.n2g04.com/l/343064603/c/0-16p0r-11jb4dc-72r)um zur Webversion 
zu gelangen.

(https://www.facebook.com/citydisc)

(https://twitter.com/citydiscch)

(http://www.citydisc.ch/)

[FILME](http://www.citydisc.ch/filme/)

[MUSIK](http://www.citydisc.ch/musik/)

[GAMES](http://www.citydisc.ch/games/)

[SPIELWAREN](http://www.citydisc.ch/spielwaren/)

[SOFTWARE](http://www.citydisc.ch/software/)

[HARDWARE & CE](http://www.citydisc.ch/hardware-und-ce/)

[OFFICE & TINTE](http://www.citydisc.ch/office-und-tinte/)

[MERCHANDISING](http://www.citydisc.ch/merchandising/)

[BÜCHER](http://www.citydisc.ch/buecher/)

[GUTSCHEINE](http://www.citydisc.ch/gutscheine/)

(http://www.citydisc.ch/)

Liebe Kundinnen, liebe Kunden


 10 % Rabatt auf das ganze Sortiment 



Rabattcode 10CD241017 in das Gutscheincode-Feld eintragen

(vom Rabatt ausgeschlossen sind bereits reduzierte Artikel 
sowie Spielkonsolen & Playstation VR/ Rabatt gültig bis Montag, 30. Oktober 
2017)

Viel Spass beim Entdecken wünscht Ihnen

Ihr Citydisc-Team

Chère cliente, cher client


10% de rabais sur l’ensemble de l'assortiment
===


Nous vous prions de bien vouloir noter le Code 10CD241017 
dans le champ „numéro du bon“

Exclus du rabais accordé sont les articles déjà en solde, les consoles et 
Playstation VR 
(bon valable jusqu’à 30.10.2017)

Nous vous souhaitons bien du plaisir sur notre site.

Votre équipe citydisc.ch

(http://www.citydisc.ch/detail/index/sArticle/1084841?number=492689)

SUNRISE AVENUE - HEARTBREAK CENTURY

CHF 24,90

(http://www.citydisc.ch/detail/index/sArticle/1065367?number=474608)

FIFA 18 (+Preorder FUT Bonus)

CHF 74,90

(http://www.citydisc.ch/detail/index/sArticle/850895?number=297304)

Game of Thrones - Staffel 7

CHF 39,90

(http://www.citydisc.ch/detail/index/sArticle/1099628?number=503336)

LEGO© 75184 Star Wars - Adventskalender/Calendrier de l'Avent

CHF 39,90

(http://www.citydisc.ch/detail/index/sArticle/1099632?number=503332)

LEGO© 41326 FRIENDS - Adventskalender/Calendrier de l'Avent

CHF 34,90

(http://www.citydisc.ch/detail/index/sArticle/1047278?number=457826)

Call of Duty: WWII (PS4)

CHF 74,90

[Kontakt](https://www.citydisc.ch/kontaktformular)| 
[AGBs](http://www.citydisc.ch/agb)| 
[Impressum](http://www.citydisc.ch/impressum)| [Newsletter 
abmelden](http://www.citydisc.n2g04.com/l/343064602/c/0-16p0r-11jb4dc-72r)

Preisänderungen und Fehler vorbehalten. Bilder können vom Originalprodukt 
abweichen.

Copyright 2017 © - Alle Rechte vorbehalten.

Wemeo GmbH | Industriestr. 20 | 8117 Fällanden
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

FreeBSD ports you maintain which are out of date

2017-10-26 Thread portscout
Dear port maintainer,

The portscout new distfile checker has detected that one or more of your
ports appears to be out of date. Please take the opportunity to check
each of the ports listed below, and if possible and appropriate,
submit/commit an update. If any ports have already been updated, you can
safely ignore the entry.

You will not be e-mailed again for any of the port/version combinations
below.

Full details can be found at the following URL:
http://portscout.freebsd.org/po...@freebsd.org.html


Port| Current version | New version
+-+
devel/aws-sdk-cpp   | 1.2.16  | 1.2.24
+-+
graphics/opencv | 2.4.13.1| 3.3.1
+-+
graphics/opencv-core| 2.4.13.1| 3.3.1
+-+
graphics/opencv-java| 2.4.13.1| 3.3.1
+-+
graphics/py-opencv  | 2.4.13.1| 3.3.1
+-+
mail/nullmailer | 1.13| 2.1
+-+
science/libint  | 1-1-6   | v2.4.0
+-+


If any of the above results are invalid, please check the following page
for details on how to improve portscout's detection and selection of
distfiles on a per-port basis:

http://portscout.freebsd.org/info/portscout-portconfig.txt

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


Re: Files conflicts in ports

2017-10-26 Thread Kubilay Kocak
On 10/26/17 3:58 PM, L.Bartoletti wrote:
> Hi Rodrigo,
> 
> Thank you for this precious tool.
> 
> One question, seeing one of my ports which have conflicts
> (devel/py-gtfslib
> http://pkgtool.osorio.me/conflicts/lbartole...@tuxfamily.org.html). Is
> it or not good to install test files?


They're all effectively upstream bugs: installing modules into shared
locations. 'tests' is a common enough module name that its one of the
most easily observed in practice.

There's nothing intrinsically wrong with tests being installed, but they
should be under/within their package module directories.

Most projects exclude them (from installation) with something like:

packages = find_packages(exclude=[...]),

Though doing the above for a project with this packaging 'bug' is not
really the correct solution. Maybe for a short term
files/patch-setup.py, but report it upstream

> Regards.
> 
> Loïc
> 
> On 10.10.2017 20:52, Rodrigo Osorio wrote:
>> Dear port maintainers,
>>
>> It appears that a number of ports install files with the same names at
>> the same locations,
>> causing file conflicts and unexpected behaviors for users.
>>
>> To help solving this issue I ran a tool to list per maintainer the
>> conflicting ports with
>> the list of impacted files ; the list is updated every day at 4am UTC.
>>
>> http://pkgtool.osorio.me/conflicts/
>>
>> I believe most of the conflicts are trivial and can be solved with a
>> proper declaration in the CONFLICTS variable.
>> So take a look at it and don't hesitate to come back to me if you have
>> questions.
>>
>> best regards,
>>
>> - rodrigo
>>
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Re: Files conflicts in ports

2017-10-26 Thread Rodrigo Osorio


On 10/26/17 13:45, Kubilay Kocak wrote:

On 10/26/17 3:58 PM, L.Bartoletti wrote:

Hi Rodrigo,

Thank you for this precious tool.

One question, seeing one of my ports which have conflicts
(devel/py-gtfslib
http://pkgtool.osorio.me/conflicts/lbartole...@tuxfamily.org.html). Is
it or not good to install test files?


They're all effectively upstream bugs: installing modules into shared
locations. 'tests' is a common enough module name that its one of the
most easily observed in practice.

There's nothing intrinsically wrong with tests being installed, but they
should be under/within their package module directories.

Most projects exclude them (from installation) with something like:

packages = find_packages(exclude=[...]),

Though doing the above for a project with this packaging 'bug' is not
really the correct solution. Maybe for a short term
files/patch-setup.py, but report it upstream


Regards.

Loïc

On 10.10.2017 20:52, Rodrigo Osorio wrote:

Dear port maintainers,

It appears that a number of ports install files with the same names at
the same locations,
causing file conflicts and unexpected behaviors for users.

To help solving this issue I ran a tool to list per maintainer the
conflicting ports with
the list of impacted files ; the list is updated every day at 4am UTC.

http://pkgtool.osorio.me/conflicts/

I believe most of the conflicts are trivial and can be solved with a
proper declaration in the CONFLICTS variable.
So take a look at it and don't hesitate to come back to me if you have
questions.

best regards,

- rodrigo


___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
I agree with Kubilay, If tests aren't relevant for production use the 
can be skipped.
The point here is many (if not all) py- packages install the same test 
files and this is wrong.


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

Re: Files conflicts in ports

2017-10-26 Thread Kubilay Kocak
On 10/26/17 11:00 PM, Rodrigo Osorio wrote:
> 
> On 10/26/17 13:45, Kubilay Kocak wrote:
>> On 10/26/17 3:58 PM, L.Bartoletti wrote:
>>> Hi Rodrigo,
>>>
>>> Thank you for this precious tool.
>>>
>>> One question, seeing one of my ports which have conflicts
>>> (devel/py-gtfslib
>>> http://pkgtool.osorio.me/conflicts/lbartole...@tuxfamily.org.html). Is
>>> it or not good to install test files?
>>
>> They're all effectively upstream bugs: installing modules into shared
>> locations. 'tests' is a common enough module name that its one of the
>> most easily observed in practice.
>>
>> There's nothing intrinsically wrong with tests being installed, but they
>> should be under/within their package module directories.
>>
>> Most projects exclude them (from installation) with something like:
>>
>> packages = find_packages(exclude=[...]),
>>
>> Though doing the above for a project with this packaging 'bug' is not
>> really the correct solution. Maybe for a short term
>> files/patch-setup.py, but report it upstream
>>
>>> Regards.
>>>
>>> Loïc
>>>
>>> On 10.10.2017 20:52, Rodrigo Osorio wrote:
 Dear port maintainers,

 It appears that a number of ports install files with the same names at
 the same locations,
 causing file conflicts and unexpected behaviors for users.

 To help solving this issue I ran a tool to list per maintainer the
 conflicting ports with
 the list of impacted files ; the list is updated every day at 4am UTC.

 http://pkgtool.osorio.me/conflicts/

 I believe most of the conflicts are trivial and can be solved with a
 proper declaration in the CONFLICTS variable.
 So take a look at it and don't hesitate to come back to me if you have
 questions.

 best regards,

 - rodrigo

> I agree with Kubilay, If tests aren't relevant for production use the
> can be skipped.
> The point here is many (if not all) py- packages install the same test
> files and this is wrong.
> 
> - rodrigo

Just to be explicit, in describing them as upstream bugs, I didn't also
mean they're *not* port bugs.

The above ports, and any port in fact, that currently install
conflicting files, must either:

- Add CONFLICTS[_*] with all of their conflicting ports, OR
- Not install them

This is separate from the issue of
value-of-installed-python-tests-for-*package*-users (*ports* users can
run them via the sdist in WRKSRC), and separate from the method of
resolving the conflict (removal, rename, upstream bug fix, patch, etc)

./koobs

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

Re: can't link against math.h

2017-10-26 Thread Dan Mack

% man 3 exp

 | NAME
 |  exp, expf, expl, exp2, exp2f, exp2l, expm1, expm1f, expm1l, pow, powf,
 |  powl - exponential and power functions

gives a good summary as well.

Dan

Steve Kargl  writes:

> On Thu, Oct 26, 2017 at 10:05:00AM +0800, blubee blubeeme wrote:
>> I wrote a simple test program to test and see if math.h has the function:
>> exp10f
>> #include 
>> 
>> int main(int argc, char** argv)
>> {
>> (void)argv;
>> return ((int*)(&exp10))[argc];
>> }
>> 
>> tried compiling it with clang:
>> clang++ test.cpp -o test -lm
>> test.cpp:7:17: error: use of undeclared identifier 'expf10'
>> return ((int*)(&expf10))[argc];
>> ^
>> 1 error generated.
>> 
>> tried with gcc:
>> gcc test.cpp -o test -lm
>> test.cpp: In function 'int main(int, char**)':
>> test.cpp:7:17: error: 'expf10' was not declared in this scope
>>  return ((int*)(&expf10))[argc];
>> 
>> Does FreeBSD math.h have expf10 and if so, how do I link against it?
>
> No.  You could answer this question with a simple grep on math.h.
>
> Which C standard specifies exp10f or expf10?
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Machine to Machine Users List

2017-10-26 Thread caron . wallace

Hello
there,Hope you
having a great day!

Would you
be interested in acquiring the list of customers or companies using  
Machine

to Machine (M2M)?

We
provide the Database across North America, EMEA, APAC and Latin  
America.


We also
have other Technology Users like:  
Internet of Things (IoT), Web of Things (WoT), Big Data,

SCADA, Cloud Computing, VoIP, PBX, SIP and many more.

Information
Fields: Company, First Name, Last Name,
Title, Email Address, Address, City, State/Province, ZIP/Postal Code,  
Country,
Phone, Fax, Employees, Revenue, SIC Code, Industry and Web  
Address.


If
you’re interested please let me know the geography and job title you
are looking out to target for so that we can provide you with counts,  
pricing,

sample file and more information in my next email.

Appreciate
your time and look forward to hear from you.

style="color:black">Regards,style="color:black">Caron  
WallaceMarketing
Executiveclass="gmail-MsoBookTitle">






style="color:rgb(166,166,166)">To Opt Out,
please reply with Leave Out in the Subject Line.style="color:black">


 
 powered by GSM. Free mail merge and  
email marketing software for Gmail.

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

Spam on -ports

2017-10-26 Thread Dave Horsfall
Is it official FreeBSD policy to allow spammers free reign on this list, 
or is the list owner merely incompetent?


--
Dave Horsfall DTM (VK2KFU)  "Those who don't understand security will suffer."
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Spam on -ports

2017-10-26 Thread Adam Weinberger
> On 26 Oct, 2017, at 14:50, Dave Horsfall  wrote:
> 
> Is it official FreeBSD policy to allow spammers free reign on this list, or 
> is the list owner merely incompetent?

You can opt out of spam by sending "unsubscribe" to 
freebsd-ports-unsubscr...@freebsd.org.

# Adam


-- 
Adam Weinberger
ad...@adamw.org
https://www.adamw.org

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


Re: Spam on -ports

2017-10-26 Thread Mark Linimon
On Fri, Oct 27, 2017 at 07:50:40AM +1100, Dave Horsfall wrote:
> Is it official FreeBSD policy to allow spammers free reign on this
> list, or is the list owner merely incompetent?

or is it 3) spam is a never-ending arms race, and the volunteers are
struggling to keep up?

...

Honestly, I do not understand why people make posts like this.

Speaking as someone who, behind the scenes, helps people try to stay
motivated, all you're doing is make other people's lives miserable --
including mine.

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


Re: Porters Handbook section 4.4

2017-10-26 Thread Russell Haley
Hello,

I'm still stuck building the new chapters I wrote for the Porters
Handbook. I can't seem to get the system to "find" the file noted in
my previous post:

russellh@prescott:~/FreeBSD/doc/en_US.ISO8859-1/books/porters-handbook%
make
env 
XML_CATALOG_FILES="file:///usr/home/russellh/FreeBSD/doc/en_US.ISO8859-1/books/porters-handbook/catalog-cwd.xml
 file:///usr/home/russellh/FreeBSD/doc/en_US.ISO8859-1/share/xml/catalog.xml
 file:///usr/home/russellh/FreeBSD/doc/share/xml/catalog.xml
file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc
--xinclude --nonet --maxvars 2 --stringparam
latestrevision.timestamp "2017-09-29 03:54:21" --stringparam
latestrevision.committer "wosch"   --stringparam
latestrevision.number "50969"
http://www.FreeBSD.org/XML/share/xml/freebsd-xhtml-chunk.xsl
book.parsed.xml
I/O error : Attempt to load network entity
http://docbook.sourceforge.net/release/xsl-ns/current/xhtml/chunk.xsl
warning: failed to load external entity
"http://docbook.sourceforge.net/release/xsl-ns/current/xhtml/chunk.xsl";
compilation error: file
file:///usr/home/russellh/FreeBSD/doc/share/xml/freebsd-xhtml-chunk.xsl
line 13 element import
xsl:import : unable to load
http://docbook.sourceforge.net/release/xsl-ns/current/xhtml/chunk.xsl
*** Error code 5

Stop.
make: stopped in
/usr/home/russellh/FreeBSD/doc/en_US.ISO8859-1/books/porters-handbook

I opened  
file:///usr/home/russellh/FreeBSD/doc/share/xml/freebsd-xhtml-chunk.xsl
and found the offending line. I can see the chunk.xsl file in a
browser, I can download the file with wget. I attempted to import it
from a local file as such (including numerous variations):



 which only gets me:

russellh@prescott:~/FreeBSD/doc/en_US.ISO8859-1/books/porters-handbook%
make
env 
XML_CATALOG_FILES="file:///usr/home/russellh/FreeBSD/doc/en_US.ISO8859-1/books/porters-handbook/catalog-cwd.xml
 file:///usr/home/russellh/FreeBSD/doc/en_US.ISO8859-1/share/xml/catalog.xml
 file:///usr/home/russellh/FreeBSD/doc/share/xml/catalog.xml
file:///usr/local/share/xml/catalog" /usr/local/bin/xsltproc
--xinclude --nonet --maxvars 2 --stringparam
latestrevision.timestamp "2017-09-29 03:54:21" --stringparam
latestrevision.committer "wosch"   --stringparam
latestrevision.number "50969"
http://www.FreeBSD.org/XML/share/xml/freebsd-xhtml-chunk.xsl
book.parsed.xml
compilation error: file
file:///usr/home/russellh/FreeBSD/doc/share/xml/freebsd-xhtml-chunk.xsl
line 13 element import
xsl:import : invalid URI reference file://chunk.xsl
*** Error code 5

Stop.
make: stopped in
/usr/home/russellh/FreeBSD/doc/en_US.ISO8859-1/books/porters-handbook


I also tried placing the file locally and removing the import line,
which gave me numerous errors as such:

runtime error: file
file:///usr/home/russellh/FreeBSD/doc/share/xml/freebsd-common.xsl
line 21 element call-template
The called template 'inline.monoseq' was not found.
runtime error: file
file:///usr/home/russellh/FreeBSD/doc/share/xml/freebsd-common.xsl
line 21 element call-template
The called template 'inline.monoseq' was not found.
runtime error: file
file:///usr/home/russellh/FreeBSD/doc/share/xml/freebsd-common.xsl
line 21 element call-template
The called template 'inline.monoseq' was not found.
runtime error: file
file:///usr/home/russellh/FreeBSD/doc/share/xml/freebsd-common.xsl
line 21 element call-template
The called template 'inline.monoseq' was not found.
runtime error: file
file:///usr/home/russellh/FreeBSD/doc/share/xml/freebsd-common.xsl
line 21 element call-template
The called template 'inline.monoseq' was not found.
runtime error: file
file:///usr/home/russellh/FreeBSD/doc/share/xml/freebsd-common.xsl
line 21 element call-template
The called template 'inline.monoseq' was not found.
runtime error: file
file:///usr/home/russellh/FreeBSD/doc/share/xml/freebsd-common.xsl
line 21 element call-template
The called template 'inline.monoseq' was not found.
no result for book.parsed.xml
*** Error code 9

So, there it sits, incomplete. If anyone can help or point me in some
direction to look, I would be appreciative.

Russ


On Wed, Oct 11, 2017 at 9:20 PM, Russell Haley  wrote:
> Hi,
>
> This is a rough cut of three new chapters at the beginning of the
> book. I have left all the original content in place (I think). I
> haven't attempted to get all the markup but I seem to have worked
> through all my xml errors. Unfortunately I'm getting an error about a
> missing xsl file
> "http://docbook.sourceforge.net/release/xsl-ns/current/xhtml/chunk.xsl";.
> I was able to manually download the file but I don't know where to put
> it yet.
>
> I'd like to get the new chapters to compile and at least take a stab
> at cleaning up the formatting before I put it on the review board.
> However, a patch file can be found here for now:
> https://github.com/RussellHaley/portershandbook .
>
> Build error:
>
> russellh@prescott:~/FreeBSD/doc/en_US.ISO8859-1/books/porters-handbook%
> make
> install /usr/home/russellh/FreeBSD/doc/s

FreeBSD Port: opensmtpd-5.9.2p1_3,1

2017-10-26 Thread Piotr Byliński
Hi,
Are there any plans or schedule to update Opensmtpd port to 6.0.2 version ?
Is it stable on FreeBSD for production ?
Thank you!


Best regads,
Piotr Byliński



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

Re: Spam on -ports

2017-10-26 Thread Thomas Mueller
> On 26 Oct, 2017, at 14:50, Dave Horsfall  wrote:

> Is it official FreeBSD policy to allow spammers free reign on this list, or 
> is the list owner merely incompetent?

I believe spam is filtered by software, a spam-suspicious message is sent to 
the moderator. 

Spam filters should not filter out good messages, thus some spam gets through.

But freebsd-questions seems to get the most spam of all FreeBSD emailing lists, 
much more than freebsd-ports..

Tom

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


Re: FreeBSD Port: opensmtpd-5.9.2p1_3,1

2017-10-26 Thread Herbert J. Skuhra
On Fri, Oct 27, 2017 at 08:13:34AM +0200, Piotr Byliński wrote:
> Hi,
> Are there any plans or schedule to update Opensmtpd port to 6.0.2 version ?
> Is it stable on FreeBSD for production ?
> Thank you!

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=213442

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