Re: NEW: geo/osm2pgsql

2015-10-30 Thread Landry Breuil
On Thu, Oct 29, 2015 at 08:24:08PM -0700, patrick keshishian wrote:
> On 10/29/15, patrick keshishian  wrote:
> > On 10/29/15, Landry Breuil  wrote:
> [snip]
> >> Now that postgresql.port.mk allows to run those tests with the correct
> >> charset, can we get an updated tarball with a patch for the default
> >> --cache value (and the corresponding discussion brought upstream) ? I'd
> >> like to import this one this weekend
> 
> Per request attached is a new tar-ball that takes more tests
> from FAIL to PASS. test-suite.log also attached.

Nice... some nits:

- patches will need comments, the ones fixing %format issues like
  patch-node-ram-cache_cpp need to go upstream in a PR, as
patch-sprompt_cpp and patch-tests_common-pg_cpp
- patch-node-persistent-cache_cpp puzzles me :) a -Werror case ?

I'll try to set cache to 300 directly as a default value inside
osm2pgsql instead of setting it for each and every test, so that by
default it works on OpenBSD with default system limits. I'll also
look into which limits are hit so that it can be documented.

As for the new cmake-based build, since there's been no release with it
yet, that can be worked on later...

Landry



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2015/10/30 02:39:31

Modified files:
infrastructure/man/man1: dpb.1 

Log message:
document debug.log



php-fpm 403 errors with httpd on amd64-current

2015-10-30 Thread Brett Mahar
Hi porters,

Long time no need for me to email this list! I upgraded my mailserver yesterday 
to -current (last upgrade was around 11th Sept) and now my squirrelmail no 
longer works :-(.

The problem is, going to my normal login screen nothing displays but "access 
denied". It is not a permissions issue as when I put an index.html file in the 
same directory httpd(8) displays it as normal.

There were some notes on the squirrelmail website about issues with php when 
using squirrel-1.4.22 which suggested to try the stable branch (I tried 
20151028_0201-SVN.stable.tar.gz but get the same problem).

in /var/www/logs/access.log:
coiloptic.org 197.231.221.211 - - [30/Oct/2015:17:07:11 +1100] "GET 
/portal/src/login.php HTTP/1.1" 403 0

in /var/www/logs/error.log:
Access to the script '/htdocs-squirrel/portal/src' has been denied (see 
security.limit_extensions)

in vi /etc/php-fpm.conf I initially tried the default, then changed to the 
below as suggested by search engines(neither worked):
security.limit_extensions = .php .php3 .php4 .php5 .html

I have been using php-5.5 up till now but also tried php-5.6 today and that has 
the same issue.

httpd.conf:
prefork 5

server "default" {
listen on * port 80
root "/htdocs"
}

server "default" {
listen on * tls port 443
root "/htdocs"
location "*.php" {
fastcgi socket \
"/run/php-fpm.sock"
}
}

Is there something I am missing? I see from searching marc.info there was some 
problem with tls on php lately...

Thanks,
Brett.



Re: new: databases/p5-Mojo-Pg

2015-10-30 Thread Landry Breuil
On Thu, Oct 29, 2015 at 02:41:52AM -0600, Abel Abraham Camarillo Ojeda wrote:
> On Thu, Oct 29, 2015 at 12:12 AM, Abel Abraham Camarillo Ojeda
>  wrote:
> > [...]
> > some json related tests fail - which is expected with p5-DBD-PG < 3.5.1,
> > I'll try to update it sometime soon, but I think that would be a bigger 
> > project
> > because the number of dependents...
> >
> 
> Now that I sent update for latest p5-DBD-Pg, import this using latest
> version - 2.14.
> 
> now all tests pass.

I've tested this with the p5-DBD-Pg update and both look good to me - ok
to import Mojo-Pg once p5-DBD-Pg update is in. pea@ ?

Landry



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 00:35:16

Modified files:
security/pinentry: Makefile 

Log message:
Fix pinentry wrapper installation.

reported by Raf Czlonka



Re: pinentry eats up nearly 100% CPU [Was: Re: CVS: cvs.openbsd.org: ports]

2015-10-30 Thread Antoine Jacoutot
> but doesn't end up in the package itself.

Fixed, thanks.

> $ pkg_info -I pinentry
> pinentry-0.9.6p1PIN or passphrase entry dialog (ncurses interface)
> 
> $ ls -l /usr/local/bin/pinentry*
> lrwxr-xr-x  1 root  wheel 15 Oct 28 21:44 /usr/local/bin/pinentry -> 
> pinentry-curses
> -r-xr-xr-x  1 root  bin 2844 Oct 25 14:35 
> /usr/local/bin/pinentry-curses
> 
> $ file /usr/local/bin/pinentry*
> /usr/local/bin/pinentry:symbolic link to 
> '/usr/local/bin/pinentry-curses'
> /usr/local/bin/pinentry-curses: Bourne shell script text executable
> 
> In the end, I had renamed the above two files and copied the built
> binary in its place:
> 
> $ ls -l /usr/local/bin/pinentry*
> -r-xr-xr-x  1 root  bin 2844 Oct 23 15:14 /usr/local/bin/pinentry
> -rwxr-xr-x  1 root  wheel  65760 Oct 30 01:06 
> /usr/local/bin/pinentry-curses
> lrwxr-xr-x  1 root  wheel 15 Oct 28 04:13 /usr/local/bin/pinentry.old 
> -> pinentry-curses
> 
> $ file /usr/local/bin/pinentry*
> /usr/local/bin/pinentry:Bourne shell script text executable
> /usr/local/bin/pinentry-curses: ELF 32-bit LSB shared object, Intel 
> 80386, version 1
> /usr/local/bin/pinentry.old:symbolic link to 
> '/usr/local/bin/pinentry-curses'
> 
> This, however, only "solves" the problem with the package but does *not*
> resolve the issue which I had initially reported - pinentry doesn't
> prompt for password, the terminal stays blank and pinentry-curses eats
> up 100% CPU.
> 
> Regards,
> 
> Raf
> 

-- 
Antoine



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 01:58:52

Modified files:
devel/nspr : Makefile distinfo 
devel/nspr/patches: patch-nspr_config_rules_mk 
patch-nspr_configure_in 
patch-nspr_pr_src_pthreads_ptthread_c 
patch-nspr_pr_tests_runtests_sh 

Log message:
Update to nspr 4.10.10.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 01:59:39

Modified files:
security/nss   : Makefile distinfo 

Log message:
Update to nss 3.20.1.

See 
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.20_release_notes
for 3.20 relnotes.

nss & nspr were tested in a bulk build by ajacoutot@, thanks!



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 14:29:06

Modified files:
multimedia/gstreamer1/plugins-good: distinfo 

Log message:
Update to gstreamer1-plugins-good-1.6.1.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 14:28:48

Modified files:
multimedia/gstreamer1/plugins-base: Makefile distinfo 

Log message:
Update to gstreamer1-plugins-base-1.6.1.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 14:28:05

Modified files:
multimedia/gstreamer1: Makefile.inc 

Log message:
Bump to 1.6.1.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 14:29:22

Modified files:
multimedia/gstreamer1/plugins-bad: Makefile distinfo 
multimedia/gstreamer1/plugins-bad/patches: patch-configure_ac 
multimedia/gstreamer1/plugins-bad/pkg: PLIST 
Removed files:
multimedia/gstreamer1/plugins-bad/patches: 
   
patch-gst-libs_gst_gl_Makefile_in 

Log message:
Update to gstreamer1-plugins-bad-1.6.1.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2015/10/30 16:20:21

Modified files:
net/czmq   : Makefile 

Log message:
avoid hidden dependencies, caught in a bulk



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 16:46:16

Modified files:
x11/lumina : Makefile.inc 

Log message:
Forgot to set HOMEPAGE in previous.
Not bumping since it was committed a couple minutes ago.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 14:29:38

Modified files:
multimedia/gstreamer1/plugins-ugly: Makefile distinfo 

Log message:
Update to gstreamer1-plugins-ugly-1.6.1.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 14:28:28

Modified files:
multimedia/gstreamer1/core: distinfo 
Removed files:
multimedia/gstreamer1/core/patches: 

patch-libs_gst_helpers_gst-ptp-helper_c 

Log message:
Update to gstreamer1-1.6.1.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 14:29:54

Modified files:
multimedia/gstreamer1/plugins-libav: distinfo 

Log message:
Update to gstreamer1-plugins-libav-1.6.1.



Re: new: databases/p5-Mojo-Pg

2015-10-30 Thread Abel Abraham Camarillo Ojeda
On Fri, Oct 30, 2015 at 10:10 AM, Landry Breuil  wrote:
> [...]
> Right, all tests now probably pass because postgresql.port.mk now
> defaults to create databases with -E UTF8. I'll commit the update, and
> whoever wants to import p5-Mojo-Pg on top can do so with my okay, or
> okay it and i'll do the import.
>
> Landry
>

Thanks to all!



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 17:33:48

Modified files:
x11/xfce4/xfdashboard: Makefile distinfo 
x11/xfce4/xfdashboard/pkg: PLIST 

Log message:
update to xfdashboard 0.4.1



Re: NEW: www/tbb - Tor Browser Bundle

2015-10-30 Thread attila

attila  writes:

> attila  writes:
>
>> attila  writes:
>>
>>> Hi ports@,
>>>
>>> I have been informed that my previous email re Tor Browser Bundle was
>>> malformed: the Content-Type header on the message says text/plain but
>>> should be multipart/mixed, which causes many (most?) MUAs to throw up
>>> all over it.  I'm not sure where the fault lies yet, and apologize for
>>> the screwed up attachment.
>>>
>>> In the interests of simplicity and efficacy the tarball can be found
>>> here: http://bits.haqistan.net/~attila/tbb.tgz
>>>
>>> Sorry.
>>>
>>> Pax, -A
>>
>> I've updated http://bits.haqistan.net/~attila/tbb.tgz with the
>> just-completed update to Tor Browser 4.5.3.  Tested on amd64.
>>
>> So... update & ping.
>>
>> Pax, -A
>
> Reupdate & reping:
>
> I brought the ports up to the current version, which is now 5.0.3.
> I've also solved my attachment woes; updated ports attached (URL above
> has new bits as well).  Tested on amd64.  There are packages available
> for testing at:
> http://mirrors.nycbug.org/pub/snapshots/packages/amd64/
> The README file there might be helpful if you want to test.
>
> FWIW, the GH repository is: https://github.com/torbsd/openbsd-ports
> YMMV.
>
> Pax, -A

Re-reupdate & re-reping:

Thanks to Daniel Jakots for pointing out that the inter-package
dependencies were all balled up and led to problems.  Updated ports
attached with better deps, updated packages for testing available at
the nycbug URL, above.

Pax, -A
-- 
http://trac.haqistan.net | att...@stalphonsos.com | 0xE6CC1EDB


tbb-503_0.tgz
Description: proposed new ports: tor browser bundle


[NEW] books/rfc

2015-10-30 Thread Peter Hessler
I've wanted a local cache of the RFCs for a long time, so I quickly
wrote up a simple port to keep them local, and a trivial pager helper
script.

use: $ rfc 2549

OK?

=
The RFC series contains technical and organizational documents about the
Internet, including the specifications and policy documents produced by
four streams: the Internet Engineering Task Force (IETF), the Internet
Research Task Force (IRTF), the Internet Architecture Board (IAB), and
Independent Submissions.
=

(and as is traditional, /this/ time with the tarball)


-- 
186,282 miles per second:

It isn't just a good idea, it's the law!


rfc.tgz
Description: application/tar-gz


CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 05:35:13

Modified files:
math/ntl   : Makefile distinfo 
math/ntl/patches: patch-src_VERSION_INFO 
math/ntl/pkg   : PLIST 

Log message:
Update to ntl-9.5.0.



[NEW] books/rfc

2015-10-30 Thread Peter Hessler
I've wanted a local cache of the RFCs for a long time, so I quickly
wrote up a simple port to keep them local, and a trivial pager helper
script.

use: $ rfc 2549

OK?

=
The RFC series contains technical and organizational documents about the
Internet, including the specifications and policy documents produced by
four streams: the Internet Engineering Task Force (IETF), the Internet
Research Task Force (IRTF), the Internet Architecture Board (IAB), and
Independent Submissions.
=


-- 
186,282 miles per second:

It isn't just a good idea, it's the law!



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 04:06:21

Modified files:
devel/git-cvs  : Makefile distinfo 
Removed files:
devel/git-cvs/patches: patch-setup_py 

Log message:
update to git-cvs 0.1.0, from uwe@, minor tweaks by me and ok with uwe.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2015/10/30 04:27:50

Modified files:
infrastructure/lib/DPB: Distfile.pm 

Log message:
even if the file was already checksummed, add an extra check on the size.
Catches up cases of several dpb trampling each other.

Carefully delete any cached information (and the file itself) in case
things no longer match.



ports/net/adsuck and how best to migrate around new CVS commit

2015-10-30 Thread Bryan Linton
On 2015-10-28 05:52:26, Theo de Raadt  wrote:
> CVSROOT:  /cvs
> Module name:  src
> Changes by:   dera...@cvs.openbsd.org 2015/10/28 05:52:26
> 
> Modified files:
>   lib/libc/asr   : asr.c 
>   share/man/man5 : resolv.conf.5 
> 
> Log message:
> Remove support for [addr]:port syntax from the "nameserver" line.
> This extension never made it to other systems.  (pledge is also happy
> with this.  The idea of DNS @ any port collides with pledge encouraring
> differentiation between DNS and non-DNS sockets)
> ok phessler jung sthen kettenis
> 

Hello ports@,

I have a question on how to best migrate my installation of
ports/net/adsuck around this new change.

I currently run adsuck as a local process on a machine that also
runs unbound as a caching nameserver.  I have unbound running on
127.0.0.1:53 and adsuck running on 127.0.0.1:54 and find it convenient
to swap the hashmark between the following two lines in /etc/resolv.conf
when I want to quickly switch adsuck off for whatever reason:

#nameserver 127.0.0.1
nameserver [127.0.0.1]:54

Since obviously adsuck and unbound cannot both run on the same port,
what options do I have to move forward?

I was thinking that I could switch them and run unbound on port 54,
but since adsuck uses a copy of /etc/resolv.conf I would have no way
to point it to port 54 so that option is out.

I would have adsuck run on 127.0.0.1:53 and unbound on 127.0.0.2:53
but I tried that in the past and remember that I hit some kind of
problem (it could very well have been user-error) and wasn't able to
get it to work.

How are other people running both adsuck and unbound on the same 
machine?  Would any of you mind sharing how your systems are setup?

Any pointers would be greatly appreciated.

Thank you.

-- 
Bryan



Re: NEW: geo/osm2pgsql

2015-10-30 Thread Stuart Henderson
On 2015/10/30 09:40, Landry Breuil wrote:
> On Thu, Oct 29, 2015 at 08:24:08PM -0700, patrick keshishian wrote:
> > On 10/29/15, patrick keshishian  wrote:
> > > On 10/29/15, Landry Breuil  wrote:
> > [snip]
> > >> Now that postgresql.port.mk allows to run those tests with the correct
> > >> charset, can we get an updated tarball with a patch for the default
> > >> --cache value (and the corresponding discussion brought upstream) ? I'd
> > >> like to import this one this weekend
> > 
> > Per request attached is a new tar-ball that takes more tests
> > from FAIL to PASS. test-suite.log also attached.
> 
> Nice... some nits:
> 
> - patches will need comments, the ones fixing %format issues like
>   patch-node-ram-cache_cpp need to go upstream in a PR, as
> patch-sprompt_cpp and patch-tests_common-pg_cpp

The %zd -> %llu may break some other OS, it may need a cast if
going upstream.

> - patch-node-persistent-cache_cpp puzzles me :) a -Werror case ?

looks like it.

> I'll try to set cache to 300 directly as a default value inside
> osm2pgsql instead of setting it for each and every test, so that by
> default it works on OpenBSD with default system limits. I'll also
> look into which limits are hit so that it can be documented.
> 
> As for the new cmake-based build, since there's been no release with it
> yet, that can be worked on later...
> 
> Landry
> 

| WANTLIB +=boost_filesystem boost_system boost_system-mt
| WANTLIB +=boost_thread-mt bz2 c crypto geos iconv lzma
| WANTLIB +=m pq proj protobuf-c pthread ssl stdc++ xml2 z

no need for iconv, it comes from the module

| MODULES = converters/libiconv \
|   databases/postgresql\
|   gcc4\
|   lang/lua\

I think the \ at the end of setting variables is a bit dangerous.
Probably wants forcing the lua version in case the default system
version isever changed, e.g. MODLUA_VERSION=5.1

| CONFIGURE_ENV +=  LUA=lua51

MODLUA_BIN

| CONFIGURE_ENV +=  LUA_INCLUDE=-I${LOCALBASE}/include/lua-5.1

MODLUA_INCL_DIR

| CONFIGURE_ENV +=  LUA_LIB=-llua5.1

MODLUA_LIB

Also set MODLUA_SA=Yes.

|   @${SUBST_CMD} ${WRKSRC}/docs/osm2pgsql.1

The patch just has "/usr/local" rather than TRUEPREFIX, probably from
running update-patches after building. Personally I'd leave the patch like
it is and change the SUBST_CMD to sed -i s,/usr/local,${TRUEPREFIX}, to
make updates easier, but otherwise the patch needs adjusting.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2015/10/30 03:46:45

Modified files:
infrastructure/lib/DPB: Trace.pm 

Log message:
grumble, preserve warning message before the trace proper



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 05:59:39

Modified files:
devel/p5-Test-Strict: Makefile distinfo 

Log message:
Update to p5-Test-Strict-0.31.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 04:43:29

Modified files:
devel/p5-Test-Cmd: Makefile distinfo 

Log message:
Update to p5-Test-Cmd-1.09.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 06:47:41

Modified files:
audio/ario : Makefile 
audio/deadbeef : Makefile 
audio/gimmix   : Makefile 
audio/grip : Makefile 
audio/ncmpcpp  : Makefile 
audio/vagalume : Makefile 
audio/vorbis-tools: Makefile 
databases/apache-couchdb: Makefile 
databases/evolution-data-server: Makefile 
devel/libgdata : Makefile 
devel/libgit2/libgit2-glib: Makefile 
devel/libvirt-glib: Makefile 
editors/abiword: Makefile 
games/bzflag   : Makefile 
games/f1spirit : Makefile 
games/freeciv  : Makefile 
games/manaplus : Makefile 
games/megaglest/base: Makefile 
games/quake: Makefile 
geo/foxtrotgps : Makefile 
geo/gdal   : Makefile 
geo/postgis: Makefile 
geo/spatialite/librasterlite2: Makefile 
geo/spatialite/librewms: Makefile 
geo/viking : Makefile 
graphics/gimp/stable: Makefile 
japanese/gwaei : Makefile 
mail/claws-mail: Makefile 
mail/libetpan  : Makefile 
math/R : Makefile 
math/octave: Makefile 
multimedia/gstreamer-0.10/plugins-bad: Makefile 
multimedia/mediatomb: Makefile 
net/castget: Makefile 
net/centerim   : Makefile 
net/megatools  : Makefile 
net/quvi/libquvi: Makefile 
net/quvi/quvi  : Makefile 
net/seafile/seafile: Makefile 
net/transmission: Makefile 
net/xmlrpc-c   : Makefile 
net/zabbix : Makefile 
productivity/libgcal: Makefile 

Log message:
sync WANTLIB (curl+nghttp2)



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 06:39:17

Modified files:
x11/xfce4/xfce4-whiskermenu: Makefile distinfo 

Log message:
xfce4-whiskermenu 1.5.1



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 07:00:37

Modified files:
editors/vim: Makefile distinfo 
editors/vim/patches: patch-runtime_filetype_vim 
editors/vim/pkg: PLIST-main 

Log message:
update to vim 7.4.900



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 06:59:18

Modified files:
security/clamav: Makefile 
sysutils/collectd: Makefile 
sysutils/conky : Makefile 
sysutils/curlftpfs: Makefile 
sysutils/libvirt: Makefile 
telephony/asterisk: Makefile 
telephony/kamailio: Makefile 
textproc/html-xml-utils: Makefile 
textproc/liblrdf: Makefile 
textproc/libnxml: Makefile 
textproc/mupdf : Makefile 
textproc/raptor: Makefile 
textproc/rasqal: Makefile 
textproc/redland: Makefile 
www/cclive : Makefile 
www/ruby-passenger: Makefile 
www/uget   : Makefile 
x11/e17/e  : Makefile 
x11/e17/e_dbus : Makefile 
x11/e17/ecore  : Makefile 
x11/e17/edje   : Makefile 
x11/e17/efreet : Makefile 
x11/e17/elementary: Makefile 
x11/e17/emotion: Makefile 
x11/e17/ethumb : Makefile 
x11/ede/desktop: Makefile 
x11/gnome/builder: Makefile 
x11/gnome/documents: Makefile 
x11/gnome/eog-plugins: Makefile 
x11/gnome/grilo: Makefile 
x11/gnome/grilo-plugins: Makefile 
x11/gnome/gvfs : Makefile 
x11/gnome/online-miners: Makefile 
x11/gnome/photos: Makefile 
x11/gnome/totem-pl-parser: Makefile 
x11/nx/opennx  : Makefile 
x11/pinot  : Makefile 
x11/virt-viewer: Makefile 
x11/xfce4/tumbler: Makefile 

Log message:
sync WANTLIB (curl+nghttp2)



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Anthony J . Bentley
CVSROOT:/cvs
Module name:ports
Changes by: bent...@cvs.openbsd.org 2015/10/30 08:12:42

Modified files:
sysutils/colorls: Makefile 
sysutils/colorls/patches: patch-Makefile patch-extern_h 
  patch-ls_c patch-print_c patch-util_c 

Log message:
Calculate Unicode column widths correctly.

ok naddy@ (maintainer)



Re: [NEW] books/rfc

2015-10-30 Thread Anthony J. Bentley
Peter Hessler writes:
> I've wanted a local cache of the RFCs for a long time, so I quickly
> wrote up a simple port to keep them local, and a trivial pager helper
> script.

I like this idea.

PKGNAME defaults to ${DISTNAME}, so you can remove that line.

Might as well use https consistently for HOMEPAGE/MASTER_SITES/MASTER_SITES0.

The commented MASTER_SITES line should be removed (or the ftp server
should be listed after the https server in MASTER_SITES, but I don't see
much point in that since they're the same source).

rfc-index.txt and bcp-index.txt seem like unstable files that will
become unfetchable (change hashes) often. They already list RFCs that
won't exist in the package. Not sure it makes sense to keep these around.

The mirror has RFCs1001-1500.tar.gz and RFCs7001-7500.tar.gz, but these
aren't included in the port.

You can use sed -i instead of perl -i -pe.

When I try installing:

/usr/ports/pobj/rfc-0.0.7000/bin/install -c  -m 644 
/usr/ports/pobj/rfc-0.0.7000/rfc*.txt 
/usr/ports/pobj/rfc-0.0.7000/fake-amd64/usr/local/share/doc/rfc/
/bin/sh: /usr/ports/pobj/rfc-0.0.7000/bin/install: Argument list too long

Quick hack to fix it: replace
${INSTALL_DATA} ${WRKDIST}/rfc*.txt ${INSTALL_LOC}/
with
.for i in 1 2 3 4 5 6 7 8 9
${INSTALL_DATA} ${WRKDIST}/rfc$i*.txt ${INSTALL_LOC}/
.endfor

-- 
Anthony J. Bentley



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 06:07:12

Modified files:
geo/postgis: Makefile distinfo 
geo/postgis/pkg: PLIST 

Log message:
Update to postgis 2.2.0.

See http://postgis.net/2015/10/07/postgis-2.2.0 for details.
Now versions liblwgeom so USE_LIBTOOL is needed.
Remove LD_PRELOAD=libpthread.so for tests since it isnt needed anymore
(spotted by abieber@)
rtpostgis still has issues during tests but it doesnt seem a regression,
and i'll look into this.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 06:19:41

Added files:
geo/postgis/patches: patch-liblwgeom_bytebuffer_h 
 patch-liblwgeom_effectivearea_h 
 patch-liblwgeom_lwin_twkb_c 
 patch-liblwgeom_varint_h 

Log message:
Add upstream patch removing BOM markers from source files. Everyone
loves UTF8 but gcc.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 06:19:59

Modified files:
www/pecl-http  : Makefile 

Log message:
regen WANTLIB



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 06:17:24

ports/www/pecl-http/patches

Update of /cvs/ports/www/pecl-http/patches
In directory cvs.openbsd.org:/tmp/cvs-serv4714/patches

Log Message:
Directory /cvs/ports/www/pecl-http/patches added to the repository



Re: new: databases/p5-Mojo-Pg

2015-10-30 Thread Pierre-Emmanuel André
On Fri, Oct 30, 2015 at 09:26:02AM +0100, Landry Breuil wrote:
> On Thu, Oct 29, 2015 at 02:41:52AM -0600, Abel Abraham Camarillo Ojeda wrote:
> > On Thu, Oct 29, 2015 at 12:12 AM, Abel Abraham Camarillo Ojeda
> >  wrote:
> > > [...]
> > > some json related tests fail - which is expected with p5-DBD-PG < 3.5.1,
> > > I'll try to update it sometime soon, but I think that would be a bigger 
> > > project
> > > because the number of dependents...
> > >
> > 
> > Now that I sent update for latest p5-DBD-Pg, import this using latest
> > version - 2.14.
> > 
> > now all tests pass.
> 
> I've tested this with the p5-DBD-Pg update and both look good to me - ok
> to import Mojo-Pg once p5-DBD-Pg update is in. pea@ ?

Yes, i'm ok with this update (my last attempt to update p5-DBD-Pg was not 
committed
because of pbs with utf8, see 
http://marc.info/?l=openbsd-ports=139454436212975=2 ).

Tested with PostgreSQL 9.4.5 without any pbs.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 06:18:11

Added files:
www/pecl-http/patches: patch-config9_m4 

Log message:
don't require raphf/propro to be activated before allowing pecl-http to build,
problem reported by nigel@



Re: LibreOffice trouble

2015-10-30 Thread Ed Ahlsen-Girard
On Fri, 31 Jul 2015 21:02:38 -0500
Ed Ahlsen-Girard  wrote:

> On Wed, 29 Jul 2015 04:58:42 +0300
> Vadim Zhukov  wrote:
> 
>  [...]  
>  [...]  
>  [...]  
> 
> Fix was back up user defined templates, remove .config/libreoffice,
> reinstall.
> 

Repeated this morning to fix after the October 28 snap.

Surprisingly, the dialog box to import the templates refused to close,
and captured the mouse whenever focus was set to LibreOffice at all.
Had to kill the process.

-- 

Edward Ahlsen-Girard
Ft Walton Beach, FL



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/10/30 06:09:51

Modified files:
geo/postgis/pkg: PLIST 

Log message:
unbreak



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 06:08:09

Removed files:
geo/postgis/pkg: README 

Log message:
Remove README explaining how to preload libpthread in postgresql, it
seems it's not needed anymore.



Re: [NEW] books/rfc

2015-10-30 Thread David Dahlberg
Am Freitag, den 30.10.2015, 12:35 +0100 schrieb Peter Hessler:
> I've wanted a local cache of the RFCs for a long time, so I quickly
> wrote up a simple port to keep them local, and a trivial pager helper
> script.

There seems to be a RFCs1001-1500.tar.gz missing. Also missing is
RFCs7001-7500.tar.gz, or is this set not completed yet?

Small final remark: If GNU can add 20 pages of licence around a one-
liner script, we might at least add a few lines of mandoc(7). Here you
are.
.Dd $Mdocdate: October 30 2015 $
.Dt RFC 1
.Os
.Sh NAME
.Nm rfc
.Nd shows text from local collection of RFCs
.Sh SYNOPSIS
.Nm 
.Ar number
.Sh DESCRIPTION
.Nm
will show the RFC referenced by
.Ar number
in a
.Ev PAGER .
.Sh ENVIRONMENT
.Bl -tag -width Ds
.It Ev PAGER
The
.Ev PAGER
to be used. Default: less.
.El
.Sh FILES
.Bl -tag -width Ds
.It Pa /usr/local/share/doc/rfc/rfc-index.txt
Index of locally available RFCs.
.El
.Sh EXIT STATUS
.Ex -std
.Sh EXAMPLES
$ rfc 2549
.Sh SEE ALSO
.Xr less 1
.Sh HISTORY
The
.Nm
command was first released on 30 Oct 2015.
.Sh AUTHORS
.An Peter Hessler Aq Mt phess...@openbsd.org


CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 08:43:22

Modified files:
sysutils/freeipmi: Makefile distinfo 

Log message:
update to freeipmi-1.4.11



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 08:45:13

Modified files:
x11/xfce4/parole: Makefile distinfo 
x11/xfce4/parole/pkg: PLIST 

Log message:
update to parole 0.8.1



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 09:16:31

Modified files:
x11/xfce4/xfce4-pulseaudio: Makefile distinfo 

Log message:
update to xfce4-pulseaudio 0.2.4



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 09:00:43

Modified files:
sysutils/menulibre: Makefile distinfo 
sysutils/menulibre/patches: patch-menulibre_util_py 
sysutils/menulibre/pkg: PLIST 

Log message:
update to menulibre 2.1.2



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 16:30:44

Modified files:
net/p5-SNMP-Info: Makefile distinfo 

Log message:
Update to p5-SNMP-Info-3.29.



www/pecl-http bad HOMEPAGE

2015-10-30 Thread Alexey Suslikov
Hi ports@.

Due to _PECLMOD=http homepage renders to
http://pecl.php.net/package/http which is now Error 404.

New homepage is http://pecl.php.net/package/pecl_http



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 09:59:36

Modified files:
net/p5-Chatbot-Eliza: Makefile distinfo 

Log message:
Update to p5-Chatbot-Eliza-1.06.



Re: new: databases/p5-Mojo-Pg

2015-10-30 Thread Landry Breuil
On Fri, Oct 30, 2015 at 01:23:27PM +0100, Pierre-Emmanuel André wrote:
> On Fri, Oct 30, 2015 at 09:26:02AM +0100, Landry Breuil wrote:
> > On Thu, Oct 29, 2015 at 02:41:52AM -0600, Abel Abraham Camarillo Ojeda 
> > wrote:
> > > On Thu, Oct 29, 2015 at 12:12 AM, Abel Abraham Camarillo Ojeda
> > >  wrote:
> > > > [...]
> > > > some json related tests fail - which is expected with p5-DBD-PG < 3.5.1,
> > > > I'll try to update it sometime soon, but I think that would be a bigger 
> > > > project
> > > > because the number of dependents...
> > > >
> > > 
> > > Now that I sent update for latest p5-DBD-Pg, import this using latest
> > > version - 2.14.
> > > 
> > > now all tests pass.
> > 
> > I've tested this with the p5-DBD-Pg update and both look good to me - ok
> > to import Mojo-Pg once p5-DBD-Pg update is in. pea@ ?
> 
> Yes, i'm ok with this update (my last attempt to update p5-DBD-Pg was not 
> committed
> because of pbs with utf8, see 
> http://marc.info/?l=openbsd-ports=139454436212975=2 ).
> 
> Tested with PostgreSQL 9.4.5 without any pbs.

Right, all tests now probably pass because postgresql.port.mk now
defaults to create databases with -E UTF8. I'll commit the update, and
whoever wants to import p5-Mojo-Pg on top can do so with my okay, or
okay it and i'll do the import.

Landry



Re: www/pecl-http bad HOMEPAGE

2015-10-30 Thread Stuart Henderson
On 2015/10/30 17:34, Alexey Suslikov wrote:
> Hi ports@.
> 
> Due to _PECLMOD=http homepage renders to
> http://pecl.php.net/package/http which is now Error 404.
> 
> New homepage is http://pecl.php.net/package/pecl_http
> 

Thanks, fixed.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 09:51:30

Modified files:
www/pecl-http  : Makefile 

Log message:
fix HOMEPAGE, pointed out by Alexey Suslikov



[UPDATE] astro/ansiweather

2015-10-30 Thread Frederic Cambus
Hello ports@,

Here is a diff to update ansiweather to latest version (1.06).

I used the opportunity to merge do-install and post-install sections.

Index: Makefile
===
RCS file: /cvs/ports/astro/ansiweather/Makefile,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 Makefile
--- Makefile30 Sep 2015 06:57:35 -  1.3
+++ Makefile30 Oct 2015 15:29:56 -
@@ -11,7 +11,7 @@ PERMIT_PACKAGE_CDROM =Yes
 
 GH_ACCOUNT =   fcambus
 GH_PROJECT =   ansiweather
-GH_TAGNAME =   1.05
+GH_TAGNAME =   1.06
 
 RUN_DEPENDS =  textproc/jq
 
@@ -20,8 +20,6 @@ NO_TEST = Yes
 
 do-install:
${INSTALL_SCRIPT} ${WRKSRC}/ansiweather ${PREFIX}/bin
-
-post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ansiweather
${INSTALL_DATA} ${WRKSRC}/README.md ${PREFIX}/share/doc/ansiweather
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ansiweather
Index: distinfo
===
RCS file: /cvs/ports/astro/ansiweather/distinfo,v
retrieving revision 1.2
diff -u -p -u -p -r1.2 distinfo
--- distinfo30 Sep 2015 06:57:35 -  1.2
+++ distinfo30 Oct 2015 15:29:56 -
@@ -1,2 +1,2 @@
-SHA256 (ansiweather-1.05.tar.gz) = DVLGIItZbdVqyOcRNI45BOZgOP1OmAHJG+mKHtIBH2E=
-SIZE (ansiweather-1.05.tar.gz) = 6890
+SHA256 (ansiweather-1.06.tar.gz) = Gi4JxkjgyocbcRRnEAINj4YznobuaxQnvBrbl3QKLQ4=
+SIZE (ansiweather-1.06.tar.gz) = 7025
Index: patches/patch-ansiweather
===
RCS file: /cvs/ports/astro/ansiweather/patches/patch-ansiweather,v
retrieving revision 1.2
diff -u -p -u -p -r1.2 patch-ansiweather
--- patches/patch-ansiweather   30 Sep 2015 06:57:35 -  1.2
+++ patches/patch-ansiweather   30 Oct 2015 15:29:56 -
@@ -1,11 +1,11 @@
-$OpenBSD: patch-ansiweather,v 1.2 2015/09/30 06:57:35 jasper Exp $
 ansiweather.orig   Sun Sep 27 22:49:33 2015
-+++ ansiweatherTue Sep 29 09:41:11 2015
+$OpenBSD$
+--- ansiweather.orig   Fri Oct 30 05:38:36 2015
 ansiweatherFri Oct 30 05:40:15 2015
 @@ -36,7 +36,7 @@ get_config() {
fi
  }
  
--fetch_cmd=$(get_config "fetch_cmd" || echo "curl -s")
+-fetch_cmd=$(get_config "fetch_cmd" || echo "curl -sf")
 +fetch_cmd=$(get_config "fetch_cmd" || echo "ftp -V -o -")
  
  




Re: [NEW] net/py-dnslib

2015-10-30 Thread Bryan C. Everly
Hello all,

I have worked with the upstream author of this module (Paul Chakravarti -
copied) to address the two issues we were seeing in the test cases and he
kindly cut a new version that takes care of things.  Therefore, I've
updated the port (see attachment) for the new version and taken into
account the other suggestions on this thread.

Is this OK to proceed?  If so, would someone kindly commit it on my behalf?


Thanks,
Bryan

On Tue, Oct 27, 2015 at 8:11 PM, Stuart Henderson  wrote:

> On 2015/10/27 21:04, Remi Pointel wrote:
> > On 10/27/15 20:20, Bryan C. Everly wrote:
> > >Here is a port of py-dnslib which is used by some other ports I will
> > >shortly be submitting.
> > >
> > > From pkg/DESCR:
> > >
> > >A library to encode/decode DNS wire-format packets supporting both
> > >Python 2.7 and Python 3.2+.
> > >
> > >Comments or recommendations gratefully accepted as this is my first
> > >python library port.  As I am not a committer, I will need someone to
> > >commit the changes on my behalf if approved.
> > >
> > >Thanks,
> > >Bryan
> > >
> >
> > with the correct tarball this time...
> >
> > Remi.
>
> This could use MODPY_PI=Yes instead of setting MASTER_SITES, and untested
> but you could probably just do 'VERSIONS=python${MODPY_VER}' (or maybe just
> MODPY_BIN) in the do-test target to avoid patch/SUBST_CMD.
>
>


py-dnslib.tgz
Description: GNU Zip compressed data


Re: [NEW] books/rfc

2015-10-30 Thread Joerg Jung

> On 30 Oct 2015, at 12:34, Peter Hessler  wrote:
> 
> I've wanted a local cache of the RFCs for a long time, so I quickly
> wrote up a simple port to keep them local, and a trivial pager helper
> script.
> 
> use: $ rfc 2549
> 
> OK?

Forgot the attachment?

Have you seen this? http://www.unix-ag.uni-kl.de/~auerswal/rfc-reader/

> =
> The RFC series contains technical and organizational documents about the
> Internet, including the specifications and policy documents produced by
> four streams: the Internet Engineering Task Force (IETF), the Internet
> Research Task Force (IRTF), the Internet Architecture Board (IAB), and
> Independent Submissions.
> =
> 
> 
> -- 
> 186,282 miles per second:
> 
> It isn't just a good idea, it's the law!
> 



Re: [NEW] books/rfc

2015-10-30 Thread Joerg Jung

> On 30 Oct 2015, at 16:49, Joerg Jung  wrote:
> 
> 
>> On 30 Oct 2015, at 12:34, Peter Hessler  wrote:
>> 
>> I've wanted a local cache of the RFCs for a long time, so I quickly
>> wrote up a simple port to keep them local, and a trivial pager helper
>> script.
>> 
>> use: $ rfc 2549
>> 
>> OK?
> 
> Forgot the attachment?

Sorry, I see you sent already. 
Next time I first scroll down, read all mails and then reply.

> Have you seen this? http://www.unix-ag.uni-kl.de/~auerswal/rfc-reader/
> 
>> =
>> The RFC series contains technical and organizational documents about the
>> Internet, including the specifications and policy documents produced by
>> four streams: the Internet Engineering Task Force (IETF), the Internet
>> Research Task Force (IRTF), the Internet Architecture Board (IAB), and
>> Independent Submissions.
>> =
>> 
>> 
>> -- 
>> 186,282 miles per second:
>> 
>> It isn't just a good idea, it's the law!



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 10:20:11

Modified files:
databases/p5-DBD-Pg: Makefile distinfo 
databases/p5-DBD-Pg/pkg: PLIST 

Log message:
Update to p5-DBD-Pg 3.5.3.

use postgresql module for regress tests.
>From Abel Abraham Camarillo Ojeda acamari / the00z / org
ok pea@ (MAINTAINER)



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 10:24:22

Modified files:
databases/p5-Tangram: Makefile distinfo 
databases/p5-Tangram/patches: patch-Makefile_PL 
databases/p5-Tangram/pkg: PLIST 

Log message:
Update to p5-Tangram-2.12.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 09:54:50

Modified files:
games/lbreakout2: Makefile distinfo 
games/lbreakout2/patches: patch-client_Makefile_in 
games/lbreakout2/pkg: PLIST 

Log message:
Update to lbreakout2-2.6.5.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Edd Barrett
CVSROOT:/cvs
Module name:ports
Changes by: e...@cvs.openbsd.org2015/10/30 10:27:06

Modified files:
lang/pypy  : Makefile distinfo 

Log message:
Regenerate lang/pypy bootstrap.

Fixes build.

OK sthen@, thanks.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 10:34:05

Modified files:
devel/p5-Cache-FastMmap: Makefile distinfo 

Log message:
Update to p5-Cache-FastMmap-1.43.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 13:18:14

Modified files:
graphics/geeqie: Makefile distinfo 
graphics/geeqie/pkg: PLIST 

Log message:
Update to geeqie-1.2.2.



Re: [NEW] net/py-dnslib

2015-10-30 Thread Remi Pointel

On 10/30/15 17:30, Bryan C. Everly wrote:

Hello all,

I have worked with the upstream author of this module (Paul Chakravarti -
copied) to address the two issues we were seeing in the test cases and he
kindly cut a new version that takes care of things.  Therefore, I've
updated the port (see attachment) for the new version and taken into
account the other suggestions on this thread.

Is this OK to proceed?  If so, would someone kindly commit it on my behalf?


Hi,

I just added your port.

Thanks,

Remi.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2015/10/30 10:45:55

Modified files:
net: Makefile 

Log message:
SUBDIR += py-dnslib
SUBDIR += py-dnslib,python3



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 10:49:21

Modified files:
devel/p5-Config-General: Makefile distinfo 

Log message:
Update to p5-Config-General-2.60.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 10:52:04

Log message:
Import p5-Mojo-Pg-2.14.

Mojo::Pg is a tiny wrapper around DBD::Pg that makes PostgreSQL a lot of
fun to use with the Mojolicious real-time web framework.

Database and statement handles are cached automatically, so they can be
reused transparently to increase performance. And you can handle
connection timeouts gracefully by holding on to them only for short
amounts of time.

From Abel Abraham Camarillo Ojeda acamari / verlet / org
ok sthen@

Status:

Vendor Tag: acamari
Release Tags:   landry_2051030

N ports/databases/p5-Mojo-Pg/distinfo
N ports/databases/p5-Mojo-Pg/Makefile
N ports/databases/p5-Mojo-Pg/pkg/PLIST
N ports/databases/p5-Mojo-Pg/pkg/DESCR

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2015/10/30 10:44:54

Log message:
import py-dnslib, a library to en/decode DNS wire-format packets for Python.
from Bryan C. Everly (br...@bceassociates.com), maintainer.
ok sthen@ (thanks).

Status:

Vendor Tag: rpointel
Release Tags:   rpointel20151030

N ports/net/py-dnslib/Makefile
N ports/net/py-dnslib/distinfo
N ports/net/py-dnslib/pkg/PLIST
N ports/net/py-dnslib/pkg/DESCR
N ports/net/py-dnslib/patches/patch-run_tests_sh

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 11:21:04

Modified files:
devel/p5-Smart-Comments: Makefile distinfo 

Log message:
Update to p5-Smart-Comments-1.06.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 11:18:53

Log message:
Import osm2pgsql 0.88.1.

osm2pgsql is a tool for loading OpenStreetMap data into a PostgreSQL/PostGIS
database suitable for applications like rendering into a map, geocoding with
Nominatim, or general analysis.

From Patrick Keshishian with tweaks by sthen@ & myself
ok sthen@

Status:

Vendor Tag: pkeshishian
Release Tags:   landry_20153010

N ports/geo/osm2pgsql/Makefile
N ports/geo/osm2pgsql/distinfo
N ports/geo/osm2pgsql/pkg/DESCR
N ports/geo/osm2pgsql/pkg/PLIST
N ports/geo/osm2pgsql/patches/patch-options_cpp
N ports/geo/osm2pgsql/patches/patch-node-ram-cache_cpp
N ports/geo/osm2pgsql/patches/patch-configure_ac
N ports/geo/osm2pgsql/patches/patch-sprompt_cpp
N ports/geo/osm2pgsql/patches/patch-docs_osm2pgsql_1
N ports/geo/osm2pgsql/patches/patch-tests_common-pg_cpp

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 11:19:28

Modified files:
geo: Makefile 

Log message:
+osm2pgsql



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 10:42:51

Modified files:
devel/p5-Class-C3: Makefile distinfo 

Log message:
Update to p5-Class-C3-0.30.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 10:40:18

Modified files:
astro/ansiweather: Makefile distinfo 
astro/ansiweather/patches: patch-ansiweather 

Log message:
update to ansiweather-1.06, from maintainer Frederic Cambus



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2015/10/30 10:52:54

Modified files:
databases  : Makefile 

Log message:
+p5-Mojo-Pg



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 10:55:43

Modified files:
devel/p5-PadWalker: Makefile distinfo 

Log message:
Update to p5-PadWalker-2.2.



Re: NEW: geo/osm2pgsql

2015-10-30 Thread Landry Breuil
On Fri, Oct 30, 2015 at 11:11:14AM +0100, Landry Breuil wrote:
> On Fri, Oct 30, 2015 at 10:02:07AM +, Stuart Henderson wrote:
> > On 2015/10/30 09:40, Landry Breuil wrote:
> > > On Thu, Oct 29, 2015 at 08:24:08PM -0700, patrick keshishian wrote:
> > > > On 10/29/15, patrick keshishian  wrote:
> > > > > On 10/29/15, Landry Breuil  wrote:


Here's what i intend to import shortly with sthen's okay for reference:
- use MODLUA* vars
- TDEP on geo/postgis (duh)
- use upstream commits for format-string fixes
- link to upstream PRs
- force-set cache to 100Mb(doc/usage/manpage adapted accordingly), in
  certain circumstances osm2pgsql still gobbles lotsa memory and needs
high ulimit -d. Perfect stresstest for the underlying os..
- less patching!
- i now have the same failing tests, to be revisited later, but now good
  enough for the tree imo.

Landry


osm2pgsql.tgz
Description: application/tar-gz


CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 11:12:28

Modified files:
devel/p5-Parallel-ForkManager: Makefile distinfo 

Log message:
Update to p5-Parallel-ForkManager-1.16.



Re: [NEW] net/py-dnslib

2015-10-30 Thread Bryan C. Everly
Thanks Remi!


Thanks,
Bryan

On Fri, Oct 30, 2015 at 12:47 PM, Remi Pointel  wrote:

> On 10/30/15 17:30, Bryan C. Everly wrote:
>
>> Hello all,
>>
>> I have worked with the upstream author of this module (Paul Chakravarti -
>> copied) to address the two issues we were seeing in the test cases and he
>> kindly cut a new version that takes care of things.  Therefore, I've
>> updated the port (see attachment) for the new version and taken into
>> account the other suggestions on this thread.
>>
>> Is this OK to proceed?  If so, would someone kindly commit it on my
>> behalf?
>>
>
> Hi,
>
> I just added your port.
>
> Thanks,
>
> Remi.
>
>


CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 16:24:42

Modified files:
net/p5-Net-SSH2: Makefile distinfo 

Log message:
Upate to p5-Net-SSH2-0.56.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 16:41:27

Modified files:
x11/lumina/i18n: distinfo 

Log message:
Updte to lumina-i18n-0.8.7.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 16:41:09

Modified files:
x11/lumina/lumina: Makefile distinfo 
x11/lumina/lumina/pkg: PLIST 

Log message:
Update to lumina-0.8.7.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/10/30 16:40:53

Modified files:
x11/lumina : Makefile.inc 

Log message:
Bump to 0.8.7.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/10/30 04:13:56

Modified files:
telephony/asterisk-openbsd-moh: Makefile distinfo 
telephony/asterisk-openbsd-moh/pkg: PLIST 

Log message:
add 5.8 release songs, from ian@ a while ago



Re: NEW: geo/osm2pgsql

2015-10-30 Thread Landry Breuil
On Fri, Oct 30, 2015 at 10:02:07AM +, Stuart Henderson wrote:
> On 2015/10/30 09:40, Landry Breuil wrote:
> > On Thu, Oct 29, 2015 at 08:24:08PM -0700, patrick keshishian wrote:
> > > On 10/29/15, patrick keshishian  wrote:
> > > > On 10/29/15, Landry Breuil  wrote:
> > > [snip]
> > > >> Now that postgresql.port.mk allows to run those tests with the correct
> > > >> charset, can we get an updated tarball with a patch for the default
> > > >> --cache value (and the corresponding discussion brought upstream) ? I'd
> > > >> like to import this one this weekend
> > > 
> > > Per request attached is a new tar-ball that takes more tests
> > > from FAIL to PASS. test-suite.log also attached.
> > 
> > Nice... some nits:
> > 
> > - patches will need comments, the ones fixing %format issues like
> >   patch-node-ram-cache_cpp need to go upstream in a PR, as
> > patch-sprompt_cpp and patch-tests_common-pg_cpp
> 
> The %zd -> %llu may break some other OS, it may need a cast if
> going upstream.

Just fixed upstream by
https://github.com/openstreetmap/osm2pgsql/pull/483, which was proposed
just before mine in https://github.com/openstreetmap/osm2pgsql/pull/487
:)

> > - patch-node-persistent-cache_cpp puzzles me :) a -Werror case ?
> 
> looks like it.

Builds fine without it, anyway i'll push it upstream too.

> > I'll try to set cache to 300 directly as a default value inside
> > osm2pgsql instead of setting it for each and every test, so that by
> > default it works on OpenBSD with default system limits. I'll also
> > look into which limits are hit so that it can be documented.
> > 
> > As for the new cmake-based build, since there's been no release with it
> > yet, that can be worked on later...

Fwiw the new cmake build system works for me:

mkdir /usr/obj/osm2pgsql && cd /usr/obj/osm2pgsql
env CXX=eg++ CXXFLAGS=-pthread cmake path/to/src/osm2pgsql/
make

builds fine.

> | WANTLIB +=  boost_filesystem boost_system boost_system-mt
> | WANTLIB +=  boost_thread-mt bz2 c crypto geos iconv lzma
> | WANTLIB +=  m pq proj protobuf-c pthread ssl stdc++ xml2 z
> 
> no need for iconv, it comes from the module
> 
> | MODULES =   converters/libiconv \
> | databases/postgresql\
> | gcc4\
> | lang/lua\
> 
> I think the \ at the end of setting variables is a bit dangerous.
> Probably wants forcing the lua version in case the default system
> version isever changed, e.g. MODLUA_VERSION=5.1
> 
> | CONFIGURE_ENV +=LUA=lua51
> 
> MODLUA_BIN
> 
> | CONFIGURE_ENV +=LUA_INCLUDE=-I${LOCALBASE}/include/lua-5.1
> 
> MODLUA_INCL_DIR
> 
> | CONFIGURE_ENV +=LUA_LIB=-llua5.1
> 
> MODLUA_LIB
> 
> Also set MODLUA_SA=Yes.
> 
> | @${SUBST_CMD} ${WRKSRC}/docs/osm2pgsql.1
> 
> The patch just has "/usr/local" rather than TRUEPREFIX, probably from
> running update-patches after building. Personally I'd leave the patch like
> it is and change the SUBST_CMD to sed -i s,/usr/local,${TRUEPREFIX}, to
> make updates easier, but otherwise the patch needs adjusting.

Will fix all that, and also add lang/python module for MODPY_ADJ_FILES
which seems needed for tests/regression-test.py. I still have some
issues with tests running with default limits, even when force-setting
cache to 100Mb..

Landry



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Giovanni Bechis
CVSROOT:/cvs
Module name:ports
Changes by: giova...@cvs.openbsd.org2015/10/30 12:13:19

Log message:
This module loads URI::Escape::XS and imports the two most common
methods if XS is installed.

ok benoit@

Status:

Vendor Tag: giovanni
Release Tags:   giovanni_20151030

N ports/www/p5-Any-URI-Escape/Makefile
N ports/www/p5-Any-URI-Escape/distinfo
N ports/www/p5-Any-URI-Escape/pkg/PLIST
N ports/www/p5-Any-URI-Escape/pkg/DESCR

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 12:25:49

Modified files:
mail/p5-Email-Valid: Makefile distinfo 

Log message:
Update to p5-Email-Valid-1.198.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2015/10/30 11:45:28

Modified files:
devel/p5-Test-MockModule: Makefile distinfo 

Log message:
Update to p5-Test-MockModule-0.11.



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Giovanni Bechis
CVSROOT:/cvs
Module name:ports
Changes by: giova...@cvs.openbsd.org2015/10/30 12:14:25

Log message:
Hijk is a fast & minimal low-level HTTP client intended to be used
where you control both the client and the server, e.g. for talking
to some internal service from a frontend user-facing web application.

ok benoit@

Status:

Vendor Tag: giovanni
Release Tags:   giovanni_20151030

N ports/www/p5-Hijk/Makefile
N ports/www/p5-Hijk/distinfo
N ports/www/p5-Hijk/pkg/PLIST
N ports/www/p5-Hijk/pkg/DESCR

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Giovanni Bechis
CVSROOT:/cvs
Module name:ports
Changes by: giova...@cvs.openbsd.org2015/10/30 12:16:29

Modified files:
www: Makefile 

Log message:
+p5-Any-URI-Escape
+p5-Hijk



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Giovanni Bechis
CVSROOT:/cvs
Module name:ports
Changes by: giova...@cvs.openbsd.org2015/10/30 12:17:30

Log message:
Search::Elasticsearch is the official Perl client for Elasticsearch.

ok benoit@

Status:

Vendor Tag: giovanni
Release Tags:   giovanni_20151030

N ports/devel/p5-Search-Elasticsearch/Makefile
N ports/devel/p5-Search-Elasticsearch/distinfo
N ports/devel/p5-Search-Elasticsearch/pkg/PLIST
N ports/devel/p5-Search-Elasticsearch/pkg/DESCR

No conflicts created by this import



latest databases/mariadb fails to build on sparc64

2015-10-30 Thread Markus Lude
Hello,

update of mariadb to 10.1.8 fails to build on sparc64:

[...]
[1117/1385] /usr/bin/c++   -DHAVE_CONFIG_H -DHAVE_IB_ATOMIC_PTHREAD_T_GCC=1 
-DHAVE_IB_GCC_ATOMIC_BUILTINS=1 -DHAVE_IB_GCC_ATOMIC_BUILTINS_64=1 
-DHAVE_IB_GCC_ATOMIC_BUILTINS_BYTE=1 -DHAVE_IB_GCC_SYNC_SYNCHRONISE
=1 -DMYSQL_DYNAMIC_PLUGIN -DSIZEOF_PTHREAD_T=8 -Dinnobase_EXPORTS -O2 -pipe
-DWITH_INNODB_DISALLOW_WRITES -fno-exceptions -fno-rtti -DNDEBUG -DDBUG_OFF 
-fPIC -Iinclude -I/usr/ports/pobj/mariadb-10.1.8/mariad
b-10.1.8/storage/innobase/include 
-I/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/handler 
-I/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/include 
-I/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8
/sql -Ipcre -I/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/pcre -MMD -MT 
storage/innobase/CMakeFiles/innobase.dir/sync/sync0sync.cc.o -MF 
storage/innobase/CMakeFiles/innobase.dir/sync/sync0sync.cc.o.d -o stora
ge/innobase/CMakeFiles/innobase.dir/sync/sync0sync.cc.o -c 
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/sync/sync0sync.cc
FAILED: /usr/bin/c++   -DHAVE_CONFIG_H -DHAVE_IB_ATOMIC_PTHREAD_T_GCC=1 
-DHAVE_IB_GCC_ATOMIC_BUILTINS=1 -DHAVE_IB_GCC_ATOMIC_BUILTINS_64=1 
-DHAVE_IB_GCC_ATOMIC_BUILTINS_BYTE=1 -DHAVE_IB_GCC_SYNC_SYNCHRONISE=1 -
DMYSQL_DYNAMIC_PLUGIN -DSIZEOF_PTHREAD_T=8 -Dinnobase_EXPORTS -O2 -pipe
-DWITH_INNODB_DISALLOW_WRITES -fno-exceptions -fno-rtti -DNDEBUG -DDBUG_OFF 
-fPIC -Iinclude -I/usr/ports/pobj/mariadb-10.1.8/mariadb-10
.1.8/storage/innobase/include 
-I/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/handler 
-I/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/include 
-I/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/sql
 -Ipcre -I/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/pcre -MMD -MT 
storage/innobase/CMakeFiles/innobase.dir/sync/sync0sync.cc.o -MF 
storage/innobase/CMakeFiles/innobase.dir/sync/sync0sync.cc.o.d -o storage/i
nnobase/CMakeFiles/innobase.dir/sync/sync0sync.cc.o -c 
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/sync/sync0sync.cc
In file included from 
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/include/ut0ut.h:36,
 from 
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/include/univ.i:638,
 from 
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/include/sync0sync.h:37,
 from 
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/sync/sync0sync.cc:33:
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/include/os0sync.h:521:4:
 error: #error "Unsupported platform"
In file included from 
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/include/sync0sync.h:837,
 from 
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/sync/sync0sync.cc:33:
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/include/sync0sync.ic:
 In function 'lock_word_t ib_mutex_test_and_set(ib_mutex_t*)':
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/include/sync0sync.ic:83:
 error: 'os_atomic_test_and_set' was not declared in this scope
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/include/sync0sync.ic:
 In function 'void mutex_reset_lock_word(ib_mutex_t*)':
/usr/ports/pobj/mariadb-10.1.8/mariadb-10.1.8/storage/innobase/include/sync0sync.ic:111:
 error: 'os_atomic_clear' was not declared in this scope
ninja: build stopped: subcommand failed.
*** Error 1 in . (/usr/ports/devel/cmake/cmake.port.mk:32 'do-build': @cd 
/usr/ports/pobj/mariadb-10.1.8/build-sparc64 && exec /usr/bin/env ...)
*** Error 1 in . (/usr/ports/infrastructure/mk/bsd.port.mk:2763 
'/usr/ports/pobj/mariadb-10.1.8/build-sparc64/.build_done')
*** Error 1 in . (/usr/ports/infrastructure/mk/bsd.port.mk:1952 
'/usr/ports/packages/sparc64/all/mariadb-client-10.1.8v0.tgz')
*** Error 1 in . (/usr/ports/infrastructure/mk/bsd.port.mk:2508 
'_internal-package')
*** Error 1 in . (/usr/ports/infrastructure/mk/bsd.port.mk:2488 'package')
*** Error 1 in . (/usr/ports/infrastructure/mk/bsd.port.mk:1969 
'/var/db/pkg/mariadb-client-10.1.8v0/+CONTENTS')
*** Error 1 in /usr/ports/databases/mariadb 
(/usr/ports/infrastructure/mk/bsd.port.mk:2488 'install')

Regards,
Markus



CVS: cvs.openbsd.org: ports

2015-10-30 Thread Giovanni Bechis
CVSROOT:/cvs
Module name:ports
Changes by: giova...@cvs.openbsd.org2015/10/30 12:19:34

Modified files:
devel  : Makefile 

Log message:
+p5-Search-Elasticsearch



Question about sudo / doas

2015-10-30 Thread Bryan C. Everly
Hi,

Has anyone successfully used doas to be able to do work in the ports tree
without a root shell?  Similar to the sudo configuration shown in the
following docs:

http://www.openbsd.org/faq/ports/ports.html#PortsConfig

Thanks,
Bryan


Re: LibreOffice trouble

2015-10-30 Thread Ed Ahlsen-Girard
On Fri, 30 Oct 2015 14:28:55 +
"Dahlberg, David"  wrote:

> Am Freitag, den 30.10.2015, 09:02 -0500 schrieb Ed Ahlsen-Girard:
>  [...]  
>  [...]  
> 
> I had some similar experiences on Debian Testing. Do you think, it is
> particularly related to the OpenBSD port? Otherwise, you should
> probably go upstream with that issue. (I am sure, they'll fix that
> bug and add another one which is equally annoying.)
> 
>  [...]  
> 
> In my case (if it was the same) there were no buttons to close that
> dialog box, but I could still escape by pressing "Esc".

ESC didn't work.
-- 

Edward Ahlsen-Girard
Ft Walton Beach, FL



Re: Question about sudo / doas

2015-10-30 Thread Remi Pointel

On 10/30/15 20:38, Bryan C. Everly wrote:

Hi,

Has anyone successfully used doas to be able to do work in the ports tree
without a root shell?  Similar to the sudo configuration shown in the
following docs:

http://www.openbsd.org/faq/ports/ports.html#PortsConfig

Thanks,
Bryan



Hi,

you could put in your /etc/mk.conf (supposing you have previously 
configured doas in /etc/doas.conf):


SUDO=/usr/bin/doas

Cheers,

Remi.



Re: Question about sudo / doas

2015-10-30 Thread Raf Czlonka
On Fri, Oct 30, 2015 at 07:38:32PM GMT, Bryan C. Everly wrote:

> Hi,

Hi Bryan,

> Has anyone successfully used doas to be able to do work in the ports
> tree without a root shell?

Yes, I use it.

> Similar to the sudo configuration shown in the following docs:
> http://www.openbsd.org/faq/ports/ports.html#PortsConfig

Which reminds me, the above needs updating to reflect sudo->doas
changes - similar to FAQ[0].

While at it, is there any point in maintaining two, nearly identical,
copies of the same information?

Wouldn't it make more sense to merge it, all-ports info go to faq/ports
and ports part of faq15 simply link to it?

Regards,

Raf

[0] http://www.openbsd.org/faq/faq15.html#Ports