[CONTRIB] REJECT: j2se14-1.4.2.05-20040921.nosrc.rpm

2004-09-22 Thread OpenPKG Project Robot
The following OpenPKG Contribution Area operation occurred.
uploaded RPM file j2se14-1.4.2.05-20040921.nosrc.rpm rejected -- deleted.
No action is required on your part.

Information about j2se14-1.4.2.05-20040921.nosrc.rpm follows:
| File:
| j2se14-1.4.2.05-20040921.nosrc.rpm: RPM v3 src i386 j2se14-1.4.2.05-20040921
| Strings:
| j2se14-1.4.2.05-20040921
| cd60290f559251215e1a2b69dde0b4da632d208f
| j2se14
| 1.4.2.05
| 20040921
| Java 2 Platform, Standard Edition (J2SE) 1.4
| The premier solution for rapidly developing and deploying
| mission-critical, enterprise applications, J2SE provides the
| essential compiler, tools, runtimes, and APIs for writing,
| deploying, and running applets and applications in the Java
| programming language.
| shroom.oit.pdx.edu
| OpenPKG
| Sun Microsystems, Inc.
| Commercial
| Portland State University
| Language
| rc.j2se14
| jce_policy-1_4_2.zip
| j2sdk-1_4_2-doc.zip
__
The OpenPKG Projectwww.openpkg.org
Developer Communication List   [EMAIL PROTECTED]


Re: lprng and ifhp

2004-09-22 Thread David M. Fetter
I attached the rc scripts for tomcat5 and lprng here in case anybody
wants them, since I could upload them to the contrib area or the
src.rpms which contained them.

On Tue, 2004-09-21 at 12:26, David M. Fetter wrote:
 Well, I tried to upload the src rpms for lprng and tomcat5 but they were
 rejected in that form.  I uploaded the spec files only.  The rc scripts
 won't upload due to some filename rejection.  Not sure why the src rpms
 failed.  The rejection doesn't seem to indicate why.
 
 On Tue, 2004-09-21 at 11:56, David M. Fetter wrote:
  I also uploaded an lprng src rpm which includes and rc script and the
  ifhp spec file.
-- 
David M. Fetter - UNIX Systems Administrator
Portland State University - www.oit.pdx.edu
Only those who attempt the absurd can achieve the impossible.
[EMAIL PROTECTED]@/lib/openpkg/bash @l_prefix@/etc/rc
##
## rc.lprng -- Run-Commands for LPRng daemon
##

%config
lprng_enable=$openpkg_rc_def
lprng_user=@l_musr@
lprng_group=@l_mgrp@

%common
[EMAIL PROTECTED]@/var/lprng/run/lprng.lock.*

lprng_signal() {
SIGNALTYPE=$1

overall_retval=0
for f in $lprng_pidfiles ; do

#   catch fall-through case where no PID files are found
[ x${f} = [EMAIL PROTECTED]@/var/lprng/run/lprng.lock.* ]  {
return 1
}

[ -f $f ]  {
pid=`cat $f`
kill -${SIGNALTYPE} $pid
single_retval=$?

#   if non-success error code, record it
[ $single_retval != 0 ]  overall_retval=$single_retval
}

done

return $overall_retval
}

%status -u @l_susr@ -o
lprng_usable=unknown
lprng_active=no
rcService lprng enable yes  \
lprng_signal 0  lprng_active=yes
echo lprng_enable=\$lprng_enable\
echo lprng_usable=\$lprng_usable\
echo lprng_active=\$lprng_active\

%start -u @l_susr@
rcService lprng enable yes || exit 0
rcService lprng active yes  exit 0
@l_prefix@/sbin/lpd

%stop -u @l_susr@
rcService lprng enable yes || exit 0
rcService lprng active no  exit 0
lprng_signal TERM
rm -f $lprng_pidfiles 2/dev/null || true

%restart -u @l_susr@
rcService lprng enable yes || exit 0
rcService lprng active no  exit 0
rc lprng stop
sleep 2
rc lprng start

%daily -u @l_susr@
rcService lprng enable yes || exit 0
#!/usr/local/lib/openpkg/bash /usr/local/etc/rc
##
##  rc.tomcat5 -- Run-Commands
##

%config
tomcat5_enable=$openpkg_rc_def
tomcat5_home=/usr/local/libexec/tomcat5
tomcat5_log_prolog=true
tomcat5_log_epilog=true
tomcat5_log_numfiles=10
tomcat5_log_minsize=1M
tomcat5_log_complevel=9

%common
tomcat5_pidfile=/usr/local/var/tomcat5/log/tomcat.pid
tomcat5_signal () {
[ -f $tomcat5_pidfile ]  kill -$1 `cat $tomcat5_pidfile`
}

%status
tomcat5_usable=unknown
tomcat5_active=no
rcService tomcat5 enable yes  \
tomcat5_signal 0  tomcat5_active=yes
echo tomcat5_enable=\$tomcat5_enable\
echo tomcat5_usable=\$tomcat5_usable\
echo tomcat5_active=\$tomcat5_active\

%start
rcService tomcat5 enable yes || exit 0
rcService tomcat5 active yes  exit 0
JAVA_HOME=$java_home; export JAVA_HOME
CATALINA_HOME=$tomcat5_home; export CATALINA_HOME
CATALINA_OPTS=; export CATALINA_OPTS
CATALINA_PID=$tomcat5_pidfile; export CATALINA_PID
DAEMON_HOME=${CATALINA_HOME}/bin; export DAEMON_HOME
TOMCAT_USER=www; export TOMCAT_USER
TMP_DIR=/var/tmp; export TMP_DIR

CLASSPATH=${JAVA_HOME}/lib/tools.jar:${CATALINA_HOME}/bin/commons-daemon.jar:${CATALINA_HOME}/bin/bootstrap.jar;
 export CLASSPATH
#
# Start Tomcat
#
$DAEMON_HOME/jsvc \
-user $TOMCAT_USER \
-home $JAVA_HOME \
-Dcatalina.home=$CATALINA_HOME \
-Djava.io.tmpdir=$TMP_DIR \
-outfile $CATALINA_HOME/logs/catalina.out \
-errfile '1' \
$CATALINA_OPTS \
-cp $CLASSPATH \
org.apache.catalina.startup.Bootstrap
#
# To get a verbose JVM
#-verbose \
# To get a debug of jsvc.
#-debug 
 
%stop
rcService tomcat5 enable yes || exit 0
rcService tomcat5 active no  exit 0
JAVA_HOME=$java_home; export JAVA_HOME
CATALINA_HOME=$tomcat5_home; export CATALINA_HOME
ps -ef|grep tomcat5|grep -v grep|awk '{print $2}'|xargs -t kill 12/dev/null
rm -f $tomcat5_pidfile 2/dev/null || true

%restart
rcService tomcat5 enable yes || exit 0
rcService tomcat5 active no  exit 0
rc tomcat5 stop
rc tomcat5 start

%daily
rcService tomcat5 enable yes || exit 0

#   rotate logfile
shtool rotate -f \
-n ${tomcat5_log_numfiles} -s ${tomcat5_log_minsize} -d \
-z ${tomcat5_log_complevel} -o www -g alummail -m 660 \
-P ${tomcat5_log_prolog} \
-E ${tomcat5_log_epilog}  rc tomcat5 restart \
$CATALINA_HOME/logs/catalina.out

%env
rcService tomcat5 enable yes || exit 0
   

j2se14 spec file (modified)

2004-09-22 Thread David M. Fetter
I uploaded a new j2se14.spec file.  I added options to it so that you
can keep the demos if you want, add docs, remove man pages and/or add
the US Encryption policy files.  I tried to upload the src.rpm which
included an rc script that just adds the JAVA_HOME into the environment,
but it was rejected.  I attached the rc script to this email in case
anyone wants it.

-- 
David M. Fetter - UNIX Systems Administrator
Portland State University - www.oit.pdx.edu
Only those who attempt the absurd can achieve the impossible.
#!/usr/local/lib/openpkg/bash /usr/local/etc/rc
##
##  rc.j2se14 -- Run-Commands
##

%config
j2se14_enable=$openpkg_rc_def
j2se14_home=/usr/local/libexec/j2se14
java_home=$j2se14_home

%status -u root -o
j2se14_usable=unknown
j2se14_active=no

${j2se14_home}/bin/java -version 2 /dev/null 
status=$?

if [ $status -eq 0 ]; then
  j2se14_active=yes
fi

echo j2se14_enable=\$j2se14_enable\
# active is the same as usable
echo j2se14_usable=\$j2se14_active\
echo j2se14_active=\$j2se14_active\

%start
:
%stop
:
%env
rcService j2se14 enable yes || exit 0
JAVA_HOME=$JDK_home
JDK_home=$j2se14_home
JAVA_home=$j2se14_home
export JAVA_HOME JDK_home JAVA_home



signature.asc
Description: This is a digitally signed message part


[CONTRIB] ACCEPT: j2se14.spec

2004-09-22 Thread OpenPKG Project Robot
The following OpenPKG Contribution Area operation occurred.
uploaded RPM specfile j2se14.spec accepted -- moved to contrib area.
No action is required on your part.

Information about j2se14.spec follows:
| ##
| ##  j2se14.spec -- OpenPKG RPM Specification
| ##  Copyright (c) 2000-2004 The OpenPKG Project http://www.openpkg.org/
| ##  Copyright (c) 2000-2004 Ralf S. Engelschall [EMAIL PROTECTED]
| ##  Copyright (c) 2000-2004 Cable  Wireless http://www.cw.com/
| ##
| ##  Permission to use, copy, modify, and distribute this software for
| ##  any purpose with or without fee is hereby granted, provided that
| ##  the above copyright notice and this permission notice appear in all
| ##  copies.
| ##
| ##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
| ##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
| ##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
| ##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
| ##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
| ##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
| ##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
| ##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
| ##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
| ##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
| ##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
| ##  SUCH DAMAGE.
| ##
| 
| #   package versions
| %define   V_sunjava 1_4_2_05
| %define   V_sunsupp 1_4_2
| %define   V_filesys 1.4.2_05
| %define   V_openpkg 1.4.2.05
| 
| #   package information
| Name: j2se14
| Summary:  Java 2 Platform, Standard Edition (J2SE) 1.4
| URL:  http://java.sun.com/j2se/
| Vendor:   Sun Microsystems, Inc.
| Packager: Portland State University
| Distribution: OpenPKG
| Class:EVAL
| Group:Language
| License:  Commercial
| Version:  %{V_openpkg}
| Release:  2.1.1
| 
| # package options
| %option   with_manyes
| %option   with_docs   no
| %option   with_demo   no
| %option   with_uscryptno
| 
| #   list of sources
| Source0:  http://java.sun.com/j2se/::/j2sdk-%{V_sunjava}-linux-i586.bin
| Source1:  http://java.sun.com/j2se/::/j2sdk-%{V_sunjava}-solaris-sparc.sh
| Source2:  http://java.sun.com/j2se/::/j2sdk-%{V_sunjava}-solaris-sparcv9.sh
| Source3:  http://java.sun.com/j2se/::/j2sdk-%{V_sunjava}-solaris-i586.sh
| Source4:  http://java.sun.com/j2se/::/j2sdk-%{V_sunsupp}-doc.zip
| Source5:  http://java.sun.com/j2se/::/jce_policy-%{V_sunsupp}.zip
| Source6:  rc.j2se14
| %NoSource 0
| %NoSource 1
| %NoSource 2
| %NoSource 3
| %NoSource 4
| %NoSource 5
| 
| #   build information
| Prefix:   %{l_prefix}
| BuildRoot:%{l_buildroot}
| BuildPreReq:  OpenPKG, openpkg = 2.1.0
| PreReq:   OpenPKG, openpkg = 2.1.0
| AutoReq:  no
| AutoReqProv:  no
| Provides: JDK, JRE
| Conflicts:j2se
| 
| %description
| The premier solution for rapidly developing and deploying
| mission-critical, enterprise applications, J2SE provides the
| essential compiler, tools, runtimes, and APIs for writing,
| deploying, and running applets and applications in the Java
| programming language.
| 
| %track
| prog j2se14 = {
| disabled
| comment   = rse: no tracking possible
| version   = %{V_openpkg}
| url   = http://java.sun.com/j2se/
| regex = j2se-(__VER__)\.tar\.gz
| }
| 
| %prep
| %setup -q -c j2se14 -T
| 
| %build
| 
| %install
| rm -rf ${RPM_BUILD_ROOT}
| 
| #   select vendor source
| pkgfile=
| suppfile=
| docsfile=%{SOURCE j2sdk-%{V_sunsupp}-doc.zip}
| cryptfile=%{SOURCE jce_policy-%{V_sunsupp}.zip}
| pkgdir=%{V_filesys}
| case %{l_platform -t} in
| i?86-linux2.[2-6]* | i?86-freebsd[45]* )
| pkgfile=%{SOURCE j2sdk-%{V_sunjava}-linux-i586.bin}
| pkgdir=j2sdk%{V_filesys}
| ;;
| sun4u-sunos5.[6-9]* )
| pkgfile=%{SOURCE j2sdk-%{V_sunjava}-solaris-sparc.sh}
| suppfile=%{SOURCE j2sdk-%{V_sunjava}-solaris-sparcv9.sh}
| pkgdir=j2sdk%{V_filesys}
| ;;
| i?86-sunos5.[6-9]* )
| pkgfile=%{SOURCE j2sdk-%{V_sunjava}-solaris-i586.sh}
| pkgdir=j2sdk%{V_filesys}
| ;;
| esac
| if [ .$pkgfile = . ]; then
| echo Sorry, unsupported architecture '%{l_platform -t}' 12
| exit 1
| fi
| 
| #   create installation tree
| %{l_shtool} mkdir -f -p -m 755 \
| ${RPM_BUILD_ROOT}%{l_prefix}/bin \
| ${RPM_BUILD_ROOT}%{l_prefix}/cgi \
| ${RPM_BUILD_ROOT}%{l_prefix}/etc/rc.d \
| ${RPM_BUILD_ROOT}%{l_prefix}/libexec \
| 

[OpenPKG] Version Tracking Report (2004-09-22 18:48)

2004-09-22 Thread OpenPKG Version Tracker
 OpenPKG Version Tracking Report
 ===

 Reporting Time:2004-09-22 18:48
 Tracking Duration: 0:36:05 (H:M:S)
 Tracking Input:1231 sources (795 packages)
 Tracking Result:   1164 up-to-date, 17 out-dated, 50 error

 The following 17 sources were determined to be out-dated because newer
 vendor versions were found. Upgrade the corresponding OpenPKG packages.

 - - -
 Package   Old Version   New Version  
 - - -
 apache:mod_auth_mysql 2.5.0 2.6.0
 kde-arts  1.2.3 1.3.0 [1]
 lesstif   0.93.94   0.93.95b  [2]
 mimedefang2.44  2.45
 mimedefang:MIME-tools 5.411a-RP-Patched-02  5.413
 mono  1.0.1 1.1.1
 mplayer:live  2004.02.20a   2004.09.22[3]
 myodbc3.51.07   3.51.09
 mysql41   4.1.4a-gamma  4.1.5-gamma
 perforce  r04.1 r04.2
 perl-dbi:DBD-SQLite   1.05  1.06
 perl-mail:Mail-Box2.057 2.058
 perl-time:Benchmark-Timer 0.5   0.6.1 [4]
 rekall2.2.0 2.2.1
 socat 1.4.0.1   1.4.0.2
 uvscan:datfiles   4393  4394
 xine-lib  1-rc5 1-rc6a[5]
 - - -
 [1] kde-arts: tho: 23.08.04: version 1.4 is from the kde 3.3 tree
 [2] lesstif: tho: 26.08.04: Version 0.93.95b still totally broken in its Make 
dependancies.
 [3] mplayer:live: rse: new snapshots occur every second day, no need to upgrade such 
fast
 [4] perl-time:Benchmark-Timer: tho: 22.09.04: Benchmark-Timer  1.6 needs 
Statistics::PointEstimation
 [5] xine-lib: ms: 1-rc5: INT16_MIN undeclared on FreeBSD

 The following 50 sources could not be successfully checked because
 an error occurred while processing. Keep at least an eye on them.

 - - -
 Package   Old Version   Error
 - - -
 acroread:linux509   connection failed or ti..
 acroread:solaris  508   connection failed or ti..
 atk   1.6.1 2nd regex didn't match ..
 cacti 0.8.6 regex didn't match (pro..
 cvstrac   1.1.4 latest version online l..
 epm   3.7   2nd connection failed o..
 firefox   1.0PR 2nd connection failed o..
 gcc35 3.5-20040905  1st regex didn't match ..
 gcc:spp   3.4-2 latest version online l..
 gconf 2.7.3.1   2nd connection failed o..
 glib2 2.4.6 2nd regex didn't match ..
 gtk2  2.4.9 2nd regex didn't match ..
 kde-qt3.2.3 connection failed or ti..
 less  382   latest version online l..
 libart2.3.162nd connection failed o..
 libgda1.0.4 1st connection failed o..
 max   7.4.2 regex didn't match (p [1]
 mirror2.9   connection failed or ti..
 newt  0.51.6-3  connection failed or ti..
 perl-dbi:Class-DBI-AsForm 2.3   regex didn't match (pro..
 perl-dbi:Class-DBI-View   0.04  regex didn't match (pro..
 perl-util:Data-Swap   0.02  regex didn't match (pro..
 postgresql7.4.5 2nd connection failed o..
 psutils   p17   connection failed or ti..
 python2.3.4 2nd regex didn't match ..
 qt3.3.3 connection failed or ti..
 readline:patches  50-000latest version online l..
 ripe-asused:netwhois  1.19  regex didn't match (pro..
 ripe-ipadm0.6.26connection failed or ti..
 ruby  1.8.1 connection failed or ti..
 skey   

[CONTRIB] REJECT: jabberd-2.0s3-20040916.src.rpm

2004-09-22 Thread OpenPKG Project Robot
The following OpenPKG Contribution Area operation occurred.
uploaded RPM file jabberd-2.0s3-20040916.src.rpm rejected -- deleted.
No action is required on your part.

Information about jabberd-2.0s3-20040916.src.rpm follows:
| File:
| jabberd-2.0s3-20040916.src.rpm: RPM v3 src i386 jabberd-2.0s3-20040916
| Strings:
| jabberd-2.0s3-20040916
| 23aa173f5a84c620ce5c451cc1dc3c2fb8241723
| i%}
| jabberd
| 2.0s3
| 20040916
| Jabber2 Daemon
| jabberd 2 is the next generation of the jabberd server. It has been rewritten 
from the
| ground up to be scalable, architecturally sound, and to support the latest 
protocol
| extensions coming out of the JSF.
| :jabber.zixadmin.com
| OpenPKG
| Jabber Software Foundation
| JOSL/GPL
| The OpenPKG Project
| Network
| rc.jabberd
| jabberd-2.0s3.tar.gz
| http://jabberd.jabberstudio.org/2/
| fedora1
__
The OpenPKG Projectwww.openpkg.org
Developer Communication List   [EMAIL PROTECTED]


New jabberd 2.0 src rpm

2004-09-22 Thread Aaron Bostick
I uploaded a src rpm for jabberd 2.0s3.  It is working well for me.  It
is much easier to install than the 1.4 series IMO and the spec file
reflects that.

Thanks,
Aaron

__
The OpenPKG Projectwww.openpkg.org
Developer Communication List   [EMAIL PROTECTED]


Re: j2se14 spec file (modified)

2004-09-22 Thread Ralf S. Engelschall
On Wed, Sep 22, 2004, David M. Fetter wrote:

 I uploaded a new j2se14.spec file.  I added options to it so that you
 can keep the demos if you want, add docs, remove man pages and/or add
 the US Encryption policy files.  I tried to upload the src.rpm which
 included an rc script that just adds the JAVA_HOME into the environment,
 but it was rejected.  I attached the rc script to this email in case
 anyone wants it.
 [...]

I've taken it over but tried to simplify and cleanup a few parts.
Especially the with_man option I've removed (we always install manual
pages in OpenPKG) and your changes to %env in rc.j2se14 I do not
understand (the JDK_home and JRE_home variables are meant as internal
OpenPKG variables only). See http://cvs.openpkg.org/chngview?cn=19144
what I've comitted until now. Thanks for your contribution.

   Ralf S. Engelschall
   [EMAIL PROTECTED]
   www.engelschall.com

__
The OpenPKG Projectwww.openpkg.org
Developer Communication List   [EMAIL PROTECTED]


Re: j2se14 spec file (modified)

2004-09-22 Thread David M. Fetter
On Wed, 2004-09-22 at 11:29, Ralf S. Engelschall wrote:
 On Wed, Sep 22, 2004, David M. Fetter wrote:
 I've taken it over but tried to simplify and cleanup a few parts.
 Especially the with_man option I've removed (we always install manual
 pages in OpenPKG) and your changes to %env in rc.j2se14 I do not
 understand (the JDK_home and JRE_home variables are meant as internal
 OpenPKG variables only). 

Ah, that might explain some things.  I was trying to extract those
variables for use with tomcat5 in it's rc script.  Then I just ended up
making the rc script for j2se14 and passed the variable that way to
tomcat5 as well as other potential apps.

 See http://cvs.openpkg.org/chngview?cn=19144
 what I've comitted until now. Thanks for your contribution.



-- 
David M. Fetter - UNIX Systems Administrator
Portland State University - www.oit.pdx.edu
Only those who attempt the absurd can achieve the impossible.


signature.asc
Description: This is a digitally signed message part


New src rpm for mu-conference

2004-09-22 Thread Aaron Bostick
I uploaded a new src rpm called jcr into contrib/00UPLOAD.  It is the
jabber component runtime that allows 1.4 jabber components, like
multi-user chat, to run as a standalone process and talk to a jabber 2.0
server.  jcr by itself doesn't do anything, but the rpm will build the
mu-conference binary and set that up.

That binary will run with the jabber 2.0 I uploaded earlier.  This
package adds conferencing abilities to the jabber server.

Feedback is appreciated!

Thanks,
Aaron

__
The OpenPKG Projectwww.openpkg.org
Developer Communication List   [EMAIL PROTECTED]


[CONTRIB] REJECT: jcr-0.2.4-20040921.src.rpm

2004-09-22 Thread OpenPKG Project Robot
The following OpenPKG Contribution Area operation occurred.
uploaded RPM file jcr-0.2.4-20040921.src.rpm rejected -- deleted.
No action is required on your part.

Information about jcr-0.2.4-20040921.src.rpm follows:
| File:
| jcr-0.2.4-20040921.src.rpm: RPM v3 src i386 jcr-0.2.4-20040921
| Strings:
| jcr-0.2.4-20040921
| a362eba4ccdb701abf192dfddd63468de8812709
| 0.2.4
| 20040921
| Implementation of the Multi-User Chat protocol, as defined in JEP-0045
| An implemention of the conference server using the protocol defined in JEP-0045.
| This project will be in flux until the jep is finalised, so I'd advise you to
| watch this space for further news.
| jabber.zixadmin.com
| OpenPKG
| Jabber Software Foundation
| JOSL/GPL
| The OpenPKG Project
| Network
| rc.muc
| mu-conference-0.6.0.tar.gz
| jcr-0.2.4.tar.gz
| http://mu-conference.jabberstudio.org/
| fedora1
| ix86
__
The OpenPKG Projectwww.openpkg.org
Developer Communication List   [EMAIL PROTECTED]


Re: spec patch to remove conflicts between tetex and texinfo

2004-09-22 Thread Ralf S. Engelschall
On Wed, Sep 22, 2004, Bill Campbell wrote:

 The attached patch to the Release 2.1 tetex package tetex.spec
 file fixed a dependency conflict with the texinfo package.

This is already fixed in the latest tetex package from
OpenPKG-CURRENT.

 It
 also removes the %{l_prefix}/bin/newer file which isn't in the
 SuSE 9.x versions of tetex (and happens to conflict with an
 internal package that we use :-).

Hmmm at least I do not see what this program has to do with TeX, so
if teTeX internally doesn't use it from some scripts we can remove it.
Are you sure that no internal stuff uses this?

   Ralf S. Engelschall
   [EMAIL PROTECTED]
   www.engelschall.com

__
The OpenPKG Projectwww.openpkg.org
Developer Communication List   [EMAIL PROTECTED]


Re: spec patch to remove conflicts between tetex and texinfo

2004-09-22 Thread Bill Campbell
On Wed, Sep 22, 2004, Ralf S. Engelschall wrote:
On Wed, Sep 22, 2004, Bill Campbell wrote:

 The attached patch to the Release 2.1 tetex package tetex.spec
 file fixed a dependency conflict with the texinfo package.

This is already fixed in the latest tetex package from
OpenPKG-CURRENT.

 It
 also removes the %{l_prefix}/bin/newer file which isn't in the
 SuSE 9.x versions of tetex (and happens to conflict with an
 internal package that we use :-).

Hmmm at least I do not see what this program has to do with TeX, so
if teTeX internally doesn't use it from some scripts we can remove it.
Are you sure that no internal stuff uses this?

Not absolutely, positively sure, but (a) I didn't see anything, and (b) the
SuSE tetex distributions don't have any ``newer'' program, and they're the
same tetex version number as the OpenPKG.

I'm building tetex in preparation of building lyx.  So far I've failed
building lyx on a FreeBSD 4.8 box (yeah, I know I should update it), so am
switching to SuSE 9.0 or 9.1 since that's where I do my serious desktop
work.

FWIW, our OpenPKG environment here is basically Release 2.1 with selected
CURRENT packages as I'm attempting to minimize the amount of time I spend
rebuilding and updating on production machines.

Bill
--
INTERNET:   [EMAIL PROTECTED]  Bill Campbell; Celestial Software LLC
UUCP:   camco!bill  PO Box 820; 6641 E. Mercer Way
FAX:(206) 232-9186  Mercer Island, WA 98040-0820; (206) 236-1676
URL: http://www.celestial.com/

``There is nothing as stupid as an educated man if you get him off the
thing he was educated in.''
Will Rogers
__
The OpenPKG Projectwww.openpkg.org
Developer Communication List   [EMAIL PROTECTED]


[OpenPKG] Version Tracking Report (2004-09-23 06:42)

2004-09-22 Thread OpenPKG Version Tracker
 OpenPKG Version Tracking Report
 ===

 Reporting Time:2004-09-23 06:42
 Tracking Duration: 0:31:01 (H:M:S)
 Tracking Input:1232 sources (796 packages)
 Tracking Result:   1162 up-to-date, 23 out-dated, 47 error

 The following 23 sources were determined to be out-dated because newer
 vendor versions were found. Upgrade the corresponding OpenPKG packages.

 - - -
 Package   Old Version   New Version  
 - - -
 apache:mod_auth_mysql 2.5.0 2.6.0
 calamaris 2.99.1.1  2.99.1.2
 kde-arts  1.2.3 1.3.0 [1]
 keychain  2.4.0 2.4.1
 lesstif   0.93.94   0.93.95b  [2]
 linkchecker   1.13.41.13.5
 mathomatic11.3e 11.3f
 mimedefang2.44  2.45
 mimedefang:MIME-tools 5.411a-RP-Patched-02  5.413
 mono  1.0.1 1.1.1
 mplayer:live  2004.02.20a   2004.09.22[3]
 myodbc3.51.07   3.51.09
 mysql41   4.1.4a-gamma  4.1.5-gamma
 perforce  r04.1 r04.2
 perl-dbi:DBD-SQLite   1.05  1.06
 perl-mail:Mail-Box2.057 2.058
 perl-time:Benchmark-Timer 0.5   0.6.1 [4]
 rekall2.2.0 2.2.1
 socat 1.4.0.1   1.4.0.2
 subversion1.0.7 1.0.8
 txt2html  2.30  2.31
 uvscan:datfiles   4393  4394
 xine-lib  1-rc5 1-rc6a[5]
 - - -
 [1] kde-arts: tho: 23.08.04: version 1.4 is from the kde 3.3 tree
 [2] lesstif: tho: 26.08.04: Version 0.93.95b still totally broken in its Make 
dependancies.
 [3] mplayer:live: rse: new snapshots occur every second day, no need to upgrade such 
fast
 [4] perl-time:Benchmark-Timer: tho: 22.09.04: Benchmark-Timer  1.6 needs 
Statistics::PointEstimation
 [5] xine-lib: ms: 1-rc5: INT16_MIN undeclared on FreeBSD

 The following 47 sources could not be successfully checked because
 an error occurred while processing. Keep at least an eye on them.

 - - -
 Package   Old Version   Error
 - - -
 atk   1.6.1 2nd regex didn't match ..
 bird  1.0.9 connection failed or ti..
 cacti 0.8.6 regex didn't match (pro..
 cvs:cvslock   0.2   connection failed or ti..
 cvstrac   1.1.4 latest version online l..
 epm   3.7   2nd connection failed o..
 firefox   1.0PR 2nd connection failed o..
 gcc35 3.5-20040905  1st regex didn't match ..
 gcc:spp   3.4-2 latest version online l..
 gconf 2.7.3.1   2nd connection failed o..
 glib2 2.4.6 2nd regex didn't match ..
 gtk2  2.4.9 2nd regex didn't match ..
 kde-qt3.2.3 connection failed or ti..
 less  382   latest version online l..
 libart2.3.162nd connection failed o..
 libgda1.0.4 1st connection failed o..
 max   7.4.2 regex didn't match (p [1]
 mirror2.9   connection failed or ti..
 newt  0.51.6-3  connection failed or ti..
 perl-dbi:Class-DBI-AsForm 2.3   regex didn't match (pro..
 perl-dbi:Class-DBI-View   0.04  regex didn't match (pro..
 perl-util:Data-Swap   0.02  regex didn't match (pro..
 pgpdump   0.22  regex didn't match (pro..
 postgresql7.4.5 2nd connection failed o..
 psutils   p17   connection failed or ti..
 python2.3.4 2nd