CVS: cvs.openbsd.org: ports

2011-07-22 Thread David Coppa
CVSROOT:/cvs
Module name:ports
Changes by: dco...@cvs.openbsd.org  2011/07/22 07:26:42

Modified files:
sysutils/vmwh  : Makefile distinfo 

Log message:
Update vmwh to the latest snapshot, fixing a buggy fprintf call.

ok jasper@



CVS: cvs.openbsd.org: ports

2011-07-22 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2011/07/22 13:57:20

Modified files:
mail/mailscanner: Makefile 
mail/mailscanner/pkg: PLIST README 
Added files:
mail/mailscanner/pkg: mailscanner.rc 

Log message:
add an rc script for MailScanner, looks ok to Brad (maintainer).



CVS: cvs.openbsd.org: ports

2011-07-22 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2011/07/22 14:15:47

Modified files:
mail/dovecot   : Makefile 
mail/dovecot/patches: patch-src_lib_ipwd_c 
mail/dovecot/pkg: PLIST-server 

Log message:
Fix rc script mode/group, and adjust an #ifdef in a patch to use a specific
OpenBSD version. From Brad (maintainer).



CVS: cvs.openbsd.org: ports

2011-07-22 Thread Christian Weisgerber
CVSROOT:/cvs
Module name:ports
Changes by: na...@cvs.openbsd.org   2011/07/22 16:21:06

Modified files:
devel/subversion: Makefile 

Log message:
missing bump for ruby directory change



job scheduler for openbsd

2011-07-22 Thread jirib
Hello,

do you have an experience with a job scheduler which would run on
OpenBSD and have these features?

- agents on server
- some central mgmnt daemon to manage agents
- job 'foo' on agent 'bar' whould run after a job 'xy' on different
  agent is finished.
- easy to manage :D
- opensource of course
- no java :D

Tips are welcome. Thank you.

jirib



New tomcat diff (rc scripts)

2011-07-22 Thread David Coppa
The following diff add a rc script and zap some stuff that now has
become useless.

thoroughly tested; have a look at it.

ciao,
David

Index: v5/Makefile
===
RCS file: /cvs/ports/www/tomcat/v5/Makefile,v
retrieving revision 1.17
diff -u -p -r1.17 Makefile
--- v5/Makefile 4 Jul 2011 07:41:37 -   1.17
+++ v5/Makefile 22 Jul 2011 10:44:38 -
@@ -10,6 +10,7 @@ PKGNAME=  tomcat-${V}
 PKGNAME-main=  tomcat-${V}
 PKGNAME-admin= tomcat-admin-${V}
 PKGNAME-examples=tomcat-examples-${V}
+REVISION-main= 0
 CATEGORIES=www
 
 DISTFILES= ${DISTNAME}.tar.gz \
@@ -71,11 +72,6 @@ do-install:
${INSTALL_DATA_DIR} ${WRKINST}/${CONFDIR}/Catalina/localhost
${INSTALL_DATA} ${WRKDIST}/conf/Catalina/localhost/* \
${WRKINST}/${CONFDIR}/Catalina/localhost
-   @${SUBST_CMD} -o ${BINOWN} -g ${BINGRP} \
-   ${PREFIX}/tomcat/bin/setclasspath.sh
-   @${SUBST_CMD} -o ${SHAREOWN} -g ${SHAREGRP} -c \
-   ${FILESDIR}/tomcat.rc \
-   ${SAMPLEDIR}/tomcat.rc
rm -r ${PREFIX}/tomcat/bin/[xi]64
find ${WRKINST} \
-name \*.beforesubst -or \
Index: v5/files/tomcat.rc
===
RCS file: v5/files/tomcat.rc
diff -N v5/files/tomcat.rc
--- v5/files/tomcat.rc  4 Jul 2011 07:41:37 -   1.3
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,21 +0,0 @@
-# $OpenBSD: tomcat.rc,v 1.3 2011/07/04 07:41:37 dcoppa Exp $
-#
-# Define JAVA_HOME for _tomcat here
-# Start tomcat with following command:
-# $ sudo -u _tomcat ${TRUEPREFIX}/tomcat/bin/startup.sh
-#
-
-# javaPathHelper will pickup JAVA_HOME from the env. if
-# it is not set in the env it will default the jdk that
-# satisfied the RUN_DEPEND.
-JAVA_HOME=$(${LOCALBASE}/bin/javaPathHelper -h tomcat)
-JAVA_OPTS=-server
-
-# override other environment options:
-#CATALINA_HOME=${TRUEPREFIX}/tomcat
-#CATALINA_BASE=${CATALINA_BASE}
-#CATALINA_TMPDIR=${CATALINA_BASE}/temp
-#JAVA_OPTS=-server -Djava.net.preferIPv4Stack=true
-#JPDA_TRANSPORT=
-#JPDA_ADDRESS=
-#JSSE_HOME=
Index: v5/patches/patch-bin_catalina_sh
===
RCS file: v5/patches/patch-bin_catalina_sh
diff -N v5/patches/patch-bin_catalina_sh
--- v5/patches/patch-bin_catalina_sh29 Nov 2010 21:26:01 -  1.4
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,12 +0,0 @@
-$OpenBSD: patch-bin_catalina_sh,v 1.4 2010/11/29 21:26:01 sthen Exp $
 bin/catalina.sh.orig   Thu Jul  1 11:19:40 2010
-+++ bin/catalina.shTue Aug  3 04:52:30 2010
-@@ -156,7 +156,7 @@ fi
- CLASSPATH=$CLASSPATH$CATALINA_HOME/bin/bootstrap.jar
- 
- if [ -z $CATALINA_BASE ] ; then
--  CATALINA_BASE=$CATALINA_HOME
-+  CATALINA_BASE=/var/tomcat
- fi
- 
- if [ -z $CATALINA_OUT ] ; then
Index: v5/patches/patch-bin_setclasspath_sh
===
RCS file: v5/patches/patch-bin_setclasspath_sh
diff -N v5/patches/patch-bin_setclasspath_sh
--- v5/patches/patch-bin_setclasspath_sh4 Jul 2011 07:41:37 -   
1.4
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,13 +0,0 @@
-$OpenBSD: patch-bin_setclasspath_sh,v 1.4 2011/07/04 07:41:37 dcoppa Exp $
 bin/setclasspath.sh.orig   Thu Jul  1 11:19:40 2010
-+++ bin/setclasspath.shTue Aug  3 04:52:30 2010
-@@ -22,4 +22,9 @@
- # 
-
- 
-+# Read $JAVA_HOME - sudo doesn't pass environment variables
-+if [ -r ${SYSCONFDIR}/tomcat/tomcat.rc ]; then 
-+  . ${SYSCONFDIR}/tomcat/tomcat.rc
-+fi
-+
- # Make sure prerequisite environment variables are set
- if [ -z $JAVA_HOME -a -z $JRE_HOME ]; then
Index: v5/pkg/PLIST-main
===
RCS file: /cvs/ports/www/tomcat/v5/pkg/PLIST-main,v
retrieving revision 1.7
diff -u -p -r1.7 PLIST-main
--- v5/pkg/PLIST-main   29 Nov 2010 21:26:01 -  1.7
+++ v5/pkg/PLIST-main   22 Jul 2011 10:44:38 -
@@ -57,12 +57,6 @@ share/examples/tomcat/tomcat-users.xml
 @mode
 @owner
 @group
-share/examples/tomcat/tomcat.rc
-@owner _tomcat
-@group _tomcat
-@sample ${SYSCONFDIR}/tomcat/tomcat.rc
-@owner
-@group
 share/examples/tomcat/web.xml
 @owner _tomcat
 @group _tomcat
@@ -178,4 +172,5 @@ tomcat/server/webapps/manager/manager-ho
 tomcat/server/webapps/manager/manager.xml
 tomcat/server/webapps/manager/status.xsd
 tomcat/server/webapps/manager/xform.xsl
+@rcscript ${RCDIR}/tomcat
 @extraunexec rm -rf ${CATALINA_BASE}/logs/* ${CATALINA_BASE}/work/*
Index: v5/pkg/README-main
===
RCS file: /cvs/ports/www/tomcat/v5/pkg/README-main,v
retrieving revision 1.4
diff -u -p -r1.4 README-main
--- v5/pkg/README-main  4 Jul 2011 07:41:37 -   1.4
+++ v5/pkg/README-main  22 Jul 2011 10:44:38 -
@@ -25,13 +25,6 @@ Tomcat on OpenBSD uses the 

Re: job scheduler for openbsd

2011-07-22 Thread David Coppa
On Fri, Jul 22, 2011 at 12:55 PM, jirib ji...@devio.us wrote:
 Hello,

 do you have an experience with a job scheduler which would run on
 OpenBSD and have these features?

 - agents on server
 - some central mgmnt daemon to manage agents
 - job 'foo' on agent 'bar' whould run after a job 'xy' on different
  agent is finished.
 - easy to manage :D
 - opensource of course
 - no java :D

 Tips are welcome. Thank you.

You can try to port Celery (http://celeryproject.org/).
It's written in python and sits on top of RabbitMQ, for which we
already have a port.

Ciao,
David



Re: job scheduler for openbsd

2011-07-22 Thread viq
On Fri, Jul 22, 2011 at 12:55:52PM +0200, jirib wrote:
 Hello,
 
 do you have an experience with a job scheduler which would run on
 OpenBSD and have these features?
 
 - agents on server
 - some central mgmnt daemon to manage agents
 - job 'foo' on agent 'bar' whould run after a job 'xy' on different
   agent is finished.
 - easy to manage :D
 - opensource of course
 - no java :D
 
 Tips are welcome. Thank you.

It seems that AMQP is popular for that recently. We do have a server for
it, net/rabbitmq. But that is just the communications part. For the jobs
themselves, there is celery in python, and I think bunny in ruby. Just
some keywords to get you started ;)
 
 jirib

-- 
viq


pgpIlRUACBDqE.pgp
Description: PGP signature


Re: [update] enigmail 1.2

2011-07-22 Thread Nigel Taylor

On 07/22/11 06:33, Landry Breuil wrote:

Hi,

if you use  rely on enigmail, please test this update, which targets
thunderbird 5.0 and seamonkey 2.2. It works in my light testing on
amd64. Check ports@ archive for the corresponding tb/sm updates.

If i don't hear from anyone, this will probably be commited this
weekend, along sm/tb.

Landry
I applied diff, this failed. I went back to an earlier version of 
enigmail from CVS and then applied diff, that worked fine.


Building finished for enigmail-seamonkey. enigmail for thunderbird build 
failed, expected an enigmail flavor of thunderbird. We also renamed 
mozilla-thunderbird to just thunderbird,


mail/enigmail/thunderbird/Makefile - after patch..
# $OpenBSD: Makefile,v 1.4 2011/01/14 22:58:49 landry Exp $

COMMENT =   GnuPG extension for Thunderbird

VERSION =   1.2

# must be in sync with SO_VERSION in
# mail/mozilla-thunderbird
SHARED_LIBS =   enigmime18.0 \
ipc 18.0

MOZAPP_PKGSTEM =mozilla-thunderbird-=5.0
MOZAPP_PKGPATH =mail/mozilla-thunderbird,enigmail
MOZAPP_DIR =lib/thunderbird-5.0
MOZAPP_BRANCH = miramar

ENIGMAIL_XPI =  ${DISTNAME}-openbsd-${GNU_ARCH}.xpi

.include bsd.port.mk


I am trying these two changes, it's in process of building...

MOZAPP_PKGSTEM =thunderbird-=5.0
MOZAPP_PKGPATH =mail/mozilla-thunderbird

Was there a thunderbird-i18n update also?


Regards

Nigel Taylor



Até 93% OFF em Massoterapia | Paintball | Self-Service | Diária p/2 Pessoas com café da manhã em bonito | YakiSoba | =?utf-8?B?IEVzY292YSBQcm9ncmVzc2l2YSB8I

2011-07-22 Thread Incriveis Ofertas - Campo Grande
www.incriveisofertas.com

[IMAGE] Stress?! Nunca mais com 71% OFF em 1 hora de massoterapia na
Cl�nica Alencastro! Apenas R$ 23,00 ao inv�s de R$ 80. Compre o seu!

de R$ 80,00 por R$ R$ 23,00


[IMAGE] 1h de Paintball + 100 Bolinhas + Equipamento com 50% de desconto
no Danger Zone Paintball! Divers�o garantida de R$20,00 por R$9,99!

de R$ 20,00 por R$ R$ 9,99


[IMAGE] Muito Mais Perto do Para�so! 55% de desconto em Di�ria para 2
Pessoas + Caf� da Manh� no Hotel Lago Azul em Bonito/MS, de R$ 196,00 por
apenas R$ 89,90. Use o cupom at� DEZEMBRO!

de R$ 196,00 por R$ R$ 89,90


[IMAGE] 1 Yakisoba no Yakisoba�s Sobaria com 50% OFF, de R$ 20 por R$
9,99. Bom Apetite!

de R$ 20,00 por R$ R$ 9,99


[IMAGE] Est� Acabando! 80% de desconto em Escova Progressiva Eco Plus �
na Rosi Studio Hair (de R$250,00 por R$49,90) At� 3 Cupons/3 meses de uso.

de R$ 250,00 por R$ R$ 49,90


[IMAGE] Prepare-se para o ENEM 2011 com 80% OFF - Download Apostilas
Completas das Mat�rias + Exerc�cios + Simulado Eletr�nico de R$ 50.00 por
R$ 9,99!

de R$ 50,00 por R$ R$ 9,99


[IMAGE] Deixe Sua Pele Hidratada! Sabonetes L�quidos ( 250 ml ) +
Hidratantes ( 200 g ) de R$ 50,00 por R$ 19,99 ( 60% OFF )

de R$ 50,00 por R$ R$ 19,99


[IMAGE] 45% OFF em Buffet Especial! Tenha saboroso Almo�o no Restaurante
Esta��o Gourmet com mais de 24 pratos quentes e frios + Sobremesa de at�
R$17,90 por apenas R$ 9,95. Compre at� 3 Cupons.

de R$ 17,90 por R$ R$ 9,95


[IMAGE] �ltimas Horas! 93% DESCONTO, PACOTE COM 8 HIDRATA��ES PROFUNDAS
DA L'OREAL + 8 ESCOVAS MODELADORAS + 1 P� e M�o + 8 MESES para usar no
Sal�o Big Star!

de R$ 860,00 por R$ R$ 63,90



[IMAGE]

Não desejo mais receber estes e-mails.


Re: [update] enigmail 1.2

2011-07-22 Thread Nigel Taylor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 07/22/11 14:21, Landry Breuil wrote:
 On Fri, Jul 22, 2011 at 01:33:43PM +0100, Nigel Taylor wrote:
 On 07/22/11 06:33, Landry Breuil wrote:
 Hi,
 
 if you use  rely on enigmail, please test this update, which
 targets thunderbird 5.0 and seamonkey 2.2. It works in my light
 testing on amd64. Check ports@ archive for the corresponding
 tb/sm updates.
 
 If i don't hear from anyone, this will probably be commited this 
 weekend, along sm/tb.
 
 Landry
 I applied diff, this failed. I went back to an earlier version of 
 enigmail from CVS and then applied diff, that worked fine.
 
 Building finished for enigmail-seamonkey. enigmail for thunderbird 
 build failed, expected an enigmail flavor of thunderbird. We also 
 renamed mozilla-thunderbird to just thunderbird,
 
 yeah; sorry, fubared that. Here's a new diff against current, and 
 withtout the dep on an enigmail flavor(that was a local try). i've 
 updated the git repo for tb5 to reflect the rename..
 
 MOZAPP_PKGSTEM =thunderbird-=5.0 MOZAPP_PKGPATH =
 mail/mozilla-thunderbird
 
Built and enigmail working fine with limited test on amd64. That's
looking good to go.

 That should be it.
 
 Was there a thunderbird-i18n update also?
 
 Yes, here it is.
Thanks, will try that, hoping this version finally the dates work
correctly, I will see.

 
 Landry

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (OpenBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk4piOAACgkQJrZXkxEbJYmJ8ACfVZIPzqvgAauLAlJ4Hg8G+sya
OdcAnAz0jKoTWNsVqVEhJJ+wrai1Izkx
=5uO4
-END PGP SIGNATURE-



Bilisim Hukuku Sertifika Programi

2011-07-22 Thread ZeruMax
BILISIM HUKUKU SERTIFIKA PROGRAMI

12-13 Agustos 2011 - 09.30 - 17.00 -

TITANIC Taksim - 750 TL+kdv

Egitmen:

Av. Ali Osman OZDILEK

(Bilisim Suclari ve Hukuku Kitabi Yazari - Hukuk Danismani)

Av. Ceyda AKAYDIN

(Egitim Danismani , Turkiye Bilisim Dernegi Uyesi)

w w w   z e r u m a x  c o m  -  0 2 1 6  4 2 2  9 3  6 1

Bu egitim, bilisim hukukunun genel çerçevesi ile birlikte uygulamadaki
durumunu ögrenmek veya bu konudaki bilgilerini gelistirmek isteyen
hukukçular ile sirketlerin IT ve insan kaynaklari departmanlari basta
olmak üzere çesitli konum ve kademelerdeki yöneticileri hedeflemektedir.
Konularin anlatimi salt hukuki bir yaklasimla degil teknik ve hukuki
yaklasim birlikte ele alinanarak yapilmaktadir.

Bilisim hukuku egitim programi, 7 ana modülden olusmaktadir.

Egitimin süresi 2 gündür. Egitimler sabah saat 09:30’da baslar ve aksam
17:30’da sona erer. Her ders saati 50 dakika, ders aralari ise 10
dakikadir.

Egitimde uygulamadan örneklerle bilisim hukukunun tüm noktalari ele
alinmaktadir.

Program içerigi asagidadir: 

MODÜL I – Bilisim Hukuku Kavrami ve Kapsami

A) Bilisim teknolojileri ve bilisim hukuku kavramlarina genel bakis
B) Ülkemizde ve dünyadaki yasal düzenlemeler
C) Bilisim ile ilgili hukuki problemlere genel bakis

MODÜL II – Bilisimin Yeni Yasalari

A) 5651 sayili Internet Ortaminda Yapilan Yayinlarin Düzenlenmesi ve Bu
Yayinlar Yoluyla Islenen Suçlarla Mücadele Edilmesi Hakkinda Kanun

B) Otelim, restoranim var 5651 kapsaminda toplu kullanim saglayici miyim,
islenen suçlardan benim de sorumlulugum var mi?

C) 5651 sayili Kanun’daki sorumluluk rejimi

D) 5651 internette cevap ve düzeltme hakkimi kullanmami sagliyor mu?

E) 5809 sayili Elektronik Haberlesme Kanunu

MODÜL III – Bilisim Çaginda “Is” ve “Is Dünyasi”

A) Elektronik Ticaret: Is Dünyasinda Bir Paradigma Degisimi mi?
B) Elektronik sözlesmeler baglayici mi?
C) Elektronik imza nedir? Islak imzanin yerini tutar mi?
D) Elektronik ticarette tüketicilerin haklari var midir? Varsa bu haklar
nelerdir?
E) Elektronik ticaret yapiyorum. Vergi ödeyecek miyim?
F) Elektronik ticaret yapiyorum? Belge düzeni ve muhasebe kayitlari ile
ilgili uymam gereken kurallar var mi?

G) Firmam hakkinda internette asilsiz haberler yapiliyor, müsterilerime
asilsiz e-postalar gönderiliyor. Ne yapacagim?
H) Google’da firmamin ismini yazinca arama sonuçlarinda rakip firmanin
reklâmlari çikiyor. Ne yapacagim?
I) Çalisanlarimdan biri rakip firmaya geçti, geçerken de çok önemli
sirket bilgilerini yaninda götürdü. Bu eylemi önlemek mümkün mü?
Elektronik ortamdaki bilgileri alip rakip firmaya götürdügünü nasil
kanitlayacagim, ne yapacagim?
J) Internet bankaciligi/ATM cihazi kullanirken dolandirildim. Banka
parami ödemiyor. Çalinan parami nasil geri alacagim?

K) Kamu Ihalelerinde bilisim ile ilgili düzenlemeler nelerdir?

L) Bankalarda Bilgi Sistemleri Yönetimi ile ilgili düzenlemeler nelerdir?

M) Merkezi Kayit Kurulusu nedir?

N) Türk Ticaret Kanunu Tasarisi’nin bilisim ile ilgili hükümleri
nelerdir?

MODÜL IV – Fikri ve Sinaî Haklar

A) Özgün internet isletme modelleri gelistirdim, fikrimi nasil
koruyacagim?
B) Sarkilarim, siirlerim, resimlerim, projelerim vb. internette benden
izinsiz yayinlaniyor. Ne yapacagim?
C) Alan adimi baskasi tescil ettirmis. Benden para istiyor. Ne yapacagim?
D) Alan adima/markama benzer bir alan adini baskasi tescil ettirmis. Ne
yapacagim?
E) Markama internet üzerinden tecavüz ediliyor? Markami nasil
koruyacagim?
F) Isyerinde çalisanlardan biri korsan müzik, film, program indirmis,
sikâyet edilirsem ben sorumlu olur muyum?
G) Sifreli televizyon kanallarinin sifresini kirip yakinlarima
izletiyorum. Telif hakki ihlali davalarina muhatap olabilir miyim?

H) IP TV gibi internet üzerinden yapilan televizyon yayinlarinda telif
haklarina ve yayinciliga iliskin problemler nelerdir? Bu tür yayinlarla
ilgili sözlesmelerde nelere dikkat etmek gerekir?

I) Yazilim gelistirme sözlesmeleri sadece fikri haklarin kapsamindaki
sözlesmeler midir, bu sözlesmelerde nelere dikkat etmek gerekir?

MODÜL V – Bilisim Teknolojileri ve Is Hukuku

A) Isyerinde internet kullanimi var. Ama bu kullanimin bir düzen içinde
olmasini istiyorum. Ne yapmaliyim?
B) Çalisanlarimin, isyeri alan adi uzantili e-posta kullanmalarini,
kendilerine ait diger elektronik postalari kullanmalarini istemiyorum. Ne
yapmaliyim?
C) Çalisanlarimin e-posta yazismalarini ve internet hareketlerini izlemek
istiyorum. Ne yapmaliyim?
D) Çalisanlarimdan bazilari is saatleri içinde MSN gibi programlar
araciligiyla is disinda görüsmeler yapiyorlar, ya da internette isle
ilgisi olmayan yerlerde geziyorlar. Ne yapmaliyim?
E) Çalisanlarim bilisim teknolojilerini kullanirken koydugum kurallara
uymuyor, is sözlesmesini hakli nedenle tazminatsiz feshedebilir miyim?
F) Sirket içine yayinladigim bir sirküler disariya sizdirilmis. Bu kisiyi
tespit ettim. Is sözlesmesini hakli nedenle tazminatsiz feshedebilir
miyim? 

MODÜL VI – Bilisim ve Ceza Hukuku

A) Bilisim teknolojileri ile birlikte ortaya