Re: Snapshots

2012-08-14 Thread Dan Espen
Thomas Adam  writes:

> On 14 August 2012 15:23, Jason L Tibbitts III  wrote:
>> OK, snapshots are back.  At least they appear to be working OK, though
>> ChangeLog and NEWS don't seem to have been updated in quite some time.
>
> Please ensure you're creating snapshots off branch-2_6.

Yep, that must be 2.7 since the NEWS isn't current.

Maybe we should take steps to remove 2.7?

-- 
Dan Espen



Re: Snapshots

2012-08-14 Thread Jason L Tibbitts III
I stopped doing the snapshots a while back.  I could do them again, I
guess, but, really, why not just build yourself if that's what you want?

 - J<



Re: snapshots not being built

2002-08-14 Thread Jason L Tibbitts III
> "DV" == Dominik Vogt  writes:

DV> But yesterday's tarball doesn't build.

The snapshot isn't a complete, builds everything test.

 - J<
--
Visit the official FVWM web page at http://www.fvwm.org/>.
To unsubscribe from the list, send "unsubscribe fvwm-workers" in the
body of a message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]


Re: snapshots not being built

2002-08-14 Thread Dominik Vogt
On Wed, Aug 14, 2002 at 09:09:07AM -0500, Jason L Tibbitts III wrote:
> > "DV" == Dominik Vogt  writes:
> 
> DV> The recent snapshots are broken (PictureDitherMatrice.h missing in
> DV> Makefile.am), but there are no error mails on the list.
> 
> The snapshots are being built just fine, though; I just built another
> one without error.
> 
> DV> Is something wrong with the script trying to build the snapshots?
> 
> Nothing other than the fact that it's succeeding.  The script is, as
> always:
[snip]

Hm.  But yesterday's tarball doesn't build.  It chokes on a
missing file.  Is the inclusion of this file controlled by a
preprocessor macro?

Bye

Dominik ^_^  ^_^

 --
Dominik Vogt, mail: [EMAIL PROTECTED], phone: 0721/91374-382
Schlund + Partner AG, Erbprinzenstr. 4-12, D-76133 Karlsruhe
--
Visit the official FVWM web page at http://www.fvwm.org/>.
To unsubscribe from the list, send "unsubscribe fvwm-workers" in the
body of a message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]


Re: snapshots not being built

2002-08-14 Thread Jason L Tibbitts III
> "DV" == Dominik Vogt  writes:

DV> The recent snapshots are broken (PictureDitherMatrice.h missing in
DV> Makefile.am), but there are no error mails on the list.

The snapshots are being built just fine, though; I just built another
one without error.

DV> Is something wrong with the script trying to build the snapshots?

Nothing other than the fact that it's succeeding.  The script is, as
always:

#!/bin/zsh
VERSION=snap-`/bin/date +%Y%m%d`;
SNAPDIR=/home/ftp/pub/fvwm/devel/snapshots;
TMPF=/tmp/fvwm.snap.$$
rm -f $TMPF
cd ~/fvwm
/usr/bin/cvs -q update -dPA >> $TMPF 2>&1 && \
/usr/bin/aclocal>> $TMPF 2>&1 && \
/usr/bin/automake --add-missing >> $TMPF 2>&1 && \
/usr/bin/autoreconf >> $TMPF 2>&1 && \
./configure >> $TMPF 2>&1 && \
/usr/bin/make -k>> $TMPF 2>&1 && \
/usr/bin/make dist VERSION=$VERSION >> $TMPF 2>&1 && \
mv fvwm-$VERSION.tar.gz $SNAPDIR>> $TMPF 2>&1 && \
cp -p ChangeLog NEWS $SNAPDIR   >> $TMPF 2>&1
if [ ! -f $SNAPDIR/fvwm-$VERSION.tar.gz ]; then
  mail -s "Problems building $VERSION" fvwm-workers@fvwm.org < $TMPF;
fi
rm $TMPF

 - J<
--
Visit the official FVWM web page at http://www.fvwm.org/>.
To unsubscribe from the list, send "unsubscribe fvwm-workers" in the
body of a message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]