[arch-commits] Commit in tcl/repos (4 files)
andyrtr at archlinux.org
andyrtr at archlinux.org
Thu Dec 27 19:20:13 UTC 2012
Date: Thursday, December 27, 2012 @ 14:20:12
Author: andyrtr
Revision: 173902
archrelease: copy trunk to extra-i686, extra-x86_64
Added:
tcl/repos/extra-i686/PKGBUILD
(from rev 173901, tcl/trunk/PKGBUILD)
tcl/repos/extra-x86_64/PKGBUILD
(from rev 173901, tcl/trunk/PKGBUILD)
Deleted:
tcl/repos/extra-i686/PKGBUILD
tcl/repos/extra-x86_64/PKGBUILD
-----------------------+
extra-i686/PKGBUILD | 90 ++++++++++++++++++++++++++----------------------
extra-x86_64/PKGBUILD | 90 ++++++++++++++++++++++++++----------------------
2 files changed, 98 insertions(+), 82 deletions(-)
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2012-12-27 19:19:31 UTC (rev 173901)
+++ extra-i686/PKGBUILD 2012-12-27 19:20:12 UTC (rev 173902)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae <allan at archlinux.org>
-# Committer: Judd Vinet <jvinet at zeroflux.org>
-
-pkgname=tcl
-pkgver=8.6.0
-pkgrel=1
-pkgdesc="The Tcl scripting language"
-arch=('i686' 'x86_64')
-url="http://tcl.sourceforge.net/"
-license=('custom')
-source=(http://downloads.sourceforge.net/sourceforge/tcl/tcl${pkgver}-src.tar.gz)
-md5sums=('669b0103431babff2494f3f2637eb864')
-
-build() {
- cd ${srcdir}/tcl${pkgver}/unix
-
- [[ $CARCH == "x86_64" ]] && BIT="--enable-64bit"
- ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads $BIT
-
- make
-}
-
-check() {
- cd ${srcdir}/tcl${pkgver}/unix
- make test
-}
-
-package()
-{
- cd ${srcdir}/tcl${pkgver}/unix
-
- make INSTALL_ROOT=${pkgdir} install install-private-headers
- ln -sf tclsh8.6 ${pkgdir}/usr/bin/tclsh
-
- # install license
- install -Dm644 ../license.terms ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
- # remove buildroot traces
- sed -i "s#${srcdir}#/usr/src#" ${pkgdir}/usr/lib/{tcl,tdbc1.0.0/tdbc,itcl4.0.0/itcl}Config.sh
-}
Copied: tcl/repos/extra-i686/PKGBUILD (from rev 173901, tcl/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-12-27 19:20:12 UTC (rev 173902)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Allan McRae <allan at archlinux.org>
+# Committer: Judd Vinet <jvinet at zeroflux.org>
+
+pkgname=tcl
+pkgver=8.6.0
+pkgrel=2
+pkgdesc="The Tcl scripting language"
+arch=('i686' 'x86_64')
+url="http://tcl.sourceforge.net/"
+license=('custom')
+source=(http://downloads.sourceforge.net/sourceforge/tcl/tcl${pkgver}-src.tar.gz)
+# tcl E: Dependency zlib detected and not included (libraries ['usr/lib/libz.so.1'] needed in files ['usr/lib/libtcl8.6.so'])
+# depends=('zlib') ???
+md5sums=('573aa5fe678e9185ef2b3c56b24658d3')
+
+build() {
+ cd ${srcdir}/tcl${pkgver}/unix
+
+ # maybe drop sqlite build at all? isn't this the same we already have in sqlite and sqlite-tcl pkg?
+ # rm -rf ${srcdir}/tcl${pkgver}/pkgs/sqlite3*
+
+ [[ $CARCH == "x86_64" ]] && BIT="--enable-64bit"
+ ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads $BIT
+
+ make
+}
+
+check() {
+ cd ${srcdir}/tcl${pkgver}/unix
+ make test
+}
+
+package()
+{
+ cd ${srcdir}/tcl${pkgver}/unix
+
+ make INSTALL_ROOT=${pkgdir} install install-private-headers
+ ln -sf tclsh8.6 ${pkgdir}/usr/bin/tclsh
+
+ # install license
+ install -Dm644 ../license.terms ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+ # remove buildroot traces
+ sed -i "s#${srcdir}#/usr/src#" ${pkgdir}/usr/lib/{tcl,tdbc1.0.0/tdbc,itcl4.0.0/itcl}Config.sh
+
+ # fix a fileconflitct - FS#33201
+ rm ${pkgdir}/usr/share/man/mann/sqlite3.n
+}
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2012-12-27 19:19:31 UTC (rev 173901)
+++ extra-x86_64/PKGBUILD 2012-12-27 19:20:12 UTC (rev 173902)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae <allan at archlinux.org>
-# Committer: Judd Vinet <jvinet at zeroflux.org>
-
-pkgname=tcl
-pkgver=8.6.0
-pkgrel=1
-pkgdesc="The Tcl scripting language"
-arch=('i686' 'x86_64')
-url="http://tcl.sourceforge.net/"
-license=('custom')
-source=(http://downloads.sourceforge.net/sourceforge/tcl/tcl${pkgver}-src.tar.gz)
-md5sums=('669b0103431babff2494f3f2637eb864')
-
-build() {
- cd ${srcdir}/tcl${pkgver}/unix
-
- [[ $CARCH == "x86_64" ]] && BIT="--enable-64bit"
- ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads $BIT
-
- make
-}
-
-check() {
- cd ${srcdir}/tcl${pkgver}/unix
- make test
-}
-
-package()
-{
- cd ${srcdir}/tcl${pkgver}/unix
-
- make INSTALL_ROOT=${pkgdir} install install-private-headers
- ln -sf tclsh8.6 ${pkgdir}/usr/bin/tclsh
-
- # install license
- install -Dm644 ../license.terms ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
- # remove buildroot traces
- sed -i "s#${srcdir}#/usr/src#" ${pkgdir}/usr/lib/{tcl,tdbc1.0.0/tdbc,itcl4.0.0/itcl}Config.sh
-}
Copied: tcl/repos/extra-x86_64/PKGBUILD (from rev 173901, tcl/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2012-12-27 19:20:12 UTC (rev 173902)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Allan McRae <allan at archlinux.org>
+# Committer: Judd Vinet <jvinet at zeroflux.org>
+
+pkgname=tcl
+pkgver=8.6.0
+pkgrel=2
+pkgdesc="The Tcl scripting language"
+arch=('i686' 'x86_64')
+url="http://tcl.sourceforge.net/"
+license=('custom')
+source=(http://downloads.sourceforge.net/sourceforge/tcl/tcl${pkgver}-src.tar.gz)
+# tcl E: Dependency zlib detected and not included (libraries ['usr/lib/libz.so.1'] needed in files ['usr/lib/libtcl8.6.so'])
+# depends=('zlib') ???
+md5sums=('573aa5fe678e9185ef2b3c56b24658d3')
+
+build() {
+ cd ${srcdir}/tcl${pkgver}/unix
+
+ # maybe drop sqlite build at all? isn't this the same we already have in sqlite and sqlite-tcl pkg?
+ # rm -rf ${srcdir}/tcl${pkgver}/pkgs/sqlite3*
+
+ [[ $CARCH == "x86_64" ]] && BIT="--enable-64bit"
+ ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads $BIT
+
+ make
+}
+
+check() {
+ cd ${srcdir}/tcl${pkgver}/unix
+ make test
+}
+
+package()
+{
+ cd ${srcdir}/tcl${pkgver}/unix
+
+ make INSTALL_ROOT=${pkgdir} install install-private-headers
+ ln -sf tclsh8.6 ${pkgdir}/usr/bin/tclsh
+
+ # install license
+ install -Dm644 ../license.terms ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+ # remove buildroot traces
+ sed -i "s#${srcdir}#/usr/src#" ${pkgdir}/usr/lib/{tcl,tdbc1.0.0/tdbc,itcl4.0.0/itcl}Config.sh
+
+ # fix a fileconflitct - FS#33201
+ rm ${pkgdir}/usr/share/man/mann/sqlite3.n
+}
More information about the arch-commits
mailing list