These are the  PKGBUILDs I only modified the package version and mdsums if 
anybody cares to try them
Python 2.4.3 is working great. Python scripting still works. Amarok, kdeultils 
( superkarmba ), hplip ( HP Device manager ) still work briliantly. I think 
Python 2.4.3 should be a safe upgrade. Is it possible that one of the 
developers can test python 2.4.3 as well?

tcL:

# $Id: PKGBUILD,v 1.22 2006/02/20 23:32:13 dorphell Exp $
# Maintainer: dorphell <[EMAIL PROTECTED]>
# Committer: Judd Vinet <[EMAIL PROTECTED]>
pkgname=tcl
pkgver=8.4.13
pkgrel=1
pkgdesc="The Tcl scripting language"
depends=('glibc')
source=(http://easynews.dl.sourceforge.net/sourceforge/tcl/tcl${pkgver}-src.tar.gz)
url="http://tcl.sourceforge.net/";
md5sums=('c6b655ad5db095ee73227113220c0523')

build() {
  cd $startdir/src/tcl$pkgver/unix
  sed -i.bak "s/relid'/relid/" configure
  ./configure --prefix=/usr --enable-threads --disable-64bit
  make || return 1
  make INSTALL_ROOT=$startdir/pkg install
  mv $startdir/pkg/usr/bin/tclsh8.4 $startdir/pkg/usr/bin/tclsh

  # copy the TCL private headers in for packages like expect
  mkdir -p $startdir/pkg/usr/include/tcl
  cd $startdir/src/tcl$pkgver/generic
  cp -v *.h $startdir/pkg/usr/include/tcl
}


tk:

# $Id: PKGBUILD,v 1.19 2006/02/20 23:31:51 dorphell Exp $
# Maintainer: dorphell <[EMAIL PROTECTED]>
# Committer: Judd Vinet <[EMAIL PROTECTED]>
pkgname=tk
pkgver=8.4.13
pkgrel=1
pkgdesc="A windowing toolkit for use with tcl"
depends=('tcl' 'libx11')
source=(http://easynews.dl.sourceforge.net/sourceforge/tcl/tk$pkgver-src.tar.gz 
\
  http://easynews.dl.sourceforge.net/sourceforge/tcl/tcl$pkgver-src.tar.gz)
md5sums=('0a16d4d9398e43cbb85784c85fb807a4' 'c6b655ad5db095ee73227113220c0523')

build() {
  cd $startdir/src/tk$pkgver/unix
  sed -i.bak "s/relid'/relid/" configure
  ./configure --prefix=/usr
  make \
    TCL_GENERIC_DIR=$startdir/src/tcl$pkgver/generic \
    TCLDIR=$startdir/src/tcl$pkgver \
    TOOL_DIR=$startdir/src/tcl$pkgver/tools || return 1
  make \
    TCL_GENERIC_DIR=$startdir/src/tcl$pkgver/generic \
    TCLDIR=$startdir/src/tcl$pkgver \
    TOOL_DIR=$startdir/src/tcl$pkgver/tools \
    INSTALL_ROOT=$startdir/pkg install
  ln -s wish8.4 $startdir/pkg/usr/bin/wish
}


Python 2.4.3:

# $Id: PKGBUILD,v 1.32 2005/11/12 14:09:41 tpowa Exp $
# Maintainer: dorphell <[EMAIL PROTECTED]>
pkgname=python
pkgver=2.4.3
pkgrel=1
pkgdesc="A high-level scripting language"
url="http://www.python.org";
depends=('db' 'bzip2' 'gdbm' 'openssl')
makedepends=('tk')
source=(http://www.python.org/ftp/python/$pkgver/Python-$pkgver.tar.bz2)
md5sums=('141c683447d5e76be1d2bd4829574f02')

build() {
  cd $startdir/src/Python-$pkgver
  ./configure --prefix=/usr --enable-shared --with-threads --enable-unicode
  # This is supposed to be the previous version's python directory
  #  NOT the current one
  sed -i 's#SITEPATH=#SITEPATH=:../python2.3/site-packages#' Makefile
  make || return 1
  make DESTDIR=$startdir/pkg install
  rm $startdir/pkg/usr/bin/python2.4
  (cd $startdir/pkg/usr/bin && ln -s python python2.4)
}


Attachment: pgpziK7OBitC0.pgp
Description: PGP signature

_______________________________________________
arch mailing list
[email protected]
http://www.archlinux.org/mailman/listinfo/arch

Reply via email to