Vaclav Slavik | 16 Jul 2003 21:49
Picon
Favicon

[bakefile-devel] Re: bakefile issue

Hi,

> > make: *** No rule to make target `doc/man/bakefile.1', needed by 
> > `all-am'.  Stop.

I disabled bakefile.1 in the makefile for now, because I don't know 
how to fix it properly. The file is generated as part of "make dist" 
by running process.sh in doc directory. I don't want to put the file 
in CVS because it is generated file and I want to include it in 
tarball so that people don't have to have DocBook tools installed...

>      val = eval(expr.replace('\\','\\\\'), globals(), v)
>    File "<string>", line 0, in ?
> NameError: name '__rtl_static' is not defined
> make: *** [../makefile.vc] Error 1

Thanks, fixed.

Vaclav

--

-- 
PGP key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x465264C9
Robin Dunn | 17 Jul 2003 21:34
Gravatar

[bakefile-devel] RPM spec for cvs snapshots

Attached is a .spec file that can be used to build an RPM from the 
bakefile CVS snaphots.

-- 
Robin Dunn
Software Craftsman
http://wxPython.org  Java give you jitters?  Relax with wxPython!

%define year	2003
%define month	07
%define day	17

Name:          bakefile-cvs
#Version:       0.1.1
Version:       %{year}%{month}%{day}
Release:       1rpd
Source:        bakefile-%{year}-%{month}-%{day}.tar.gz

Prefix:        /usr
Summary:       Cross-platform makefiles generator
License:       GPL
Group:         Development/Other
URL:           http://bakefile.sourceforge.net
Packager:      Vaclav Slavik <vaclav.slavik@...>
BuildRoot:     %{_tmppath}/%{name}-%{version}-root
BuildArch:     noarch
BuildRequires: libxslt-proc, libxml2-utils
Requires:      python >= 2.2
(Continue reading)

Vaclav Slavik | 18 Jul 2003 13:07
Picon
Favicon

Re: [bakefile-devel] RPM spec for cvs snapshots

Robin Dunn wrote:
> Attached is a .spec file that can be used to build an RPM from the
> bakefile CVS snaphots.

Thanks!
I did something better, though: I set up SF cron job so that it runs 
"make dist" and so the snapshot is real installable package now, with 
configure, makefiles, man page and documentation.

Regards,
Vaclav

--

-- 
PGP key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x465264C9
Robin Dunn | 18 Jul 2003 18:04
Gravatar

Re: [bakefile-devel] RPM spec for cvs snapshots

Vaclav Slavik wrote:
> I did something better, though: I set up SF cron job so that it runs 
> "make dist" and so the snapshot is real installable package now, with 
> configure, makefiles, man page and documentation.

Yes, much better.  Except there is no TODO file as referenced in the 
spec file.

--

-- 
Robin Dunn
Software Craftsman
http://wxPython.org  Java give you jitters?  Relax with wxPython!

-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
Robin Dunn | 18 Jul 2003 20:12
Gravatar

Re: [bakefile-devel] RPM spec for cvs snapshots

Robin Dunn wrote:
> Vaclav Slavik wrote:
> 
>> I did something better, though: I set up SF cron job so that it runs 
>> "make dist" and so the snapshot is real installable package now, with 
>> configure, makefiles, man page and documentation.
> 
> 
> Yes, much better.  Except there is no TODO file as referenced in the 
> spec file.
> 

Also, the output/*-opts.empy files don't get installed.

--

-- 
Robin Dunn
Software Craftsman
http://wxPython.org  Java give you jitters?  Relax with wxPython!

-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
Vaclav Slavik | 18 Jul 2003 20:21
Picon
Favicon

Re: [bakefile-devel] RPM spec for cvs snapshots

> Also, the output/*-opts.empy files don't get installed.

I thought I didn't forget this time :( Sorry about it, fixed.

VS

-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
Robin Dunn | 18 Jul 2003 20:36
Gravatar

Re: [bakefile-devel] RPM spec for cvs snapshots

Vaclav Slavik wrote:
>> Also, the output/*-opts.empy files don't get installed.
> 
> 
> I thought I didn't forget this time :( Sorry about it, fixed.

Oops, you're quicker than I was!

--

-- 
Robin Dunn
Software Craftsman
http://wxPython.org  Java give you jitters?  Relax with wxPython!

-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
Robin Dunn | 18 Jul 2003 20:35
Gravatar

Re: [bakefile-devel] RPM spec for cvs snapshots

Robin Dunn wrote:
> Robin Dunn wrote:
> 
>> Vaclav Slavik wrote:
>>
>>> I did something better, though: I set up SF cron job so that it runs 
>>> "make dist" and so the snapshot is real installable package now, with 
>>> configure, makefiles, man page and documentation.
>>
>>
>>
>> Yes, much better.  Except there is no TODO file as referenced in the 
>> spec file.
>>
> 
> Also, the output/*-opts.empy files don't get installed.
> 

Attached is a patch to fix the above.  Perhaps bakefile should bake it's 
own Makefiles!  ;-)

--

-- 
Robin Dunn
Software Craftsman
http://wxPython.org  Java give you jitters?  Relax with wxPython!

--- bakefile-0.1.1.20030718.orig/Makefile.in	2003-07-18 05:49:08.000000000 -0700
+++ bakefile-0.1.1.20030718/Makefile.in	2003-07-18 11:32:29.000000000 -0700
(Continue reading)

Robin Dunn | 17 Jul 2003 22:50
Gravatar

[bakefile-devel] Another bakefile error

This is with the 2003-07-17 snapshot.  Is the error in the wxWindows 
bakkefiles or in bakefile itself?  All the windows comppiler targets gat 
a similar error, the autoconf target works fine.

xavier:robind  /projects/wx2.5/build/bakefiles
  1084  make msvc
bakefile -v -fmsvc -o../../contrib/build/gizmos/makefile.vc 
-DSRCDIR=../../src/gizmos -DWXTOPDIR=../../../ 
../../contrib/build/gizmos/gizmos.bkl
loading module 'common'...
loading /usr/share/bakefile/rules/common.bkl...
loading /usr/share/bakefile/rules/version.bkl...
loading /usr/share/bakefile/rules/dirs.bkl...
loading /usr/share/bakefile/rules/format_features.bkl...
loading module 'msvc'...
loading /usr/share/bakefile/rules/msvc.bkl...
loading /usr/share/bakefile/rules/makefile.bkl...
loading /usr/share/bakefile/rules/makefile_defs_msvc.bkl...
loading /usr/share/bakefile/rules/win32.bkl...
loading ../../contrib/build/gizmos/gizmos.bkl...
loading 
../../contrib/build/gizmos/../../../build/bakefiles/common_contrib.bkl...
loading ../../contrib/build/gizmos/../../../build/bakefiles/common.bkl...
loading module 'datafiles'...
loading /usr/share/bakefile/rules/datafiles.bkl...
loading module 'wxwin'...
imported python module wxwin
loading ../../contrib/build/gizmos/../../../build/bakefiles/config.bkl...
loading ../../contrib/build/gizmos/../../../build/bakefiles/regex.bkl...
loading ../../contrib/build/gizmos/../../../build/bakefiles/zlib.bkl...
(Continue reading)

Vaclav Slavik | 18 Jul 2003 11:37
Picon
Favicon

Re: [bakefile-devel] Another bakefile error

Hi,

Robin Dunn wrote:
> This is with the 2003-07-17 snapshot.  Is the error in the
> wxWindows bakkefiles or in bakefile itself?  All the windows
> comppiler targets gat a similar error, the autoconf target works
> fine.

thanks, it was a bakefile bug (or rather forgotten checkin) and I 
didn't notice it because it only affected contrib libs...

Sorry for it, fixed now.

Vaclav

--

-- 
PGP key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x465264C9

Gmane