Package: tela
Version: 2.0-10
Severity: normal
Tags: patch
Hi,
Attached is the diff for my tela 2.0-10.1 NMU.
--
Homepage: http://www.sesse.net/
diff -u tela-2.0/debian/changelog tela-2.0/debian/changelog
--- tela-2.0/debian/changelog
+++ tela-2.0/debian/changelog
@@ -1,3 +1,15 @@
+tela (2.0-10.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Replace build-dependency on xlibs-dev with an explicit build-dependency
+ on each required package. (Closes: #347072)
+ * Change libreadline4-dev build-dependency to libreadline5-dev.
+ (Closes: #326289)
+ * Make constructor and operator= for TCForm public; fixes FTBFS on gcc-4.0,
+ patch from Andreas Jochens. (Closes: #303203)
+
+ -- Steinar H. Gunderson <[EMAIL PROTECTED]> Sat, 21 Jan 2006 14:33:03 +0100
+
tela (2.0-10) unstable; urgency=high
* Change b-d to not use atlas3, as it's not available on arm for now,
diff -u tela-2.0/debian/control tela-2.0/debian/control
--- tela-2.0/debian/control
+++ tela-2.0/debian/control
@@ -2,7 +2,7 @@
Section: math
Priority: optional
Maintainer: Mikael Hedin <[EMAIL PROTECTED]>
-Build-Depends: debhelper, g77, libhdf4g-dev (>> 4.0b1), refblas3-dev,
lapack3-dev, libreadline4-dev, xlibs-dev (>>4.0.3), autoconf, fftw-dev
+Build-Depends: debhelper, g77, libhdf4g-dev (>> 4.0b1), refblas3-dev,
lapack3-dev, libreadline5-dev | libreadline-dev, libxt-dev, autoconf, fftw-dev
Standards-Version: 3.5.6
Package: tela
only in patch2:
unchanged:
--- tela-2.0.orig/Ctgen.C
+++ tela-2.0/Ctgen.C
@@ -89,10 +89,10 @@
private:
const Tobject* ptr;
+ public:
TCForm(const TCForm&); // do not implement
TCForm& operator=(const TCForm&); // do not implement
- public:
TCForm(const Tobject& obj) : ptr(&obj) {}
friend ostream& operator<<(ostream& o, const TCForm& cf);
};
only in patch2:
unchanged:
--- tela-2.0.orig/object.H
+++ tela-2.0/object.H
@@ -263,9 +263,9 @@
class Tshort {
private:
const Tobject* ptr;
+ public:
Tshort(const Tshort&); // do not implement
Tshort& operator=(const Tshort&); // do not implement
- public:
Tshort(const Tobject& obj) : ptr(&obj) {}
friend ostream& operator<<(ostream& o, const Tshort& sh);
};