Re: games/allegro and sndiod

2013-04-22 Thread Alexandre Ratchov
On Sun, Apr 21, 2013 at 03:52:34PM -0700, Ryan Freeman wrote:
> Hey ports@
> 
> If ratchov@ is around, I am hoping he can lend assistance here.
> 
> bentley@ recently submitted/imported games/garden, which uses
> allegro.  In my testing (and it seems landry@'s testing too)
> we noticed the audio sounded very ..poor.
> 
> I tested the port without sndiod running and the sound is great
> without.
> 
> I went ahead and installed all the other allegro-powered ports
> we have that would use sound (capitan-sevilla, opensonic) and
> both those ports also exhibited the same audio issues.  Audio
> is great without sndiod running, very distorted with sndiod
> running.
> 
> In fact, as a word of warning to those that test:  have your
> volume very low for opensonic with sndiod, I think I almost
> blew my little thinkpad speakers out my laptop on that test.
> 
> I had a glance at the sndio.c file for the allegro port but the
> sound stuff is a bit beyond me at this time.  Anyone else noticing
> this sound issue with allegro+sndiod?
> 
> I did this testing on my i386, I will check amd64 and see if its
> any different.

Hey,

Indeed, sound is broken on amd64 as well; it sounds like signed vs
unsigned confusion. Does this fix it?

-- Alexandre

Index: Makefile
===
RCS file: /cvs/ports/games/allegro/Makefile,v
retrieving revision 1.9
diff -u -p -r1.9 Makefile
--- Makefile11 Mar 2013 11:07:37 -  1.9
+++ Makefile22 Apr 2013 07:01:00 -
@@ -8,7 +8,7 @@ SHARED_ONLY =   Yes
 
 V =4.2.3
 DISTNAME = allegro-$V
-REVISION = 1
+REVISION = 2
 CATEGORIES =   games devel multimedia
 SHARED_LIBS =  alleg   1.0 # 4.2
 
Index: files/sndio.c
===
RCS file: /cvs/ports/games/allegro/files/sndio.c,v
retrieving revision 1.1
diff -u -p -r1.1 sndio.c
--- files/sndio.c   26 Apr 2010 02:56:30 -  1.1
+++ files/sndio.c   22 Apr 2013 07:01:00 -
@@ -144,7 +144,7 @@ open_sndio_device(int input)
 
sio_initpar(&par);
par.bits = (_sound_bits == 8) ? 8 : 16;
-   par.sig = 0;
+   par.sig = (_sound_bits == 8) ? 0 : 1;
if (input)
par.rchan = (_sound_stereo) ? 2 : 1;
else
@@ -157,6 +157,9 @@ open_sndio_device(int input)
 
if (!sio_setpar(hdl, &par) || !sio_getpar(hdl, &par) ||
(par.bits != 8 && par.bits != 16) ||
+   (par.bits == 8 && par.sig) ||
+   (par.bits == 16 && !par.sig) ||
+   (par.bits == 16 && par.le != SIO_LE_NATIVE) ||
(input && (par.rchan != 1 && par.rchan != 2)) ||
(!input && (par.pchan != 1 && par.pchan != 2))) {
ustrzcpy(allegro_error, ALLEGRO_ERROR_SIZE,



Re: lang/chicken: need some advices

2013-04-22 Thread Stuart Henderson
On 2013/04/22 06:48, Sébastien Marie wrote:
> According to the ports guide, porters should rewrites the library
> version to correctly keep track of ABI changes.
> 
> My problem is chicken expects BINARYVERSION to be an integer, and use it
> as integer for:
>  - found the library when deploying application (copy the file in a
>target directory)
>  - use it in extensions-directory-name (lib/chicken/6/...) when managing
>extensions (install an extension as unprivilegied user).

So BINARYVERSION is used for 2 different things; I think this will
probably need to be split so the .so version can be something different
from the integer used for extension directory name etc.

> *But*, patching chicken is patching scheme source. And need
> first bootstrapping chicken... The upstream tarball contains scheme
> source + compiled-c-files, and offer the possibility to bootstrap the
> compiler first.
> 
> But if I patch scheme files before building chicken-boot (the
> bootstrapping compiler), the makefile wants to regenerate C file
> (whereas the bootstrapping compiler is not yet here).
> 
> So how to achieve this ?
>  - have another port lang/chicken-boot (only used in BUILD_DEPENDS of
>lang/chiken) ? (or hierarchy like lang/chicken/boot for bootstrap and
>lang/chiken/stable for stable release ?)

Not sure if this is the best way but it's technically possible.

Other compilers (ghc, jdk, gnats) use bootstrap tarballs generated
outside the main ports build (normally we set things up so this
bootstrap can be built by a maintainer target in the port Makefile).

>  - does exist a possibility in ports to first build something before
>patching ?
> 
>  - does it possible to keep BINARYVERSION as integer ? According to the

In OpenBSD shared libraries have major+minor, unless they are only used
with dlopen(), in which case they can be unversioned. So this will
need patching.

>chicken wiki, they take care to do the right thing with version
>number: "Changes that break C-level compatibility (for example by
>modifying the signature of an exported C routine) will require
>bumping up the "binary compatibility version" (BINARYVERSION in
>defaults.make).")

They can only do this for things under their control, but ABI changes
can also be caused by a change to the OS itself. If (for example)
some very common typedef was changed in the OS, we might need to bump
major versions of *every* shared library in the system.

> And a other question: the chicken Makefile contains a check for OpenBSD
> to remove a gcc option: "OpenBSD base still uses GCC 3.3.5 which does
> not support -fwrapv".  Does OpenBSD still have somes archs with GCC
> 3.3.5 (or that don't support -fwrapv option) ?

Ys, from /usr/ports/infrastructure/arch-defines.mk:

GCC4_ARCHS = alpha amd64 arm armish beagle i386 hppa hppa64 \
landisk loongson macppc mips64  mips64el mvmeppc octeon \
powerpc sgi sh socppc sparc sparc64 zaurus
GCC3_ARCHS = aviion hp300 luna88k m68k m88k mvme68k mvme88k
GCC2_ARCHS = vax




Re: [UPDATE] scribus -> 1.4.2

2013-04-22 Thread Jiri B
Nobody?

On Sun, Apr 14, 2013 at 05:05:27PM -0400, Jiri B wrote:
> Simple diff, looks working OK on amd64, tested with
> couple of my n00b documents.
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/print/scribus/Makefile,v
> retrieving revision 1.48
> diff -u -p -r1.48 Makefile
> --- Makefile  11 Mar 2013 23:04:32 -  1.48
> +++ Makefile  14 Apr 2013 21:01:57 -
> @@ -3,9 +3,8 @@
>  SHARED_ONLY= Yes
>  
>  COMMENT= DTP program
> -DISTNAME=scribus-1.4.1
> +DISTNAME=scribus-1.4.2
>  CATEGORIES=  print
> -REVISION=2
>  
>  HOMEPAGE=http://www.scribus.net/
>  
> @@ -18,7 +17,7 @@ WANTLIB +=  tiff util xml2 z ${MODPY_WANT
>  
>  MASTER_SITES=${MASTER_SITE_SOURCEFORGE:=scribus/}
>  
> -EXTRACT_SUFX=.tar.bz2
> +EXTRACT_SUFX=.tar.xz
>  
>  MODULES= x11/qt4 \
>   devel/cmake \
> @@ -45,8 +44,6 @@ LIB_DEPENDS=devel/libexecinfo \
>  
>  FLAVORS= debug
>  FLAVOR?=
> -
> -WRKDIST= ${WRKDIR}/Scribus
>  
>  CONFIGURE_ARGS +=-DCMAKE_SKIP_RPATH:BOOL=1 \
>   -DCMAKE_CXX_FLAGS="${CXXFLAGS}" \
> Index: distinfo
> ===
> RCS file: /cvs/ports/print/scribus/distinfo,v
> retrieving revision 1.9
> diff -u -p -r1.9 distinfo
> --- distinfo  28 May 2012 12:32:04 -  1.9
> +++ distinfo  14 Apr 2013 21:01:57 -
> @@ -1,5 +1,2 @@
> -MD5 (scribus-1.4.1.tar.bz2) = qmt0UowpUVOrO9qIyGug1g==
> -RMD160 (scribus-1.4.1.tar.bz2) = etqiTbhzMVu5WN4BZJI5TvtxMDE=
> -SHA1 (scribus-1.4.1.tar.bz2) = fgwBIu1Vfr9PhWkODmk5I2cYutI=
> -SHA256 (scribus-1.4.1.tar.bz2) = 82A8od5scPSmorCVcVk1gdTlqu2GO2xZhuN6OiRpgBs=
> -SIZE (scribus-1.4.1.tar.bz2) = 68006491
> +SHA256 (scribus-1.4.2.tar.xz) = uVHUeRPoALMWdf7JSuToHcLuAkdQapIYIR22LaY4ZWM=
> +SIZE (scribus-1.4.2.tar.xz) = 64405272
> Index: pkg/PLIST
> ===
> RCS file: /cvs/ports/print/scribus/pkg/PLIST,v
> retrieving revision 1.13
> diff -u -p -r1.13 PLIST
> --- pkg/PLIST 28 May 2012 12:32:04 -  1.13
> +++ pkg/PLIST 14 Apr 2013 21:01:57 -
> @@ -122,6 +122,9 @@ include/scribus/docitemattrprefs.h
>  include/scribus/docsections.h
>  include/scribus/documentchecker.h
>  include/scribus/documentinformation.h
> +include/scribus/downloadmanager/
> +include/scribus/downloadmanager/scdlmgr.h
> +include/scribus/downloadmanager/scdlthread.h
>  include/scribus/editor.h
>  include/scribus/effectsdialog.h
>  include/scribus/exif.h
> @@ -429,6 +432,7 @@ include/scribus/plugins/tools/2geomtools
>  include/scribus/plugins/tools/2geomtools/pathalongpath/pathdialog.h
>  include/scribus/plugins/tools/hunspellcheck/
>  include/scribus/plugins/tools/hunspellcheck/hunspelldialog.h
> +include/scribus/plugins/tools/hunspellcheck/hunspelldict.h
>  include/scribus/plugins/tools/hunspellcheck/hunspellplugin.h
>  include/scribus/plugins/tools/hunspellcheck/hunspellpluginimpl.h
>  include/scribus/plugins/tools/hunspellcheck/hunspellpluginstructs.h
> @@ -628,6 +632,7 @@ include/scribus/tt/simpletreemodel/treem
>  include/scribus/ui/
>  include/scribus/ui/copypagetomasterpagedialog.h
>  include/scribus/ui/createrange.h
> +include/scribus/ui/downloaddictionaries.h
>  include/scribus/ui/edittoolbar.h
>  include/scribus/ui/filetoolbar.h
>  include/scribus/ui/modetoolbar.h
> @@ -716,7 +721,6 @@ share/doc/scribus/LINKS
>  share/doc/scribus/NEWS
>  share/doc/scribus/PACKAGING
>  share/doc/scribus/README
> -share/doc/scribus/README.MacOSX
>  share/doc/scribus/TODO
>  share/doc/scribus/TRANSLATION
>  share/doc/scribus/de/
> @@ -1128,12 +1132,14 @@ share/doc/scribus/en/WwStyles.html
>  share/doc/scribus/en/WwText.html
>  share/doc/scribus/en/about1.html
>  share/doc/scribus/en/about2.html
> +share/doc/scribus/en/add_colors.html
>  share/doc/scribus/en/bugreport.html
>  share/doc/scribus/en/cli.html
>  share/doc/scribus/en/cms.html
>  share/doc/scribus/en/cms2.html
>  share/doc/scribus/en/cms3.html
>  share/doc/scribus/en/codingstandards.html
> +share/doc/scribus/en/collect4output.html
>  share/doc/scribus/en/color1.html
>  share/doc/scribus/en/color2.html
>  share/doc/scribus/en/color3.html
> @@ -1142,9 +1148,11 @@ share/doc/scribus/en/color5.html
>  share/doc/scribus/en/color6.html
>  share/doc/scribus/en/color7.html
>  share/doc/scribus/en/color8.html
> +share/doc/scribus/en/color_editing.html
>  share/doc/scribus/en/colorwheel.html
>  share/doc/scribus/en/config.html
>  share/doc/scribus/en/contributions.html
> +share/doc/scribus/en/createlinks.html
>  share/doc/scribus/en/developers.html
>  share/doc/scribus/en/doccopyright.html
>  share/doc/scribus/en/docinfo.html
> @@ -1158,6 +1166,7 @@ share/doc/scribus/en/fonts1.html
>  share/doc/scribus/en/fonts2.html
>  share/doc/scribus/en/gettexthowto.html
>  share/doc/scribus/en/gsview.html
> +share/doc/scribus/en/help.html
>  share/doc/scribus/en/hyphenator.html
>  share/doc/scribus/en/ima

Re: UPDATE: Gajim-0.15.3

2013-04-22 Thread Pierre-Emmanuel André
On Tue, Apr 16, 2013 at 11:26:15AM -0300, Gonzalo L. R. wrote:
> Hi,
> 
> Update for Gajim to 0.15.3:
> 
> * Better handling of SSL errors
> * Better handling of canceling file transfer
> * Improve farstream calls 
> 
> And more.
> 
> Comments? Ok?
> 

Sorry for the late answer.
OK pea@

-- 
Pierre-Emmanuel André 
GPG key: 0x7AE329DC



Re: [update] databases/pgpool

2013-04-22 Thread Pierre-Emmanuel Andre
On Fri, Apr 05, 2013 at 01:38:36PM -0400, David Hill wrote:
> update databases/pgpool to 3.2.3
> 
> please review
> 

ok pea@

-- 
Pierre-Emmanuel André 
GPG key: 0x7AE329DC



Re: UPDATE: exim 4.80

2013-04-22 Thread Stuart Henderson
On 2012/06/06 09:36, Felix Kronlage wrote:
> Hi,
> 
> attached is a diff that updates exim to version 4.80.
> Any comments/hints? :)

Here is an updated version for 4.80.1 against -current. Only lightly tested
as I don't normally use Exim, but it seems to work.


Index: Makefile
===
RCS file: /cvs/ports/mail/exim/Makefile,v
retrieving revision 1.91
diff -u -p -r1.91 Makefile
--- Makefile11 Mar 2013 11:23:50 -  1.91
+++ Makefile22 Apr 2013 10:02:36 -
@@ -3,8 +3,7 @@
 CATEGORIES =   mail
 COMMENT-main = flexible mail transfer agent
 COMMENT-eximon =   X11 monitor tool for Exim MTA
-VERSION =  4.77
-REVISION = 2
+VERSION =  4.80.1
 DISTNAME = exim-${VERSION}
 PKGNAME-main = exim-${VERSION}
 FULLPKGNAME-eximon =   exim-eximon-${VERSION}
Index: distinfo
===
RCS file: /cvs/ports/mail/exim/distinfo,v
retrieving revision 1.21
diff -u -p -r1.21 distinfo
--- distinfo19 Oct 2011 23:06:57 -  1.21
+++ distinfo22 Apr 2013 10:02:36 -
@@ -1,5 +1,2 @@
-MD5 (exim-4.77.tar.gz) = 3B8p9odVbw8OmPveGfmO9A==
-RMD160 (exim-4.77.tar.gz) = 6/kbDf+blCKW24umVAhj5qFROtY=
-SHA1 (exim-4.77.tar.gz) = LBumuPYntxs7WPwMxW45RZDc0dw=
-SHA256 (exim-4.77.tar.gz) = FkmActgsdNKf6eCctG+QYN4b0MtXIczAcZkK9hLumjw=
-SIZE (exim-4.77.tar.gz) = 2035914
+SHA256 (exim-4.80.1.tar.gz) = LKwFziel1bQJzlZXlXBHIz02+TltAgPSQKW3rtKpad4=
+SIZE (exim-4.80.1.tar.gz) = 2107974
Index: files/Makefile
===
RCS file: /cvs/ports/mail/exim/files/Makefile,v
retrieving revision 1.15
diff -u -p -r1.15 Makefile
--- files/Makefile  19 Oct 2011 23:06:57 -  1.15
+++ files/Makefile  22 Apr 2013 10:02:36 -
@@ -248,11 +248,19 @@ SUPPORT_MBX=yes
 
 #--
 # See below for dynamic lookup modules.
-# LOOKUP_MODULE_DIR=/usr/lib/exim/lookups/
+#
 # If not using package management but using this anyway, then think about how
 # you perform upgrades and revert them. You should consider the benefit of
 # embedding the Exim version number into LOOKUP_MODULE_DIR, so that you can
 # maintain two concurrent sets of modules.
+# 
+# *BEWARE*: ability to modify the files in LOOKUP_MODULE_DIR is equivalent to
+# the ability to modify the Exim binary, which is often setuid root!  The Exim
+# developers only intend this functionality be used by OS software packagers
+# and we suggest that such packagings' integrity checks should be paranoid
+# about the permissions of the directory and the files within.
+
+# LOOKUP_MODULE_DIR=/usr/lib/exim/lookups/
 
 # To build a module dynamically, you'll need to define CFLAGS_DYNAMIC for
 # your platform.  Eg:
@@ -279,6 +287,10 @@ SUPPORT_MBX=yes
 # the dynamic library and not the exim binary will be linked against the
 # library.
 # NOTE: LDAP cannot be built as a module!
+#
+# If your system has pkg-config then the _INCLUDE/_LIBS setting can be
+# handled for you automatically by also defining the _PC variable to reference
+# the name of the pkg-config package, if such is available.
 
 LOOKUP_DBM=yes
 LOOKUP_LSEARCH=yes
@@ -295,6 +307,7 @@ LOOKUP_NIS=yes
 LOOKUP_PASSWD=yes
 # LOOKUP_PGSQL=yes
 # LOOKUP_SQLITE=yes
+# LOOKUP_SQLITE_PC=sqlite3
 # LOOKUP_WHOSON=yes
 
 # These two settings are obsolete; all three lookups are compiled when
@@ -329,9 +342,12 @@ LOOKUP_PASSWD=yes
 # In either case you must specify the library link info here.  If the
 # PCRE header files are not in the standard search path you must also
 # modify the INCLUDE path (above)
-# The default setting of PCRE_LIBS should work on the vast majority of
-# systems
+#
+# Use PCRE_CONFIG to query the pcre-config command (first found in $PATH)
+# to find the include files and libraries, else use PCRE_LIBS and set INCLUDE
+# too if needed.
 
+PCRE_CONFIG=yes
 PCRE_LIBS=-lpcre
 
 
@@ -342,6 +358,8 @@ PCRE_LIBS=-lpcre
 # don't need to set LOOKUP_INCLUDE if the relevant directories are already
 # specified in INCLUDE. The settings below are just examples; -lpq is for
 # PostgreSQL, -lgds is for Interbase, -lsqlite3 is for SQLite.
+#
+# You do not need to use this for any lookup information added via pkg-config.
 
 # LOOKUP_INCLUDE=-I /usr/local/ldap/include -I /usr/local/mysql/include -I 
/usr/local/pgsql/include
 # LOOKUP_LIBS=-L/usr/local/lib -lldap -llber -lmysqlclient -lpq -lgds -lsqlite3
@@ -398,6 +416,11 @@ WITH_OLD_DEMIME=yes
 # experimental-spec.txt. "Experimental" means that the way these features are
 # implemented may still change. Backward compatibility is not guaranteed.
 
+# Uncomment the following line to add support for talking to dccifd.  This
+# defaults the socket path to /usr/local/dcc/var/dccifd.
+
+# EXPERIMENTAL_DCC=yes
+
 # Uncomment the following lines to add SPF support. You need to have lib

Re: lang/chicken: need some advices

2013-04-22 Thread Sébastien Marie
On Mon, Apr 22, 2013 at 12:32:12PM +0300, Timo Myyrä wrote:
> 
> I've had WIP port of chicken in the openbsd-wip tree for a while:
> https://github.com/jasperla/openbsd-wip/tree/master/lang/chicken

I will take a look. Thanks.

> I haven't yet found a way to properly address the shared library version.
> The installed version number is correct in the port but the deployment doesn't
> work. It still uses the old binary version.

> If I modify csc.scm copy-libraries function to use ".6.0" then the
> build fails.

I think, it is because of csc.c need to be regenerated from csc.scm.
(Makefile rules try to rebuild it atomatically). But for that it need
chicken to be installed (or just chicken-boot).

> I didn't notice anything else wrong in my port.

As your BINARYVERSION is upstream, this reduce worng things to append
now: I think only deploy should be impacted: the library isn't found as
the name that chicken expects is not used. 

In my case, I try to redefine BINARYVERSION to LIBchicken_VERSION, in
order to keep extensions in correct directory. This expose more problems
now, but link more efficiently extensions with library: what would
append if you need to bump LIBchicken_VERSION whereas BINARYVERSION
remains the same ? Extensions still leave here, whereas they may be
incompatibles.

-- 
Sébastien Marie



Re: lang/chicken: need some advices

2013-04-22 Thread Timo Myyrä
Sébastien Marie  writes:

> Hi,
>
> I start to look at lang/chicken in ports. Currently it is near 6 years
> old.
>
> But I encourter the following problem: chicken generate and use a shared
> lib with only a major number for the version (lib/libchicken.so.6 from
> upstream). It is the "BINARYVERSION=6" in defaults.make file.  It is
> also used in directory name for extensions (some are provided by
> default): lib/chicken/6 .
>
> According to the ports guide, porters should rewrites the library
> version to correctly keep track of ABI changes.
>
> My problem is chicken expects BINARYVERSION to be an integer, and use it
> as integer for:
>  - found the library when deploying application (copy the file in a
>target directory)
>  - use it in extensions-directory-name (lib/chicken/6/...) when managing
>extensions (install an extension as unprivilegied user).
>
> But 2.0 casted to integer is 2... so I couldn't satisfy OpenBSD
> requirement (major+minor) without patching chicken to do the program use
> a string instead of an integer. Am I right, here ?
>
> *But*, patching chicken is patching scheme source. And need
> first bootstrapping chicken... The upstream tarball contains scheme
> source + compiled-c-files, and offer the possibility to bootstrap the
> compiler first.
>
> But if I patch scheme files before building chicken-boot (the
> bootstrapping compiler), the makefile wants to regenerate C file
> (whereas the bootstrapping compiler is not yet here).
>
> So how to achieve this ?
>  - have another port lang/chicken-boot (only used in BUILD_DEPENDS of
>lang/chiken) ? (or hierarchy like lang/chicken/boot for bootstrap and
>lang/chiken/stable for stable release ?)
>  
>  - does exist a possibility in ports to first build something before
>patching ?
>
>  - does it possible to keep BINARYVERSION as integer ? According to the
>chicken wiki, they take care to do the right thing with version
>number: "Changes that break C-level compatibility (for example by
>modifying the signature of an exported C routine) will require
>bumping up the "binary compatibility version" (BINARYVERSION in
>defaults.make).")
>
>But SHARED_LIBS doesn't seems support major only version
>(make update-plist isn't agreed) .
>
>  - another solution ?
>
>
> I join my current diff of the ports.
>
> And a other question: the chicken Makefile contains a check for OpenBSD
> to remove a gcc option: "OpenBSD base still uses GCC 3.3.5 which does
> not support -fwrapv".  Does OpenBSD still have somes archs with GCC
> 3.3.5 (or that don't support -fwrapv option) ?
>
> Thanks.

Hi,

I've had WIP port of chicken in the openbsd-wip tree for a while:
https://github.com/jasperla/openbsd-wip/tree/master/lang/chicken

I haven't yet found a way to properly address the shared library version.
The installed version number is correct in the port but the deployment doesn't
work. It still uses the old binary version. If I modify csc.scm copy-libraries
function to use ".6.0" then the build fails. I didn't notice anything else wrong
in my port.

Timo



Re: [update] net/snort 2.9.4.5

2013-04-22 Thread Lawrence Teo
On Tue, Apr 16, 2013 at 10:16:02PM -0400, Lawrence Teo wrote:
> On Sun, Apr 14, 2013 at 04:29:57PM +0200, Markus Lude wrote:
> > Hello,
> > 
> > here's an update to the latest snort version 2.9.4.5.
> > 
> > Please test, comment, commit, ...
> > 
> > Builds on sparc64, run since 2 days on a sparc64 test machine (with low
> > traffic).
> 
> I have tested Markus's Snort 2.9.4.5 update and it works fine for me on
> amd64 and i386.  Looking for OK's to commit.

Anyone? :)


Index: Makefile
===
RCS file: /cvs/ports/net/snort/Makefile,v
retrieving revision 1.77
diff -u -p -r1.77 Makefile
--- Makefile29 Mar 2013 04:22:59 -  1.77
+++ Makefile14 Apr 2013 14:04:32 -
@@ -4,7 +4,7 @@ SHARED_ONLY =   Yes
 
 COMMENT =  highly flexible sniffer/NIDS
 
-VERSION =  2.9.4.1
+VERSION =  2.9.4.5
 DISTNAME = snort-${VERSION}
 
 CATEGORIES =   net security
Index: distinfo
===
RCS file: /cvs/ports/net/snort/distinfo,v
retrieving revision 1.22
diff -u -p -r1.22 distinfo
--- distinfo29 Mar 2013 04:22:59 -  1.22
+++ distinfo14 Apr 2013 14:04:32 -
@@ -1,2 +1,2 @@
-SHA256 (snort-2.9.4.1.tar.gz) = L0Ilbp9LYTIB6nnlr1S2RairAplysj9vvGSesA5vHa4=
-SIZE (snort-2.9.4.1.tar.gz) = 5296045
+SHA256 (snort-2.9.4.5.tar.gz) = TwWSQfgLFAGYgCvxbYa4gSzhXw3T8JujXySFz4suygs=
+SIZE (snort-2.9.4.5.tar.gz) = 5255794
Index: patches/patch-etc_snort_conf
===
RCS file: /cvs/ports/net/snort/patches/patch-etc_snort_conf,v
retrieving revision 1.8
diff -u -p -r1.8 patch-etc_snort_conf
--- patches/patch-etc_snort_conf16 Jan 2013 04:52:53 -  1.8
+++ patches/patch-etc_snort_conf14 Apr 2013 14:04:32 -
@@ -2,11 +2,8 @@ $OpenBSD: patch-etc_snort_conf,v 1.8 201
 
 reputation preprocessor disabled, still experimental
 
-load the new Snort rule files since they have been reorganized:
-http://blog.snort.org/2012/10/rule-category-reorganization-phase-3.html
-
 etc/snort.conf.origThu Nov 15 17:54:40 2012
-+++ etc/snort.conf Thu Jan 10 23:43:15 2013
+--- etc/snort.conf.origThu Mar 21 14:09:05 2013
 etc/snort.conf Thu Apr  4 22:31:37 2013
 @@ -101,17 +101,17 @@ ipvar AIM_SERVERS [64.12.24.0/23,64.12.28.0/23,64.12.1
  # Path to your rules files (this can be a relative path)
  # Note for Windows users:  You are advised to make this an absolute path,
@@ -57,7 +54,7 @@ http://blog.snort.org/2012/10/rule-categ
  
  ###
  # Step #6: Configure output plugins
-@@ -542,42 +543,93 @@ include reference.config
+@@ -542,8 +543,9 @@ include reference.config
  ###
  
  # site specific rules
@@ -65,95 +62,10 @@ http://blog.snort.org/2012/10/rule-categ
 +#include $RULE_PATH/local.rules
  
 +# Official Sourcefire VRT rules from http://www.snort.org/snort-rules/
-+include $RULE_PATH/app-detect.rules
+ include $RULE_PATH/app-detect.rules
  include $RULE_PATH/attack-responses.rules
  include $RULE_PATH/backdoor.rules
- include $RULE_PATH/bad-traffic.rules
- include $RULE_PATH/blacklist.rules
- include $RULE_PATH/botnet-cnc.rules
-+include $RULE_PATH/browser-chrome.rules
-+include $RULE_PATH/browser-firefox.rules
-+include $RULE_PATH/browser-ie.rules
-+include $RULE_PATH/browser-other.rules
-+include $RULE_PATH/browser-plugins.rules
-+include $RULE_PATH/browser-webkit.rules
- include $RULE_PATH/chat.rules
- include $RULE_PATH/content-replace.rules
- include $RULE_PATH/ddos.rules
- include $RULE_PATH/dns.rules
- include $RULE_PATH/dos.rules
-+include $RULE_PATH/experimental.rules
-+include $RULE_PATH/exploit-kit.rules
- include $RULE_PATH/exploit.rules
-+include $RULE_PATH/file-executable.rules
-+include $RULE_PATH/file-flash.rules
- include $RULE_PATH/file-identify.rules
-+include $RULE_PATH/file-image.rules
-+include $RULE_PATH/file-multimedia.rules
-+include $RULE_PATH/file-office.rules
-+include $RULE_PATH/file-other.rules
-+include $RULE_PATH/file-pdf.rules
- include $RULE_PATH/finger.rules
- include $RULE_PATH/ftp.rules
--include $RULE_PATH/icmp.rules
- include $RULE_PATH/icmp-info.rules
-+include $RULE_PATH/icmp.rules
- include $RULE_PATH/imap.rules
-+include $RULE_PATH/indicator-compromise.rules
-+include $RULE_PATH/indicator-obfuscation.rules
-+include $RULE_PATH/indicator-shellcode.rules
- include $RULE_PATH/info.rules
-+include $RULE_PATH/malware-backdoor.rules
-+include $RULE_PATH/malware-cnc.rules
-+include $RULE_PATH/malware-other.rules
-+include $RULE_PATH/malware-tools.rules
- include $RULE_PATH/misc.rules
- include $RULE_PATH/multimedia.rules
- include $RULE_PATH/mysql.rules
- include $RULE_PATH/netbios.rules
- include $RULE_PATH/nntp.rules
- include $RULE_PATH/oracle.rules
-+include $RULE_PATH/os-linux.rules
-+include $RULE_PATH/os-other.ru

[update] textproc/py-docutils

2013-04-22 Thread David Hill
update textproc/py-docutils to 0.10
regress tests all pass.

please review and commit.

Index: Makefile
===
RCS file: /cvs/ports/textproc/py-docutils/Makefile,v
retrieving revision 1.16
diff -u -p -r1.16 Makefile
--- Makefile11 Mar 2013 11:42:46 -  1.16
+++ Makefile22 Apr 2013 15:55:44 -
@@ -2,11 +2,10 @@
 
 COMMENT =  process plaintext documentation into other formats
 
-MODPY_EGG_VERSION = 0.9.1
+MODPY_EGG_VERSION = 0.10
 DISTNAME = docutils-${MODPY_EGG_VERSION}
 PKGNAME =  py-${DISTNAME}
 CATEGORIES =   textproc
-REVISION = 0
 
 MAINTAINER =   Ben Lovett 
 
Index: distinfo
===
RCS file: /cvs/ports/textproc/py-docutils/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo5 Aug 2012 12:32:01 -   1.7
+++ distinfo22 Apr 2013 15:55:44 -
@@ -1,2 +1,2 @@
-SHA256 (docutils-0.9.1.tar.gz) = 6J8YfbvGZ0+DkjnIn+xEr58YgJtmqKVaQbV7nuI1aZQ=
-SIZE (docutils-0.9.1.tar.gz) = 1541437
+SHA256 (docutils-0.10.tar.gz) = NwYk5htnc9ovL7F8wqTq6ku1lsNYXRP3X/GTwcc4YD4=
+SIZE (docutils-0.10.tar.gz) = 1602552
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/py-docutils/pkg/PLIST,v
retrieving revision 1.6
diff -u -p -r1.6 PLIST
--- pkg/PLIST   5 Aug 2012 12:32:01 -   1.6
+++ pkg/PLIST   22 Apr 2013 15:55:44 -
@@ -15,12 +15,8 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/docutils/__init__.pyc
 lib/python${MODPY_VERSION}/site-packages/docutils/_compat.py
 lib/python${MODPY_VERSION}/site-packages/docutils/_compat.pyc
-lib/python${MODPY_VERSION}/site-packages/docutils/_string_template_compat.py
-lib/python${MODPY_VERSION}/site-packages/docutils/_string_template_compat.pyc
 lib/python${MODPY_VERSION}/site-packages/docutils/core.py
 lib/python${MODPY_VERSION}/site-packages/docutils/core.pyc
-lib/python${MODPY_VERSION}/site-packages/docutils/error_reporting.py
-lib/python${MODPY_VERSION}/site-packages/docutils/error_reporting.pyc
 lib/python${MODPY_VERSION}/site-packages/docutils/examples.py
 lib/python${MODPY_VERSION}/site-packages/docutils/examples.pyc
 lib/python${MODPY_VERSION}/site-packages/docutils/frontend.py
@@ -74,17 +70,6 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/docutils/languages/zh_cn.pyc
 lib/python${MODPY_VERSION}/site-packages/docutils/languages/zh_tw.py
 lib/python${MODPY_VERSION}/site-packages/docutils/languages/zh_tw.pyc
-lib/python${MODPY_VERSION}/site-packages/docutils/math/
-lib/python${MODPY_VERSION}/site-packages/docutils/math/__init__.py
-lib/python${MODPY_VERSION}/site-packages/docutils/math/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/docutils/math/latex2mathml.py
-lib/python${MODPY_VERSION}/site-packages/docutils/math/latex2mathml.pyc
-lib/python${MODPY_VERSION}/site-packages/docutils/math/math2html.py
-lib/python${MODPY_VERSION}/site-packages/docutils/math/math2html.pyc
-lib/python${MODPY_VERSION}/site-packages/docutils/math/tex2unichar.py
-lib/python${MODPY_VERSION}/site-packages/docutils/math/tex2unichar.pyc
-lib/python${MODPY_VERSION}/site-packages/docutils/math/unichar2tex.py
-lib/python${MODPY_VERSION}/site-packages/docutils/math/unichar2tex.pyc
 lib/python${MODPY_VERSION}/site-packages/docutils/nodes.py
 lib/python${MODPY_VERSION}/site-packages/docutils/nodes.pyc
 lib/python${MODPY_VERSION}/site-packages/docutils/parsers/
@@ -232,17 +217,32 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/docutils/transforms/universal.pyc
 lib/python${MODPY_VERSION}/site-packages/docutils/transforms/writer_aux.py
 lib/python${MODPY_VERSION}/site-packages/docutils/transforms/writer_aux.pyc
-lib/python${MODPY_VERSION}/site-packages/docutils/urischemes.py
-lib/python${MODPY_VERSION}/site-packages/docutils/urischemes.pyc
 lib/python${MODPY_VERSION}/site-packages/docutils/utils/
 lib/python${MODPY_VERSION}/site-packages/docutils/utils/__init__.py
 lib/python${MODPY_VERSION}/site-packages/docutils/utils/__init__.pyc
 lib/python${MODPY_VERSION}/site-packages/docutils/utils/code_analyzer.py
 lib/python${MODPY_VERSION}/site-packages/docutils/utils/code_analyzer.pyc
+lib/python${MODPY_VERSION}/site-packages/docutils/utils/error_reporting.py
+lib/python${MODPY_VERSION}/site-packages/docutils/utils/error_reporting.pyc
+lib/python${MODPY_VERSION}/site-packages/docutils/utils/math/
+lib/python${MODPY_VERSION}/site-packages/docutils/utils/math/__init__.py
+lib/python${MODPY_VERSION}/site-packages/docutils/utils/math/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/docutils/utils/math/latex2mathml.py
+lib/python${MODPY_VERSION}/site-packages/docutils/utils/math/latex2mathml.pyc
+lib/python${MODPY_VERSION}/site-packages/docutils/utils/math/math2html.py
+lib/python${MODPY_VERSION}/site-packages/docutils/utils/math/math2html.pyc
+l

Re: games/allegro and sndiod

2013-04-22 Thread Ryan Freeman
On Mon, Apr 22, 2013 at 09:05:33AM +0200, Alexandre Ratchov wrote:
> On Sun, Apr 21, 2013 at 03:52:34PM -0700, Ryan Freeman wrote:
> > Hey ports@
> > 
> > If ratchov@ is around, I am hoping he can lend assistance here.
> > 
> > bentley@ recently submitted/imported games/garden, which uses
> > allegro.  In my testing (and it seems landry@'s testing too)
> > we noticed the audio sounded very ..poor.
> > 
> > I tested the port without sndiod running and the sound is great
> > without.

---snip---

> > 
> > I did this testing on my i386, I will check amd64 and see if its
> > any different.
> 
> Hey,
> 
> Indeed, sound is broken on amd64 as well; it sounds like signed vs
> unsigned confusion. Does this fix it?

Thanks!  The rebuilt allegro package works with sndiod running as
normal.  Cheers!

-ryan

> 
> -- Alexandre
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/games/allegro/Makefile,v
> retrieving revision 1.9
> diff -u -p -r1.9 Makefile
> --- Makefile  11 Mar 2013 11:07:37 -  1.9
> +++ Makefile  22 Apr 2013 07:01:00 -
> @@ -8,7 +8,7 @@ SHARED_ONLY = Yes
>  
>  V =  4.2.3
>  DISTNAME =   allegro-$V
> -REVISION =   1
> +REVISION =   2
>  CATEGORIES = games devel multimedia
>  SHARED_LIBS =alleg   1.0 # 4.2
>  
> Index: files/sndio.c
> ===
> RCS file: /cvs/ports/games/allegro/files/sndio.c,v
> retrieving revision 1.1
> diff -u -p -r1.1 sndio.c
> --- files/sndio.c 26 Apr 2010 02:56:30 -  1.1
> +++ files/sndio.c 22 Apr 2013 07:01:00 -
> @@ -144,7 +144,7 @@ open_sndio_device(int input)
>  
>   sio_initpar(&par);
>   par.bits = (_sound_bits == 8) ? 8 : 16;
> - par.sig = 0;
> + par.sig = (_sound_bits == 8) ? 0 : 1;
>   if (input)
>   par.rchan = (_sound_stereo) ? 2 : 1;
>   else
> @@ -157,6 +157,9 @@ open_sndio_device(int input)
>  
>   if (!sio_setpar(hdl, &par) || !sio_getpar(hdl, &par) ||
>   (par.bits != 8 && par.bits != 16) ||
> + (par.bits == 8 && par.sig) ||
> + (par.bits == 16 && !par.sig) ||
> + (par.bits == 16 && par.le != SIO_LE_NATIVE) ||
>   (input && (par.rchan != 1 && par.rchan != 2)) ||
>   (!input && (par.pchan != 1 && par.pchan != 2))) {
>   ustrzcpy(allegro_error, ALLEGRO_ERROR_SIZE,
> 



Re: openvpn 2.3.1 [Re: update openvpn 2.2.2 -> 2.3.0]

2013-04-22 Thread Felix Kronlage
On Wed, Apr 17, 2013 at 02:24:02PM +0100, Stuart Henderson wrote:

Hi Stuart,

> I think the rtable support is broken though.
[..]
> rtable support might be useful if it was a bit more clever (e.g.
> use the default table to connect to the other VPN endpoint, but put
> the tun interface and new routes into an alternative rtable) but
> as-is I don't really see the point.

I concur.

Likely another good thing would be to drop me as a maintainer, since I
hardly get around to it these days.

felix



UPDATE: Ejabberd-2.1.12

2013-04-22 Thread Gonzalo L. R.
Hi,

Update for Ejabberd to 2.1.12:

Mostly bugfixes

https://github.com/processone/ejabberd/blob/master/doc/release_notes_2.1.12.txt

Comments? Ok?

Thanks.-

--
Sending from my iFart...
Index: Makefile
===
RCS file: /cvs/ports/net/ejabberd/Makefile,v
retrieving revision 1.30
diff -u -p -r1.30 Makefile
--- Makefile11 Mar 2013 11:35:46 -  1.30
+++ Makefile22 Apr 2013 18:12:04 -
@@ -2,7 +2,7 @@
 
 COMMENT=   jabber server written in Erlang
 
-V= 2.1.11
+V= 2.1.12
 DISTNAME=  ejabberd-$V
 
 CATEGORIES=net
@@ -79,4 +79,3 @@ post-install:
@find ${WRKINST} -type f -name '*.beforesubst' -exec rm {} \;
 
 .include 
-
Index: distinfo
===
RCS file: /cvs/ports/net/ejabberd/distinfo,v
retrieving revision 1.12
diff -u -p -r1.12 distinfo
--- distinfo26 Jun 2012 20:23:29 -  1.12
+++ distinfo22 Apr 2013 18:12:04 -
@@ -1,5 +1,2 @@
-MD5 (ejabberd-2.1.11.tgz) = pwsEDE52AvR3GMiv6HgNUA==
-RMD160 (ejabberd-2.1.11.tgz) = 1xSqdE9xgbjJbyKHh+ShwyWUvj8=
-SHA1 (ejabberd-2.1.11.tgz) = rixSHV6T+9W8gmBSxVJLUiLc+uY=
-SHA256 (ejabberd-2.1.11.tgz) = kdXBDmT5+qYMNFxoMEdG9JPXH4JyMwKVXUDWYZ49h94=
-SIZE (ejabberd-2.1.11.tgz) = 2014232
+SHA256 (ejabberd-2.1.12.tgz) = OPCCU0Z3PADIWmazNYbHXy0ZHR6w7Yrgn6FzaNbd/Rk=
+SIZE (ejabberd-2.1.12.tgz) = 1999224
Index: patches/patch-src_ejabberdctl_template
===
RCS file: /cvs/ports/net/ejabberd/patches/patch-src_ejabberdctl_template,v
retrieving revision 1.5
diff -u -p -r1.5 patch-src_ejabberdctl_template
--- patches/patch-src_ejabberdctl_template  23 Jan 2012 10:54:47 -  
1.5
+++ patches/patch-src_ejabberdctl_template  22 Apr 2013 18:12:04 -
@@ -1,6 +1,6 @@
 $OpenBSD: patch-src_ejabberdctl_template,v 1.5 2012/01/23 10:54:47 ajacoutot 
Exp $
 src/ejabberdctl.template.orig  Fri Dec 23 12:27:30 2011
-+++ src/ejabberdctl.template   Sun Jan 22 20:11:03 2012
+--- src/ejabberdctl.template.orig  Tue Feb  5 09:22:34 2013
 src/ejabberdctl.template   Mon Apr 22 12:03:23 2013
 @@ -1,7 +1,7 @@
  #!/bin/sh
  
@@ -72,7 +72,7 @@ $OpenBSD: patch-src_ejabberdctl_template
  
  # Change to a directory readable by INSTALLUSER to
  # prevent "File operation error: eacces." messages
-@@ -244,7 +244,7 @@ ctl ()
+@@ -250,7 +250,7 @@ ctl ()
  # using flock if available. Expects a linux-style
  # flock that can lock a file descriptor.
  MAXCONNID=100
Index: pkg/PLIST
===
RCS file: /cvs/ports/net/ejabberd/pkg/PLIST,v
retrieving revision 1.12
diff -u -p -r1.12 PLIST
--- pkg/PLIST   26 Jun 2012 20:23:29 -  1.12
+++ pkg/PLIST   22 Apr 2013 18:12:04 -
@@ -82,9 +82,7 @@ lib/ejabberd/ebin/jd2ejd.beam
 lib/ejabberd/ebin/jlib.beam
 lib/ejabberd/ebin/mod_adhoc.beam
 lib/ejabberd/ebin/mod_announce.beam
-lib/ejabberd/ebin/mod_announce_odbc.beam
 lib/ejabberd/ebin/mod_blocking.beam
-lib/ejabberd/ebin/mod_blocking_odbc.beam
 lib/ejabberd/ebin/mod_caps.beam
 lib/ejabberd/ebin/mod_configure.beam
 lib/ejabberd/ebin/mod_configure2.beam
@@ -95,21 +93,15 @@ lib/ejabberd/ebin/mod_http_fileserver.be
 lib/ejabberd/ebin/mod_ip_blacklist.beam
 lib/ejabberd/ebin/mod_irc.beam
 lib/ejabberd/ebin/mod_irc_connection.beam
-lib/ejabberd/ebin/mod_irc_odbc.beam
 lib/ejabberd/ebin/mod_last.beam
-lib/ejabberd/ebin/mod_last_odbc.beam
 lib/ejabberd/ebin/mod_muc.beam
 lib/ejabberd/ebin/mod_muc_log.beam
-lib/ejabberd/ebin/mod_muc_odbc.beam
 lib/ejabberd/ebin/mod_muc_room.beam
 lib/ejabberd/ebin/mod_offline.beam
-lib/ejabberd/ebin/mod_offline_odbc.beam
 lib/ejabberd/ebin/mod_ping.beam
 lib/ejabberd/ebin/mod_pres_counter.beam
 lib/ejabberd/ebin/mod_privacy.beam
-lib/ejabberd/ebin/mod_privacy_odbc.beam
 lib/ejabberd/ebin/mod_private.beam
-lib/ejabberd/ebin/mod_private_odbc.beam
 lib/ejabberd/ebin/mod_proxy65.beam
 lib/ejabberd/ebin/mod_proxy65_lib.beam
 lib/ejabberd/ebin/mod_proxy65_service.beam
@@ -120,19 +112,15 @@ lib/ejabberd/ebin/mod_pubsub_odbc.beam
 lib/ejabberd/ebin/mod_register.beam
 lib/ejabberd/ebin/mod_register_web.beam
 lib/ejabberd/ebin/mod_roster.beam
-lib/ejabberd/ebin/mod_roster_odbc.beam
 lib/ejabberd/ebin/mod_service_log.beam
 lib/ejabberd/ebin/mod_shared_roster.beam
 lib/ejabberd/ebin/mod_shared_roster_ldap.beam
-lib/ejabberd/ebin/mod_shared_roster_odbc.beam
 lib/ejabberd/ebin/mod_sic.beam
 lib/ejabberd/ebin/mod_stats.beam
 lib/ejabberd/ebin/mod_time.beam
 lib/ejabberd/ebin/mod_vcard.beam
 lib/ejabberd/ebin/mod_vcard_ldap.beam
-lib/ejabberd/ebin/mod_vcard_odbc.beam
 lib/ejabberd/ebin/mod_vcard_xupdate.beam
-lib/ejabberd/ebin/mod_vcard_xupdate_odbc.beam
 lib/ejabberd/ebin/mod_version.beam
 lib/ejabberd/ebin/node_buddy.beam
 lib/ejabberd/ebin/node_club.beam
@@ -209,6 +197,7 @@ lib/ejabberd/priv/msgs/eo.msg
 lib/ejabberd/priv/

Re: games/allegro and sndiod

2013-04-22 Thread Landry Breuil
On Mon, Apr 22, 2013 at 09:05:33AM +0200, Alexandre Ratchov wrote:
> On Sun, Apr 21, 2013 at 03:52:34PM -0700, Ryan Freeman wrote:
> > Hey ports@
> > 
> > If ratchov@ is around, I am hoping he can lend assistance here.
> > 
> > bentley@ recently submitted/imported games/garden, which uses
> > allegro.  In my testing (and it seems landry@'s testing too)
> > we noticed the audio sounded very ..poor.
> > 
> > I tested the port without sndiod running and the sound is great
> > without.
> > 
> > I went ahead and installed all the other allegro-powered ports
> > we have that would use sound (capitan-sevilla, opensonic) and
> > both those ports also exhibited the same audio issues.  Audio
> > is great without sndiod running, very distorted with sndiod
> > running.
> > 
> > In fact, as a word of warning to those that test:  have your
> > volume very low for opensonic with sndiod, I think I almost
> > blew my little thinkpad speakers out my laptop on that test.
> > 
> > I had a glance at the sndio.c file for the allegro port but the
> > sound stuff is a bit beyond me at this time.  Anyone else noticing
> > this sound issue with allegro+sndiod?
> > 
> > I did this testing on my i386, I will check amd64 and see if its
> > any different.
> 
> Hey,
> 
> Indeed, sound is broken on amd64 as well; it sounds like signed vs
> unsigned confusion. Does this fix it?

Yes, sound is bearable again. thanks & definitely ok!

Landry



UPDATE: Aria2-1.17.0

2013-04-22 Thread Gonzalo L. R.
Hi,

Update for Aria2 to 1.17.0:

* Save options directly specified for download in --save-session
* Save URI returned only from FileEntry::getRemainingUris()
* Use info level log for system trusted ca imports failure
* Implement simple Happy Eyeballs for HTTP/FTP downloads

And others.

Comments? Oks?

Cheers.-

-- 
Sending from my iFart...
Index: Makefile
===
RCS file: /cvs/ports/www/aria2/Makefile,v
retrieving revision 1.23
diff -u -p -r1.23 Makefile
--- Makefile21 Mar 2013 18:08:03 -  1.23
+++ Makefile22 Apr 2013 19:15:25 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.23 2013/03/21 18:08:03 gonzalo Exp $
 
 COMMENT =  lightweight multi-protocol & multi-source download 
utility
-DISTNAME = aria2-1.16.4
+DISTNAME = aria2-1.17.0
 CATEGORIES =   www
 HOMEPAGE = http://aria2.sourceforge.net/
 
Index: distinfo
===
RCS file: /cvs/ports/www/aria2/distinfo,v
retrieving revision 1.16
diff -u -p -r1.16 distinfo
--- distinfo21 Mar 2013 18:08:03 -  1.16
+++ distinfo22 Apr 2013 19:15:25 -
@@ -1,2 +1,2 @@
-SHA256 (aria2-1.16.4.tar.gz) = GknqQCG5mpD8t0G2mbvqZ8bStbA2VkhZz7WIgvG8P5U=
-SIZE (aria2-1.16.4.tar.gz) = 3455757
+SHA256 (aria2-1.17.0.tar.gz) = 2Jp/iRPuZqYLWZplpIzsLVRdQWTOPajukyNzEHmdrG0=
+SIZE (aria2-1.17.0.tar.gz) = 3477859


UPDATE: msmtp-1.4.31

2013-04-22 Thread Gleydson Soares

A new version of msmtp has been released today; version 1.4.31 

upstream notes:
- Updated the msmtpq script.
- Fixed building of the documentation with texinfo >= 5.0.

more tests, comments, OKs are welcome.
diff attached.

Index: Makefile
===
RCS file: /cvs/ports/mail/msmtp/Makefile,v
retrieving revision 1.36
diff -u -p -r1.36 Makefile
--- Makefile11 Mar 2013 11:23:51 -  1.36
+++ Makefile22 Apr 2013 19:53:08 -
@@ -2,7 +2,7 @@
 
 COMMENT =  SMTP plugin for MUAs
 
-DISTNAME = msmtp-1.4.30
+DISTNAME = msmtp-1.4.31
 CATEGORIES =   mail
 
 HOMEPAGE = http://msmtp.sourceforge.net/
Index: distinfo
===
RCS file: /cvs/ports/mail/msmtp/distinfo,v
retrieving revision 1.23
diff -u -p -r1.23 distinfo
--- distinfo29 Oct 2012 13:41:06 -  1.23
+++ distinfo22 Apr 2013 19:53:08 -
@@ -1,2 +1,2 @@
-SHA256 (msmtp-1.4.30.tar.bz2) = 8VK5KW4240DrBJx+5NaYD82ynZSOZUvcdL6n7pdAmIY=
-SIZE (msmtp-1.4.30.tar.bz2) = 303226
+SHA256 (msmtp-1.4.31.tar.bz2) = JHr5qV+iL1BuhRCfxCaKXZHKA6+bF+68weRrfNZMIl8=
+SIZE (msmtp-1.4.31.tar.bz2) = 305770
Index: patches/patch-scripts_msmtpq_msmtpq
===
RCS file: /cvs/ports/mail/msmtp/patches/patch-scripts_msmtpq_msmtpq,v
retrieving revision 1.1
diff -u -p -r1.1 patch-scripts_msmtpq_msmtpq
--- patches/patch-scripts_msmtpq_msmtpq 19 Oct 2008 20:35:01 -  1.1
+++ patches/patch-scripts_msmtpq_msmtpq 22 Apr 2013 19:53:08 -
@@ -1,9 +1,9 @@
 $OpenBSD: patch-scripts_msmtpq_msmtpq,v 1.1 2008/10/19 20:35:01 jasper Exp $
 scripts/msmtpq/msmtpq.orig Mon Jul 28 00:20:41 2008
-+++ scripts/msmtpq/msmtpq  Tue Oct 14 14:18:13 2008
+--- scripts/msmtpq/msmtpq.orig Thu Feb 14 16:33:59 2013
 scripts/msmtpq/msmtpq  Thu Mar 21 21:12:19 2013
 @@ -1,4 +1,4 @@
 -#!/usr/bin/env bash
 +#!/bin/sh
  
- #--
- #
+ ##--
+ ##


update: p5-LaTeX-Driver to 0.12

2013-04-22 Thread Chris Bennett
Newer version of p5-LaTeX-Driver. Version 0.12.

Upstream notes on changes:

#
# Version 0.12 - 2012-08-31
#

* fixed typo in settings of ps2pdf/pdf2ps (RT79233)

* add missing dependency on Readonly (RT79330)


#
# Version 0.11 - 2012-08-30
#

* rewrote loop in run_latex() and need_to_run_bibtex() to use a lexical
* variable to avoid
  subtle errors with Template::Plugin::Latex (RT50684)

Tested on i386.

  More tests, comments, OKs are welcome.
  diff attached.

? p5-LaTeX-Driver-0.12.diff
Index: Makefile
===
RCS file: /cvs/ports/textproc/p5-LaTeX-Driver/Makefile,v
retrieving revision 1.2
diff -u -p -r1.2 Makefile
--- Makefile11 Mar 2013 11:42:43 -  1.2
+++ Makefile22 Apr 2013 22:46:58 -
@@ -2,22 +2,24 @@
 
 COMMENT=   driver to format LaTeX documents
 
-DISTNAME=  LaTeX-Driver-0.10
+DISTNAME=  LaTeX-Driver-0.12
 CATEGORIES=textproc
 
 MODULES=   cpan
 
-# MIT
+# Perl
 PERMIT_PACKAGE_CDROM=  Yes
 
 CONFIGURE_ENV+= PREFIX=${PREFIX}
 
+BUILD_DEPENDS= ${RUN_DEPENDS}
+
 RUN_DEPENDS=   print/texlive/base \
-devel/p5-Class-Accessor \
-devel/p5-Exception-Class \
+   devel/p5-Class-Accessor \
+   devel/p5-Exception-Class \
devel/p5-File-Slurp
 
-TEST_DEPENDS= print/texlive/texmf,-full \
+TEST_DEPENDS=  print/texlive/texmf,-full \
devel/p5-Test-Exception
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/textproc/p5-LaTeX-Driver/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo27 Jun 2012 08:54:27 -  1.1.1.1
+++ distinfo22 Apr 2013 22:46:58 -
@@ -1,5 +1,2 @@
-MD5 (LaTeX-Driver-0.10.tar.gz) = 4o4zG/T30XPzlSoo0NjQLA==
-RMD160 (LaTeX-Driver-0.10.tar.gz) = B8B/Y0ygYnZR9NqXGwV2lPHjw2o=
-SHA1 (LaTeX-Driver-0.10.tar.gz) = ocYEm+/aVJWzCW6iYDxtwKqx+i8=
-SHA256 (LaTeX-Driver-0.10.tar.gz) = 
bBDQaEB2BPQtX3LQ1AE5psIFm7dOmPcGid/qfTUv0r8=
-SIZE (LaTeX-Driver-0.10.tar.gz) = 30666
+SHA256 (LaTeX-Driver-0.12.tar.gz) = 
ggCgsAkXjZj8pxUMCFSR9P9gUoQQfQMhgZBcMuoVxa8=
+SIZE (LaTeX-Driver-0.12.tar.gz) = 34850
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/p5-LaTeX-Driver/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- pkg/PLIST   27 Jun 2012 08:54:27 -  1.1.1.1
+++ pkg/PLIST   22 Apr 2013 22:46:58 -
@@ -1,4 +1,4 @@
-@comment $OpenBSD: PLIST,v 1.1.1.1 2012/06/27 08:54:27 sthen Exp $
+@comment $OpenBSD$
 bin/latex2dvi
 bin/latex2pdf
 bin/latex2ps


Re: UPDATE: Aria2-1.17.0

2013-04-22 Thread Juan Francisco Cantero Hurtado
On Mon, Apr 22, 2013 at 04:18:07PM -0300, Gonzalo L. R. wrote:
> Hi,
> 
> Update for Aria2 to 1.17.0:
> 
> * Save options directly specified for download in --save-session
> * Save URI returned only from FileEntry::getRemainingUris()
> * Use info level log for system trusted ca imports failure
> * Implement simple Happy Eyeballs for HTTP/FTP downloads
> 
> And others.
> 
> Comments? Oks?

Tested with two bittorrents links and my usual options. It works fine.

> 
> Cheers.-
> 
> -- 
> Sending from my iFart...

> Index: Makefile
> ===
> RCS file: /cvs/ports/www/aria2/Makefile,v
> retrieving revision 1.23
> diff -u -p -r1.23 Makefile
> --- Makefile  21 Mar 2013 18:08:03 -  1.23
> +++ Makefile  22 Apr 2013 19:15:25 -
> @@ -1,7 +1,7 @@
>  # $OpenBSD: Makefile,v 1.23 2013/03/21 18:08:03 gonzalo Exp $
>  
>  COMMENT =lightweight multi-protocol & multi-source download 
> utility
> -DISTNAME =   aria2-1.16.4
> +DISTNAME =   aria2-1.17.0
>  CATEGORIES = www
>  HOMEPAGE =   http://aria2.sourceforge.net/
>  
> Index: distinfo
> ===
> RCS file: /cvs/ports/www/aria2/distinfo,v
> retrieving revision 1.16
> diff -u -p -r1.16 distinfo
> --- distinfo  21 Mar 2013 18:08:03 -  1.16
> +++ distinfo  22 Apr 2013 19:15:25 -
> @@ -1,2 +1,2 @@
> -SHA256 (aria2-1.16.4.tar.gz) = GknqQCG5mpD8t0G2mbvqZ8bStbA2VkhZz7WIgvG8P5U=
> -SIZE (aria2-1.16.4.tar.gz) = 3455757
> +SHA256 (aria2-1.17.0.tar.gz) = 2Jp/iRPuZqYLWZplpIzsLVRdQWTOPajukyNzEHmdrG0=
> +SIZE (aria2-1.17.0.tar.gz) = 3477859


-- 
Juan Francisco Cantero Hurtado http://juanfra.info