Double_t
-fA0Init; //initial value of background a0 parameter(backgroud
+fA0Init; //initial value of background a0 parameter(background
is estimated as a0+ax*x+ay*y)
Double_t
@@ -2095,7 +2095,7 @@ fA0Calc;
fA0Err; //error value of background a0 parameter
Double_t fAxInit;
- //initial value of background ax parameter(backgroud is
+ //initial value of background ax parameter(background is
estimated as a0+ax*x+ay*y)
Double_t
@@ -2106,7 +2106,7 @@ fAxErr;
Double_t
fAyInit; //initial value of background ay
-parameter(backgroud is estimated as a0+ax*x+ay*y)
+parameter(background is estimated as a0+ax*x+ay*y)
Double_t
fAyCalc; //calculated value of background ay parameter
@@ -6589,7 +6589,7 @@ void TSpectrum2Fit::SetBackgroundParameters(Double_t a0Init, Bool_t fixA0, Doubl
// SETTER FUNCTION
//
// This function sets the following fitting parameters of background:
-// -a0Init - initial value of a0 parameter (backgroud is estimated as a0+ax*x+ay*y)
+// -a0Init - initial value of a0 parameter (background is estimated as a0+ax*x+ay*y)
// -fixA0 - logical value of a0 parameter, which allows to fix the parameter (not to fit)
// -axInit - initial value of ax parameter
// -fixAx - logical value of ax parameter, which allows to fix the parameter (not to fit)
diff --git a/hist/spectrum/src/TSpectrumFit.cxx b/hist/spectrum/src/TSpectrumFit.cxx
index 8960605..70431bd 100644
--- a/hist/spectrum/src/TSpectrumFit.cxx
+++ b/hist/spectrum/src/TSpectrumFit.cxx
@@ -1009,7 +1009,7 @@ Double_t
Double_t fA0Init; //initial value of background a0
-parameter(backgroud is estimated as a0+a1*x+a2*x*x)
+parameter(background is estimated as a0+a1*x+a2*x*x)
Double_t fA0Calc; //calculated value of background a0
@@ -1020,7 +1020,7 @@ Double_t
Double_t fA1Init; //initial value of background a1
-parameter(backgroud is estimated as a0+a1*x+a2*x*x)
+parameter(background is estimated as a0+a1*x+a2*x*x)
Double_t fA1Calc; //calculated value of background a1
@@ -1031,7 +1031,7 @@ Double_t
Double_t fA2Init; //initial value of background a2
-parameter(backgroud is estimated as a0+a1*x+a2*x*x)
+parameter(background is estimated as a0+a1*x+a2*x*x)
Double_t fA2Calc; //calculated value of background a2
@@ -3343,7 +3343,7 @@ void TSpectrumFit::SetBackgroundParameters(Double_t a0Init, Bool_t fixA0, Double
// SETTER FUNCTION
//
// This function sets the following fitting parameters of background:
-// -a0Init - initial value of a0 parameter (backgroud is estimated as a0+a1*x+a2*x*x)
+// -a0Init - initial value of a0 parameter (background is estimated as a0+a1*x+a2*x*x)
// -fixA0 - logical value of a0 parameter, which allows to fix the parameter (not to fit)
// -a1Init - initial value of a1 parameter
// -fixA1 - logical value of a1 parameter, which allows to fix the parameter (not to fit)
debian/patches/69-support-pythia8.patch 0000644 0000000 0000000 00000001114 12253755630 015177 0 ustar --- a/configure
+++ b/configure
@@ -6451,6 +6451,7 @@
test "x$enable_gviz" = "xyes" && pl="$pl root-plugin-graf2d-gviz"
test "x$enable_minuit2" = "xyes" && pl="$pl root-plugin-math-minuit2"
test "x$enable_pythia6" = "xyes" && pl="$pl root-plugin-montecarlo-pythia6"
+ test "x$enable_pythia8" = "xyes" && pl="$pl root-plugin-montecarlo-pythia8"
test "x$enable_alien" = "xyes" && pl="$pl root-plugin-net-alien"
test "x$enable_globus" = "xyes" && pl="$pl root-plugin-net-globus"
test "x$enable_krb5" = "xyes" && pl="$pl root-plugin-net-krb5"
debian/patches/74-kfreebsd.patch 0000644 0000000 0000000 00000032656 12253755630 013677 0 ustar --- /dev/null
+++ b/config/Makefile.kfreebsd
@@ -0,0 +1,80 @@
+# -*- mode: makefile -*-
+#
+# Makefile of ROOT for kFreeBSD i386 with glibc and gcc.
+
+PLATFORM = kfreebsd
+
+DEBUGFLAGS = -g
+OPTFLAGS = -O2
+
+ifeq (debug,$(findstring debug,$(ROOTBUILD)))
+OPT = $(DEBUGFLAGS)
+NOOPT =
+else
+OPT = $(OPTFLAGS)
+NOOPT =
+endif
+
+ifeq ($(CXX11),yes)
+CXX11FLAGS = -std=c++11 -Wno-deprecated-declarations
+endif
+
+# Compiler:
+CXX = g++
+CC = gcc
+CXXFLAGS = -pipe -m32 -Wall -W -Woverloaded-virtual \
+ -fPIC $(EXTRA_CXXFLAGS) $(CXX11FLAGS)
+CFLAGS = -pipe -m32 -Wall -W -fPIC $(EXTRA_CFLAGS)
+CINTCXXFLAGS = -pipe -m32 -Wall -W -Woverloaded-virtual \
+ -fPIC $(EXTRA_CXXFLAGS) $(CXX11FLAGS) \
+ -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \
+ -DG__OSFDLL -DG__ROOT -DG__REDIRECTIO \
+ -DG__STD_EXCEPTION
+CINTCFLAGS = -pipe -m32 -Wall -W -fPIC $(EXTRA_CFLAGS) \
+ -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \
+ -DG__OSFDLL -DG__ROOT -DG__REDIRECTIO \
+ -DG__STD_EXCEPTION
+COMPILER = gnu
+
+# Linker:
+LD = g++
+LDFLAGS = -m32 $(OPT) $(EXTRA_LDFLAGS) -Wl,--no-undefined -Wl,--as-needed
+SOFLAGS = -shared -Wl,-soname,
+SOEXT = so
+
+# System libraries:
+SYSLIBS = -lm -ldl $(OSTHREADLIBDIR) $(OSTHREADLIB) \
+ $(ALLOCLIBDIR) $(ALLOCLIB) -rdynamic
+XLIBS = $(XPMLIBDIR) $(XPMLIB) $(X11LIBDIR) -lXext -lX11
+CILIBS = -lm -ldl -rdynamic
+CRYPTLIBS = -lcrypt
+
+# Fortran:
+ifneq ($(findstring gfortran, $(F77)),)
+ifeq ($(F77),)
+# only needed to get default compiler in ./configure
+F77 = gfortran
+endif
+F77FLAGS = -m32 -fPIC -std=legacy
+ifneq ($(shell $(F77) -m32 -print-file-name=libgfortran.$(SOEXT)),libgfortran.$(SOEXT))
+F77LIBS := $(shell $(F77) -m32 -print-file-name=libgfortran.$(SOEXT))
+else
+F77LIBS := $(shell $(F77) -m32 -print-file-name=libgfortran.a)
+endif
+F77LIBS += $(shell $(F77) -m32 -print-file-name=libgfortranbegin.a)
+endif
+
+ifneq ($(findstring g77, $(F77)),)
+ifeq ($(F77),)
+# only needed to get default compiler in ./configure
+F77 = g77
+endif
+F77FLAGS = -m32 -fPIC
+ifneq ($(shell $(F77) -print-file-name=libg2c.so),libg2c.so)
+F77LIBS := $(shell $(F77) -m32 -print-file-name=libg2c.so) -lnsl
+else
+F77LIBS := $(shell $(F77) -m32 -print-file-name=libg2c.a) -lnsl
+endif
+endif
+
+# Extras
--- /dev/null
+++ b/config/Makefile.kfreebsdx8664gcc
@@ -0,0 +1,80 @@
+# -*- mode: makefile -*-
+#
+# Makefile of ROOT for kFreeBSD x86-64 with glibc and gcc.
+
+PLATFORM = kfreebsd
+
+DEBUGFLAGS = -g
+OPTFLAGS = -O2
+
+ifeq (debug,$(findstring debug,$(ROOTBUILD)))
+OPT = $(DEBUGFLAGS)
+NOOPT =
+else
+OPT = $(OPTFLAGS)
+NOOPT =
+endif
+
+ifeq ($(CXX11),yes)
+CXX11FLAGS = -std=c++11 -Wno-deprecated-declarations
+endif
+
+# Compiler:
+CXX = g++
+CC = gcc
+CXXFLAGS = -pipe -m64 -Wshadow -Wall -W -Woverloaded-virtual \
+ -fPIC $(EXTRA_CXXFLAGS) $(CXX11FLAGS)
+CFLAGS = -pipe -m64 -Wshadow -Wall -W -fPIC $(EXTRA_CFLAGS)
+CINTCXXFLAGS = -pipe -m64 -Wall -W -Woverloaded-virtual \
+ -fPIC $(EXTRA_CXXFLAGS) $(CXX11FLAGS) \
+ -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \
+ -DG__OSFDLL -DG__ROOT -DG__REDIRECTIO \
+ -DG__STD_EXCEPTION -DG__64BIT
+CINTCFLAGS = -pipe -m64 -Wall -W -fPIC $(EXTRA_CFLAGS) \
+ -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \
+ -DG__OSFDLL -DG__ROOT -DG__REDIRECTIO \
+ -DG__STD_EXCEPTION -DG__64BIT
+COMPILER = gnu
+
+# Linker:
+LD = g++
+LDFLAGS = -m64 $(OPT) $(EXTRA_LDFLAGS) -Wl,--no-undefined -Wl,--as-needed
+SOFLAGS = -shared -Wl,-soname,
+SOEXT = so
+
+# System libraries:
+SYSLIBS = -lm -ldl $(OSTHREADLIBDIR) $(OSTHREADLIB) \
+ $(ALLOCLIBDIR) $(ALLOCLIB) -rdynamic
+XLIBS = $(XPMLIBDIR) $(XPMLIB) $(X11LIBDIR) -lXext -lX11
+CILIBS = -lm -ldl -rdynamic
+CRYPTLIBS = -lcrypt
+
+# Fortran:
+ifneq ($(findstring gfortran, $(F77)),)
+ifeq ($(F77),)
+# only needed to get default compiler in ./configure
+F77 = gfortran
+endif
+F77FLAGS = -fPIC -m64 -std=legacy
+ifneq ($(shell $(F77) -m64 -print-file-name=libgfortran.$(SOEXT)),libgfortran.$(SOEXT))
+F77LIBS := $(shell $(F77) -m64 -print-file-name=libgfortran.$(SOEXT))
+else
+F77LIBS := $(shell $(F77) -m64 -print-file-name=libgfortran.a)
+endif
+F77LIBS += $(shell $(F77) -m64 -print-file-name=libgfortranbegin.a)
+endif
+
+ifneq ($(findstring g77, $(F77)),)
+ifeq ($(F77),)
+# only needed to get default compiler in ./configure
+F77 = g77
+endif
+F77FLAGS = -fPIC -m64
+ifneq ($(shell $(F77) -print-file-name=libg2c.so),libg2c.so)
+F77LIBS := $(shell $(F77) -m64 -print-file-name=libg2c.so) -lnsl
+else
+F77LIBS := $(shell $(F77) -m64 -print-file-name=libg2c.a) -lnsl
+endif
+endif
+
+# Extras
--- a/cint/cint/inc/G__ci.h
+++ b/cint/cint/inc/G__ci.h
@@ -366,7 +366,7 @@
#endif
/* added by Fons Radamakers in 2000 Oct 2 */
-#if (defined(__linux) || defined(__linux__) || defined(linux)) && ! defined(__CINT__)
+#if (defined(__linux) || defined(__linux__) || defined(linux) || defined(__FreeBSD_kernel__)) && ! defined(__CINT__)
# include
# if __GLIBC__ == 2 && __GLIBC_MINOR__ >= 2
# define G__NONSCALARFPOS2
--- a/cint/cint/src/bc_reader.h
+++ b/cint/cint/src/bc_reader.h
@@ -57,7 +57,7 @@
int rewindpos() ;
unsigned long getpos() { return((unsigned long)0 /* m_pos */ ); } //not used
void setspos(unsigned long pos) {
-#if defined(__linux)
+#if defined(__linux) || defined(__GLIBC__)
#if (__GNUC__==2 && __GNUC_MINOR__<96)
#if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
m_pos.__pos = pos; // this is for Debian
--- a/config/ARCHS
+++ b/config/ARCHS
@@ -5,6 +5,8 @@
freebsd4 for FreeBSD 4.x with gcc
freebsd5 for FreeBSD 5.x and 6.x with gcc
freebsd7 for FreeBSD 7.x with gcc
+kfreebsd for i386 kFreeBSD with gcc
+kfreebsdx8664gcc for x86-64 kFreeBSD with gcc
hpuxacc for HP-UX 10.20 with HP aCC
hpuxgcc for HP-UX 10.20 with gcc
hpuxia64acc for HP-UX 11i v1.5 (IA-64) with HP aCC
--- a/config/root-config.in
+++ b/config/root-config.in
@@ -348,6 +348,18 @@
auxcflags=
auxlibs="-lm -lstdc++"
;;
+kfreebsd)
+ # kFreeBSD with gcc
+ auxcflags="-m32"
+ auxldflags="-m32"
+ auxlibs="-lm -ldl -rdynamic"
+ ;;
+kfreebsdx8664gcc)
+ # AMD Opteron and Intel EM64T (64 bit mode) kFreeBSD with gcc
+ auxcflags="-m64"
+ auxldflags="-m64"
+ auxlibs="-lm -ldl -rdynamic"
+ ;;
openbsd)
# OpenBSD with libc
auxcflags=
--- a/configure
+++ b/configure
@@ -1304,6 +1304,8 @@
freebsd*:*:5*) arch=freebsd5 ;;
freebsd*:*:4*) arch=freebsd4 ;;
freebsd*:*:*) arch=freebsd ;;
+ gnu/kfreebsd:i*86:*) arch=kfreebsd ;;
+ gnu/kfreebsd:x86_64:*) arch=kfreebsdx8664gcc;;
hp-ux:ia64:*) arch=hpuxia64acc ;;
hp-ux:*:*) arch=hpuxacc ;;
hurd*:*:*) arch=hurddeb ;;
@@ -1950,7 +1952,7 @@
fi
fi
-if test "x$platform" = "xlinux" ; then
+if test "x$platform" = "xlinux" -o "x$platform" = "xkfreebsd" ; then
linuxdist=
if `$cwhich lsb_release > /dev/null 2>&1` ; then
if lsb_release -d | grep -i 'ubuntu' > /dev/null 2>& 1; then
@@ -4213,7 +4215,7 @@
#
bonjourcppflags=
case $platform in
- linux|macosx|ios)
+ linux|kfreebsd|macosx|ios)
;;
*)
if test "x$enable_bonjour" = "xyes" ; then
@@ -6294,7 +6296,7 @@
message "Checking whether to build libMemStat"
if test "x$enable_memstat" = "xyes" || test ! "x$MEMSTAT" = "x"; then
case $arch in
- linux*|macos*)
+ linux*|macos*|kfreebsd*)
enable_memstat="yes" ;;
*)
enable_memstat="no" ;;
--- a/core/base/inc/RConfig.h
+++ b/core/base/inc/RConfig.h
@@ -355,6 +355,22 @@
# define HAS_STRLCPY
#endif
+#if defined(__FreeBSD_kernel__)
+# define R__kFBSD
+# define R__UNIX
+# define R__BYTESWAP
+# if defined(__i386__)
+# ifndef __i486__
+# define __i486__ /* turn off if you really want to run on an i386 */
+# endif
+# endif
+# if defined(__amd64__)
+# define R__B64
+# endif
+# define R__GLIBC
+# define R__THROWNEWDELETE /* new/delete throw exceptions */
+#endif
+
#if defined(__OpenBSD__)
# define R__OBSD
# define R__UNIX
--- a/core/unix/src/TUnixSystem.cxx
+++ b/core/unix/src/TUnixSystem.cxx
@@ -60,7 +60,7 @@
#if defined(R__AIX) || defined(R__LINUX) || defined(R__ALPHA) || \
defined(R__SGI) || defined(R__HIUX) || defined(R__FBSD) || \
defined(R__OBSD) || defined(R__LYNXOS) || defined(R__MACOSX) || \
- defined(R__HURD)
+ defined(R__HURD) || defined(R__kFBSD)
# include
#endif
#if defined(R__AIX) || defined(R__SOLARIS)
--- a/graf3d/gl/src/TGLFaceSet.cxx
+++ b/graf3d/gl/src/TGLFaceSet.cxx
@@ -34,7 +34,7 @@
{
#if defined(__APPLE_CC__) && __APPLE_CC__ > 4000 && __APPLE_CC__ < 5450 && !defined(__INTEL_COMPILER)
typedef GLvoid (*tessfuncptr_t)(...);
-#elif defined(__mips) || defined(__linux__) || defined(__FreeBSD__) || defined( __OpenBSD__ ) || defined(__sun) || defined (__CYGWIN__) || defined (__APPLE__)
+#elif defined(__mips) || defined(__linux__) || defined(__FreeBSD__) || defined( __OpenBSD__ ) || defined(__sun) || defined (__CYGWIN__) || defined (__APPLE__) || defined(__FreeBSD_kernel__)
typedef GLvoid (*tessfuncptr_t)();
#elif defined (WIN32)
typedef GLvoid (CALLBACK *tessfuncptr_t)();
--- a/graf3d/gl/src/TGLPadUtils.cxx
+++ b/graf3d/gl/src/TGLPadUtils.cxx
@@ -556,7 +556,7 @@
extern "C" {
#if defined(__APPLE_CC__) && __APPLE_CC__ > 4000 && __APPLE_CC__ < 5450 && !defined(__INTEL_COMPILER)
typedef GLvoid (*tess_t)(...);
-#elif defined( __mips ) || defined( __linux__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __sun ) || defined (__CYGWIN__) || defined (__APPLE__)
+#elif defined( __mips ) || defined( __linux__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __sun ) || defined (__CYGWIN__) || defined (__APPLE__) || defined(__FreeBSD_kernel__)
typedef GLvoid (*tess_t)();
#elif defined ( WIN32)
typedef GLvoid (CALLBACK *tess_t)( );
--- a/graf3d/gl/src/TGLUtil.cxx
+++ b/graf3d/gl/src/TGLUtil.cxx
@@ -1423,7 +1423,7 @@
{
#if defined(__APPLE_CC__) && __APPLE_CC__ > 4000 && __APPLE_CC__ < 5450 && !defined(__INTEL_COMPILER)
typedef GLvoid (*tessfuncptr_t)(...);
-#elif defined(__mips) || defined(__linux__) || defined(__FreeBSD__) || defined( __OpenBSD__ ) || defined(__sun) || defined (__CYGWIN__) || defined (__APPLE__)
+#elif defined(__mips) || defined(__linux__) || defined(__FreeBSD__) || defined( __OpenBSD__ ) || defined(__sun) || defined (__CYGWIN__) || defined (__APPLE__) || defined(__FreeBSD_kernel__)
typedef GLvoid (*tessfuncptr_t)();
#elif defined (WIN32)
typedef GLvoid (CALLBACK *tessfuncptr_t)();
--- a/montecarlo/eg/inc/cfortran.h
+++ b/montecarlo/eg/inc/cfortran.h
@@ -168,7 +168,7 @@
#if defined(__CYGWIN__) /* 04/11/02 LEB (CFITSIO) */
#define f2cFortran
#endif
-#if defined(__GNUC__) && defined(linux) /* 06/21/00 PDW (CFITSIO) */
+#if defined(__GNUC__) && (defined(linux) || defined(__GLIBC__)) /* 06/21/00 PDW (CFITSIO) */
#define f2cFortran
#endif
#if defined(macintosh) /* 11/1999 (CFITSIO) */
--- a/net/rpdutils/src/daemon.cxx
+++ b/net/rpdutils/src/daemon.cxx
@@ -53,7 +53,7 @@
#if defined(linux) || defined(__hpux) || defined(__sun) || defined(__sgi) || \
defined(_AIX) || defined(__FreeBSD__) || defined(__OpenBSD__) || \
- defined(__APPLE__) || defined(__MACH__) || \
+ defined(__APPLE__) || defined(__MACH__) || defined(__FreeBSD_kernel__) || \
(defined(__CYGWIN__) && defined(__GNUC__))
#define USE_SETSID
#endif
--- a/net/rpdutils/src/rpdutils.cxx
+++ b/net/rpdutils/src/rpdutils.cxx
@@ -190,7 +190,7 @@
//--- Machine specific routines ------------------------------------------------
#if defined(__alpha) && !defined(linux) && !defined(__FreeBSD__) && \
- !defined(__OpenBSD__)
+ !defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
extern "C" int initgroups(const char *name, int basegid);
#endif
@@ -209,7 +209,7 @@
#endif
#if !defined(__hpux) && !defined(linux) && !defined(__FreeBSD__) && \
- !defined(__OpenBSD__) || defined(cygwingcc)
+ !defined(__OpenBSD__) && !defined(__FreeBSD_kernel__) || defined(cygwingcc)
static int setresgid(gid_t r, gid_t e, gid_t)
{
if (setgid(r) == -1)
--- a/build/unix/makelib.sh
+++ b/build/unix/makelib.sh
@@ -65,7 +65,7 @@
EXPLLNKCORE="-Llib -lCint"
fi
fi
- if [ $PLATFORM = "linux" ] || [ $PLATFORM = "linux-k1om" ]; then
+ if [ $PLATFORM = "linux" ] || [ $PLATFORM = "linux-k1om" ] || [ $PLATFORM = "kfreebsd" ]; then
if [ -z "$EXPLLNKCORE" ]; then
EXPLLNKCORE=" -ldl"
else
--- a/core/pcre/Module.mk
+++ b/core/pcre/Module.mk
@@ -8,7 +8,7 @@
ifneq ($(BUILTINPCRE), yes)
-PCRELIBF := $(shell pcre-config --libs)
+PCRELIBF := $(shell pcre-config --libs | sed -e 's|-Wl,-R.* ||')
PCREINC := $(shell pcre-config --cflags)
PCRELIB := $(filter -l%,$(PCRELIBF))
PCRELDFLAGS := $(filter-out -l%,$(PCRELIBF))
debian/patches/42-fix-typo-independant-independent.patch 0000644 0000000 0000000 00000001342 12253755630 020432 0 ustar diff --git a/core/utils/src/SelectionRules.cxx b/core/utils/src/SelectionRules.cxx
index 7248df2..aa3c647 100644
--- a/core/utils/src/SelectionRules.cxx
+++ b/core/utils/src/SelectionRules.cxx
@@ -955,7 +955,7 @@ const BaseSelectionRule *SelectionRules::IsLinkdefVarFunEnumSelected(clang::Decl
}
-// In rootcint we could select and deselect methods independantly of the class/struct/union rules
+// In rootcint we could select and deselect methods independently of the class/struct/union rules
// That's why we first have to check the explicit rules for the functions - to see if there
// is rule corresponding to our method.
// Which is more - if we have (and we can have) a pattern for the parent class, than a pattern for the
debian/patches/54-fix-typo-auxilliary-auxiliary.patch 0000644 0000000 0000000 00000000773 12253755630 020050 0 ustar --- a/test/stressProof.cxx
+++ b/test/stressProof.cxx
@@ -3748,7 +3748,7 @@
// Load special class for event ranges checks
if (gProof->Load(TString::Format("%s,%s", gProcFileElem.Data(), gEmptyInclude.Data())) != 0) {
gProof->SetPrintProgress(0);
- printf("\n >>> Test failure: could not load auxilliary files %s and %s\n",
+ printf("\n >>> Test failure: could not load auxiliary files %s and %s\n",
gProcFileElem.Data(), gEmptyInclude.Data());
return -1;
}
debian/root-system-proofd.default 0000644 0000000 0000000 00000001237 12253755630 014343 0 ustar # Defaults for proofd initscript
# sourced by /etc/init.d/proofd
# installed at /etc/default/proofd by the maintainer scripts
#
# Please refer to the proofd(1) man(1) page for more information on
# command line parameters.
#
# This is a POSIX shell fragment
#
# Whether to enable proofd via SYSV init scripts. Please note, that
# you can not enable both proofd via both inetd and SYSV init, and
# inetd will reserve the port 1093 for it self.
ENABLE_PROOFD=
# Additional options that are passed to the Daemon.
DAEMON_OPTS=
# Specify your base of your PROOF directory here. If left blank, it
# will use the system default (e.g., /usr/share/root/proof).
PROOF_DIR=
debian/compat 0000644 0000000 0000000 00000000002 12253755630 010374 0 ustar 5
debian/control 0000644 0000000 0000000 00000231357 12253755630 010614 0 ustar Source: root-system
Section: science
Priority: optional
Maintainer: Debian Science Maintainers
Uploaders: Lifeng Sun
Homepage: http://root.cern.ch
Build-Depends: debhelper (>= 5.0.37.2), lsb-release, autotools-dev, po-debconf, libssl-dev, comerr-dev, libxpm-dev, libltdl-dev, x11proto-xext-dev, libxext-dev, libfreetype6-dev, libpcre3-dev, zlib1g-dev | libz-dev, liblzma-dev, python-dev (>= 2.1), graphviz, ttf-freefont, libncurses5-dev, libgraphviz-dev, libavahi-core-dev, libsqlite3-dev, libxft-dev, python-support (>= 0.3), ruby, ruby-dev, libglu1-mesa-dev| xlibmesa-glu-dev | libglu-dev, libglew-dev, libftgl-dev, libgl2ps-dev, libxml2-dev, libgsl0-dev, libavahi-compat-libdnssd-dev, libldap2-dev | libldap-dev, libjpeg-dev, libpng12-dev, libtiff-dev, libafterimage-dev, libgif-dev, libxinerama-dev, libfftw3-dev | fftw3-dev, libpythia8-dev, libglobus-gss-assist-dev, libglobus-gsi-credential-dev, libglobus-common-dev, libglobus-gsi-sysconfig-dev, libglobus-gssapi-gsi-dev, libglobus-gsi-callback-dev, libglobus-gsi-cert-utils-dev, libglobus-openssl-module-dev, libglobus-gsi-proxy-core-dev, libglobus-callout-dev, globus-proxy-utils,krb5-user|heimdal-clients, libmysqlclient-dev, libiodbc2-dev | unixodbc-dev, libpq-dev, gfortran|fortran-compiler, libqt4-dev (>= 4.3.0) | libqt3-mt-dev (>= 3.3.0), qt4-dev-tools (>= 4.3.0) | qt3-dev-tools (>= 3.3.0), libqt4-opengl-dev, libkrb5-dev|heimdal-dev
Standards-Version: 3.9.5
Vcs-Git: git://anonscm.debian.org/debian-science/packages/root-system.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/root-system.git
Package: root-system
Architecture: all
Depends: root-system-bin, libroot-core-dev, ${misc:Depends}
Recommends: libroot-graf3d-gl-dev (>= ${binary:Version}), libroot-io-xmlparser-dev (>= ${binary:Version}), libroot-math-mathmore-dev (>= ${binary:Version}), libroot-math-unuran-dev (>= ${binary:Version}), libroot-misc-memstat-dev (>= ${binary:Version}), libroot-misc-table-dev (>= ${binary:Version}), libroot-net-bonjour-dev (>= ${binary:Version}), libroot-net-ldap-dev (>= ${binary:Version}), root-plugin-graf2d-asimage (>= ${binary:Version}), root-plugin-gui-qt (>= ${binary:Version}), root-plugin-graf2d-qt (>= ${binary:Version}), root-plugin-math-fftw3 (>= ${binary:Version}), root-plugin-math-minuit2 (>= ${binary:Version}), root-plugin-net-krb5 (>= ${binary:Version}), root-plugin-sql-odbc (>= ${binary:Version}), libroot-geom-dev (>= ${binary:Version}), libroot-graf2d-gpad-dev (>= ${binary:Version}), libroot-graf2d-graf-dev (>= ${binary:Version}), libroot-graf2d-postscript-dev (>= ${binary:Version}), libroot-graf3d-eve-dev (>= ${binary:Version}), libroot-graf3d-g3d-dev (>= ${binary:Version}), libroot-gui-dev (>= ${binary:Version}), libroot-gui-ged-dev (>= ${binary:Version}), libroot-hist-dev (>= ${binary:Version}), libroot-hist-spectrum-dev (>= ${binary:Version}), libroot-html-dev (>= ${binary:Version}), libroot-io-dev (>= ${binary:Version}), libroot-math-foam-dev (>= ${binary:Version}), libroot-math-genvector-dev (>= ${binary:Version}), libroot-math-mathcore-dev (>= ${binary:Version}), libroot-math-matrix-dev (>= ${binary:Version}), libroot-math-minuit-dev (>= ${binary:Version}), libroot-math-mlp-dev (>= ${binary:Version}), libroot-math-physics-dev (>= ${binary:Version}), libroot-math-quadp-dev (>= ${binary:Version}), libroot-math-smatrix-dev (>= ${binary:Version}), libroot-math-splot-dev (>= ${binary:Version}), libroot-misc-minicern-dev (>= ${binary:Version}), libroot-montecarlo-eg-dev (>= ${binary:Version}), libroot-montecarlo-vmc-dev (>= ${binary:Version}), libroot-net-dev (>= ${binary:Version}), libroot-net-auth-dev (>= ${binary:Version}), libroot-proof-dev (>= ${binary:Version}), libroot-proof-proofplayer-dev (>= ${binary:Version}), libroot-tmva-dev (>= ${binary:Version}), libroot-tree-dev (>= ${binary:Version}), libroot-tree-treeplayer-dev (>= ${binary:Version}), root-plugin-geom-geombuilder (>= ${binary:Version}), root-plugin-geom-geompainter (>= ${binary:Version}), root-plugin-graf2d-x11 (>= ${binary:Version}), root-plugin-graf3d-x3d (>= ${binary:Version}), root-plugin-gui-fitpanel (>= ${binary:Version}), root-plugin-gui-guibuilder (>= ${binary:Version}), root-plugin-gui-sessionviewer (>= ${binary:Version}), root-plugin-hist-hbook (>= ${binary:Version}), root-plugin-hist-histpainter (>= ${binary:Version}), root-plugin-hist-spectrumpainter (>= ${binary:Version}), root-plugin-io-sql (>= ${binary:Version}), root-plugin-io-xml (>= ${binary:Version}), root-plugin-math-fumili (>= ${binary:Version}), root-plugin-tree-treeviewer (>= ${binary:Version}), root-system-proofd (>= ${binary:Version}), root-system-rootd (>= ${binary:Version}), root-system-doc (>= ${binary:Version})
Suggests: libroot-bindings-python-dev (>= ${binary:Version}), libroot-bindings-ruby-dev (>= ${binary:Version}), libroot-roofit-dev (>= ${binary:Version}), root-plugin-geom-gdml (>= ${binary:Version}), root-plugin-montecarlo-pythia8 (>= ${binary:Version}), root-plugin-net-globus (>= ${binary:Version}), root-plugin-sql-mysql (>= ${binary:Version}), root-plugin-sql-pgsql (>= ${binary:Version})
Description: metapackage to install all ROOT packages
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
With the data defined as a set of objects, specialized storage methods
can give direct access to the separate attributes of the selected
objects, without having to touch the bulk of the data. Included are
histogramming methods in 1, 2 and 3 dimensions, curve fitting, function
evaluation, minimization, graphics and visualization classes to allow the
easy creation of an analysis system that can query and process the data
interactively or in batch mode.
.
The command language, the scripting (or macro) language, and the
programming language are all C++, thanks to the built-in CINT C++
interpreter. This interpreter removes the time consuming compile/link
cycle, allowing for fast prototyping of the macros, and providing a
good environment to learn C++. If more performance is needed, the
interactively developed macros can be compiled using a C++ compiler.
.
The system has been designed in such a way that it can query its
databases in parallel on MPP machines or on clusters of workstations
or high-end PCs. ROOT is an open system that can be dynamically
extended by linking external libraries. This makes ROOT a premier
platform on which to build data acquisition, simulation and data
analysis systems.
.
This package is a metapackage to ensure the installation of all
possible ROOT packages on a system.
Package: libroot-bindings-python5.34
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}, python-support
Provides: ${python:Provides}
Replaces: root-plugin-python (<< 5.09.01-1)
Breaks: libroot-bindings-python-dev (<< 5.34.01-1~exp1)
Description: Python extension for ROOT - runtime libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Python plug-in for ROOT. This package
provide a Python interface to ROOT, and a ROOT interface to Python.
Package: libroot-bindings-python-dev
Architecture: any
Section: libdevel
Depends: libroot-bindings-python5.34 (= ${binary:Version}), libroot-core-dev, python-dev (>= 2.1), ${python:Depends}, ${misc:Depends}
Replaces: libroot-python-dev
Breaks: libroot-python-dev (<< 5.19.01-1)
Description: Python extension for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the development files of Python plug-in for ROOT.
Package: libroot-bindings-ruby5.34
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: root-plugin-ruby (<< 5.09.01-1)
Description: Ruby extension for ROOT - run-time library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Ruby extension for ROOT. The interface
goes both ways - that is, you can call ROOT functions from Ruby, and
invoke the Ruby interpreter from ROOT.
Package: libroot-bindings-ruby-dev
Architecture: any
Section: libdevel
Depends: libroot-bindings-ruby5.34 (= ${binary:Version}), libroot-core-dev, ruby1.9.1-dev | ruby-dev (>= 4.9), ${misc:Depends}
Breaks: libroot-ruby (<< 5.19.01-1)
Replaces: libroot-ruby
Description: Ruby extension for ROOT - development headers
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Ruby extension for ROOT.
Package: libroot-graf3d-gl5.34
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Breaks: root-plugin-graf3d-gl (<< 5.19.00-1)
Replaces: root-plugin-graf3d-gl (<< 5.19.00-1)
Provides: root-plugin-graf3d-gl
Description: GL plugin for ROOT - runtime library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the GL plug-in for ROOT. This plugin provides
3D rendering of volumes and shapes defined in ROOT, as well as 3D
rendering of histograms, and similar. Included is also a high quality
3D viewer for ROOT defined geometries.
Package: libroot-graf3d-gl-dev
Architecture: any
Section: libdevel
Depends: libroot-graf3d-gl5.34 (= ${binary:Version}), libgl2ps-dev, ${misc:Depends}
Breaks: root-plugin-graf3d-gl (<< 5.19.00-1)
Replaces: root-plugin-graf3d-gl
Description: GL plugin for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the GL plug-in for ROOT. This plugin provides
3D rendering of volumes and shapes defined in ROOT. Included is also
a high quality 3D viewer for ROOT defined geometries.
Package: libroot-io-xmlparser5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: XML parser of ROOT objects - runtime library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package provides XML parser routines for ROOT objects.
Package: libroot-io-xmlparser-dev
Architecture: any
Section: libdevel
Depends: libroot-io-xmlparser5.34 (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev, root-plugin-xml
Breaks: libroot-dev (<< 5.19.01-1), root-plugin-xml (<< 5.19.01-1)
Description: XML parser of ROOT objects - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package provides development files of XML parser routines for ROOT
objects.
Package: libroot-math-mathmore5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GSL interface library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MathMore library for ROOT, a partial GNU
Scientific Library interface.
Package: libroot-math-mathmore-dev
Architecture: any
Section: libdevel
Depends: libroot-math-mathmore5.34 (= ${binary:Version}), libroot-core-dev, libgsl0-dev, ${misc:Depends}
Breaks: libroot-mathmore-dev (<< 5.19.01-1)
Replaces: libroot-mathmore-dev
Description: GSL interface library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the MathMore library for ROOT,
a partial GNU Scientific Library interface.
Package: libroot-math-unuran5.34
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Homepage: http://statistik.wu-wien.ac.at/unuran/
Description: Random number generator library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
It contains universal (also called automatic or black-box) algorithms
that can generate random numbers from large classes of continuous or
discrete distributions, and also from practically all standard
distributions.
.
To generate random numbers the user must supply some information
about the desired distribution, especially a C-function that computes
the density and - depending on the chosen methods - some additional
information (like the borders of the domain, the mode, the derivative
of the density ...). After a user has given this information an
init-program computes all tables and constants necessary for the
random variate generation. The sample program can then generate
variates from the desired distribution.
.
This package contains the runtime library.
Package: libroot-math-unuran-dev
Architecture: any
Section: libdevel
Depends: libroot-math-unuran5.34 (= ${binary:Version}), libroot-hist-dev, ${misc:Depends}
Replaces: libroot-unuran-dev
Breaks: libroot-unuran-dev (<< 5.19.01-1)
Homepage: http://statistik.wu-wien.ac.at/unuran/
Description: Random number generator library - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
It contains universal (also called automatic or black-box) algorithms
that can generate random numbers from large classes of continuous or
discrete distributions, and also from practically all standard
distributions.
.
To generate random numbers the user must supply some information
about the desired distribution, especially a C-function that computes
the density and - depending on the chosen methods - some additional
information (like the borders of the domain, the mode, the derivative
of the density ...). After a user has given this information an
init-program computes all tables and constants necessary for the
random variate generation. The sample program can then generate
variates from the desired distribution.
.
This package contains the development files
Package: libroot-misc-memstat5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Memory statistics tool for use with ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the memory statistics tool for debugging memory
leaks and such.
Package: libroot-misc-memstat-dev
Architecture: any
Section: libdevel
Depends: libroot-misc-memstat5.34 (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Memory statistics tool for use with ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the development files of memory statistics tool for
debugging memory leaks and such.
Package: libroot-misc-table5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Table library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Table library for ROOT.
Package: libroot-misc-table-dev
Architecture: any
Section: libdevel
Depends: libroot-misc-table5.34 (= ${binary:Version}), libroot-graf3d-g3d-dev, libroot-graf2d-gpad-dev, libroot-tree-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Table library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the development files of Table library for ROOT.
Package: libroot-net-bonjour5.34
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Zeroconf extension for ROOT - run-time libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains classes for declaring zeroconf services, as well
as browsing for such services. This package contains the run-time
libraries
Package: libroot-net-bonjour-dev
Architecture: any
Section: libdevel
Depends: libroot-net-bonjour5.34 (= ${binary:Version}), libroot-core-dev, libavahi-compat-libdnssd-dev , ${misc:Depends}
Description: Zeroconf extension for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains classes for declaring zeroconf services, as well
as browsing for such services. This package contains the development
libraries and headers.
Package: libroot-net-ldap5.34
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: root-plugin-ldap (<< 5.09.01-1)
Description: LDAP extension for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the LDAP plugin for ROOT. This gives you
access to LDAP directories via ROOT.
Package: libroot-net-ldap-dev
Architecture: any
Section: libdevel
Depends: libroot-net-ldap5.34 (= ${binary:Version}), libroot-core-dev, libldap2-dev | libldap-dev, ${misc:Depends}
Breaks: libroot-ldap-dev (<< 5.19.01-1)
Replaces: libroot-ldap-dev (<< 5.19.01-1)
Description: LDAP extension for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the development files of LDAP plugin for ROOT.
Package: libroot-roofit5.34
Architecture: any
Section: libs
Depends: ${shlibs:Depends}, libroot-math-minuit5.34 | root-fitter, ${misc:Depends}
Homepage: http://roofit.sourceforge.net/
Replaces: root-plugin-roofit (<< 5.09.01-1)
Description: ROOT extension for modeling expected distributions - libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The RooFit packages provide a toolkit for modeling the expected
distribution of events in a physics analysis. Models can be used to
perform likelihood fits, produce plots, and generate "toy Monte
Carlo" samples for various studies. The RooFit tools are integrated
with the object-oriented and interactive ROOT graphical environment.
.
RooFit has been developed for the BaBar collaboration, a high energy
physics experiment at the Stanford Linear Accelerator Center, and is
primarily targeted to the high-energy physicists using the ROOT
analysis environment, but the general nature of the package make it
suitable for adoption in different disciplines as well.
Package: libroot-roofit-dev
Architecture: any
Section: libdevel
Homepage: http://roofit.sourceforge.net/
Depends: libroot-roofit5.34 (= ${binary:Version}), libroot-graf2d-graf-dev, libroot-tree-dev, ${misc:Depends}
Description: ROOT extension for modeling expected distributions - development
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The RooFit packages provide a toolkit for modeling the expected
distribution of events in a physics analysis. Models can be used to
perform likelihood fits, produce plots, and generate "toy Monte
Carlo" samples for various studies. The RooFit tools are integrated
with the object-oriented and interactive ROOT graphical environment.
.
RooFit has been developed for the BaBar collaboration, a high energy
physics experiment at the Stanford Linear Accelerator Center, and is
primarily targeted to the high-energy physicists using the ROOT
analysis environment, but the general nature of the package make it
suitable for adoption in different disciplines as well.
.
This package provides development files of RooFit.
Package: root-plugin-graf2d-asimage
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: AfterImage plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the AfterImage plug-in for ROOT, which allows
you to store output graphics in many formats, including JPEG, PNG,
SVG, etc.
Package: root-plugin-geom-gdml
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, python-support, ${python:Depends}, ${misc:Depends}
Description: GDML import/export module for ROOT geometries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains an import/export module for the ROOT geometry.
Package: root-plugin-gui-qt
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Qt plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Qt plug-in for ROOT. This plugin
provides an abstraction over a display. Windows are created via Qt.
Package: root-plugin-graf2d-qt
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Graf2d Qt plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Graf2d Qt plug-in for ROOT. This plugin
provides Qt interfaces of Graf2d library.
Package: root-plugin-math-fftw3
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Homepage: http://fftw.org/
Description: FFTw plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Fast Fourier Transform extension for ROOT.
It uses the very fast fftw (version 3) library.
Package: root-plugin-math-minuit2
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-fitter
Description: Minuit version 2 plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MINUIT version 2 plug-in for ROOT. This
provides an fitting algorithm for ROOT.
Package: root-plugin-montecarlo-pythia8
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Pythia version 8 plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Pythia version 8 plug-in for ROOT. This
package provide the ROOT user with transparent interface to the
Pythia (version 8) event generators for hadronic interactions. If the
term "hadronic" does not ring any bells, this package is not for you.
Package: root-plugin-net-globus
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: globus-proxy-utils, ${shlibs:Depends}, ${misc:Depends}
Homepage: http://www.globus.org
Description: Globus plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Globus plug-in for ROOT, that allows
authentication and authorization against globus.
Package: root-plugin-net-krb5
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, krb5-user | heimdal-clients, ${misc:Depends}
Description: Kerberos (version 5) plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Kerberos (version 5) plug-in for ROOT, that
allows authentication and authorisation using Kerberos tokens.
Package: root-plugin-sql-mysql
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-db-client
Description: MySQL client plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MySQL plug-in for ROOT. This plugin
provides a thin client (interface) to MySQL servers. Using this
client, one can obtain information from a MySQL database into the
ROOT environment.
Package: root-plugin-sql-odbc
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-db-client
Homepage: http://unixodbc.org or http://iodbc.org
Description: ODBC plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the ODBC (Open DataBase Connectivity) plug-in
for ROOT, that allows transparent access to any kind of database that
supports the ODBC protocol.
Package: root-plugin-sql-pgsql
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-db-client
Description: PostgreSQL client plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the PostGreSQL plug-in for ROOT. This plugin
provides a thin client (interface) to PostGreSQL servers. Using this
client, one can obtain information from a PostGreSQL database into the
ROOT environment.
Package: libroot-geom5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: libroot-graf3d-gl5.34 (>= ${binary:Version}), root-plugin-geom-gdml, root-plugin-geom-geombuilder, root-plugin-geom-geompainter
Description: Geometry library for ROOT - run-time library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for defining geometries in ROOT.
Package: libroot-geom-dev
Architecture: any
Section: libdevel
Depends: libroot-geom5.34 (= ${binary:Version}), libroot-math-mathcore-dev, ${misc:Depends}
Recommends: libroot-graf3d-gl-dev
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1)
Description: Geometry library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library for defining geometries
in ROOT.
Package: libroot-graf2d-gpad5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Canvas and pad library for ROOT - run-time library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for canvas and pad manipulations.
Package: libroot-graf2d-gpad-dev
Architecture: any
Section: libdevel
Depends: libroot-graf2d-gpad5.34 (= ${binary:Version}), libroot-graf2d-graf-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1)
Description: Canvas and pad library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library for canvas and pad
manipulations.
Package: libroot-graf2d-graf5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Graf library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Graf library for ROOT.
Package: libroot-graf2d-graf-dev
Architecture: any
Section: libdevel
Depends: libroot-graf2d-graf5.34 (= ${binary:Version}), libroot-hist-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Graf library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Graf library for ROOT.
Package: libroot-graf2d-postscript5.34
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Postscript/PDF renderer library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for ROOT, which allows rendering
postscript and PDF output.
Package: libroot-graf2d-postscript-dev
Architecture: any
Section: libdevel
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Depends: libroot-graf2d-postscript5.34 (= ${binary:Version}), libroot-graf2d-graf-dev, ${shlibs:Depends}, ${misc:Depends}
Description: Postscript/PDF renderer library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains developemnt files of a library for ROOT, which allows
rendering postscript and PDF output.
Package: libroot-graf3d-eve5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Breaks: root-plugin-gl (<= 5.19.01-1)
Replaces: root-plugin-gl (<= 5.19.01-1)
Description: Event display library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for defining event displays in ROOT.
Package: libroot-graf3d-eve-dev
Architecture: any
Section: libdevel
Depends: libroot-graf3d-eve5.34 (= ${binary:Version}), libroot-geom-dev, libroot-gui-ged-dev, libroot-montecarlo-eg-dev, libroot-tree-treeplayer-dev, ${misc:Depends}
Replaces: root-plugin-gl
Breaks: root-plugin-gl (<= 5.19.01-1)
Description: Event display library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library for defining event
displays in ROOT.
Package: libroot-graf3d-g3d5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: libroot-graf3d-gl5.34 (>= ${binary:Version})
Suggests: libroot-geom5.34
Description: Basic 3D shapes for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This library contains the basic 3D shapes and classes for ROOT. For
a more full-blown geometry library, see libroot-geom.
Package: libroot-graf3d-g3d-dev
Architecture: any
Section: libdevel
Depends: libroot-graf3d-g3d5.34 (= ${binary:Version}), libroot-graf2d-gpad-dev, ${misc:Depends}
Recommends: libroot-graf3d-gl-dev
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1)
Suggests: libroot-geom-dev
Description: Basic 3D shapes for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This library contains development files of the basic 3D shapes and classes
for ROOT. For a more full-blown geometry library, see libroot-geom-dev.
Package: libroot-gui5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Breaks: libroot (<< 5.19.01-1)
Recommends: root-plugin-gui-guibuilder
Description: GUI library for ROOT - run-time library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for defining graphical user interfaces.
Package: libroot-gui-dev
Architecture: any
Section: libdevel
Depends: libroot-gui5.34 (= ${binary:Version}), libroot-graf2d-gpad-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: GUI library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library for defining graphical
user interfaces.
Package: libroot-gui-ged5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GUI element for editing various ROOT objects
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library to show a pop-up window for editing
various ROOT objects.
Package: libroot-gui-ged-dev
Architecture: any
Section: libdevel
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: libroot-gui-ged5.34 (= ${binary:Version}), libroot-gui-dev, libroot-tree-treeplayer-dev, ${misc:Depends}
Description: GUI element for editing various ROOT objects - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library to show a pop-up window
for editing various ROOT objects.
Package: libroot-hist5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: root-plugin-hist-histpainter
Description: Histogram library for ROOT - run-time library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for histogramming.
Package: libroot-hist-dev
Architecture: any
Section: libdevel
Depends: libroot-hist5.34 (= ${binary:Version}), libroot-core-dev, libroot-math-matrix-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Histogram library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library for histogramming.
Package: libroot-hist-spectrum5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Spectra analysis library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Spectrum library for ROOT.
Package: libroot-hist-spectrum-dev
Architecture: any
Section: libdevel
Depends: libroot-hist-spectrum5.34 (= ${binary:Version}), libroot-hist-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Spectra analysis library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Spectrum library for ROOT.
Package: libroot-html5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Html documentation generator for ROOT - runtime library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains classes to automatically extract documentation
from marked up sources.
Package: libroot-html-dev
Architecture: any
Section: libdevel
Depends: libroot-html5.34 (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Html documentation generator for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of classes to automatically extract
documentation from marked up sources.
Package: libroot-io5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Input/output of ROOT objects - runtime library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package provides I/O routines for ROOT objects.
Package: libroot-io-dev
Architecture: any
Section: libdevel
Depends: libroot-io5.34 (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev, root-plugin-proof
Breaks: libroot-dev (<< 5.19.01-1), root-plugin-proof (<< 5.19.01-1)
Description: Input/output of ROOT objects - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package provides development files of I/O routines for ROOT objects.
Package: libroot-math-foam5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Compact Version of Cellular Event Generator
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The general-purpose self-adapting Monte Carlo (MC) event
generator/simulator mFOAM (standing for mini-FOAM) is a new compact
version of the FOAM program, with a slightly limited functionality
with respect to its parent version. On the other hand, mFOAM is
easier to use for the average user.
Package: libroot-math-foam-dev
Architecture: any
Section: libdevel
Depends: libroot-math-foam5.34 (= ${binary:Version}), libroot-hist-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1)
Description: Compact Version of Cellular Event Generator - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The general-purpose self-adapting Monte Carlo (MC) event
generator/simulator mFOAM (standing for mini-FOAM) is a new compact
version of the FOAM program, with a slightly limited functionality
with respect to its parent version. On the other hand, mFOAM is
easier to use for the average user.
.
This package provides development files of the compact version of Cellular
Event Generator.
Package: libroot-math-genvector5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Generalized vector library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Genvector library for ROOT. This provides
a generalized vector library.
Package: libroot-math-genvector-dev
Architecture: any
Section: libdevel
Depends: libroot-math-genvector5.34 (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1)
Description: Generalized vector library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Genvector library for ROOT,
provides a generalized vector library.
Package: libroot-math-mathcore5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Core mathemathics library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MathCore library for ROOT.
Package: libroot-math-mathcore-dev
Architecture: any
Section: libdevel
Depends: libroot-math-mathcore5.34 (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Core mathemathics library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the MathCore library for ROOT.
Package: libroot-math-matrix5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Matrix library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Matrix library for ROOT.
Package: libroot-math-matrix-dev
Architecture: any
Section: libdevel
Depends: libroot-math-matrix5.34 (= ${binary:Version}), libroot-core-dev, libroot-math-mathcore-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Matrix library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Matrix library for ROOT.
Package: libroot-math-minuit5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: root-plugin-minuit (<< 5.09.01-7)
Provides: libroot-math-minuit
Description: Minuit plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MINUIT plug-in for ROOT. This provides a
fitting algorithm for ROOT.
Package: libroot-math-minuit-dev
Architecture: any
Section: libdevel
Depends: libroot-math-minuit5.34 (= ${binary:Version}), libroot-graf2d-graf-dev, ${misc:Depends}
Provides: root-fitter
Replaces: root-plugin-minuit (<< 5.09.01-7), libroot-minuit-dev
Breaks: libroot-minuit-dev (<< 5.19.01-1)
Description: Minuit plugin for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the MINUIT plug-in for ROOT,
provides a fitting algorithm for ROOT.
Package: libroot-math-mlp5.34
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: root-plugin-mlp (<< 5.09.01-1)
Description: Multi layer perceptron extension for ROOT - run-time libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the mlp plug-in for ROOT. This plugin provides
a Multi Layer Perceptron Neural Network package for ROOT.
Package: libroot-math-mlp-dev
Architecture: any
Section: libdevel
Depends: libroot-math-mlp5.34 (= ${binary:Version}), libroot-graf2d-gpad-dev, libroot-tree-treeplayer-dev, ${misc:Depends}
Conflicts: libroot-mlp-dev
Replaces: libroot-mlp-dev (<< 5.19.01-1)
Description: Multi layer perceptron extension for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the mlp plug-in for ROOT, provides
a Multi Layer Perceptron Neural Network package for ROOT.
Package: libroot-math-physics5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Physics library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Physics library for ROOT.
Package: libroot-math-physics-dev
Architecture: any
Section: libdevel
Depends: libroot-math-physics5.34 (= ${binary:Version}), libroot-math-matrix-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Physics library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Physics library for ROOT.
Package: libroot-math-quadp5.34
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: root-plugin-quadp (<< 5.09.01-1)
Description: QuadP extension for ROOT - run-time libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the QuadP plug-in for ROOT. This provides the
user a framework in which to do Quadratic Programming. The quadratic
programming problem involves minimization of a quadratic function
subject to linear constraints.
Package: libroot-math-quadp-dev
Architecture: any
Section: libdevel
Depends: libroot-math-quadp5.34 (= ${binary:Version}), libroot-math-matrix-dev, ${misc:Depends}
Replaces: libroot-quadp
Breaks: libroot-quadp (<< 5.19.01-1)
Description: QuadP extension for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the QuadP plug-in for ROOT. This
provides the user a framework in which to do Quadratic Programming.
The quadratic programming problem involves minimization of a quadratic
function subject to linear constraints.
Package: libroot-math-smatrix5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Sparse matrix library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Smatrix library for ROOT.
Package: libroot-math-smatrix-dev
Architecture: any
Section: libdevel
Depends: libroot-math-smatrix5.34 (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Sparse matrix library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Smatrix library for ROOT.
Package: libroot-math-splot5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Splot library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
A common method used in High Energy Physics to perform measurements
is the maximum Likelihood method, exploiting discriminating variables
to disentangle signal from background. The crucial point for such an
analysis to be reliable is to use an exhaustive list of sources of
events combined with an accurate description of all the Probability
Density Functions (PDF).
.
To assess the validity of the fit, a convincing quality check is to
explore further the data sample by examining the distributions of
control variables. A control variable can be obtained for instance by
removing one of the discriminating variables before performing again
the maximum Likelihood fit: this removed variable is a control
variable. The expected distribution of this control variable, for
signal, is to be compared to the one extracted, for signal, from the
data sample. In order to be able to do so, one must be able to unfold
from the distribution of the whole data sample.
.
The SPlot method allows one to reconstruct the distributions for the
control variable, independently for each of the various sources of
events, without making use of any a priori knowledge on this
variable. The aim is thus to use the knowledge available for the
discriminating variables to infer the behaviour of the individual
sources of events with respect to the control variable.
.
SPlot is optimal if the control variable is uncorrelated with the
discriminating variables.
Package: libroot-math-splot-dev
Architecture: any
Section: libdevel
Depends: libroot-math-splot5.34 (= ${binary:Version}), libroot-graf2d-graf-dev, libroot-graf3d-g3d-dev, libroot-tree-treeplayer-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Splot library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
A common method used in High Energy Physics to perform measurements
is the maximum Likelihood method, exploiting discriminating variables
to disentangle signal from background. The crucial point for such an
analysis to be reliable is to use an exhaustive list of sources of
events combined with an accurate description of all the Probability
Density Functions (PDF).
.
To assess the validity of the fit, a convincing quality check is to
explore further the data sample by examining the distributions of
control variables. A control variable can be obtained for instance by
removing one of the discriminating variables before performing again
the maximum Likelihood fit: this removed variable is a control
variable. The expected distribution of this control variable, for
signal, is to be compared to the one extracted, for signal, from the
data sample. In order to be able to do so, one must be able to unfold
from the distribution of the whole data sample.
.
The SPlot method allows one to reconstruct the distributions for the
control variable, independently for each of the various sources of
events, without making use of any a priori knowledge on this
variable. The aim is thus to use the knowledge available for the
discriminating variables to infer the behaviour of the individual
sources of events with respect to the control variable.
.
SPlot is optimal if the control variable is uncorrelated with the
discriminating variables.
.
This package provides development files of Splot library for ROOT.
Package: libroot-misc-minicern5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Small version of CERNLIB for use with ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the mini CERNLIB library for ROOT.
Package: libroot-misc-minicern-dev
Architecture: any
Section: libdevel
Depends: libroot-misc-minicern5.34 (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Small version of CERNLIB for use with ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the mini CERNLIB library for ROOT.
Package: libroot-montecarlo-eg5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Event generator library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Eg library for ROOT.
Package: libroot-montecarlo-eg-dev
Architecture: any
Section: libdevel
Depends: libroot-montecarlo-eg5.34 (= ${binary:Version}), libroot-graf2d-gpad-dev, libroot-graf3d-g3d-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Event generator library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Eg library for ROOT.
Package: libroot-montecarlo-vmc5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: root-vmc
Description: Virtual Monte-Carlo library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Vmc library for ROOT.
Package: libroot-montecarlo-vmc-dev
Architecture: any
Section: libdevel
Depends: libroot-montecarlo-vmc5.34 (= ${binary:Version}), libroot-geom-dev, libroot-montecarlo-eg-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Virtual Monte-Carlo library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Vmc library for ROOT.
Package: libroot-net5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Net library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Net library for ROOT.
Package: libroot-net-dev
Architecture: any
Section: libdevel
Depends: libroot-net5.34 (= ${binary:Version}), libroot-math-mathcore-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Net library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Net library for ROOT.
Package: libroot-net-auth5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-authentication
Description: Authentication extension for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the basic authentication algorithms used by ROOT.
Package: libroot-net-auth-dev
Architecture: any
Section: libdevel
Depends: libroot-net-auth5.34 (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1), libroot-core-dev (<< 5.30.00-1)
Description: Authentication extension for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the basic authentication algorithms
used by ROOT.
Package: libroot-proof5.34
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Suggests: root-plugin-net-netx, root-plugin-proof-xproof
Description: PROOF library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the PROOF library for ROOT. This provides a
client to use in a PROOF environment.
Package: libroot-proof-dev
Architecture: any
Section: libdevel
Depends: libroot-proof5.34 (= ${binary:Version}), libroot-math-mathcore-dev, libroot-tree-dev, ${misc:Depends}
Replaces: root-plugin-proof
Breaks: root-plugin-proof (<< 5.19.01-1), libroot-proof-proofplayer-dev (<= 5.34.01-1~exp1)
Description: PROOF library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the PROOF library for ROOT. This
provides a client to use in a PROOF environment.
Package: libroot-proof-proofplayer5.34
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Suggests: root-plugin-net-netx, root-plugin-proof-xproof
Replaces: root-plugin-proof-proofplayer (<< 5.23.05-1)
Breaks: root-plugin-proof-proofplayer (<< 5.23.05-1)
Description: PROOF plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the PROOF extension for ROOT. This provides a
client to use in a PROOF environment.
Package: libroot-proof-proofplayer-dev
Section: libdevel
Architecture: any
Depends: libroot-proof-proofplayer5.34 (= ${binary:Version}), libroot-proof-dev, ${misc:Depends}
Suggests: root-plugin-net-netx, root-plugin-proof-xproof
Replaces: root-plugin-proof-proofplayer (<< 5.23.05-1)
Breaks: root-plugin-proof-proofplayer (<< 5.23.05-1)
Description: PROOF plugin for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the PROOF extension for ROOT. This
provides a client to use in a PROOF environment.
Package: libroot-tmva5.34
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Homepage: http://tmva.sourceforge.net
Description: Toolkit for multivariate data analysis
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The Toolkit for Multivariate Analysis (TMVA) provides a
ROOT-integrated environment for the parallel processing and
evaluation of MVA techniques to discriminate signal from background
samples. It presently includes (ranked by complexity):
.
* Rectangular cut optimisation
* Correlated likelihood estimator (PDE approach)
* Multi-dimensional likelihood estimator (PDE - range-search approach)
* Fisher (and Mahalanobis) discriminant
* H-Matrix (chi-squared) estimator
* Artificial Neural Network (two different implementations)
* Boosted Decision Trees
.
The TMVA package includes an implementation for each of these
discrimination techniques, their training and testing (performance
evaluation). In addition all these methods can be tested in parallel,
and hence their performance on a particular data set may easily be
compared.
Package: libroot-tmva-dev
Architecture: any
Section: libdevel
Depends: libroot-tmva5.34 (= ${binary:Version}), libroot-math-mlp-dev, ${misc:Depends}
Homepage: http://tmva.sourceforge.net
Description: Toolkit for multivariate data analysis - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The Toolkit for Multivariate Analysis (TMVA) provides a
ROOT-integrated environment for the parallel processing and
evaluation of MVA techniques to discriminate signal from background
samples. It presently includes (ranked by complexity):
.
* Rectangular cut optimisation
* Correlated likelihood estimator (PDE approach)
* Multi-dimensional likelihood estimator (PDE - range-search approach)
* Fisher (and Mahalanobis) discriminant
* H-Matrix (chi-squared) estimator
* Artificial Neural Network (two different implementations)
* Boosted Decision Trees
.
The TMVA package includes an implementation for each of these
discrimination techniques, their training and testing (performance
evaluation). In addition all these methods can be tested in parallel,
and hence their performance on a particular data set may easily be
compared.
.
This package provides development files of TMVA package for ROOT.
Package: libroot-tree5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: libroot-tree-treeplayer5.34 | root-plugin-tree-treeviewer
Description: Tree library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Tree library for ROOT.
Package: libroot-tree-dev
Architecture: any
Section: libdevel
Depends: libroot-tree5.34 (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Tree library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Tree library for ROOT.
Package: libroot-tree-treeplayer5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Library to loop over a ROOT tree
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
Plug-in to loop over a ROOT tree.
Package: libroot-tree-treeplayer-dev
Architecture: any
Section: libdevel
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: libroot-tree-treeplayer5.34 (= ${binary:Version}), libroot-tree-dev, libroot-graf2d-gpad-dev, libroot-graf3d-g3d-dev, ${misc:Depends}
Description: Library to loop over a ROOT tree - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package provides development files to loop over a ROOT tree.
Package: root-plugin-geom-geombuilder
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Geometry builder plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a geometry builder plugin for ROOT.
Package: root-plugin-geom-geompainter
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Geometry painter plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a geometry painter plugin for ROOT.
Package: root-plugin-graf2d-x11
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Provides: root-system-display
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: X window system plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the X11 plug-in for ROOT, which allows using an
X display for showing graphics.
Package: root-plugin-graf3d-x3d
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: root-plugin-graf3d-gl
Description: X 3D plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the X 3D plug-in for ROOT. This plugin provides
3D rendering of volumes and shapes defined in ROOT. Included is also
a low quality 3D viewer for ROOT defined geometries.
Package: root-plugin-gui-fitpanel
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GUI element for fits plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a plug-in to show a pop-up dialog when fitting
various kinds of data.
Package: root-plugin-gui-guibuilder
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GUI editor plug-in for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a plug-in for editing graphical user interfaces
in ROOT.
Package: root-plugin-gui-sessionviewer
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GUI to browse an interactive PROOF session
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a plug-in browsing an interactive PROOF session
in ROOT.
Package: root-plugin-hist-hbook
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Conflicts: root-plugin-hbook
Replaces: root-plugin-hbook (<< 5.19.01-1)
Description: Hbook plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Hbook plug-in for ROOT, allowing you to
access legacy Hbook files (NTuples and Histograms from PAW).
Package: root-plugin-hist-histpainter
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Histogram painter plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a painter of histograms for ROOT.
Package: root-plugin-hist-spectrumpainter
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Spectrum painter plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a painter of spectra for ROOT.
Package: root-plugin-io-sql
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: root-db-client | root-plugin-io-mysql
Description: SQL plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the SQL plug-in for ROOT, that allows
transparent access to files data via an SQL database, using ROOT's
TFile interface.
Package: root-plugin-io-xml
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: XML reader plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the XML reader plug-in for ROOT. This package
provide a plug-in to parse XML files with ROOT.
Package: root-plugin-math-fumili
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-fitter
Description: Fumili plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the fumili plug-in for ROOT. This provides an
alternative fitting algorithm for ROOT.
Package: root-plugin-tree-treeviewer
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GUI to browse a ROOT tree
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a plug-in for browsing a ROOT tree in ROOT.
Package: root-system-proofd
Architecture: any
Depends: root-system-common, lsb-base (>= 3.0-6), openbsd-inetd | inet-superserver, ${shlibs:Depends}, ${misc:Depends}
Recommends: root-system-bin, libroot-dev, root-file-server | root-system-rootd
Description: Parallel ROOt Facility - distributed, parallel computing
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the PROOF server. proofd is the core daemon of
the PROOF (Parallel ROOt Facility) system for distributed parallel
computing. Installing this package on a machine, makes it possible
for the machine to participate in a parallel computing farm (cluster
or via the Internet), either as a master or a slave, using a
transparent interface.
Package: root-system-rootd
Architecture: any
Depends: root-system-common, lsb-base (>= 3.0-6), adduser, openbsd-inetd | inet-superserver, ${shlibs:Depends}, ${misc:Depends}
Recommends: root-system-bin, libroot-dev
Provides: root-file-server
Description: ROOT remote file server
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains ROOT file server. rootd is a server for ROOT
files, serving files over the Internet. Using this daemon, you can
access files on the machine from anywhere on the Internet, using a
transparent interface.
Package: root-system-doc
Section: doc
Architecture: all
Suggests: root-system-bin
Depends: ${misc:Depends}
Description: Tutorial and test suite for the ROOT system
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the tutorial scripts and test suite for the ROOT
system, as well as the automatically generated HTML class documentation.
Package: root-system-bin
Architecture: any
Depends: ${shlibs:Depends}, root-plugin-graf2d-asimage, ${misc:Depends}
Recommends: root-plugin-graf3d-gl, libroot-math-minuit | root-fitter, libroot-core-dev, root-plugin-graf2d-x11 | root-system-display
Description: Numerical data analysis framework - general applications
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
With the data defined as a set of objects, specialized storage methods
can give direct access to the separate attributes of the selected
objects, without having to touch the bulk of the data. Included are
histogramming methods in 1, 2 and 3 dimensions, curve fitting, function
evaluation, minimization, graphics and visualization classes to allow the
easy creation of an analysis system that can query and process the data
interactively or in batch mode.
.
The command language, the scripting (or macro) language, and the
programming language are all C++, thanks to the built-in CINT C++
interpreter. This interpreter removes the time consuming compile/link
cycle, allowing for fast prototyping of the macros, and providing a
good environment to learn C++. If more performance is needed, the
interactively developed macros can be compiled using a C++ compiler.
.
The system has been designed in such a way that it can query its
databases in parallel on MPP machines or on clusters of workstations
or high-end PCs. ROOT is an open system that can be dynamically
extended by linking external libraries. This makes ROOT a premier
platform on which to build data acquisition, simulation and data
analysis systems.
Package: libroot-core5.34
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: root-system-common, ${shlibs:Depends}, ${misc:Depends}
Recommends: root-system-bin, libroot-core-dev
Provides: libroot-core
Description: Numerical data analysis framework - shared runtime libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the shared libraries used by the ROOT
system. The libraries contain numerous C++ class definitions for
various purposes, some of which are:
* System abstraction
* Thin Thread API
* Histograming
* Persistent objects
* GUI API
and many others. Refer also to the package description of
root-bin.
Package: libroot-core-dev
Section: libdevel
Architecture: any
Depends: ${shlibs:Depends}, zlib1g-dev, libssl-dev, comerr-dev, libkrb5-dev, libx11-dev, libfreetype6-dev, libpcre3-dev, libxpm-dev, g++ | c++-compiler, ${python:Depends}, cfortran, ${misc:Depends}
Suggests: root-system-bin, gccxml
Recommends: libroot-geom-dev, libroot-gui-dev, libroot-hist-dev, libroot-proof-dev, libroot-tree-dev, libroot-io-dev, libroot-net-dev
Provides: libroot-dev
Replaces: libroot-dev (<< 5.19.01-1)
Breaks: libroot-dev (<< 5.19.01-1)
Description: Header files for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains header files (Class declarations) for the ROOT
class libraries. Please refer the package documentation for libroot
and root-bin.
Package: libroot-static
Section: libdevel
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: libroot-core-dev
Description: Static archive of ROOT libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains static archive of the ROOT classes.
Package: root-system-common
Architecture: all
Multi-Arch: foreign
Pre-Depends: ${misc:Pre-Depends}
Depends: fonts-freefont-ttf | root-ttf, fonts-freefont-otf, fonts-opensymbol | root-ttf, ${misc:Depends}
Description: Common files for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains some common infrastructure files for ROOT.
Package: ttf-root-installer
Architecture: all
Section: contrib/fonts
Depends: ${misc:Depends}, wget (>= 1.9.1-4), xfonts-utils, debconf (>= 1.2.0)
Provides: root-ttf
Conflicts: ttf-root
Description: True type fonts for ROOT - installer package
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package will install the True Type Fonts (TTF) used by ROOT.
These fonts are provided by Microsoft. Note, that you may not
redistribute this font files. This package will download the fonts
from the ROOT FTP server, or alternatively use an already downloaded
tar-file.
debian/root-system-bin.xpm 0000644 0000000 0000000 00000012330 12253755630 012776 0 ustar /* XPM */
static char * root_bin_xpm[] = {
"32 32 194 2",
" c None",
". c #8FB2AA",
"+ c #838574",
"@ c #8FB7A9",
"# c #8FE3EA",
"$ c #B0C2C0",
"% c #A6A69E",
"& c #87D9CC",
"* c #A3CDBD",
"= c #A3B6B1",
"- c #95CCC0",
"; c #D4D3C9",
"> c #B8C0D3",
", c #B1B5D0",
"' c #D7DCE2",
") c #CBCBC9",
"! c #D1D0CC",
"~ c #C9CECE",
"{ c #AAAFAF",
"] c #CAD8DC",
"^ c #D0D5DF",
"/ c #BDBED3",
"( c #CBCDD6",
"_ c #E3E3E0",
": c #C7CACA",
"< c #C5B7B6",
"[ c #D1DEE0",
"} c #CDDDE3",
"| c #BCC4D6",
"1 c #A8AAC0",
"2 c #CAD1D6",
"3 c #C9C0BA",
"4 c #C3C5C5",
"5 c #E5E8E9",
"6 c #E9E3E3",
"7 c #D5CBCA",
"8 c #CCD8DA",
"9 c #B2C4C8",
"0 c #9FADB1",
"a c #D7EAEE",
"b c #D3D1CF",
"c c #E1E6E8",
"d c #EEEEEE",
"e c #E6E5E3",
"f c #DEE3E2",
"g c #D4E4E8",
"h c #CFDFE1",
"i c #D0DCDD",
"j c #BCACA4",
"k c #C8D1D4",
"l c #F5F7F6",
"m c #F7F8F8",
"n c #F8FAFA",
"o c #DBE8EC",
"p c #CBCECD",
"q c #8C0000",
"r c #DCE4E6",
"s c #F4F7F7",
"t c #EEF4F5",
"u c #D2E1E6",
"v c #CCDCE2",
"w c #E70000",
"x c #730000",
"y c #EFF0EF",
"z c #F9FAFA",
"A c #DEE8EB",
"B c #C6D6DB",
"C c #BABDB9",
"D c #FD0000",
"E c #D60000",
"F c #640000",
"G c #EEF1EA",
"H c #FDFDFD",
"I c #F2F8F7",
"J c #E0E8E7",
"K c #FC0000",
"L c #FF0000",
"M c #E00000",
"N c #00005B",
"O c #E7ECDC",
"P c #FCFDFB",
"Q c #FAFCFB",
"R c #D5D1CD",
"S c #FA0000",
"T c #FE0000",
"U c #D30000",
"V c #000080",
"W c #D2D7C8",
"X c #F9FBF3",
"Y c #FAFCF7",
"Z c #DDE0DE",
"` c #FB0000",
" . c #BF0000",
".. c #0000C7",
"+. c #C4CAB9",
"@. c #F0F8E2",
"#. c #E9EFDF",
"$. c #E7EAE4",
"%. c #E3E5E2",
"&. c #F60000",
"*. c #B50000",
"=. c #33002A",
"-. c #0000EB",
";. c #ACB0A7",
">. c #EAF4D9",
",. c #D5DDCD",
"'. c #DFE6D4",
"). c #F0F4E8",
"!. c #F90000",
"~. c #BF0011",
"{. c #2200B8",
"]. c #ABADA8",
"^. c #CDD4C0",
"/. c #C3C7BD",
"(. c #CAD1BF",
"_. c #E8F3D4",
":. c #D1D7C8",
"<. c #FD0001",
"[. c #A90036",
"}. c #9B9D9A",
"|. c #BDC3B3",
"1. c #BBBDB8",
"2. c #AAB19C",
"3. c #DBE8C3",
"4. c #B2BBA2",
"5. c #B10404",
"6. c #F80000",
"7. c #F90003",
"8. c #AB0014",
"9. c #969893",
"0. c #A8A994",
"a. c #8E8B71",
"b. c #A6A47D",
"c. c #ABB08A",
"d. c #E90000",
"e. c #660000",
"f. c #7E786B",
"g. c #877757",
"h. c #92865D",
"i. c #83886A",
"j. c #DA0000",
"k. c #74624B",
"l. c #817352",
"m. c #91866F",
"n. c #907768",
"o. c #570000",
"p. c #7A604D",
"q. c #77593E",
"r. c #876C59",
"s. c #876F60",
"t. c #88725F",
"u. c #BC1714",
"v. c #6B4A3D",
"w. c #694E3C",
"x. c #734F37",
"y. c #8E755F",
"z. c #948573",
"A. c #B45C49",
"B. c #916F52",
"C. c #482D26",
"D. c #7B5F46",
"E. c #97755C",
"F. c #937362",
"G. c #B85546",
"H. c #815E52",
"I. c #907260",
"J. c #9C4D43",
"K. c #CF2721",
"L. c #87665B",
"M. c #A38173",
"N. c #7C3F38",
"O. c #F20000",
"P. c #F30907",
"Q. c #DC1812",
"R. c #A9493B",
"S. c #966A65",
"T. c #8E6F60",
"U. c #90715D",
"V. c #845A46",
"W. c #91523E",
"X. c #68483A",
"Y. c #926D61",
"Z. c #835E4B",
"`. c #6D5543",
" + c #957166",
".+ c #6F594A",
"++ c #6D5848",
"@+ c #716052",
"#+ c #7F6E60",
"$+ c #8C7063",
"%+ c #88756B",
"&+ c #877365",
"*+ c #91776A",
"=+ c #897A70",
" . + @ # ",
" $ % ",
" & * = - ",
" ; > , ' ) ! ",
" ~ { ] ^ / ( _ ",
" : < [ } | 1 2 3 ",
" 4 5 6 7 8 9 0 a b ",
" c d e f g h i j ",
" k l m n o p ",
" q r s t u v ",
" w x y z A B C ",
" D E F G H I J ",
" K L M N O P Q R ",
" S L T U V W X Y Z ",
" K L L ` . .. +.@.#.$.%. ",
" D L L L &.*.=.-. ;.>.,.'.). ",
" D L L L L !.~.{. ].^./.(._.:. ",
" T L L L L L <.[. }.|.1.2.3.4. ",
" 5.6.L L L L L L 7.8. 9.0.a.b.c. ",
" K L L L L L L L d.e. f.g.h.i. ",
" D L L L L L L L T j. k.l.m.n. ",
" D L L L L L L L L L o. p.q.r.s.t. ",
" T L L L L L L L L L L u.v.w.x.y.z. ",
" 6.L L L L L L L L L L A.B.C.D.E.F. ",
" ` L L L L L L L L L L G. H.I.J. ",
" K L L L L L L L L L L K. L.M.N. ",
" T L D O.L L L ` K P.Q.R. S.T.U. ",
" V.W.X. Y.Z.`. ",
" +.+++@+ ",
" #+ $+%+ ",
" &+ *+=+ ",
" "};
debian/skel/ 0000755 0000000 0000000 00000000000 12253755630 010134 5 ustar debian/skel/libroot-graf2d-postscript.control 0000644 0000000 0000000 00000002031 12253755630 016557 0 ustar Package: libroot-graf2d-postscript@libvers@
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Postscript/PDF renderer library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for ROOT, which allows rendering
postscript and PDF output.
Package: libroot-graf2d-postscript-dev
Architecture: any
Section: libdevel
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Depends: libroot-graf2d-postscript@libvers@ (= ${binary:Version}), libroot-graf2d-graf-dev, ${shlibs:Depends}, ${misc:Depends}
Description: Postscript/PDF renderer library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains developemnt files of a library for ROOT, which allows
rendering postscript and PDF output.
debian/skel/libroot-tmva.control 0000644 0000000 0000000 00000005047 12253755630 014163 0 ustar Package: libroot-tmva@libvers@
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Homepage: http://tmva.sourceforge.net
Description: Toolkit for multivariate data analysis
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The Toolkit for Multivariate Analysis (TMVA) provides a
ROOT-integrated environment for the parallel processing and
evaluation of MVA techniques to discriminate signal from background
samples. It presently includes (ranked by complexity):
.
* Rectangular cut optimisation
* Correlated likelihood estimator (PDE approach)
* Multi-dimensional likelihood estimator (PDE - range-search approach)
* Fisher (and Mahalanobis) discriminant
* H-Matrix (chi-squared) estimator
* Artificial Neural Network (two different implementations)
* Boosted Decision Trees
.
The TMVA package includes an implementation for each of these
discrimination techniques, their training and testing (performance
evaluation). In addition all these methods can be tested in parallel,
and hence their performance on a particular data set may easily be
compared.
Package: libroot-tmva-dev
Architecture: any
Section: libdevel
Depends: libroot-tmva@libvers@ (= ${binary:Version}), libroot-math-mlp-dev, ${misc:Depends}
Homepage: http://tmva.sourceforge.net
Description: Toolkit for multivariate data analysis - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The Toolkit for Multivariate Analysis (TMVA) provides a
ROOT-integrated environment for the parallel processing and
evaluation of MVA techniques to discriminate signal from background
samples. It presently includes (ranked by complexity):
.
* Rectangular cut optimisation
* Correlated likelihood estimator (PDE approach)
* Multi-dimensional likelihood estimator (PDE - range-search approach)
* Fisher (and Mahalanobis) discriminant
* H-Matrix (chi-squared) estimator
* Artificial Neural Network (two different implementations)
* Boosted Decision Trees
.
The TMVA package includes an implementation for each of these
discrimination techniques, their training and testing (performance
evaluation). In addition all these methods can be tested in parallel,
and hence their performance on a particular data set may easily be
compared.
.
This package provides development files of TMVA package for ROOT.
debian/skel/root-plugin-io-chirp.control 0000644 0000000 0000000 00000001667 12253755630 015537 0 ustar Package: root-plugin-io-chirp
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Homepage: http://www.cs.wisc.edu/condor/chirp/
Description: Chirp plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Chirp plug-in for ROOT, which allows you to
access files via the Chirp protocol.
.
Chirp is a simple and lightweight remote I/O protocol used by a
variety of research projects related to Condor. The Chirp protocol
corresponds closely to the Unix interface. It consists of familiar
operations such as open(), read(), write(), and close(). In addition,
Chirp provides a variety of authentication methods, allowing remote
users to identify themselves with strong Globus or Kerberos
credentials. The Chirp protocol is used in a variety of systems.
debian/skel/root-plugin-graf3d-x3d.control 0000644 0000000 0000000 00000001145 12253755630 015656 0 ustar Package: root-plugin-graf3d-x3d
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: root-plugin-graf3d-gl
Description: X 3D plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the X 3D plug-in for ROOT. This plugin provides
3D rendering of volumes and shapes defined in ROOT. Included is also
a low quality 3D viewer for ROOT defined geometries.
debian/skel/root-plugin-hist-hbook.control 0000644 0000000 0000000 00000000735 12253755630 016067 0 ustar Package: root-plugin-hist-hbook
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Conflicts: root-plugin-hbook
Replaces: root-plugin-hbook (<< 5.19.01-1)
Description: Hbook plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Hbook plug-in for ROOT, allowing you to
access legacy Hbook files (NTuples and Histograms from PAW).
debian/skel/root-system-proofd.control 0000644 0000000 0000000 00000001470 12253755630 015334 0 ustar Package: root-system-proofd
Architecture: any
Depends: root-system-common, lsb-base (>= 3.0-6), openbsd-inetd | inet-superserver, ${shlibs:Depends}, ${misc:Depends}
Recommends: root-system-bin, libroot-dev, root-file-server | root-system-rootd
Description: Parallel ROOt Facility - distributed, parallel computing
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the PROOF server. proofd is the core daemon of
the PROOF (Parallel ROOt Facility) system for distributed parallel
computing. Installing this package on a machine, makes it possible
for the machine to participate in a parallel computing farm (cluster
or via the Internet), either as a master or a slave, using a
transparent interface.
debian/skel/libroot-montecarlo-g4root.control 0000644 0000000 0000000 00000001601 12253755630 016563 0 ustar Package: libroot-montecarlo-g4root@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Geant4 interface library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the G4root library for ROOT.
Package: libroot-montecarlo-g4root-dev
Architecture: any
Section: libdevel
Depends: libroot-montecarlo-g4root@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Geant4 interface library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the G4root library for ROOT.
debian/skel/libroot-tree.control 0000644 0000000 0000000 00000001662 12253755630 014152 0 ustar Package: libroot-tree@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: libroot-tree-treeplayer@libvers@ | root-plugin-tree-treeviewer
Description: Tree library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Tree library for ROOT.
Package: libroot-tree-dev
Architecture: any
Section: libdevel
Depends: libroot-tree@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Tree library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Tree library for ROOT.
debian/skel/libroot-tree-treeplayer.control 0000644 0000000 0000000 00000001673 12253755630 016326 0 ustar Package: libroot-tree-treeplayer@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Library to loop over a ROOT tree
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
Plug-in to loop over a ROOT tree.
Package: libroot-tree-treeplayer-dev
Architecture: any
Section: libdevel
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: libroot-tree-treeplayer@libvers@ (= ${binary:Version}), libroot-tree-dev, libroot-graf2d-gpad-dev, libroot-graf3d-g3d-dev, ${misc:Depends}
Description: Library to loop over a ROOT tree - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package provides development files to loop over a ROOT tree.
debian/skel/libroot-geom.control 0000644 0000000 0000000 00000002137 12253755630 014140 0 ustar Package: libroot-geom@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: libroot-graf3d-gl@libvers@ (>= ${binary:Version}), root-plugin-geom-gdml, root-plugin-geom-geombuilder, root-plugin-geom-geompainter
Description: Geometry library for ROOT - run-time library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for defining geometries in ROOT.
Package: libroot-geom-dev
Architecture: any
Section: libdevel
Depends: libroot-geom@libvers@ (= ${binary:Version}), libroot-math-mathcore-dev, ${misc:Depends}
Recommends: libroot-graf3d-gl-dev
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1)
Description: Geometry library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library for defining geometries
in ROOT.
debian/skel/root-plugin-net-srp.control 0000644 0000000 0000000 00000000774 12253755630 015413 0 ustar Package: root-plugin-net-srp
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Homepage: http://srp.stanford.edu
Description: SRP plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the SRP (Secure Remote Protocol) utility plug-in
for ROOT. This package provides some tools for SRP authentication
with ROOT.
debian/skel/libroot-math-foam.control 0000644 0000000 0000000 00000002734 12253755630 015065 0 ustar Package: libroot-math-foam@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Compact Version of Cellular Event Generator
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The general-purpose self-adapting Monte Carlo (MC) event
generator/simulator mFOAM (standing for mini-FOAM) is a new compact
version of the FOAM program, with a slightly limited functionality
with respect to its parent version. On the other hand, mFOAM is
easier to use for the average user.
Package: libroot-math-foam-dev
Architecture: any
Section: libdevel
Depends: libroot-math-foam@libvers@ (= ${binary:Version}), libroot-hist-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1)
Description: Compact Version of Cellular Event Generator - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The general-purpose self-adapting Monte Carlo (MC) event
generator/simulator mFOAM (standing for mini-FOAM) is a new compact
version of the FOAM program, with a slightly limited functionality
with respect to its parent version. On the other hand, mFOAM is
easier to use for the average user.
.
This package provides development files of the compact version of Cellular
Event Generator.
debian/skel/libroot-math-quadp.control 0000644 0000000 0000000 00000002503 12253755630 015247 0 ustar Package: libroot-math-quadp@libvers@
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: root-plugin-quadp (<< 5.09.01-1)
Description: QuadP extension for ROOT - run-time libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the QuadP plug-in for ROOT. This provides the
user a framework in which to do Quadratic Programming. The quadratic
programming problem involves minimization of a quadratic function
subject to linear constraints.
Package: libroot-math-quadp-dev
Architecture: any
Section: libdevel
Depends: libroot-math-quadp@libvers@ (= ${binary:Version}), libroot-math-matrix-dev, ${misc:Depends}
Replaces: libroot-quadp
Breaks: libroot-quadp (<< 5.19.01-1)
Description: QuadP extension for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the QuadP plug-in for ROOT. This
provides the user a framework in which to do Quadratic Programming.
The quadratic programming problem involves minimization of a quadratic
function subject to linear constraints.
debian/skel/control.in 0000644 0000000 0000000 00000004640 12253755630 012150 0 ustar Source: root-system
Section: science
Priority: optional
Maintainer: Debian Science Maintainers
Uploaders: Lifeng Sun
Homepage: http://root.cern.ch
Build-Depends: debhelper (>= 5.0.37.2), lsb-release, autotools-dev, po-debconf, libssl-dev, comerr-dev, libxpm-dev, libltdl-dev, x11proto-xext-dev, libxext-dev, libfreetype6-dev, libpcre3-dev, zlib1g-dev | libz-dev, liblzma-dev, python-dev (>= 2.1), graphviz, ttf-freefont, libncurses5-dev, libgraphviz-dev, libavahi-core-dev, libsqlite3-dev, libxft-dev@builddepends@
Standards-Version: 3.9.5
Vcs-Git: git://anonscm.debian.org/debian-science/packages/root-system.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/root-system.git
Package: root-system
Architecture: all
Depends: root-system-bin, libroot-core-dev, ${misc:Depends}
Recommends: @plugins@
Suggests: @extras@
Description: metapackage to install all ROOT packages
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
With the data defined as a set of objects, specialized storage methods
can give direct access to the separate attributes of the selected
objects, without having to touch the bulk of the data. Included are
histogramming methods in 1, 2 and 3 dimensions, curve fitting, function
evaluation, minimization, graphics and visualization classes to allow the
easy creation of an analysis system that can query and process the data
interactively or in batch mode.
.
The command language, the scripting (or macro) language, and the
programming language are all C++, thanks to the built-in CINT C++
interpreter. This interpreter removes the time consuming compile/link
cycle, allowing for fast prototyping of the macros, and providing a
good environment to learn C++. If more performance is needed, the
interactively developed macros can be compiled using a C++ compiler.
.
The system has been designed in such a way that it can query its
databases in parallel on MPP machines or on clusters of workstations
or high-end PCs. ROOT is an open system that can be dynamically
extended by linking external libraries. This makes ROOT a premier
platform on which to build data acquisition, simulation and data
analysis systems.
.
This package is a metapackage to ensure the installation of all
possible ROOT packages on a system.
debian/skel/root-system-bin.control 0000644 0000000 0000000 00000003247 12253755630 014617 0 ustar Package: root-system-bin
Architecture: any
Depends: ${shlibs:Depends}, root-plugin-graf2d-asimage, ${misc:Depends}
Recommends: root-plugin-graf3d-gl, libroot-math-minuit | root-fitter, libroot-core-dev, root-plugin-graf2d-x11 | root-system-display
Description: Numerical data analysis framework - general applications
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
With the data defined as a set of objects, specialized storage methods
can give direct access to the separate attributes of the selected
objects, without having to touch the bulk of the data. Included are
histogramming methods in 1, 2 and 3 dimensions, curve fitting, function
evaluation, minimization, graphics and visualization classes to allow the
easy creation of an analysis system that can query and process the data
interactively or in batch mode.
.
The command language, the scripting (or macro) language, and the
programming language are all C++, thanks to the built-in CINT C++
interpreter. This interpreter removes the time consuming compile/link
cycle, allowing for fast prototyping of the macros, and providing a
good environment to learn C++. If more performance is needed, the
interactively developed macros can be compiled using a C++ compiler.
.
The system has been designed in such a way that it can query its
databases in parallel on MPP machines or on clusters of workstations
or high-end PCs. ROOT is an open system that can be dynamically
extended by linking external libraries. This makes ROOT a premier
platform on which to build data acquisition, simulation and data
analysis systems.
debian/skel/libroot-core.control 0000644 0000000 0000000 00000004004 12253755630 014134 0 ustar Package: libroot-core@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: root-system-common, ${shlibs:Depends}, ${misc:Depends}
Recommends: root-system-bin, libroot-core-dev
Provides: libroot-core
Description: Numerical data analysis framework - shared runtime libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the shared libraries used by the ROOT
system. The libraries contain numerous C++ class definitions for
various purposes, some of which are:
* System abstraction
* Thin Thread API
* Histograming
* Persistent objects
* GUI API
and many others. Refer also to the package description of
root-bin.
Package: libroot-core-dev
Section: libdevel
Architecture: any
Depends: ${shlibs:Depends}, zlib1g-dev, libssl-dev, comerr-dev, libkrb5-dev, libx11-dev, libfreetype6-dev, libpcre3-dev, libxpm-dev, g++ | c++-compiler, ${python:Depends}, cfortran, ${misc:Depends}
Suggests: root-system-bin, gccxml
Recommends: libroot-geom-dev, libroot-gui-dev, libroot-hist-dev, libroot-proof-dev, libroot-tree-dev, libroot-io-dev, libroot-net-dev
Provides: libroot-dev
Replaces: libroot-dev (<< 5.19.01-1)
Breaks: libroot-dev (<< 5.19.01-1)
Description: Header files for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains header files (Class declarations) for the ROOT
class libraries. Please refer the package documentation for libroot
and root-bin.
Package: libroot-static
Section: libdevel
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: libroot-core-dev
Description: Static archive of ROOT libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains static archive of the ROOT classes.
debian/skel/libroot-montecarlo-vmc-dev.install.in 0000644 0000000 0000000 00000000026 12253755630 017301 0 ustar @sysconfdir@/root/vmc
debian/skel/root-system-proofd.init.in 0000644 0000000 0000000 00000006462 12253755630 015232 0 ustar #! /bin/sh
#
# skeleton Written by Miquel van Smoorenburg .
# Modified for Debian
# by Ian Murdock .
#
# Version: @(#)skeleton 1.9 26-Feb-2001 miquels@cistron.nl
#
### BEGIN INIT INFO
# Provides: root-system-proofd
# Required-Start: $remote_fs
# Required-Stop: $remote_fs
# Should-Start: $network, root-file-server
# Should-Stop: $network, root-file-server
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Parallel ROOt Facility Server
# Description: Parallel ROOt Facility Server to let the node
# participate in a PROOF cluster, either as slave or
# master.
### END INIT INFO
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=@prefix@/bin/proofd
NAME=proofd
DESC="Parallel ROOt Facility Server"
test -x $DAEMON || exit 0
# Include root defaults if available
if [ -f @sysconfdir@/default/root-system-proofd ] ; then
. @sysconfdir@/default/root-system-proofd
fi
# Load the VERBOSE setting and other rcS variables
[ -f /etc/default/rcS ] && . /etc/default/rcS
# Define LSB log_* functions.
. /lib/lsb/init-functions
# Check if inetd is controlling proofd
if test -f /var/run/inetd.pid ; then
# Inetd is running
if grep -q ^$NAME /etc/inetd.conf > /dev/null 2>&1 ; then
# PROOFD is controlled by inetd.
ENABLE_PROOFD=no
fi
fi
# Check if xinetd is controlling proofd
if test -f /var/run/xinetd.pid ; then
# Inetd is running
if grep -q ^$NAME /etc/inetd.conf > /dev/null 2>&1 ; then
# PROOFD is controlled by xinetd.
ENABLE_PROOFD=no
fi
# old name
for i in proofd root-proofd root-system-proofd ; do
if test ! -f /etc/xinetd.d/$i ; then continue ; fi
if grep "disable[[:space:]]*= *[Nn][Oo]" /etc/xinetd.d/$i \
> /dev/null 2>&1 ; then
# PROOFD is controlled by xinetd.
ENABLE_PROOFD=no
break
fi
done
fi
# Check if we're enabled
case `echo $ENABLE_PROOFD | tr '[:upper:]' '[:lower:]'` in
yes) ;;
*) exit 0;;
esac
# function to start daemon
startit ()
{
start-stop-daemon --make-pidfile --start --quiet --pidfile \
/var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS $PROOF_DIR
ret=$?
if test $ret -ne 0 ; then
echo "Failed"
exit 1
fi
pidof $DAEMON > /var/run/$NAME.pid 2> /dev/null
return $ret
}
# function to stop daemon
stopit ()
{
start-stop-daemon --stop --oknodo --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON
ret=$?
if test $ret -ne 0 ; then
echo "Failed"
exit 1
fi
return $ret
}
# Executable code
case "$1" in
start)
[ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
startit
ret=$?
[ "$VERBOSE" != no ] && log_end_msg $ret
;;
stop)
[ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
stopit
ret=$?
[ "$VERBOSE" != no ] && log_end_msg $ret
;;
restart|force-reload)
#
# If the "reload" option is implemented, move the "force-reload"
# option to the "reload" entry above. If not, "force-reload" is
# just the same as "restart".
#
log_daemon_msg "Restarting $DESC" "$NAME"
stopit
sleep 1
startit
ret=$?
log_end_msg $ret
;;
*)
N=@sysconfdir@/init.d/root-system-$NAME
# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
exit 0
#
# EOF
#
debian/skel/libroot-hist-spectrum.control 0000644 0000000 0000000 00000001641 12253755630 016017 0 ustar Package: libroot-hist-spectrum@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Spectra analysis library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Spectrum library for ROOT.
Package: libroot-hist-spectrum-dev
Architecture: any
Section: libdevel
Depends: libroot-hist-spectrum@libvers@ (= ${binary:Version}), libroot-hist-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Spectra analysis library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Spectrum library for ROOT.
debian/skel/root-plugin-io-dcache.control 0000644 0000000 0000000 00000001134 12253755630 015626 0 ustar Package: root-plugin-io-dcache
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, libdcap1, ${misc:Depends}
Homepage: http://www.dcache.org
Description: dCache plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the dCache plug-in for ROOT, that allows
transparent access to files data via a dCache server. Given a path
which doesn't belong to the dCache managed filesystem, it falls back
to the ordinary TFile behaviour.
debian/skel/root-plugin-sql-pgsql.control 0000644 0000000 0000000 00000001120 12253755630 015730 0 ustar Package: root-plugin-sql-pgsql
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-db-client
Description: PostgreSQL client plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the PostGreSQL plug-in for ROOT. This plugin
provides a thin client (interface) to PostGreSQL servers. Using this
client, one can obtain information from a PostGreSQL database into the
ROOT environment.
debian/skel/libroot-math-mathmore.control 0000644 0000000 0000000 00000002023 12253755630 015746 0 ustar Package: libroot-math-mathmore@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GSL interface library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MathMore library for ROOT, a partial GNU
Scientific Library interface.
Package: libroot-math-mathmore-dev
Architecture: any
Section: libdevel
Depends: libroot-math-mathmore@libvers@ (= ${binary:Version}), libroot-core-dev, libgsl0-dev, ${misc:Depends}
Breaks: libroot-mathmore-dev (<< 5.19.01-1)
Replaces: libroot-mathmore-dev
Description: GSL interface library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the MathMore library for ROOT,
a partial GNU Scientific Library interface.
debian/skel/root-plugin-net-monalisa.control 0000644 0000000 0000000 00000000673 12253755630 016410 0 ustar Package: root-plugin-net-monalisa
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Homepage: http://monalisa.cacr.caltech.edu
Description: Monalisa plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Monalisa plug-in for ROOT, which provides an
interface MonaLisa Monitoring Services.
debian/skel/root-system-bin.desktop.in 0000644 0000000 0000000 00000000531 12253755630 015206 0 ustar [Desktop Entry]
Name=ROOT
GenericName=ROOT
Comment=ROOT's Object Oriented Technologies
Comment[dk]=ROOT er Object Orienteret Teknologi
Exec=@prefix@/bin/root %F
Icon=root-system-bin.png
Categories=Education;Science;Math;DataVisualization;NumericalAnalysis;Physics;
MimeType=application/x-root
Terminal=true
Type=Application
StartupNotify=false
debian/skel/root-plugin-gui-sessionviewer.control 0000644 0000000 0000000 00000000754 12253755630 017510 0 ustar Package: root-plugin-gui-sessionviewer
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GUI to browse an interactive PROOF session
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a plug-in browsing an interactive PROOF session
in ROOT.
debian/skel/libroot-graf2d-gpad.control 0000644 0000000 0000000 00000001713 12253755630 015266 0 ustar Package: libroot-graf2d-gpad@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Canvas and pad library for ROOT - run-time library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for canvas and pad manipulations.
Package: libroot-graf2d-gpad-dev
Architecture: any
Section: libdevel
Depends: libroot-graf2d-gpad@libvers@ (= ${binary:Version}), libroot-graf2d-graf-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1)
Description: Canvas and pad library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library for canvas and pad
manipulations.
debian/skel/libroot-math-genvector.control 0000644 0000000 0000000 00000002000 12253755630 016121 0 ustar Package: libroot-math-genvector@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Generalized vector library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Genvector library for ROOT. This provides
a generalized vector library.
Package: libroot-math-genvector-dev
Architecture: any
Section: libdevel
Depends: libroot-math-genvector@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1)
Description: Generalized vector library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Genvector library for ROOT,
provides a generalized vector library.
debian/skel/root-plugin-sql-oracle.control 0000644 0000000 0000000 00000001136 12253755630 016056 0 ustar Package: root-plugin-sql-oracle
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: oracle-instantclient-basic, ${shlibs:Depends}, ${misc:Depends}
Provides: root-db-client
Description: Oracle client plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Oracle plug-in for ROOT. This plugin
provides a thin client (interface) to Oracle servers. Using this
client, one can obtain information from a Oracle database into the
ROOT environment.
debian/skel/root-plugin-math-fumili.control 0000644 0000000 0000000 00000000715 12253755630 016232 0 ustar Package: root-plugin-math-fumili
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-fitter
Description: Fumili plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the fumili plug-in for ROOT. This provides an
alternative fitting algorithm for ROOT.
debian/skel/root-system-bin.preinst.in 0000644 0000000 0000000 00000001351 12253755630 015222 0 ustar #! /bin/sh
# postinst script for libroot
#
# see: dh_installdeb(1)
# summary of how this script can be called:
# * `install'
# * `install'
# * `upgrade'
# * `abort-upgrade'
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
set -e
case "$1" in
install|upgrade)
# Remove old alternatives
update-alternatives --remove cint @prefix@/bin/cint.root
update-alternatives --remove makecint @prefix@/bin/makecint.root
;;
*)
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
debian/skel/libroot-gui-ged.control 0000644 0000000 0000000 00000002015 12253755630 014525 0 ustar Package: libroot-gui-ged@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GUI element for editing various ROOT objects
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library to show a pop-up window for editing
various ROOT objects.
Package: libroot-gui-ged-dev
Architecture: any
Section: libdevel
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: libroot-gui-ged@libvers@ (= ${binary:Version}), libroot-gui-dev, libroot-tree-treeplayer-dev, ${misc:Depends}
Description: GUI element for editing various ROOT objects - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library to show a pop-up window
for editing various ROOT objects.
debian/skel/ttf-root-installer.control 0000644 0000000 0000000 00000001241 12253755630 015305 0 ustar Package: ttf-root-installer
Architecture: all
Section: contrib/fonts
Depends: ${misc:Depends}, wget (>= 1.9.1-4), xfonts-utils, debconf (>= 1.2.0)
Provides: root-ttf
Conflicts: ttf-root
Description: True type fonts for ROOT - installer package
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package will install the True Type Fonts (TTF) used by ROOT.
These fonts are provided by Microsoft. Note, that you may not
redistribute this font files. This package will download the fonts
from the ROOT FTP server, or alternatively use an already downloaded
tar-file.
debian/skel/root-system-rootd.control 0000644 0000000 0000000 00000001217 12253755630 015171 0 ustar Package: root-system-rootd
Architecture: any
Depends: root-system-common, lsb-base (>= 3.0-6), adduser, openbsd-inetd | inet-superserver, ${shlibs:Depends}, ${misc:Depends}
Recommends: root-system-bin, libroot-dev
Provides: root-file-server
Description: ROOT remote file server
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains ROOT file server. rootd is a server for ROOT
files, serving files over the Internet. Using this daemon, you can
access files on the machine from anywhere on the Internet, using a
transparent interface.
debian/skel/root-system-proofd.install.in 0000644 0000000 0000000 00000000220 12253755630 015717 0 ustar @prefix@/share/root/proof/
@prefix@/bin/proofserv
@prefix@/bin/proofserv.exe
@prefix@/bin/proofserv.bin
@prefix@/share/man/man1/proofserv.1*
debian/skel/root-plugin-geom-gdml.control 0000644 0000000 0000000 00000000777 12253755630 015676 0 ustar Package: root-plugin-geom-gdml
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, python-support, ${python:Depends}, ${misc:Depends}
Description: GDML import/export module for ROOT geometries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains an import/export module for the ROOT geometry.
debian/skel/libroot-graf2d-graf.control 0000644 0000000 0000000 00000001574 12253755630 015277 0 ustar Package: libroot-graf2d-graf@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Graf library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Graf library for ROOT.
Package: libroot-graf2d-graf-dev
Architecture: any
Section: libdevel
Depends: libroot-graf2d-graf@libvers@ (= ${binary:Version}), libroot-hist-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Graf library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Graf library for ROOT.
debian/skel/libroot-math-smatrix.control 0000644 0000000 0000000 00000001627 12253755630 015632 0 ustar Package: libroot-math-smatrix@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Sparse matrix library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Smatrix library for ROOT.
Package: libroot-math-smatrix-dev
Architecture: any
Section: libdevel
Depends: libroot-math-smatrix@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Sparse matrix library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Smatrix library for ROOT.
debian/skel/root-plugin-net-krb5.control 0000644 0000000 0000000 00000000767 12253755630 015454 0 ustar Package: root-plugin-net-krb5
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, krb5-user | heimdal-clients, ${misc:Depends}
Description: Kerberos (version 5) plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Kerberos (version 5) plug-in for ROOT, that
allows authentication and authorisation using Kerberos tokens.
debian/skel/libroot-bindings-ruby.control 0000644 0000000 0000000 00000002130 12253755630 015756 0 ustar Package: libroot-bindings-ruby@libvers@
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: root-plugin-ruby (<< 5.09.01-1)
Description: Ruby extension for ROOT - run-time library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Ruby extension for ROOT. The interface
goes both ways - that is, you can call ROOT functions from Ruby, and
invoke the Ruby interpreter from ROOT.
Package: libroot-bindings-ruby-dev
Architecture: any
Section: libdevel
Depends: libroot-bindings-ruby@libvers@ (= ${binary:Version}), libroot-core-dev, ruby1.9.1-dev | ruby-dev (>= 4.9), ${misc:Depends}
Breaks: libroot-ruby (<< 5.19.01-1)
Replaces: libroot-ruby
Description: Ruby extension for ROOT - development headers
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Ruby extension for ROOT.
debian/skel/root-plugin-graf2d-qt.control 0000644 0000000 0000000 00000000670 12253755630 015605 0 ustar Package: root-plugin-graf2d-qt
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Graf2d Qt plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Graf2d Qt plug-in for ROOT. This plugin
provides Qt interfaces of Graf2d library.
debian/skel/root-plugin-gui-fitpanel.control 0000644 0000000 0000000 00000000756 12253755630 016407 0 ustar Package: root-plugin-gui-fitpanel
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GUI element for fits plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a plug-in to show a pop-up dialog when fitting
various kinds of data.
debian/skel/libroot-montecarlo-vmc.control 0000644 0000000 0000000 00000001721 12253755630 016135 0 ustar Package: libroot-montecarlo-vmc@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: root-vmc
Description: Virtual Monte-Carlo library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Vmc library for ROOT.
Package: libroot-montecarlo-vmc-dev
Architecture: any
Section: libdevel
Depends: libroot-montecarlo-vmc@libvers@ (= ${binary:Version}), libroot-geom-dev, libroot-montecarlo-eg-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Virtual Monte-Carlo library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Vmc library for ROOT.
debian/skel/libroot-math-unuran.control 0000644 0000000 0000000 00000004654 12253755630 015456 0 ustar Package: libroot-math-unuran@libvers@
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Homepage: http://statistik.wu-wien.ac.at/unuran/
Description: Random number generator library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
It contains universal (also called automatic or black-box) algorithms
that can generate random numbers from large classes of continuous or
discrete distributions, and also from practically all standard
distributions.
.
To generate random numbers the user must supply some information
about the desired distribution, especially a C-function that computes
the density and - depending on the chosen methods - some additional
information (like the borders of the domain, the mode, the derivative
of the density ...). After a user has given this information an
init-program computes all tables and constants necessary for the
random variate generation. The sample program can then generate
variates from the desired distribution.
.
This package contains the runtime library.
Package: libroot-math-unuran-dev
Architecture: any
Section: libdevel
Depends: libroot-math-unuran@libvers@ (= ${binary:Version}), libroot-hist-dev, ${misc:Depends}
Replaces: libroot-unuran-dev
Breaks: libroot-unuran-dev (<< 5.19.01-1)
Homepage: http://statistik.wu-wien.ac.at/unuran/
Description: Random number generator library - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
It contains universal (also called automatic or black-box) algorithms
that can generate random numbers from large classes of continuous or
discrete distributions, and also from practically all standard
distributions.
.
To generate random numbers the user must supply some information
about the desired distribution, especially a C-function that computes
the density and - depending on the chosen methods - some additional
information (like the borders of the domain, the mode, the derivative
of the density ...). After a user has given this information an
init-program computes all tables and constants necessary for the
random variate generation. The sample program can then generate
variates from the desired distribution.
.
This package contains the development files
debian/skel/root-system-bin.menu.in 0000644 0000000 0000000 00000000363 12253755630 014504 0 ustar ?package(root-system-bin):needs="text" \
section="Applications/Science/Data Analysis" \
title="ROOT" \
longtitle="ROOT's Object Oriented Technologies" \
command="@prefix@/bin/root" \
icon="@prefix@/share/pixmaps/root-system-bin.xpm"
debian/skel/libroot-net-auth.control 0000644 0000000 0000000 00000001767 12253755630 014746 0 ustar Package: libroot-net-auth@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-authentication
Description: Authentication extension for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the basic authentication algorithms used by ROOT.
Package: libroot-net-auth-dev
Architecture: any
Section: libdevel
Depends: libroot-net-auth@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1), libroot-core-dev (<< 5.30.00-1)
Description: Authentication extension for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the basic authentication algorithms
used by ROOT.
debian/skel/libroot-misc-memstat.control 0000644 0000000 0000000 00000001760 12253755630 015615 0 ustar Package: libroot-misc-memstat@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Memory statistics tool for use with ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the memory statistics tool for debugging memory
leaks and such.
Package: libroot-misc-memstat-dev
Architecture: any
Section: libdevel
Depends: libroot-misc-memstat@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Memory statistics tool for use with ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the development files of memory statistics tool for
debugging memory leaks and such.
debian/skel/libroot-io.control 0000644 0000000 0000000 00000001675 12253755630 013626 0 ustar Package: libroot-io@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Input/output of ROOT objects - runtime library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package provides I/O routines for ROOT objects.
Package: libroot-io-dev
Architecture: any
Section: libdevel
Depends: libroot-io@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev, root-plugin-proof
Breaks: libroot-dev (<< 5.19.01-1), root-plugin-proof (<< 5.19.01-1)
Description: Input/output of ROOT objects - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package provides development files of I/O routines for ROOT objects.
debian/skel/libroot-bindings-python.install.in 0000644 0000000 0000000 00000000116 12253755630 016713 0 ustar @prefix@/lib/*/root@version@/ROOT.py
@prefix@/lib/*/root@version@/PyCintex.py
debian/skel/ttf-root-installer.prerm.in 0000644 0000000 0000000 00000000772 12253755630 015367 0 ustar #! /bin/sh
# prerm script for ttf-root-installer
#
# see: dh_installdeb(1)
set -e
. /usr/share/debconf/confmodule
archive=ttf_fonts.tar.gz
if test -f /var/cache/ttf-root-installer ; then
(cd @prefix@/share/root/fonts &&
rm -f `cat /var/cache/ttf-root-installer`)
rm -f @prefix@/share/doc/ttf-root-installer/LICENSE.fonts
rm -f /var/cache/ttf-root-installer
fi
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
debian/skel/root-plugin-hist-hbook.install.in 0000644 0000000 0000000 00000000154 12253755630 016455 0 ustar @prefix@/bin/h2root
@prefix@/bin/g2root
@prefix@/share/man/man1/h2root.1*
@prefix@/share/man/man1/g2root.1*
debian/skel/root-plugin-net-alien.control 0000644 0000000 0000000 00000000644 12253755630 015673 0 ustar Package: root-plugin-net-alien
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Homepage: http://alien.cern.ch
Description: AliEn plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the AliEn plug-in for ROOT, which provides an
interface to the AliEN GRID facility.
debian/skel/root-plugin-hist-spectrumpainter.control 0000644 0000000 0000000 00000000712 12253755630 020205 0 ustar Package: root-plugin-hist-spectrumpainter
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Spectrum painter plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a painter of spectra for ROOT.
debian/skel/root-plugin-gui-qt.control 0000644 0000000 0000000 00000000702 12253755630 015220 0 ustar Package: root-plugin-gui-qt
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Qt plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Qt plug-in for ROOT. This plugin
provides an abstraction over a display. Windows are created via Qt.
debian/skel/libroot-math-mlp.control 0000644 0000000 0000000 00000002231 12253755630 014723 0 ustar Package: libroot-math-mlp@libvers@
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: root-plugin-mlp (<< 5.09.01-1)
Description: Multi layer perceptron extension for ROOT - run-time libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the mlp plug-in for ROOT. This plugin provides
a Multi Layer Perceptron Neural Network package for ROOT.
Package: libroot-math-mlp-dev
Architecture: any
Section: libdevel
Depends: libroot-math-mlp@libvers@ (= ${binary:Version}), libroot-graf2d-gpad-dev, libroot-tree-treeplayer-dev, ${misc:Depends}
Conflicts: libroot-mlp-dev
Replaces: libroot-mlp-dev (<< 5.19.01-1)
Description: Multi layer perceptron extension for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the mlp plug-in for ROOT, provides
a Multi Layer Perceptron Neural Network package for ROOT.
debian/skel/root-plugin-hist-histpainter.control 0000644 0000000 0000000 00000000712 12253755630 017312 0 ustar Package: root-plugin-hist-histpainter
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Histogram painter plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a painter of histograms for ROOT.
debian/skel/libroot-proof.control 0000644 0000000 0000000 00000002141 12253755630 014331 0 ustar Package: libroot-proof@libvers@
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Suggests: root-plugin-net-netx, root-plugin-proof-xproof
Description: PROOF library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the PROOF library for ROOT. This provides a
client to use in a PROOF environment.
Package: libroot-proof-dev
Architecture: any
Section: libdevel
Depends: libroot-proof@libvers@ (= ${binary:Version}), libroot-math-mathcore-dev, libroot-tree-dev, ${misc:Depends}
Replaces: root-plugin-proof
Breaks: root-plugin-proof (<< 5.19.01-1), libroot-proof-proofplayer-dev (<= 5.34.01-1~exp1)
Description: PROOF library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the PROOF library for ROOT. This
provides a client to use in a PROOF environment.
debian/skel/root-plugin-io-sql.control 0000644 0000000 0000000 00000001005 12253755630 015213 0 ustar Package: root-plugin-io-sql
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: root-db-client | root-plugin-io-mysql
Description: SQL plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the SQL plug-in for ROOT, that allows
transparent access to files data via an SQL database, using ROOT's
TFile interface.
debian/skel/root-system-bin.postinst.in 0000644 0000000 0000000 00000001537 12253755630 015427 0 ustar #! /bin/sh
# postinst script for libroot
#
# see: dh_installdeb(1)
set -e
case "$1" in
configure)
# Alternatives update
# update-alternatives --install @prefix@/bin/cint cint \
# @prefix@/bin/cint.root 30 \
# --slave @prefix@/share/man/man1/cint.1.gz \
# cint.1.gz @prefix@/share/man/man1/cint.root.1.gz
# update-alternatives --install @prefix@/bin/makecint makecint \
# @prefix@/bin/makecint.root 30 \
# --slave @prefix@/share/man/man1/makecint.1.gz \
# makecint.1.gz @prefix@/share/man/man1/makecint.root.1.gz
;;
abort-upgrade|abort-remove|abort-deconfigure)
# Nothing to be done here
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
debian/skel/libroot-graf3d-eve.control 0000644 0000000 0000000 00000002123 12253755630 015127 0 ustar Package: libroot-graf3d-eve@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Breaks: root-plugin-gl (<= 5.19.01-1)
Replaces: root-plugin-gl (<= 5.19.01-1)
Description: Event display library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for defining event displays in ROOT.
Package: libroot-graf3d-eve-dev
Architecture: any
Section: libdevel
Depends: libroot-graf3d-eve@libvers@ (= ${binary:Version}), libroot-geom-dev, libroot-gui-ged-dev, libroot-montecarlo-eg-dev, libroot-tree-treeplayer-dev, ${misc:Depends}
Replaces: root-plugin-gl
Breaks: root-plugin-gl (<= 5.19.01-1)
Description: Event display library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library for defining event
displays in ROOT.
debian/skel/proofserv.in 0000755 0000000 0000000 00000000315 12253755630 012513 0 ustar #!/bin/sh
rootplugins=@prefix@/lib/@multiarch@/root@libvers@
rootbindir=@prefix@/bin
export LD_LIBRARY_PATH=$rootplugins${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
exec $rootbindir/proofserv.bin "$@"
# EOF
debian/skel/root-plugin-io-gfal.control 0000644 0000000 0000000 00000000702 12253755630 015330 0 ustar Package: root-plugin-io-gfal
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GFal plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the GFal plug-in for ROOT, that allows
transparent access to files data via various Grid file services.
debian/skel/root-system-bin.prerm.in 0000644 0000000 0000000 00000000546 12253755630 014670 0 ustar #! /bin/sh
# prerm script for root-cint
#
# see: dh_installdeb(1)
set -e
if [ "$1" != "upgrade" ]
then
update-alternatives --remove cint @prefix@/bin/cint.root
update-alternatives --remove makecint @prefix@/bin/makecint.root
fi
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
debian/skel/root-plugin-tree-treeviewer.control 0000644 0000000 0000000 00000000713 12253755630 017132 0 ustar Package: root-plugin-tree-treeviewer
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GUI to browse a ROOT tree
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a plug-in for browsing a ROOT tree in ROOT.
debian/skel/root-plugin-math-fftw3.control 0000644 0000000 0000000 00000000727 12253755630 016001 0 ustar Package: root-plugin-math-fftw3
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Homepage: http://fftw.org/
Description: FFTw plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Fast Fourier Transform extension for ROOT.
It uses the very fast fftw (version 3) library.
debian/skel/root-system-doc.install.in 0000644 0000000 0000000 00000000014 12253755630 015174 0 ustar @pkgdocdir@
debian/skel/root-plugin-geom-geombuilder.control 0000644 0000000 0000000 00000000713 12253755630 017237 0 ustar Package: root-plugin-geom-geombuilder
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Geometry builder plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a geometry builder plugin for ROOT.
debian/skel/libroot-html.control 0000644 0000000 0000000 00000001764 12253755630 014162 0 ustar Package: libroot-html@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Html documentation generator for ROOT - runtime library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains classes to automatically extract documentation
from marked up sources.
Package: libroot-html-dev
Architecture: any
Section: libdevel
Depends: libroot-html@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Html documentation generator for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of classes to automatically extract
documentation from marked up sources.
debian/skel/libroot-bindings-python.control 0000644 0000000 0000000 00000002327 12253755630 016326 0 ustar Package: libroot-bindings-python@libvers@
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}, python-support
Provides: ${python:Provides}
Replaces: root-plugin-python (<< 5.09.01-1)
Breaks: libroot-bindings-python-dev (<< 5.34.01-1~exp1)
Description: Python extension for ROOT - runtime libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Python plug-in for ROOT. This package
provide a Python interface to ROOT, and a ROOT interface to Python.
Package: libroot-bindings-python-dev
Architecture: any
Section: libdevel
Depends: libroot-bindings-python@libvers@ (= ${binary:Version}), libroot-core-dev, python-dev (>= 2.1), ${python:Depends}, ${misc:Depends}
Replaces: libroot-python-dev
Breaks: libroot-python-dev (<< 5.19.01-1)
Description: Python extension for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the development files of Python plug-in for ROOT.
debian/skel/root-plugin-net-netx.control 0000644 0000000 0000000 00000000671 12253755630 015561 0 ustar Package: root-plugin-net-netx
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: root-plugin-net-xrootd
Description: NetX plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the NetX plug-in for ROOT. Client for the
XRootd server.
debian/skel/libroot-proof-proofplayer.control 0000644 0000000 0000000 00000002405 12253755630 016674 0 ustar Package: libroot-proof-proofplayer@libvers@
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Suggests: root-plugin-net-netx, root-plugin-proof-xproof
Replaces: root-plugin-proof-proofplayer (<< 5.23.05-1)
Breaks: root-plugin-proof-proofplayer (<< 5.23.05-1)
Description: PROOF plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the PROOF extension for ROOT. This provides a
client to use in a PROOF environment.
Package: libroot-proof-proofplayer-dev
Section: libdevel
Architecture: any
Depends: libroot-proof-proofplayer@libvers@ (= ${binary:Version}), libroot-proof-dev, ${misc:Depends}
Suggests: root-plugin-net-netx, root-plugin-proof-xproof
Replaces: root-plugin-proof-proofplayer (<< 5.23.05-1)
Breaks: root-plugin-proof-proofplayer (<< 5.23.05-1)
Description: PROOF plugin for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the PROOF extension for ROOT. This
provides a client to use in a PROOF environment.
debian/skel/libroot-net-bonjour.control 0000644 0000000 0000000 00000002064 12253755630 015452 0 ustar Package: libroot-net-bonjour@libvers@
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Zeroconf extension for ROOT - run-time libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains classes for declaring zeroconf services, as well
as browsing for such services. This package contains the run-time
libraries
Package: libroot-net-bonjour-dev
Architecture: any
Section: libdevel
Depends: libroot-net-bonjour@libvers@ (= ${binary:Version}), libroot-core-dev, libavahi-compat-libdnssd-dev , ${misc:Depends}
Description: Zeroconf extension for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains classes for declaring zeroconf services, as well
as browsing for such services. This package contains the development
libraries and headers.
debian/skel/libroot-static.install.in 0000644 0000000 0000000 00000000213 12253755630 015064 0 ustar @prefix@/lib/*/libRoot.a
@prefix@/bin/roota
@prefix@/bin/proofserva
@prefix@/share/man/man1/roota.1*
@prefix@/share/man/man1/proofserva.1*
debian/skel/root-plugin-io-castor.control 0000644 0000000 0000000 00000001032 12253755630 015707 0 ustar Package: root-plugin-io-castor
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Homepage: http://savannah.cern.ch/projects/castor/
Description: CASTOR plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the rfio plug-in for ROOT. Using this package,
it's possible to access file managed by the SHIFT tape archive
system, as used at CERN.
debian/skel/libroot-montecarlo-eg.control 0000644 0000000 0000000 00000001663 12253755630 015750 0 ustar Package: libroot-montecarlo-eg@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Event generator library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Eg library for ROOT.
Package: libroot-montecarlo-eg-dev
Architecture: any
Section: libdevel
Depends: libroot-montecarlo-eg@libvers@ (= ${binary:Version}), libroot-graf2d-gpad-dev, libroot-graf3d-g3d-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Event generator library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Eg library for ROOT.
debian/skel/root-plugin-geom-gdml.links.in 0000644 0000000 0000000 00000000304 12253755630 015725 0 ustar @prefix@/lib/@multiarch@/root@libvers@/ROOTwriter.py /usr/share/python-support/root/ROOTwriter.py
@prefix@/lib/@multiarch@/root@libvers@/writer.py /usr/share/python-support/root/writer.py
debian/skel/libroot-net-ldap.control 0000644 0000000 0000000 00000002010 12253755630 014703 0 ustar Package: libroot-net-ldap@libvers@
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: root-plugin-ldap (<< 5.09.01-1)
Description: LDAP extension for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the LDAP plugin for ROOT. This gives you
access to LDAP directories via ROOT.
Package: libroot-net-ldap-dev
Architecture: any
Section: libdevel
Depends: libroot-net-ldap@libvers@ (= ${binary:Version}), libroot-core-dev, libldap2-dev | libldap-dev, ${misc:Depends}
Breaks: libroot-ldap-dev (<< 5.19.01-1)
Replaces: libroot-ldap-dev (<< 5.19.01-1)
Description: LDAP extension for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the development files of LDAP plugin for ROOT.
debian/skel/libroot-math-minuit.control 0000644 0000000 0000000 00000002156 12253755630 015446 0 ustar Package: libroot-math-minuit@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: root-plugin-minuit (<< 5.09.01-7)
Provides: libroot-math-minuit
Description: Minuit plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MINUIT plug-in for ROOT. This provides a
fitting algorithm for ROOT.
Package: libroot-math-minuit-dev
Architecture: any
Section: libdevel
Depends: libroot-math-minuit@libvers@ (= ${binary:Version}), libroot-graf2d-graf-dev, ${misc:Depends}
Provides: root-fitter
Replaces: root-plugin-minuit (<< 5.09.01-7), libroot-minuit-dev
Breaks: libroot-minuit-dev (<< 5.19.01-1)
Description: Minuit plugin for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the MINUIT plug-in for ROOT,
provides a fitting algorithm for ROOT.
debian/skel/libroot-math-mathcore.control 0000644 0000000 0000000 00000001644 12253755630 015744 0 ustar Package: libroot-math-mathcore@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Core mathemathics library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MathCore library for ROOT.
Package: libroot-math-mathcore-dev
Architecture: any
Section: libdevel
Depends: libroot-math-mathcore@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Core mathemathics library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the MathCore library for ROOT.
debian/skel/libroot-math-matrix.control 0000644 0000000 0000000 00000001637 12253755630 015450 0 ustar Package: libroot-math-matrix@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Matrix library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Matrix library for ROOT.
Package: libroot-math-matrix-dev
Architecture: any
Section: libdevel
Depends: libroot-math-matrix@libvers@ (= ${binary:Version}), libroot-core-dev, libroot-math-mathcore-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Matrix library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Matrix library for ROOT.
debian/skel/root-system-common.control 0000644 0000000 0000000 00000000704 12253755630 015332 0 ustar Package: root-system-common
Architecture: all
Multi-Arch: foreign
Pre-Depends: ${misc:Pre-Depends}
Depends: fonts-freefont-ttf | root-ttf, fonts-freefont-otf, fonts-opensymbol | root-ttf, ${misc:Depends}
Description: Common files for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains some common infrastructure files for ROOT.
debian/skel/libroot-bindings-ruby-dev.links.in 0000644 0000000 0000000 00000000113 12253755630 016576 0 ustar @prefix@/lib/@multiarch@/root@libvers@/libRuby.so @rubyarchdir@/libRuby.so
debian/skel/libroot-bindings-python.links.in 0000644 0000000 0000000 00000000301 12253755630 016361 0 ustar @prefix@/lib/@multiarch@/root@libvers@/libPyROOT.so /usr/lib/python@pyver@/dist-packages/libPyROOT.so
@prefix@/lib/@multiarch@/root@libvers@/ROOT.py /usr/share/python-support/root/ROOT.py
debian/skel/root-plugin-proof-xproof.control 0000644 0000000 0000000 00000001022 12253755630 016446 0 ustar Package: root-plugin-proof-xproof
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Suggests: root-plugin-net-netx
Replaces: root-proofd
Breaks: root-proofd (<= 5.13.05-4)
Description: XPROOF plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the xproof plug-in for ROOT. This provides a
client to be used in a PROOF environment.
debian/skel/root-plugin-montecarlo-pythia5.control 0000644 0000000 0000000 00000001153 12253755630 017537 0 ustar Package: root-plugin-montecarlo-pythia5
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Pythia version 5 plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Pythia version 5 plug-in for ROOT. This
package provide the ROOT user with transparent interface to the
Pythia (version 5) event generators for hadronic interactions. If the
term "hadronic" doesn't ring any bells, this package is not for you.
debian/skel/libroot-math-splot.control 0000644 0000000 0000000 00000007367 12253755630 015313 0 ustar Package: libroot-math-splot@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Splot library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
A common method used in High Energy Physics to perform measurements
is the maximum Likelihood method, exploiting discriminating variables
to disentangle signal from background. The crucial point for such an
analysis to be reliable is to use an exhaustive list of sources of
events combined with an accurate description of all the Probability
Density Functions (PDF).
.
To assess the validity of the fit, a convincing quality check is to
explore further the data sample by examining the distributions of
control variables. A control variable can be obtained for instance by
removing one of the discriminating variables before performing again
the maximum Likelihood fit: this removed variable is a control
variable. The expected distribution of this control variable, for
signal, is to be compared to the one extracted, for signal, from the
data sample. In order to be able to do so, one must be able to unfold
from the distribution of the whole data sample.
.
The SPlot method allows one to reconstruct the distributions for the
control variable, independently for each of the various sources of
events, without making use of any a priori knowledge on this
variable. The aim is thus to use the knowledge available for the
discriminating variables to infer the behaviour of the individual
sources of events with respect to the control variable.
.
SPlot is optimal if the control variable is uncorrelated with the
discriminating variables.
Package: libroot-math-splot-dev
Architecture: any
Section: libdevel
Depends: libroot-math-splot@libvers@ (= ${binary:Version}), libroot-graf2d-graf-dev, libroot-graf3d-g3d-dev, libroot-tree-treeplayer-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Splot library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
A common method used in High Energy Physics to perform measurements
is the maximum Likelihood method, exploiting discriminating variables
to disentangle signal from background. The crucial point for such an
analysis to be reliable is to use an exhaustive list of sources of
events combined with an accurate description of all the Probability
Density Functions (PDF).
.
To assess the validity of the fit, a convincing quality check is to
explore further the data sample by examining the distributions of
control variables. A control variable can be obtained for instance by
removing one of the discriminating variables before performing again
the maximum Likelihood fit: this removed variable is a control
variable. The expected distribution of this control variable, for
signal, is to be compared to the one extracted, for signal, from the
data sample. In order to be able to do so, one must be able to unfold
from the distribution of the whole data sample.
.
The SPlot method allows one to reconstruct the distributions for the
control variable, independently for each of the various sources of
events, without making use of any a priori knowledge on this
variable. The aim is thus to use the knowledge available for the
discriminating variables to infer the behaviour of the individual
sources of events with respect to the control variable.
.
SPlot is optimal if the control variable is uncorrelated with the
discriminating variables.
.
This package provides development files of Splot library for ROOT.
debian/skel/root-plugin-proof-proofplayer.control 0000644 0000000 0000000 00000002316 12253755630 017502 0 ustar Package: libroot-proof-proofplayer@libvers@
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Suggests: root-plugin-net-netx, root-plugin-proof-xproof
Replaces: root-plugin-proof-proofplayer (< 5.23.05-1)
Breaks: root-plugin-proof-proofplayer (< 5.23.05-1)
Description: PROOF plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the PROOF extension ROOT. This provides a
client to use in a PROOF environment.
Package: libroot-proof-proofplayer-dev
Architecture: any
Depends: libroot-proof-proofplayer@libvers@ (= ${binary:Version}), libroot-proof-dev, ${misc:Depends}
Suggests: root-plugin-net-netx, root-plugin-proof-xproof
Replaces: root-plugin-proof-proofplayer (< 5.23.05-1)
Breaks: root-plugin-proof-proofplayer (< 5.23.05-1)
Description: PROOF plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the PROOF callable extension for ROOT. This
provides a client to use in a PROOF environment.
debian/skel/root-plugin-tree-treeplayer.control 0000644 0000000 0000000 00000000663 12253755630 017131 0 ustar Package: root-plugin-tree-treeplayer
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Plug-in to loop over a ROOT tree
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
Plug-in to loop over a ROOT tree.
debian/skel/root-plugin-graf2d-asimage.control 0000644 0000000 0000000 00000000743 12253755630 016570 0 ustar Package: root-plugin-graf2d-asimage
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: AfterImage plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the AfterImage plug-in for ROOT, which allows
you to store output graphics in many formats, including JPEG, PNG,
SVG, etc.
debian/skel/root-plugin-geom-geompainter.control 0000644 0000000 0000000 00000000713 12253755630 017253 0 ustar Package: root-plugin-geom-geompainter
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Geometry painter plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a geometry painter plugin for ROOT.
debian/skel/root-plugin-sql-odbc.control 0000644 0000000 0000000 00000001070 12253755630 015515 0 ustar Package: root-plugin-sql-odbc
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-db-client
Homepage: http://unixodbc.org or http://iodbc.org
Description: ODBC plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the ODBC (Open DataBase Connectivity) plug-in
for ROOT, that allows transparent access to any kind of database that
supports the ODBC protocol.
debian/skel/libroot-gui.control 0000644 0000000 0000000 00000001757 12253755630 014004 0 ustar Package: libroot-gui@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Breaks: libroot (<< 5.19.01-1)
Recommends: root-plugin-gui-guibuilder
Description: GUI library for ROOT - run-time library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for defining graphical user interfaces.
Package: libroot-gui-dev
Architecture: any
Section: libdevel
Depends: libroot-gui@libvers@ (= ${binary:Version}), libroot-graf2d-gpad-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: GUI library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library for defining graphical
user interfaces.
debian/skel/libroot-core.install.in 0000644 0000000 0000000 00000000042 12253755630 014525 0 ustar @prefix@/lib/*/root@version@/cint
debian/skel/root-plugin-math-minuit2.control 0000644 0000000 0000000 00000000727 12253755630 016337 0 ustar Package: root-plugin-math-minuit2
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-fitter
Description: Minuit version 2 plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MINUIT version 2 plug-in for ROOT. This
provides an fitting algorithm for ROOT.
debian/skel/libroot-misc-minicern.control 0000644 0000000 0000000 00000001674 12253755630 015753 0 ustar Package: libroot-misc-minicern@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Small version of CERNLIB for use with ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the mini CERNLIB library for ROOT.
Package: libroot-misc-minicern-dev
Architecture: any
Section: libdevel
Depends: libroot-misc-minicern@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Small version of CERNLIB for use with ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the mini CERNLIB library for ROOT.
debian/skel/libroot-core-dev.install.in 0000644 0000000 0000000 00000001327 12253755630 015310 0 ustar @prefix@/share/aclocal/root.m4
@prefix@/share/emacs/site-lisp/root-help.el
@prefix@/include/root/compiledata.h
@prefix@/include/root/rmain.cxx
@prefix@/include/root/RConfigure.h
@prefix@/lib/*/root@version@/python
# @prefix@/lib/*/root@version@/PyCintex.py*
@prefix@/bin/genreflex
@prefix@/bin/genreflex-rootcint
@prefix@/bin/rootcint
@prefix@/bin/root-config
@prefix@/bin/memprobe
@prefix@/bin/rmkdepend
@prefix@/bin/rlibmap
@prefix@/share/man/man1/genreflex.1*
@prefix@/share/man/man1/genreflex-rootcint.1*
@prefix@/share/man/man1/rootcint.1*
@prefix@/share/man/man1/root-config.1*
@prefix@/share/man/man1/memprobe.1*
@prefix@/share/man/man1/rmkdepend.1*
@prefix@/share/man/man1/rlibmap.1*
# @sysconfdir@/root/system.rootmap
debian/skel/root-plugin-graf2d-x11.control 0000644 0000000 0000000 00000001021 12253755630 015561 0 ustar Package: root-plugin-graf2d-x11
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Provides: root-system-display
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: X window system plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the X11 plug-in for ROOT, which allows using an
X display for showing graphics.
debian/skel/root-plugin-montecarlo-pythia6.control 0000644 0000000 0000000 00000001153 12253755630 017540 0 ustar Package: root-plugin-montecarlo-pythia6
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Pythia version 6 plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Pythia version 6 plug-in for ROOT. This
package provide the ROOT user with transparent interface to the
Pythia (version 6) event generators for hadronic interactions. If the
term "hadronic" does not ring any bells, this package is not for you.
debian/skel/root-plugin-sql-maxdb.control 0000644 0000000 0000000 00000001166 12253755630 015707 0 ustar Package: root-plugin-sql-maxdb
Architecture: i386 ia64 amd64
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-db-client
Homepage: http://www.mysql.com/products/maxdb
Description: MaxDB client plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MaxDB plug-in for ROOT. This package
provide a thin client (interface) to MaxDB servers. Using this
client, one can obtain information from a MaxDB database into
the ROOT environment.
debian/skel/libroot-hist.control 0000644 0000000 0000000 00000001710 12253755630 014154 0 ustar Package: libroot-hist@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: root-plugin-hist-histpainter
Description: Histogram library for ROOT - run-time library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a library for histogramming.
Package: libroot-hist-dev
Architecture: any
Section: libdevel
Depends: libroot-hist@libvers@ (= ${binary:Version}), libroot-core-dev, libroot-math-matrix-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Histogram library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of a library for histogramming.
debian/skel/root-system-proofd.links.in 0000644 0000000 0000000 00000000246 12253755630 015401 0 ustar @prefix@/share/man/man1/proofserv.1.gz @prefix@/share/man/man1/proofserv.bin.1.gz
@prefix@/share/man/man1/proofserv.1.gz @prefix@/share/man/man1/proofserv.exe.1.gz
debian/skel/root-plugin-gui-guibuilder.control 0000644 0000000 0000000 00000000732 12253755630 016732 0 ustar Package: root-plugin-gui-guibuilder
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libroot-dev (<< 5.19.01-1)
Replaces: libroot-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: GUI editor plug-in for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains a plug-in for editing graphical user interfaces
in ROOT.
debian/skel/libroot-roofit.control 0000644 0000000 0000000 00000004402 12253755630 014510 0 ustar Package: libroot-roofit@libvers@
Architecture: any
Section: libs
Depends: ${shlibs:Depends}, libroot-math-minuit@libvers@ | root-fitter, ${misc:Depends}
Homepage: http://roofit.sourceforge.net/
Replaces: root-plugin-roofit (<< 5.09.01-1)
Description: ROOT extension for modeling expected distributions - libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The RooFit packages provide a toolkit for modeling the expected
distribution of events in a physics analysis. Models can be used to
perform likelihood fits, produce plots, and generate "toy Monte
Carlo" samples for various studies. The RooFit tools are integrated
with the object-oriented and interactive ROOT graphical environment.
.
RooFit has been developed for the BaBar collaboration, a high energy
physics experiment at the Stanford Linear Accelerator Center, and is
primarily targeted to the high-energy physicists using the ROOT
analysis environment, but the general nature of the package make it
suitable for adoption in different disciplines as well.
Package: libroot-roofit-dev
Architecture: any
Section: libdevel
Homepage: http://roofit.sourceforge.net/
Depends: libroot-roofit@libvers@ (= ${binary:Version}), libroot-graf2d-graf-dev, libroot-tree-dev, ${misc:Depends}
Description: ROOT extension for modeling expected distributions - development
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The RooFit packages provide a toolkit for modeling the expected
distribution of events in a physics analysis. Models can be used to
perform likelihood fits, produce plots, and generate "toy Monte
Carlo" samples for various studies. The RooFit tools are integrated
with the object-oriented and interactive ROOT graphical environment.
.
RooFit has been developed for the BaBar collaboration, a high energy
physics experiment at the Stanford Linear Accelerator Center, and is
primarily targeted to the high-energy physicists using the ROOT
analysis environment, but the general nature of the package make it
suitable for adoption in different disciplines as well.
.
This package provides development files of RooFit.
debian/skel/root-plugin-net-globus.control 0000644 0000000 0000000 00000000755 12253755630 016101 0 ustar Package: root-plugin-net-globus
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: globus-proxy-utils, ${shlibs:Depends}, ${misc:Depends}
Homepage: http://www.globus.org
Description: Globus plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Globus plug-in for ROOT, that allows
authentication and authorization against globus.
debian/skel/root-plugin-geom-gdml.install.in 0000644 0000000 0000000 00000000122 12253755630 016251 0 ustar @prefix@/lib/*/root@version@/ROOTwriter.py
@prefix@/lib/*/root@version@/writer.py
debian/skel/libroot-ldap.control 0000644 0000000 0000000 00000001763 12253755630 014135 0 ustar Package: libroot-ldap@libvers@
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: libroot-ldap, root-plugin-ldap
Replaces: root-plugin-ldap (<< 5.09.01-1)
Description: Ldap extension for ROOT - run-time libraries
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Ldap plug-in for ROOT. This gives you
access to Ldap directories via ROOT.
Package: libroot-ldap-dev
Architecture: any
Section: libdevel
Depends: libroot-ldap@libvers@ (= ${binary:Version}), libroot-dev, libldap2-dev | libldap-dev, ${misc:Depends}
Description: Ldap extension for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Ldap plug-in for ROOT. This gives you
access to Ldap directories via ROOT.
debian/skel/root-system-common.dirs.in 0000644 0000000 0000000 00000000022 12253755630 015211 0 ustar @sysconfdir@/root
debian/skel/root-plugin-proof.control 0000644 0000000 0000000 00000000733 12253755630 015143 0 ustar Package: root-plugin-proof
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Suggests: root-plugin-netx, root-plugin-xproof
Description: PROOF plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the proof plug-in for ROOT. This provides a
client to use in a PROOF environment.
debian/skel/root-plugin-io-xml.control 0000644 0000000 0000000 00000000677 12253755630 015232 0 ustar Package: root-plugin-io-xml
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: XML reader plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the XML reader plug-in for ROOT. This package
provide a plug-in to parse XML files with ROOT.
debian/skel/libroot-net.control 0000644 0000000 0000000 00000001551 12253755630 013776 0 ustar Package: libroot-net@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Net library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Net library for ROOT.
Package: libroot-net-dev
Architecture: any
Section: libdevel
Depends: libroot-net@libvers@ (= ${binary:Version}), libroot-math-mathcore-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Net library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Net library for ROOT.
debian/skel/root-plugin-sql-mysql.control 0000644 0000000 0000000 00000001074 12253755630 015757 0 ustar Package: root-plugin-sql-mysql
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: root-db-client
Description: MySQL client plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the MySQL plug-in for ROOT. This plugin
provides a thin client (interface) to MySQL servers. Using this
client, one can obtain information from a MySQL database into the
ROOT environment.
debian/skel/libroot-graf3d-gl.control 0000644 0000000 0000000 00000003166 12253755630 014762 0 ustar Package: libroot-graf3d-gl@libvers@
Architecture: any
Section: libs
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Breaks: root-plugin-graf3d-gl (<< 5.19.00-1)
Replaces: root-plugin-graf3d-gl (<< 5.19.00-1)
Provides: root-plugin-graf3d-gl
Description: GL plugin for ROOT - runtime library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the GL plug-in for ROOT. This plugin provides
3D rendering of volumes and shapes defined in ROOT, as well as 3D
rendering of histograms, and similar. Included is also a high quality
3D viewer for ROOT defined geometries.
Package: libroot-graf3d-gl-dev
Architecture: any
Section: libdevel
Depends: libroot-graf3d-gl@libvers@ (= ${binary:Version}), libgl2ps-dev, ${misc:Depends}
Breaks: root-plugin-graf3d-gl (<< 5.19.00-1)
Replaces: root-plugin-graf3d-gl
Description: GL plugin for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the GL plug-in for ROOT. This plugin provides
3D rendering of volumes and shapes defined in ROOT. Included is also
a high quality 3D viewer for ROOT defined geometries.
debian/skel/root-system-common.links.in 0000644 0000000 0000000 00000004765 12253755630 015412 0 ustar @prefix@/share/fonts/truetype/freefont/FreeMono.ttf @prefix@/share/root/fonts/FreeMono.ttf
@prefix@/share/fonts/truetype/freefont/FreeMonoBold.ttf @prefix@/share/root/fonts/FreeMonoBold.ttf
@prefix@/share/fonts/truetype/freefont/FreeMonoOblique.ttf @prefix@/share/root/fonts/FreeMonoOblique.ttf
@prefix@/share/fonts/truetype/freefont/FreeMonoBoldOblique.ttf @prefix@/share/root/fonts/FreeMonoBoldOblique.ttf
@prefix@/share/fonts/truetype/freefont/FreeSans.ttf @prefix@/share/root/fonts/FreeSans.ttf
@prefix@/share/fonts/truetype/freefont/FreeSansBold.ttf @prefix@/share/root/fonts/FreeSansBold.ttf
@prefix@/share/fonts/truetype/freefont/FreeSansOblique.ttf @prefix@/share/root/fonts/FreeSansOblique.ttf
@prefix@/share/fonts/truetype/freefont/FreeSansBoldOblique.ttf @prefix@/share/root/fonts/FreeSansBoldOblique.ttf
@prefix@/share/fonts/truetype/freefont/FreeSerif.ttf @prefix@/share/root/fonts/FreeSerif.ttf
@prefix@/share/fonts/truetype/freefont/FreeSerifBold.ttf @prefix@/share/root/fonts/FreeSerifBold.ttf
@prefix@/share/fonts/truetype/freefont/FreeSerifItalic.ttf @prefix@/share/root/fonts/FreeSerifItalic.ttf
@prefix@/share/fonts/truetype/freefont/FreeSerifBoldItalic.ttf @prefix@/share/root/fonts/FreeSerifBoldItalic.ttf
@prefix@/share/fonts/truetype/openoffice/opens___.ttf @prefix@/share/root/fonts/opens___.ttf
@prefix@/share/fonts/opentype/freefont/FreeMono.otf @prefix@/share/root/fonts/FreeMono.otf
@prefix@/share/fonts/opentype/freefont/FreeMonoBold.otf @prefix@/share/root/fonts/FreeMonoBold.otf
@prefix@/share/fonts/opentype/freefont/FreeMonoOblique.otf @prefix@/share/root/fonts/FreeMonoOblique.otf
@prefix@/share/fonts/opentype/freefont/FreeMonoBoldOblique.otf @prefix@/share/root/fonts/FreeMonoBoldOblique.otf
@prefix@/share/fonts/opentype/freefont/FreeSans.otf @prefix@/share/root/fonts/FreeSans.otf
@prefix@/share/fonts/opentype/freefont/FreeSansBold.otf @prefix@/share/root/fonts/FreeSansBold.otf
@prefix@/share/fonts/opentype/freefont/FreeSansOblique.otf @prefix@/share/root/fonts/FreeSansOblique.otf
@prefix@/share/fonts/opentype/freefont/FreeSansBoldOblique.otf @prefix@/share/root/fonts/FreeSansBoldOblique.otf
@prefix@/share/fonts/opentype/freefont/FreeSerif.otf @prefix@/share/root/fonts/FreeSerif.otf
@prefix@/share/fonts/opentype/freefont/FreeSerifBold.otf @prefix@/share/root/fonts/FreeSerifBold.otf
@prefix@/share/fonts/opentype/freefont/FreeSerifItalic.otf @prefix@/share/root/fonts/FreeSerifItalic.otf
@prefix@/share/fonts/opentype/freefont/FreeSerifBoldItalic.otf @prefix@/share/root/fonts/FreeSerifBoldItalic.otf
debian/skel/root-system-common.install.in 0000644 0000000 0000000 00000001035 12253755630 015723 0 ustar @sysconfdir@/root/gdb-backtrace.sh
#@sysconfdir@/root/gdb-backtrace-script
@sysconfdir@/root/hostcert.conf
@sysconfdir@/root/html
@sysconfdir@/root/pdg_table.txt
@sysconfdir@/root/plugins
@sysconfdir@/root/RadioNuclides.txt
@sysconfdir@/root/root.mimes
# @sysconfdir@/root/svninfo.txt
@sysconfdir@/root/system.rootauthrc
@sysconfdir@/root/system.rootrc
@sysconfdir@/root/system.rootdaemonrc
@sysconfdir@/root/valgrind-root.supp
@prefix@/share/man/man1/system.rootdaemonrc.1*
@prefix@/share/root/icons/
@prefix@/share/root/fonts/symbol.ttf
debian/skel/root-system-doc.control 0000644 0000000 0000000 00000000712 12253755630 014606 0 ustar Package: root-system-doc
Section: doc
Architecture: all
Suggests: root-system-bin
Depends: ${misc:Depends}
Description: Tutorial and test suite for the ROOT system
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the tutorial scripts and test suite for the ROOT
system, as well as the automatically generated HTML class documentation.
debian/skel/root-plugin-net-glite.control 0000644 0000000 0000000 00000000606 12253755630 015705 0 ustar Package: root-plugin-net-glite
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Description: Glite plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Glite plug-in for ROOT, which provides an
interface to the Glite GRID facility.
debian/skel/libroot-misc-table.control 0000644 0000000 0000000 00000001655 12253755630 015235 0 ustar Package: libroot-misc-table@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Table library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Table library for ROOT.
Package: libroot-misc-table-dev
Architecture: any
Section: libdevel
Depends: libroot-misc-table@libvers@ (= ${binary:Version}), libroot-graf3d-g3d-dev, libroot-graf2d-gpad-dev, libroot-tree-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Table library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the development files of Table library for ROOT.
debian/skel/root-system-bin.install.in 0000644 0000000 0000000 00000001037 12253755630 015205 0 ustar @prefix@/share/root/macros/Dialogs.C
@prefix@/bin/ssh2rpd
@prefix@/bin/root.exe
@prefix@/bin/roots.exe
@prefix@/bin/rootn.exe
@prefix@/bin/hadd
# @prefix@/bin/cint
# @prefix@/bin/makecint
@prefix@/share/man/man1/ssh2rpd.1*
@prefix@/share/man/man1/root.exe.1*
@prefix@/share/man/man1/rootn.exe.1*
@prefix@/share/man/man1/roots.exe.1*
@prefix@/share/man/man1/hadd.1*
# @prefix@/share/man/man1/cint.1*
# @prefix@/share/man/man1/makecint.1*
@prefix@/share/root/macros/html.C
@prefix@/share/applications
@prefix@/share/icons
@prefix@/share/pixmaps
debian/skel/libroot-graf3d-g3d.control 0000644 0000000 0000000 00000002271 12253755630 015031 0 ustar Package: libroot-graf3d-g3d@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: libroot-graf3d-gl@libvers@ (>= ${binary:Version})
Suggests: libroot-geom@libvers@
Description: Basic 3D shapes for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This library contains the basic 3D shapes and classes for ROOT. For
a more full-blown geometry library, see libroot-geom.
Package: libroot-graf3d-g3d-dev
Architecture: any
Section: libdevel
Depends: libroot-graf3d-g3d@libvers@ (= ${binary:Version}), libroot-graf2d-gpad-dev, ${misc:Depends}
Recommends: libroot-graf3d-gl-dev
Replaces: libroot-dev
Breaks: libroot-dev (<= 5.19.01-1)
Suggests: libroot-geom-dev
Description: Basic 3D shapes for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This library contains development files of the basic 3D shapes and classes
for ROOT. For a more full-blown geometry library, see libroot-geom-dev.
debian/skel/libroot-math-physics.control 0000644 0000000 0000000 00000001622 12253755630 015620 0 ustar Package: libroot-math-physics@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Physics library for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Physics library for ROOT.
Package: libroot-math-physics-dev
Architecture: any
Section: libdevel
Depends: libroot-math-physics@libvers@ (= ${binary:Version}), libroot-math-matrix-dev, ${misc:Depends}
Replaces: libroot-dev
Breaks: libroot-dev (<< 5.19.01-1)
Description: Physics library for ROOT - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains development files of the Physics library for ROOT.
debian/skel/libroot-io-xmlparser.control 0000644 0000000 0000000 00000001741 12253755630 015633 0 ustar Package: libroot-io-xmlparser@libvers@
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: XML parser of ROOT objects - runtime library
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package provides XML parser routines for ROOT objects.
Package: libroot-io-xmlparser-dev
Architecture: any
Section: libdevel
Depends: libroot-io-xmlparser@libvers@ (= ${binary:Version}), libroot-core-dev, ${misc:Depends}
Replaces: libroot-dev, root-plugin-xml
Breaks: libroot-dev (<< 5.19.01-1), root-plugin-xml (<< 5.19.01-1)
Description: XML parser of ROOT objects - development files
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package provides development files of XML parser routines for ROOT
objects.
debian/skel/root-system-rootd.init.in 0000644 0000000 0000000 00000010452 12253755630 015062 0 ustar #! /bin/bash
#
# skeleton Written by Miquel van Smoorenburg .
# Modified for Debian
# by Ian Murdock .
#
# Version: @(#)skeleton 1.9 26-Feb-2001 miquels@cistron.nl
#
### BEGIN INIT INFO
# Provides: root-system-rootd
# Required-Start: $remote_fs
# Required-Stop: $remote_fs
# Should-Start: $network
# Should-Stop: $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: ROOT file server
# Description: Server of ROOT files via special ROOT protocol
### END INIT INFO
#
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=@prefix@/bin/rootd
NAME=rootd
DESC="ROOT file server"
USER=rootd
test -x $DAEMON || exit 0
# Include root defaults if available
if [ -f @sysconfdir@/default/root-system-rootd ] ; then
. @sysconfdir@/default/root-system-rootd
fi
# Load the VERBOSE setting and other rcS variables
[ -f /etc/default/rcS ] && . /etc/default/rcS
# Define LSB log_* functions.
. /lib/lsb/init-functions
# Check options from system settings
# User to execute rootd as
test ! "x$ROOTD_USER" = "x" && USER=$ROOTD_USER
# Port to listen to
test ! "x$ROOTD_PORT" = "x" && DAEMON_OPTS="$DAEMON_OPTS -p $ROOTD_PORT"
# SSH port
test ! "x$SSH_PORT" = "x" && DAEMON_OPTS="$DAEMON_OPTS -s $SSH_PORT"
# TCP window size
test ! "x$ROOTD_WINDOW_SIZE" = "x" && DAEMON_OPTS="$DAEMON_OPTS -b $ROOTD_WINDOW_SIZE"
# Debug level
test ! "x$ROOTD_DEBUG" = "x" && DAEMON_OPTS="$DAEMON_OPTS -d $ROOTD_DEBUG"
# Access rules file
test ! "x$ROOTD_ACCESS_RULES" = "x" && DAEMON_OPTS="$DAEMON_OPTS -D $ROOTD_ACCESS_RULES"
# Run in foreground (shouldn't be done in init script)
test "x$ROOTD_FOREGROUND" = "xyes" && DAEMON_OPTS="$DAEMON_OPTS -f"
# No client authentication (security issue)
test "x$ROOTD_NO_AUTH" = "xyes" && DAEMON_OPTS="$DAEMON_OPTS -noauth"
# files can only be opened read-only
test "x$ROOTD_READ_ONLY" = "xyes" && DAEMON_OPTS="$DAEMON_OPTS -r"
# Temporary directory
test ! "x$ROOTD_TMP" = "x" && DAEMON_OPTS="$DAEMON_OPTS -T $ROOTD_TMP"
# Require passwords.
test "x$ROOTD_REQUIRE_PASSWD" = "xyes" && DAEMON_OPTS="$DAEMON_OPTS -w"
# Check if rootd is under inetds control
if test -f /var/run/inetd.pid ; then
# Inetd is running
if grep -q ^$NAME /etc/inetd.conf > /dev/null 2>&1 ; then
# ROOTD is controlled by inetd.
ENABLE_ROOTD=no
fi
fi
# Check if rootd is under xinetds control
if test -f /var/run/xinetd.pid ; then
# Inetd is running
if grep -q ^$NAME /etc/inetd.conf > /dev/null 2>&1 ; then
# ROOTD is controlled by xinetd.
ENABLE_ROOTD=no
fi
# old name
for i in rootd root-rootd root-system-rootd ; do
if test ! -f /etc/xinetd.d/$i ; then continue ; fi
if test grep "disable[[:space:]]*= *[Nn][Oo]" /etc/xinetd.d/$i \
> /dev/null 2>&1 ; then
# ROOTD is controlled by xinetd.
ENABLE_ROOTD=no
break
fi
done
fi
# Check if we're enabled at all
case `echo $ENABLE_ROOTD | tr '[:upper:]' '[:lower:]'` in
yes) ;;
*) exit 0;;
esac
# Function to start the daemon
startit()
{
o=`start-stop-daemon --chuid $USER --start --quiet --pidfile \
/var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS`
ret=$?
test $ret -ne 0 && return 1
eval $o
# echo " (pid: $ROOTD_PID) "
echo $ROOTD_PID > /var/run/$NAME.pid
return $ret
}
# Function to stop the daemon
stopit()
{
start-stop-daemon --user $USER --stop --oknodo --quiet --pidfile \
/var/run/$NAME.pid --exec $DAEMON
ret=$?
test $ret -ne 0 && return 1
rm -f /var/run/$NAME.pid
return $ret
}
# Main code
case "$1" in
start)
[ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
startit
ret=$?
[ "$VERBOSE" != no ] && log_end_msg $ret
;;
stop)
[ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
stopit
ret=$?
[ "$VERBOSE" != no ] && log_end_msg $ret
;;
restart|force-reload)
#
# If the "reload" option is implemented, move the "force-reload"
# option to the "reload" entry above. If not, "force-reload" is
# just the same as "restart".
#
log_daemon_msg "Restarting $DESC" "$NAME"
stopit
sleep 1
startit
ret=$?
log_end_msg $ret
;;
*)
N=@sysconfdir@/init.d/root-system-$NAME
# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
exit 0
#
# EOF
#
debian/skel/root-plugin-montecarlo-pythia8.control 0000644 0000000 0000000 00000001153 12253755630 017542 0 ustar Package: root-plugin-montecarlo-pythia8
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Pythia version 8 plugin for ROOT
The ROOT system provides a set of OO frameworks with all the
functionality needed to handle and analyze large amounts of data
efficiently.
.
This package contains the Pythia version 8 plug-in for ROOT. This
package provide the ROOT user with transparent interface to the
Pythia (version 8) event generators for hadronic interactions. If the
term "hadronic" does not ring any bells, this package is not for you.
debian/skel/ttf-root-installer.postinst.in 0000644 0000000 0000000 00000003526 12253755630 016125 0 ustar #!/bin/sh
set -e
. /usr/share/debconf/confmodule
archive=ttf_fonts.tar.gz
db_get ttf-root-installer/dldir
LOCALCOPY=$RET
db_get ttf-root-installer/savedir
SAVEDIR=${RET}
case "$1" in
configure)
if test ! -f /var/cache/ttf-root-installer && \
test "x`echo $LOCALCOPY | tr [:upper:] [:lower:]`" != "xnone" ; then
savdir=`pwd`
tmpdir=`mktemp -d`
cd $tmpdir
if test -z $LOCALCOPY ; then
# We need to download the tar-ball
wget --continue --tries=1 --dns-timeout=20 \
--connect-timeout=20 --read-timeout=300 -q \
--directory-prefix . -c \
http://root.cern.ch/download/ttf/$archive
else
# Have the tar-ball already
cp $LOCALCOPY/$archive .
fi
if test ! -f $archive ; then
exit 1
fi
# Unpack
tar -tzf $archive | grep "\.ttf$" | sed 's,ttf/fonts/,,' \
| grep -v "symbol.ttf" > /var/cache/ttf-root-installer
tar -xzf $archive
mkdir -p @prefix@/share/root/fonts/
cd ttf/fonts/
for i in *.ttf ; do
case $i in
*symbol.ttf) ;; # ignore this one
*)
if grep $i /var/lib/ttf-root-installer/sha256sums | sha256sum -c ; then
cp -a $i @prefix@/share/root/fonts/
else
echo "Checksum mismatch for $i, aborting"
exit 1
fi
;;
esac
done
cp LICENSE \
@prefix@/share/doc/ttf-root-installer/LICENSE.fonts
cd ../../
rm -rf ttf
if test "x$SAVEDIR" != "x" ; then
mkdir -p $SAVEDIR
cp -a $archive $SAVEDIR/$archive
fi
rm -f $archive
cd $savdir
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
# Nothing to be done here
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
debian/root-system-doc.docs 0000644 0000000 0000000 00000000227 12253755630 013121 0 ustar README/BUILDSYSTEM
README/CREDITS
README/README
README/README.ALIEN
README/README.AUTH
README/README.GLOBUS
README/README.PROOF
README/README.SELECTOR
debian/script/ 0000755 0000000 0000000 00000000000 12253755630 010502 5 ustar debian/script/makelist 0000755 0000000 0000000 00000007715 12253755630 012253 0 ustar #!/usr/bin/make -f
#
#
# Normal variables derived from passed variables
LPATH := $(PREFIX)/lib/$(DEB_HOST_MULTIARCH)
IPATH := $(PREFIX)/include/root
BPATH := $(PREFIX)/bin
MPATH := $(PREFIX)/share/man/man1
SOEXT := so
MAJOR := $(shell echo $(VERSION) | tr '.' ' ' | cut -f1 -d' ')
MINOR := $(shell echo $(VERSION) | tr '.' ' ' | cut -f2 -d' ')
SOVER := $(MAJOR).$(MINOR)
RLIBD := $(PREFIX)/lib/$(DEB_HOST_MULTIARCH)
# Put all library files into version-specific lists
ifneq ($(LIB),$(DEV))
SLIB := $(LIB)$(SOVER)
else
SLIB := $(LIB)
endif
ifneq ($(LIB),$(BIN))
SBIN := $(BIN)
else
SBIN := $(SLIB)
endif
# Include general and directory specific make rules
ifneq ($(DIRS),)
include config/Makefile.config
include config/Makefile.$(ARCH)
include $(foreach i, $(DIRS), $(i)/Module.mk)
endif # ! $(DIRS) =
ifneq ($(filter cint/cint,$(DIRS)),)
include cint/ROOT/cintdlls.mk
DICTLIBS += $(patsubst lib/%, $(RLIBD)/%, $(filter lib/%, $(CINTDICTDLLS)))
ALLMAPS = $(patsubst lib/%, $(RLIBD)/%, $(filter lib/%, $(CINTDICTMAPS)))
endif
# Default target and message
all: hello liblist devlist binlist
hello:
@echo "Making list for '$(DIRS)' ($(SLIB),$(DEV),$(SBIN))"
# @echo "ALLLIBS=$(ALLLIBS) ALLMAPS=$(ALLMAPS) PKGLIBS=$(PKGLIBS)"
# If we have a development package, get the list of headers.
ifneq ($(DEV),)
PKGHDRS := $(shell echo $(ALLHDRS) | sed -e 's,[^ ]*inc/,include/,g' -e 's,include/,usr/include/root/,g')
endif
# If we have a Library, then we get the list of libraries
ifneq ($(LIB),)
# if the development package and the library package is not the same,
# we need to append the soversion to the library directory
ifneq ($(LIB),$(DEV))
PKGLIBS := $(ALLLIBS:$(RLIBD)/%=$(RLIBD)/root$(SOVER)/%.$(SOVER)) \
$(ALLLIBS:$(RLIBD)/%=$(RLIBD)/root$(SOVER)/%.$(MAJOR)) \
$(ALLLIBS:$(RLIBD)/%=$(RLIBD)/root$(SOVER)/%) \
$(ALLLIBS:$(RLIBD)/%=$(RLIBD)/%.$(SOVER)) \
$(DICTLIBS:$(RLIBD)/%=$(RLIBD)/root$(SOVER)/%.$(SOVER)) \
$(DICTLIBS:$(RLIBD)/%=$(RLIBD)/root$(SOVER)/%.$(MAJOR)) \
$(DICTLIBS:$(RLIBD)/%=$(RLIBD)/root$(SOVER)/%)
DEVLIBS := $(ALLLIBS)
else # ! $(LIB) = $(DEV)
# If the development and library package is the same (plugins), then we need
# only add the soversion to the library directory
PKGLIBS := $(ALLLIBS:$(RLIBD)/%=$(RLIBD)/root$(SOVER)/%.$(SOVER)) \
$(ALLLIBS:$(RLIBD)/%=$(RLIBD)/root$(SOVER)/%.$(MAJOR)) \
$(ALLLIBS:$(RLIBD)/%=$(RLIBD)/root$(SOVER)/%) \
$(ALLLIBS:$(RLIBD)/%=$(RLIBD)/%.$(SOVER))
endif # $(LIB) = $(DEV)
endif # $(LIB)
ifneq ($(NOMAP),1)
#NOXRD := $(filter-out $(LIBPATH)/libXrd%, $(ALLLIBS))
#PKGLIBS := $(PKGLIBS) $(NOXRD:$(RLIBD)/%.so=$(RLIBD)/root$(SOVER)/%.rootmap)
PKGLIBS := $(PKGLIBS) $(ALLMAPS:$(RLIBD)/%=$(RLIBD)/root$(SOVER)/%)
endif
# The rule to make library lists
liblist:
ifneq ($(LIB),)
@for f in $(PKGLIBS) ; do echo $$f ; done >> $(OUT)/$(SLIB).install
ifneq ($(LIB), $(DEV))
@(cd $(BUILD)/$(RLIBD) && \
for i in $(ALLLIBS) ; do \
b=`basename $$i` ; \
ln -fs root$(SOVER)/$$b . ; \
ln -fs root$(SOVER)/$$b.$(SOVER) . ; done)
else # $(LIB) = $(DEV)
@(cd $(BUILD)/$(RLIBD) && \
for i in $(ALLLIBS) ; do \
b=`basename $$i` ; \
ln -fs root$(SOVER)/$$b.$(SOVER) . ; done)
endif # $(LIB) = $(DEV)
endif # $(LIB)
# If we have a development library, get the list of headers for the package.
ifneq ($(DEV),)
PKGHDRS := $(ALLHDRS:include/%=$(IPATH)/%) $(DEVLIBS)
endif # $(DEV)
# Rule to make development package list
devlist:
ifneq ($(DEV),)
ifneq ($(DEV),$(LIB))
@for f in $(filter-out %.cw %.pri, $(PKGHDRS)) ; \
do echo $$f ; done >> $(OUT)/$(DEV).install
endif
endif
# If we have a binary package, then get list of programs and man pages
ifneq ($(BIN),)
PKGEXECS= $(ALLEXECS:bin/%=$(BPATH)/%)
PKGMANS = $(ALLEXECS:bin/%=$(MPATH)/%.1)
endif # $(BIN)
# Rule to make program package list
binlist:
ifneq ($(BIN),)
@for f in $(PKGEXECS) ; do echo $$f ; done >> $(OUT)/$(SBIN).install
@for f in $(PKGMANS) ; do echo $$f\* ; done >> $(OUT)/$(SBIN).install
endif
#
# EOF
#
debian/script/makecintdll.sh 0000755 0000000 0000000 00000005455 12253755630 013341 0 ustar #! /bin/sh
# Script to create auxiliary CINT dll's.
# Called by main Makefile.
#
# Author: Fons Rademakers, 27/7/2000
PLATFORM=$1 ; shift
if [ $PLATFORM != "clean" ]; then
TYPE=$1 ; shift
DLLNAME=$1 ; shift
DLLDIRNAME=$1 ; shift
DLLHEADERS=$1 ; shift
CINT=$1 ; shift
ROOTCINT=$1 ; shift
MAKELIB=$1 ; shift
CXX=$1 ; shift
CC=$1 ; shift
LD=$1 ; shift
OPT=$1 ; shift
CINTCXXFLAGS=$1 ; shift
CINTCFLAGS=$1 ; shift
LDFLAGS=$1 ; shift
SOFLAGS=$1 ; shift
SOEXT=$1 ; shift
COMPILER=$1 ; shift
CXXOUT=$1 ; shift
else
DLLNAME=$1 ; shift
fi
if [ $PLATFORM = "macosx" ]; then
macosx_minor=`sw_vers | sed -n 's/ProductVersion://p' | cut -d . -f 2`
AUXCXXFLAGS=-fno-inline
fi
if [ $PLATFORM = "win32" ]; then
EXESUF=.exe
CC=`pwd`/$CC
fi
if [ "x$COMPILER" = "xgnu" ]; then
GCC_MAJOR=`$CXX -dumpversion 2>&1 | cut -d'.' -f1`
GCC_MINOR=`$CXX -dumpversion 2>&1 | cut -d'.' -f2`
fi
if [ "x$TYPE" = "xC" ] ; then
CINT_TYPE=-c-2
CINT_EXT=c
COMP=$CC
COMPFLAGS=$CINTCFLAGS
else
CINT_TYPE=-c-1
CINT_EXT=cxx
COMP=$CXX
COMPFLAGS=$CINTCXXFLAGS
fi
# Filter out the explicit link flag
if [ "x`echo $MAKELIB | grep build/unix/makelib.sh`" != "x" ]; then
MAKELIB=`echo $MAKELIB | sed -e "s/ -x//g"`
fi
CINTDIRL=cint/cint/lib
CINTDIRI=cint/cint/include
CINTDIRS=cint/cint/stl
clean() {
rm -f $CINTDIRI/$DLLNAME.dll $CINTDIRI/$DLLNAME.so.*
}
execute() {
echo $1
$1
}
rename() {
if [ "$SOEXT" != "dll" ]; then
if [ "$PLATFORM" = "macosx" ]; then
if [ $macosx_minor -ge 4 ]; then
mv $1.$SOEXT $1.dll
rm -f $1.so
else
mv $1.so $1.dll
rm -f $1.$SOEXT
fi
else
mv $1.$SOEXT $1.dll
fi
fi
}
macrename() {
if [ "$PLATFORM" = "macosx" ]; then
if [ $macosx_minor -ge 4 ]; then
mv -f $1.$SOEXT $1.so
else
rm -f $1.$SOEXT
fi
fi;
}
cpdllwin32() {
mv -f bin/$DLLNAME.dll $CINTDIRI
}
##### first delete old dll's #####
clean
if [ $PLATFORM = "clean" ]; then
exit 0;
fi
##### $DLLNAME.dll & stdcxxfunc.dll #####
DLLDIR=$CINTDIRL/$DLLDIRNAME
DLLHEADER=$DLLDIR/G__$DLLNAME.h
DLLSOURCE=$DLLDIR/G__$DLLNAME.$CINT_EXT
DLLOBJECT=$DLLDIR/G__$DLLNAME.o
execute "$CINT -K -w1 -z$DLLNAME -n$DLLSOURCE -D__MAKECINT__ \
-DG__MAKECINT $CINT_TYPE -Z0 -I$DLLDIR $DLLHEADERS"
execute "$COMP $OPT $COMPFLAGS -I. $CXXOUT$DLLOBJECT -I$DLLDIR \
-c $DLLSOURCE"
$MAKELIB $PLATFORM $LD "$LDFLAGS" "$SOFLAGS" $DLLNAME.$SOEXT \
$CINTDIRI/$DLLNAME.$SOEXT "$DLLOBJECT"
rename $CINTDIRI/$DLLNAME
rm -f $DLLSOURCE $DLLOBJECT $DLLHEADER
if [ $PLATFORM = "win32" ]; then
cpdllwin32
fi
exit 0
debian/script/makelists.sh 0000755 0000000 0000000 00000016056 12253755630 013045 0 ustar #!/bin/sh
outdir=$1 ; shift
build=$1 ; shift
version=$1 ; shift
prefix=$1 ; shift
sysconfdir=$1 ; shift
pkgdocdir=$1 ; shift
sovers=`echo $version | sed 's/\([[:digit:]]*\.[[:digit:]]*\)\..*/\1/'`
rm -f $outdir/*.install
# install file lists that need no substitutions
for i in debian/skel/*.install ; do
if test ! -f $i ; then continue ; fi
cp $i $outdir
done
set_lib_names()
{
base=$1 ; shift
sub=$1 ; shift
lib=libroot-${base}
if test "x$sub" != "x" ; then lib=${lib}-${sub} ; fi
dev=${lib}-dev
if test "x$1" != "x" ; then
bin=$1
else
bin=${lib}
fi
}
set_plugin_names()
{
base=$1 ; shift
sub=$1 ; shift
lib=root-plugin-${base}-${sub}
dev=${lib}
if test "x$1" != "x" ; then
bin=$1
else
bin=${lib}
fi
}
#
# Loop over the directories, and update the file lists based on the
# information in Module.mk files in each subdirectory
#
l=`find . -name "Module.mk" -print0 | xargs -L 1 -0 dirname | sort -u | sed 's,./,,' | grep -v macosx`
for d in $l ; do
#
# If there's no Module.mk file in the currently inspected
# directory, continue
#
if test ! -d $d || test ! -f $d/Module.mk ; then continue ; fi
#
# Reset variables
#
pkg=
lib=
bin=
extra=
base=`dirname $d`
sub=`basename $d`
#
# Deal with some special directories. For each directory, check
# if it's libraries and such should go into some special package.
#
case $d in
bindings/pyroot)set_lib_names $base python ;;
bindings/*) set_lib_names $base $sub ;;
build) continue ;;
core/winnt) continue ;;
core/newdelete) set_lib_names $base "" root-system-bin
extra="ALLMAPS=${prefix}/lib/$DEB_HOST_MULTIARCH/libCore.rootmap ";;
core/rint) set_lib_names $base "" root-system-bin ;;
core/thread) set_lib_names $base "" root-system-bin ;;
core/*) set_lib_names $base "" root-system-bin
extra="ALLMAPS=${prefix}/lib/$DEB_HOST_MULTIARCH/libCore.rootmap "
extra="$extra ALLLIBS=${prefix}/lib/$DEB_HOST_MULTIARCH/libCore.so" ;;
cint/cint) set_lib_names core "" root-system-bin
extra="ALLLIBS=${prefix}/lib/$DEB_HOST_MULTIARCH/libCint.so" ;;
# extra="NOMAP=1 ALLLIBS=${prefix}/lib/$DEB_HOST_MULTIARCH/libCint.so"
cint/cintex) case `uname -m` in
i*86 | x86_64)
set_lib_names core "" root-system-bin ;;
*)
continue ;;
esac ;;
cint/reflex) set_lib_names core "" libroot-core-dev
extra="REFLEXLIB=${prefix}/lib/$DEB_HOST_MULTIARCH/libReflex.so" ;;
cint/cling) continue ;;
cint/*) set_lib_names core "" root-system-bin ;;
geom/geom) set_lib_names $base "" ;;
geom/*) set_plugin_names $base $sub ;;
graf2d/gpad) set_lib_names $base $sub ;;
graf2d/graf) set_lib_names $base $sub ;;
graf2d/postscript) set_lib_names $base $sub ;;
graf2d/gviz) set_plugin_names $base $sub ;;
graf2d/asimage) set_plugin_names $base $sub ;;
graf2d/freetype)continue;;
graf2d/win32gdk)continue;;
graf2d/x11*) set_plugin_names $base x11 ;;
graf2d/*) set_plugin_names $base $sub ;;
graf3d/ftgl) continue;;
graf3d/gl) set_lib_names $base $sub ;;
graf3d/g3d) set_lib_names $base $sub ;;
graf3d/eve) set_lib_names $base $sub ;;
graf3d/*) set_plugin_names $base $sub ;;
gui/gui) set_lib_names $base "" ;;
gui/guihtml) set_lib_names $base "" ;;
gui/ged) set_lib_names $base $sub ;;
gui/qt*) set_plugin_names $base qt ;;
gui/*) set_plugin_names $base $sub ;;
hist/hist) set_lib_names $base "" ;;
hist/spectrum) set_lib_names $base $sub ;;
hist/*) set_plugin_names $base $sub ;;
html) set_lib_names $sub "" ;;
io/io) set_lib_names $base "" ;;
io/xmlparser) set_lib_names $base $sub ;;
io/rfio) continue;;
io/*) set_plugin_names $base $sub ;;
main) continue;;
math/fftw) set_plugin_names $base ${sub}3 ;;
math/fumili) set_plugin_names $base $sub ;;
math/minuit2) set_plugin_names $base $sub ;;
math/*) set_lib_names $base $sub ;;
misc/*) set_lib_names $base $sub ;;
montecarlo/pythia*)
set_plugin_names $base $sub ;;
montecarlo/*) set_lib_names $base $sub ;;
net/auth) set_lib_names $base $sub ;;
net/net) set_lib_names $base "" ;;
net/ldap) set_lib_names $base $sub ;;
net/rootd) lib=root-system-$sub ; dev=$lib ; bin=$lib ;;
net/globusauth) set_plugin_names $base globus ;;
net/bonjour) set_lib_names $base $sub ;;
net/krb5auth) set_plugin_names $base krb5 ;;
net/srputils) set_plugin_names $base srp ;;
net/rpdutils) set_lib_names $base auth root-system-bin ;;
net/*) set_plugin_names $base $sub ;;
proof/proofd) set_plugin_names $base xproof root-system-${base}d ;;
proof/proofx) set_plugin_names $base xproof ;;
proof/clarens) set_lib_names $base $sub ;;
proof/proof) set_lib_names $base "" ;;
proof/proofplayer) set_lib_names $base $sub ;;
proof/*) set_plugin_names $base $sub ;;
roofit/*) set_lib_names $base "" ;;
rootx) set_lib_names core "" root-system-bin ;;
sql/sapdb) set_plugin_names $base maxdb ;;
sql/*) set_plugin_names $base $sub ;;
tmva) set_lib_names $sub "" ;;
tree/tree) set_lib_names $base "" ;;
tree/treeplayer)set_lib_names $base $sub ;;
tree/*) set_plugin_names $base $sub ;;
*) set_plugin_names $base $sub ;;
esac
#
# Update package list based on the Module.mk in the currenly
# investigated directory
#
# echo "Making list for $d (dev=$dev lib=$lib bin=$bin extra=$extra)"
# echo "Making list for $d"
./debian/script/makelist DIRS=$d DEV=$dev LIB=$lib BIN=$bin \
VERSION=$version PREFIX=$prefix OUT=$outdir BUILD=$build $extra \
--no-print-directory all
done
#
# For each skeleton file, replace occurances of @prefix@,
# @sysconfdir@, and @pkgdocdir@ with the appropriate values
#
for i in debian/skel/*.install.in ; do
if test ! -f $i ; then continue ; fi
b=`basename $i .install.in`
case $b in
lib*static*) b=$outdir/${b} ;;
lib*-dev) b=$outdir/${b} ;;
lib*) b=$outdir/${b}${sovers} ;;
*) b=$outdir/${b} ;;
esac
grep -v "^#" $i | \
sed -e "s|@prefix@|${prefix}|g" \
-e "s|@sysconfdir@|${sysconfdir}|g" \
-e "s|@pkgdocdir@|${pkgdocdir}|g" \
-e "s|@version@|${sovers}|g" \
> ${b}.tmp
if test -f ${b}.install ; then
cat ${b}.tmp ${b}.install > ${b}.tmp2
mv ${b}.tmp2 ${b}.install
else
cp ${b}.tmp ${b}.install
fi
rm -f ${b}.tmp ${b}.tmp2
done
for i in $outdir/*.install ; do
if test ! -f $i ; then continue ; fi
sort -u ${i} > ${i}.tmp
mv ${i}.tmp ${i}
done
#
# EOF
#
debian/script/makebuilddepend.sh 0000755 0000000 0000000 00000025725 12253755630 014171 0 ustar #!/bin/sh
#
need_krb5=0
need_qt=0
if test "x$1" = "xrpm" ; then
shift
for i in $* ; do
case $i in
*-dev) ;;
libroot-bindings-python)
echo "BuildRequires: python-devel >= 2.1" ;;
libroot-bindings-ruby)
echo "BuildRequires: ruby-devel"
echo "BuildRequires: ruby" ;;
libroot-core) ;;
libroot-geom) ;;
libroot-graf2d-gpad) ;;
libroot-graf2d-graf) ;;
libroot-graf2d-postscript) ;;
libroot-graf3d-eve) ;;
libroot-graf3d-g3d) ;;
libroot-graf3d-gl)
echo "BuildRequires: mesa-libGLU-devel" ;;
libroot-gui) ;;
libroot-gui-ged) ;;
libroot-hist) ;;
libroot-hist-spectrum) ;;
libroot-io) ;;
libroot-io-xmlparser)
echo "BuildRequires: libxml2-devel" ;;
libroot-math-physics) ;;
libroot-math-foam) ;;
libroot-math-genvector) ;;
libroot-math-mathcore) ;;
libroot-math-mathmore)
echo "BuildRequires: gsl-devel" ;;
libroot-math-matrix) ;;
libroot-math-minuit) ;;
libroot-math-mlp) ;;
libroot-math-quadp) ;;
libroot-math-smatrix) ;;
libroot-math-splot) ;;
libroot-math-unuran) ;;
libroot-misc-table) ;;
libroot-misc-memstat) ;;
libroot-misc-minicern)
echo "BuildRequires: gcc-gfortran" ;;
libroot-montecarlo-eg) ;;
libroot-montecarlo-vmc) ;;
libroot-net-ldap)
echo "BuildRequires: openldap-devel" ;;
libroot-net-bonjour) ;;
libroot-proof) ;;
libroot-proof-clarens)
echo "BuildRequires: xmlrpc-c-devel" ;;
libroot-proof-proofplayer) ;;
libroot-roofit) ;;
libroot-static) ;;
libroot-tmva) ;;
libroot-tree) ;;
libroot-tree-treeplayer) ;;
libroot-net) ;;
libroot-net-auth) ;;
root-plugin-geom-geompainter) ;;
root-plugin-geom-geombuilder) ;;
root-plugin-geom-gdml) ;;
root-plugin-graf2d-x11) ;;
# Build dependency on AfterStep-devel temporarily commented out
# until such a time when ROOT can use the normal libAfterImage.
# Input the build dependencies of the libafterimage-dev package
# *asimage) echo -n ", AfterStep-devel" ;;
root-plugin-graf2d-asimage)
echo "BuildRequires: freetype-devel"
echo "BuildRequires: zlib-devel"
echo "BuildRequires: libtiff-devel"
echo "BuildRequires: libpng-devel"
echo "BuildRequires: libungif-devel"
echo "BuildRequires: libjpeg-devel"
echo "BuildRequires: libICE-devel"
echo "BuildRequires: libSM-devel"
echo "BuildRequires: gawk" ;;
root-plugin-graf2d-qt) need_qt=1 ;;
root-plugin-graf2d-gviz) ;;
root-plugin-graf3d-x3d) ;;
root-plugin-gui-fitpanel) ;;
root-plugin-gui-guibuilder) ;;
root-plugin-gui-qt) need_qt=1 ;;
root-plugin-gui-sessionviewer) ;;
root-plugin-hist-hbook) ;;
root-plugin-hist-histpainter) ;;
root-plugin-hist-spectrumpainter) ;;
root-plugin-io-castor)
echo "BuildRequires: castor-devel" ;;
root-plugin-io-chirp) ;;
root-plugin-io-dcache)
echo "BuildRequires: d-cache-client" ;;
root-plugin-io-sql) ;;
root-plugin-io-xml) ;;
root-plugin-math-fftw3)
echo "BuildRequires: fftw3-devel" ;;
root-plugin-math-fumili) ;;
root-plugin-math-mathmore) ;;
root-plugin-math-minuit2) ;;
root-plugin-math-mlp) ;;
root-plugin-montecarlo-pythia6)
echo "BuildRequires: pythia6-devel" ;;
root-plugin-montecarlo-pythia8)
echo "BuildRequires: pythia8-devel" ;;
root-plugin-net-alien)
echo "BuildRequires: AliEn-Client" ;;
root-plugin-net-globus)
echo "BuildRequires: globus" ;;
root-plugin-net-krb5)
echo "BuildRequires: krb5-devel" ;;
root-plugin-net-netx) ;;
root-plugin-net-srp)
echo "BuildRequires: srp-devel" ;;
root-plugin-net-bonjour)
echo -n ", libavahi-core-dev" ;;
root-plugin-proof-peac) ;;
root-plugin-proof-proofplayer) ;;
root-plugin-proof-xproof) ;;
root-plugin-sql-oracle)
"BuildRequires: oracle-instantclient-devel" ;;
root-plugin-sql-mysql)
cat <= 4.1.0
%else
BuildRequires: mysql-devel >= 4.1.0
%endif
%else
BuildRequires: mysql-devel >= 4.1.0
%endif
EOF
;;
root-plugin-sql-odbc)
echo "BuildRequires: unixODBC-devel >= 2.2.11" ;;
root-plugin-sql-pgsql)
echo "BuildRequires: postgresql-devel" ;;
root-plugin-sql-maxdb)
echo "BuildRequires: libsqlod75-dev" ;;
root-plugin-tree-treeviewer) ;;
root-system-bin) ;;
root-system-common) ;;
root-system-doc) ;;
root-system-proofd) ;;
root-system-rootd) ;;
ttf-root*) ;;
*)
echo "*** Warning *** Unknown package $i - please update $0" \
> /dev/stderr ;;
esac
done
if test $need_qt -gt 0 ; then
cat <= 4.3.0
%else
BuildRequires: qt4-devel >= 4.3.0
%endif
%endif
%else
BuildRequires: qt4-devel >= 4.3.0
%endif
EOF
fi
if test $need_krb5 -gt 0 ; then
echo "BuildRequires: krb5-devel"
fi
exit 0
fi
### echo %%% Making build dependencies
bd=
for i in $* ; do
case $i in
*-dev) ;;
libroot-bindings-python)
echo -n ", python-support (>= 0.3)" ;;
libroot-bindings-ruby)
echo -n ", ruby, ruby-dev" ;;
libroot-core) ;;
libroot-geom) ;;
libroot-graf2d-gpad) ;;
libroot-graf2d-graf) ;;
libroot-graf2d-postscript) ;;
libroot-graf3d-eve) ;;
libroot-graf3d-g3d) ;;
libroot-graf3d-gl)
echo -n ", libglu1-mesa-dev"
echo -n "| xlibmesa-glu-dev | libglu-dev"
echo -n ", libglew-dev"
echo -n ", libftgl-dev"
echo -n ", libgl2ps-dev" ;;
libroot-gui) ;;
libroot-gui-ged) ;;
libroot-hist) ;;
libroot-hist-spectrum) ;;
libroot-io) ;;
libroot-io-xmlparser) echo -n ", libxml2-dev" ;;
libroot-math-physics) ;;
libroot-math-foam) ;;
libroot-math-genvector) ;;
libroot-math-mathcore) ;;
libroot-math-mathmore) echo -n ", libgsl0-dev" ;;
libroot-math-matrix) ;;
libroot-math-minuit) ;;
libroot-math-mlp) ;;
libroot-math-quadp) ;;
libroot-math-smatrix) ;;
libroot-math-splot) ;;
libroot-math-unuran) ;;
libroot-misc-table) ;;
libroot-misc-memstat) ;;
libroot-misc-minicern)
echo -n ", gfortran|fortran-compiler" ;;
libroot-montecarlo-eg) ;;
libroot-montecarlo-vmc) ;;
libroot-net-ldap)
echo -n ", libldap2-dev | libldap-dev" ;;
libroot-proof) ;;
libroot-proof-clarens)
echo -n ", libxmlrpc-c3-dev | libxmlrpc-c-dev | libxmlrpc-core-c3-dev"
echo -n ", libcurl4-gnutls-dev | libcurl4-openssl-dev | libcurl-dev"
;;
libroot-proof-proofplayer) ;;
libroot-roofit) ;;
libroot-tmva) ;;
libroot-tree) ;;
libroot-tree-treeplayer) ;;
libroot-net) ;;
libroot-net-auth) ;;
libroot-net-bonjour)
echo -n ", libavahi-compat-libdnssd-dev" ;;
root-plugin-geom-geompainter) ;;
root-plugin-geom-geombuilder) ;;
root-plugin-geom-gdml) ;;
root-plugin-graf2d-x11) ;;
# Build dependency libafterimage-dev temporarily commented out
# until such a time that ROOT can use the normal libAfterImage.
# root-plugin-graf3d-asimage) echo -n ", libafterimage-dev" ;;
# Input the build dependencies of the libafterimage-dev package
root-plugin-graf2d-asimage)
echo -n ", libjpeg-dev, libpng12-dev, libtiff-dev"
echo -n ", libafterimage-dev, libgif-dev, libxinerama-dev" ;;
root-plugin-graf2d-qt) need_qt=1 ;;
root-plugin-graf2d-gviz) ;;
root-plugin-graf3d-x3d) ;;
root-plugin-gui-fitpanel) ;;
root-plugin-gui-guibuilder) ;;
root-plugin-gui-qt) need_qt=1 ;;
root-plugin-gui-sessionviewer) ;;
root-plugin-hist-hbook) ;;
root-plugin-hist-histpainter) ;;
root-plugin-hist-spectrumpainter) ;;
root-plugin-io-castor) echo -n ", libshift-dev" ;;
root-plugin-io-chirp) echo -n ", libchirp-dev" ;;
root-plugin-io-dcache) echo -n ", libdcap-dev" ;;
root-plugin-io-sql) ;;
root-plugin-io-xml) ;;
root-plugin-math-fftw3)
echo -n ", libfftw3-dev | fftw3-dev" ;;
root-plugin-math-fumili) ;;
root-plugin-math-minuit2) ;;
root-plugin-math-mlp) ;;
root-plugin-montecarlo-pythia5) echo -n ", libpythia5-dev" ;;
root-plugin-montecarlo-pythia6) echo -n ", libpythia6-dev" ;;
root-plugin-montecarlo-pythia8) echo -n ", libpythia8-dev" ;;
root-plugin-net-alien) echo -n ", libgapiui-dev" ;;
root-plugin-net-globus)
echo -n ", libglobus-gss-assist-dev"
echo -n ", libglobus-gsi-credential-dev"
echo -n ", libglobus-common-dev"
echo -n ", libglobus-gsi-sysconfig-dev"
echo -n ", libglobus-gssapi-gsi-dev"
echo -n ", libglobus-gsi-callback-dev"
echo -n ", libglobus-gsi-cert-utils-dev"
echo -n ", libglobus-openssl-module-dev"
echo -n ", libglobus-gsi-proxy-core-dev"
echo -n ", libglobus-callout-dev"
echo -n ", globus-proxy-utils"
;;
root-plugin-net-krb5) need_krb5=1
echo -n ",krb5-user|heimdal-clients" ;;
root-plugin-net-netx) ;;
root-plugin-net-srp) echo -n ", libsrputil-dev" ;;
root-plugin-net-bonjour)
echo -n ", libavahi-core-dev" ;;
root-plugin-proof-peac) ;;
root-plugin-proof-proofplayer) ;;
root-plugin-proof-xproof) ;;
root-plugin-sql-oracle)
echo -n ", oracle-instantclient-devel" ;;
root-plugin-sql-mysql)
echo -n ", libmysqlclient-dev" ;;
root-plugin-sql-odbc)
echo -n ", libiodbc2-dev | unixodbc-dev" ;;
root-plugin-sql-pgsql)
echo -n ", libpq-dev" ;;
root-plugin-sql-maxdb)
echo -n ", libsqlod75-dev [i386 ia64 amd64]" ;;
root-plugin-tree-treeviewer) ;;
root-system-bin) ;;
root-system-common) ;;
root-system-doc) ;;
root-system-proofd) ;;
root-system-rootd) ;;
ttf-root*) ;;
*)
echo "*** Warning *** Unknown package $i - please update $0" \
> /dev/stderr ;;
esac
done
if test $need_qt -gt 0 ; then
echo -n ", libqt4-dev (>= 4.3.0) | libqt3-mt-dev (>= 3.3.0)"
echo -n ", qt4-dev-tools (>= 4.3.0) | qt3-dev-tools (>= 3.3.0)"
echo -n ", libqt4-opengl-dev"
fi
if test $need_krb5 -gt 0 ; then
echo -n ", libkrb5-dev|heimdal-dev"
fi
#
# EOF
#
debian/changelog 0000644 0000000 0000000 00000106120 12262622244 011042 0 ustar root-system (5.34.14-1build1) trusty; urgency=medium
* Rebuild against glew 1.10.
-- Colin Watson Mon, 06 Jan 2014 21:48:20 +0000
root-system (5.34.14-1) unstable; urgency=low
* New upstream release.
* libglew1.9 transition: build-depend on libglew-dev instead of
libglew1.5-dev.
* Fix globus header path. (Closes: #730942)
* Fix typos in package description, thanks to Pascal De Vuyst
. (Closes: #726104, #726106, #726108,
#726109)
* Bump Standards-Version to 3.9.5:
- root-system-rootd.postinst: specify --home option for adduser.
-- Lifeng Sun Tue, 17 Dec 2013 12:02:30 +0800
root-system (5.34.10-1) unstable; urgency=low
* New upstream release.
-- Lifeng Sun Fri, 30 Aug 2013 09:21:34 +0800
root-system (5.34.09-1) unstable; urgency=low
* New upstream release.
* root-system-common: depends on fonts-freefont-otf. Thanks to
Christophe Hugon. (Closes: #714638)
-- Lifeng Sun Wed, 03 Jul 2013 18:28:49 +0800
root-system (5.34.08-1) unstable; urgency=low
* New upstream release.
* Bump Standards-Vesion to 3.9.4.
* Update Vcs-* fields.
* Remove obsolte DM-Upload-Allowed field.
* Replace dh_pysupport with dh_python2.
-- Lifeng Sun Thu, 06 Jun 2013 14:34:06 +0800
root-system (5.34.07-1) unstable; urgency=low
* New upstream release.
* Build-depend on libtiff-dev rather than libtiff4-dev.
-- Lifeng Sun Tue, 30 Apr 2013 09:54:17 +0800
root-system (5.34.06-1~exp1) experimental; urgency=low
* New upstream release.
-- Lifeng Sun Tue, 23 Apr 2013 09:12:17 +0800
root-system (5.34.05-1~exp1) experimental; urgency=low
* New upstream release.
* libroot-graf2d-graf{5.34,-dev}: fix typo in package description.
Thanks to Davide Prina. (Closes: #698522)
* libroot-graf2d-gpad{5.34,-dev}: remove duplicated paragraphs in
package description. Thanks to Davide Prina. (Closes: #698529)
* Add Dutch translation. Thanks to Vincent Zweije. (Closes: #692586)
* libroot-geom-dev: remove multi-arch support. (Closes: #693597)
-- Lifeng Sun Tue, 05 Mar 2013 18:41:25 +0800
root-system (5.34.03-1~exp1) experimental; urgency=low
* New upstream release.
-- Lifeng Sun Sun, 28 Oct 2012 08:14:29 +0800
root-system (5.34.02-1~exp2) experimental; urgency=low
* libroot-proof-dev: breaks libroot-proof-proofplayer-dev
(<= 5.34.00-1) (Closes: #691437)
-- Lifeng Sun Fri, 26 Oct 2012 07:49:46 +0800
root-system (5.34.02-1~exp1) experimental; urgency=low
* New upstream release.
-- Lifeng Sun Tue, 02 Oct 2012 11:48:19 +0800
root-system (5.34.01-1~exp1) experimental; urgency=low
* New upstream release.
* Remove obsolete packages: libroo-proof-clarens{5.34,-dev} and
root-plugin-proof-peac
* libroot-static: move libRoot.a from /usr/lib/$multiarch/root$ver/
to /usr/lib/$multiarch/.
* Disable builtin lzma and libAfterImage.
* Improve ruby path detection.
* Python binding: move Python runtime files from
libroot-bindings-python-dev to libroot-bindings-python$ver.
* root-system-common: update Depends field for ttf- => fonts-
transition. (Closes: #682463)
-- Lifeng Sun Mon, 23 Jul 2012 09:26:27 +0800
root-system (5.34.00-1) unstable; urgency=low
* New upstream version.
* Support kFreeBSD.
* Support Multiarch.
* Fix CVE-2010-3376: insecure library loading. (Closes: #598419)
* Fix incomplete ftgl-dev => libftgl-dev transition. (Closes: #498677)
* root-system-rootd: ship /var/spool/rootd/* as empty directories.
(Closes: #677053)
* Debconf translation updates
- Brazilian Portuguese, thanks to Flamarion Jorge. (Closes: #545383)
- Danish, thanks to Joe Dalton. (Closes: #600750)
* Fix typo in package description of packages
- root-system-doc, thanks to d.haley. (Closes: #567444)
- {root-plugin-tree-treeviewer,root-plugin-hist-histpainter,
root-plugin-hist-spectrumpainter}, thanks to Davide Prina.
(Closes: #678805, #678843)
* Fix broken python-binding, thanks to Ulrik Sverdrup and Andy Buckley.
(Closes: #574517)
* ttf-root-installer: download font files from web instead of ftp
server. (Closes: #678807)
-- Lifeng Sun Mon, 25 Jun 2012 05:24:56 +0800
root-system (5.34.00~rc1-1) unstable; urgency=low
* New upstream version.
* New maintainer. Thanks Christian Holm Christensen for his huge
contribution to the HEP free software community. (Closes: #636974)
-- Lifeng Sun Sat, 03 Jun 2012 17:26:05 +0800
root-system (5.28.00-2) UNRELEASED; urgency=low
* New upstream version
* Upgraded the patches (5.28.00b)
-- Antonio Salvucci Thu, 17 Mar 2011 02:02:50 +0100
root-system (5.28.00-1) UNRELEASED; urgency=low
* New upstream version (5.28.00a)
-- Antonio Salvucci Thu, 17 Mar 2011 02:00:14 +0100
root-system (5.24.00-1) unstable; urgency=low
* New upstream version
* Fix "no hashsum checks of downloaded content, thus allowing
downloading and installation of malicious content" Implemented check
against static sha256sums distributed with package (Closes: #545240)
* Fix "generates incorrect package with python-support from
experimental" Packages now make sym-links in /usr/lib, so
pythons' loader should be able to find it. Hence, the sym-link is
gone. (Closes: #517320)
* Fix "bashism in debian/rules" replaced echo -e with printf
(Closes: #535421)
* Fix "libroot5.18 has circular Depends on root-plugin-proof" Fixed by
new library structure (Closes: #524991)
* Fix "root-system-rootd fails to install" Do not modify rootd user
in pre-installation. (Closes: #498398)
* Fix "should this package be orphaned?" New upload w/bug fixes
(Closes: #543737)
* Fix "root-system new version available" New version (Closes: #515568)
* Fix "[INTL:ja] please add Japanese po-debconf template translation
(ja.po)" Added translation (Closes: #546187)
* Fix "Package is missing most of its files" Fixed by rebuilt
(Closes: #515091)
* Fixed by rebuilt
* Fix "h2root crashes on amd64" Fixed by upstream's introduction of
libminicern (Closes: #518926)
* Fix "No symlink into /usr/lib/root" Fixed by new directory structure
- libraries in /usr/lib - and libQt is a plug-in and should not be linked
to directly by developer. (Closes: #525142)
* Fix "include Math/ProbFuncMathCore.h fails with CINT" Removed relative
path components, since CINT should know where to look.(Closes: #534202)
* root-system-rootd does it's set-up of the user and group in postinst,
thereby removing the need to pre-depend on adduser, etc.
-- Christian Holm Christensen Fri, 18 Sep 2009 13:51:15 -0400
root-system (5.23.05-1) unstable; urgency=low
* New upstream version
* Fix "root-system - FTBFS: error: unrecognized command line option "-
m32"" Removed the -m32 flag for s390 builds (Closes: #517575)
* Fix "root-system_5.18.00-2.3+b1(mips/unstable): FTFBS on mips.
Undefined symbol." Use krb5_c_valid_cksumtype instead of private
valid_cksumtype (Closes: #529998)
* Fix "FTBFS: krb5auth/src/Krb5Auth.cxx:424: error: 'valid_cksumtype'
was not declared in this scope" See above. (Closes: #533964)
* Fix "root-system - FTBFS: Attempts at guessing your architecture
failed." Put stuff into relevant files - still need to see that it
actuall works on s390 (Closes: #487935)
* Fix "root-system_5.18.00-2(sparc/unstable): FTBFS,
`debian/tmp/usr/bin/olbd': No such file or directory" Re-enabled built of
XRootD stuff on sparc. Hopefully it will work. (Closes: #493345)
* Fix "[debconf_rewrite] Debconf templates and debian/control review"
Adopted all recommendations - thanks. (Closes: #514827)
* Fix "root-system new version available" Build newer version
(Closes: #515568)
* Fix "returns errors when using graphics" Fixed by proper rebuild
(Closes: #515632)
* Added new package libroot-net-bonjour that contains zeroconf service
declaration and discovery classes.
* Build-depend on libglew instead of using built-in code.
* Moved TFileMerger back to proofplayer and made proofplayer a callable
extension rather than a plug-in.
-- Christian Holm Christensen Thu, 25 Jun 2009 15:55:08 +0200
root-system (5.23.01-1) unstable; urgency=low
* New upstream version
* Moved TFileMerger from proof/proofplayer to tree/treeplayer.
* Moved TXMLEngine from io/xml to io/io
-- Christian Holm Christensen Thu, 18 Dec 2008 13:12:04 +0100
root-system (5.21.07-4) unstable; urgency=low
* Made virtual base class TVirtualGeoOverlap and use that where
appropriate. This makes the libGeomPainter a true plug-in.
-- Christian Holm Christensen Wed, 17 Dec 2008 11:40:54 +0100
root-system (5.21.07-3) unstable; urgency=low
* New upstream
-- Christian Holm Christensen Mon, 15 Dec 2008 12:51:08 +0100
root-system (5.21.07-2) unstable; urgency=low
* Discovery of s390x implemented - should check if this works also in
terms of code (Closes: #487935)
* Do not modify rootd user after creation. Perhaps this fixes
#498398
* FTBFS with GCC 4.4: wrong #elif - fixed upstream (Closes: #505015)
* can FTBFS due to incomplete calls to open - fixed upstream
(Closes: #502873)
* incomplete ftgl-dev => libftgl-dev transition fixed
(Closes: #498677)
-- Christian Holm Christensen Wed, 03 Dec 2008 10:45:16 +0100
root-system (5.21.07-1) unstable; urgency=low
* New upstream version
-- Christian Holm Christensen Fri, 28 Nov 2008 19:28:17 +0100
root-system (5.21.05-1) unstable; urgency=low
* New upstream version
-- Christian Holm Christensen Tue, 07 Oct 2008 09:26:04 +0200
root-system (5.19.05-1) unstable; urgency=low
* New upstream version
-- Christian Holm Christensen Wed, 14 May 2008 23:16:12 +0200
root-system (5.19.03-2) unstable; urgency=low
* Moved root-plugin-graf3d-gl to libroot-graf3d-gl and
libroot-graf3d-dev, since the code needs to be callable for custom
EVE implementations of quads, etc.
* Fixed problem with startup URL - points to
http://localhost/doc/root/html - implies recommendation of a
web-server. Aparently, the TGHtml gui element does not really know
how to resolve relative links from a "file:///" URL.
* Added "--etcdir" option to root-config script - should be useful
for VMC and the like implementations.
-- Christian Holm Christensen Thu, 08 May 2008 08:09:44 +0200
root-system (5.19.03-1) unstable; urgency=low
* New upstream version (Closes: #478956)
* Added prober build dependencies on fortran compiler on all
platforms (Closes: #429186)
* With the kind help of Thiemo Seufer ,
Dirk Van Hertem , and Boris
we managed to get ROOT to compile on mips/mipsel. This is a new ROOT
platform too. (Closes: #434855, #425257)
* Fixed GSL version recognision. (Closes: #450507, #450508)
* ROOT now builds against Qt 4. (Closes: #476324)
* Fixed download URL of TTF files (Closes: #451510)
* Split package root-system-xrootd into 2 packages: root-system-xrootd and
root-plugin-net-xrootd.
* Follow new source directory structure in package structure. Several new
packages that split older libroot package.
* libroot-proof replaces root-plugin-proof
-- Christian Holm Christensen Fri, 02 May 2008 08:21:48 +0200
root-system (5.18.00-2.2) UNRELEASED; urgency=low
* Debconf templates and debian/control reviewed by the debian-l10n-
english team as part of the Smith review project. Closes: #514827
* [Debconf translation updates]
- Galician. Closes: #515481
- Vietnamese. Closes: #515596
- Swedish. Closes: #515939
- Basque. Closes: #516013
- Italian. Closes: #516445
- Spanish. Closes: #517177
- Portuguese. Closes: #517185
- German. Closes: #517381
- Russian. Closes: #517492
- Czech. Closes: #517536
- Finnish. Closes: #518187
- French. Closes: #517806
-- Christian Perrier Wed, 11 Feb 2009 10:18:46 +0100
root-system (5.18.00-2.1) unstable; urgency=low
* Non-maintainer upload to fix pending l10n issues.
* Remove extra space in debconf templates. Closes: #488136
* Debconf translations:
- German. Closes: #488135
- Portuguese. Closes: #488582
- Russian. Closes: #489490
- Danish translation file renamed to da.po
- Finnish. Closes: #491740
- Czech. Closes: #492494
- Basque. Closes: #492528
- Galician. Closes: #492612
- Brazilian Portuguese. Closes: #492720
- Italian. Closes: #493960
-- Christian Perrier Fri, 18 Jul 2008 09:58:03 +0200
root-system (5.17.07-1) unstable; urgency=low
* New upstream version
* Fixed problem with libroot-python-dev being uninstallable on
ubuntu.
-- Christian Holm Christensen Sun, 09 Dec 2007 14:17:30 +0100
root-system (5.17.05-6) unstable; urgency=low
* Fix configure to allow GSL > 1.9 (Closes: #450507)
* Builds on hppa, mips, mipsel (Closes: #434855, 425257)
* All linux platforms will use gfortran by default (Closes: #429186)
* Use proper GCC 4 I/O bits fixed upstream (Closes: #441333)
* ttf-root-installer: Suggest proper URL for font downloading
(Closes: #451510)
* Add missing libRooFitCore to libroot-roofit package.
-- Christian Holm Christensen Fri, 23 Nov 2007 17:15:52 +0100
root-system (5.17.05-5) unstable; urgency=low
* Fixes to Qt discovery and code in qtgsi.
* Better support for MIPS (thanks to Thiemo Seufer
of Debian)
-- Christian Holm Christensen Wed, 07 Nov 2007 09:40:11 +0100
root-system (5.17.05-4) unstable; urgency=low
* Upstream fix to TGX11::DrawPolyMarker.
-- Christian Holm Christensen Tue, 06 Nov 2007 14:17:06 +0000
root-system (5.17.05-3) unstable; urgency=low
* Do not try to make libFTGL nor put it in the libRGL.rootmap file,
since we use the system libftgl_pic.a to link in the functionality.
-- Christian Holm Christensen Thu, 01 Nov 2007 23:05:53 +0000
root-system (5.17.05-2) unstable; urgency=low
* Forgot top copy over the changes in makelist script, so that
standard library container dictionaries was missing.
-- Christian Holm Christensen Wed, 31 Oct 2007 00:21:41 +0000
root-system (5.17.05-1) unstable; urgency=low
* New development release.
* Add proper fortran dependencies and discovery code (Closes: #429186).
* Add archicture discovery for mips (Closes: #434855).
* Add archicture discovery for hppa (Closes: #425257).
-- Christian Holm Christensen Tue, 23 Oct 2007 15:06:37 +0200
root-system (5.16.00-2) unstable; urgency=low
* Fix missing lib*Dict.so for precompiled dictionaries of standard
library containers, like vector, map, etc.
-- Christian Holm Christensen Tue, 23 Oct 2007 12:28:42 +0200
root-system (5.16.00-1) unstable; urgency=low
* New upstream version. This is a production version, so it's
targeted at unstable.
* Fix some stuff on dependencies and the like.
* Updated README.Debian for new package names.
* Added gfortran switch for amd64 et al (Closes: #429186).
-- Christian Holm Christensen Thu, 26 Jul 2007 23:34:19 +0200
root-system (5.15.07-4) experimental; urgency=low
* Attempt to fix broken Python dependencies on Ubuntu.
-- Christian Holm Christensen Mon, 14 May 2007 17:17:50 +0200
root-system (5.15.07-3) experimental; urgency=low
* [Kevin] Corrected some english in the control file
* [Kevin] Removed root-system dependency on libroot.
* [Kevin] Removed postinst stubs for root-system-{rootd,proofd}
* [Kevin] Removed various directories from root-system.
* [Kevin] Fixed script name in /etc/init.d/root-system-{rootd,proofd}.
Perhaps it's time to look into 'upstart' scripts?
* Fixed package names in README.Debian.
-- Christian Holm Christensen Sat, 12 May 2007 10:43:24 +0200
root-system (5.15.07-2) experimental; urgency=low
* Previous source package broken due to tar-balls not unpacked.
* Fixes for new lib*.rootmap instead of global system.rootmap.
* Fixes for new ld.so.conf.d/ scheme of configuring ld.so's search path.
* Split off unuran into it's own package libroot-unuran, since it is
GPL'ed.
-- Christian Holm Christensen Fri, 11 May 2007 02:04:02 +0200
root-system (5.15.07-1) experimental; urgency=low
* New version.
* New source package name to please FTP-masters.
-- Christian Holm Christensen Tue, 01 May 2007 22:18:01 +0200
root (5.13.05-7) experimental; urgency=low
* New release. take out /usr/lib/root/ from
/etc/root/system.rootrc as it may cause problems. Should have no
consequence to the users.
-- Christian Holm Christensen Thu, 2 Nov 2006 10:19:18 +0100
root (5.13.05-6) experimental; urgency=low
* Fix to Qt plug-in to allow fixed directory builds.
-- Christian Holm Christensen Mon, 30 Oct 2006 12:19:24 +0100
root (5.13.05-5) experimental; urgency=low
* Added man page for xrd.
* [Kevin] Fixed some broken dependencies in the [X]Proofd packages. I moved
the libXrdProofd library into the root-plugin-xproof package as it seems
to be used by the client only.
* [Kevin] Fixed up some man pages.
* [Kevin] Fixed some spelling errors in descriptions.
-- Christian Holm Christensen Sat, 28 Oct 2006 12:16:50 +0200
root (5.13.05-4) experimental; urgency=low
* [Kevin] Fixed up the README.Debian file for an imminent upload to
experimental.
* [Kevin] Removed some autotools generated files from the libAfterImage
directory in the source package.
* [Kevin] Corrected a typo in the debian/rules clean target.
-- Christian Holm Christensen Fri, 27 Oct 2006 10:15:25 +0200
root (5.13.05-3) experimental; urgency=low
* [Kevin] Use system libungif if possible.
* [Kevin] Removed some files left after clean in libAfterImage.
* [Kevin] Fixed up the initd scripts with Required-{start,stop}
-- Christian Holm Christensen Thu, 26 Oct 2006 11:17:44 +0200
root (5.13.05-2) experimental; urgency=low
* [Kevin] Fix missing install of libSpectrum and libFitPanel.
* [Kevin] Fix duplicate build-depends
* [Kevin] Fix missing install of PyCintex.py
* [Kevin] Fix unpacking of tar-balls for asimage and xrootd.
* [Kevin] Fix init missing info.
-- Christian Holm Christensen Tue, 24 Oct 2006 12:43:14 +0200
root (5.13.05-1) experimental; urgency=low
* New upstream development version.
* [Kevin] Remove cruft left behind after removing ttf-root-installer
* [Kevin] Install RadioNuclides.txt
* [Kevin] Fix build dependency on python-support.
-- Christian Holm Christensen Mon, 23 Oct 2006 12:13:11 +0200
root (5.13.03-1) experimental; urgency=low
* New upstream version
-- Christian Holm Christensen Thu, 31 Aug 2006 00:45:21 +0200
root (5.13.02-1) experimental; urgency=low
* New upstream version
* [Kevin] First attempt at complying with the Python policy.
* Python seems ok. We install for one version only - the one we were
compiled against.
* Made init.d scripts use LSB functions (except start-stop-daemon is still
used, since the normal one isn't OK). daemons depend on lsb-base.
-- Christian Holm Christensen Thu, 31 Aug 2006 00:33:04 +0200
root (5.13.01-4) experimental; urgency=low
* copyrights fixed by Fons.
* Try to fix TBrowser option.
-- Christian Holm Christensen Thu, 24 Aug 2006 19:44:28 +0200
root (5.13.01-3) experimental; urgency=low
* Fixed reference to CINT copyright statement and license.
* Fixed some problems in the xrootd build.
* Fixed a bug in some reflex code.
* Added 32x32 xpm icon.
* Make sure python scripts do not contain a she-bang.
* RSA and ALICE license issues have been solved, but Fons hasn't
uploaded the new files yet. The Krb5 export restriction is still
unresolved. The old Zip license issue should have been solved,
but the change to the license statement has been put in CVS yet.
Hence, the copyright file contains the old license and coppyright
statements.
-- Christian Holm Christensen Wed, 23 Aug 2006 16:45:47 +0200
root (5.13.01-2) experimental; urgency=low
* Added the package `libroot-tmva', to avoid bad dependencies.
* Fixed problem with PostGreSQL plugin missing
* Permanently fixed man page problems in RPMs (added glob star to all
man pages in the file lists).
* Some other minor fixes.
* Better desktop integration for both RPMs and DEBs.
* Added `-fail-on-missing' to make the building fail if a dependency
isn't found.
* Added third-party copyrights and licenses to the copyright file.
-- Christian Holm Christensen Mon, 21 Aug 2006 17:00:57 +0200
root (5.13.01-1) experimental; urgency=low
* New upstream version
* Added TMVA to the libroot package.
* Also put GDML files into the libroot-python package.
* Upstream should have fixed a number of copyright statements.
* It seems that the RSA problem persists - sigh!
-- Christian Holm Christensen Mon, 31 Jul 2006 15:42:12 +0200
root (5.11.03-6) experimental; urgency=low
* Fixes to allow compilation with prefix != /usr for RPMs
-- Christian Holm Christensen Thu, 11 May 2006 09:02:43 +0200
root (5.11.03-5) experimental; urgency=low
* Fixed to RPM building. Make sure SYSV init scripts is installed.
* Make sure we use the same configure arguments when we make the spec file,
as are used by the spec file.
* Add this changelog to the spec file.
* Build-depend on GSL.
* Build more packages by default.
* Fixes to RPM SYSV init scripts
* Fixed to ttf-root-installer RPM post install and pre remove scripts.
-- Christian Holm Christensen Mon, 8 May 2006 16:48:47 +0200
root (5.11.03-4) experimental; urgency=low
* Fixes to RPM creation.
-- Christian Holm Christensen Sun, 7 May 2006 14:18:37 +0200
root (5.11.03-3) experimental; urgency=low
* Added libraries libReflex and libCintex to libroot, and the
corresponding headers and development libraries to libroot-dev.
The Python scripts are added to libroot-dev. This means, that
ROOT now always build-depends and depends on Python.
* Added gccxml as a Suggests to libroot-dev for `rootcint -gccxml'.
* The library libCintex is temporary.
* Added krb5-user | heimdal-clients as build-dependency for
root-plugin-krb5. The configure script need to know where kinit is.
The same packages are also added as run-time dependency.
* Fixed root-rootd and root-xrootd and root-proofd to not bark when
upgrading and the servers are not running. Thanks to Kevin.
* Fixed some minor mistakes in `ttf-root-installer.copyright'. Again,
Thanks to Kevin.
-- Christian Holm Christensen Tue, 25 Apr 2006 02:19:39 +0200
root (5.11.03-2) experimental; urgency=low
* Minor fixes. Typos in the font generation script, lingering temp file,
remove build code, lingering source directory, better copyright file,
and so on.
* Fixes to ODBC interface to use SQL{U}LEN consistently where specified
by the ODBC prototypes. This should remove any problems with
i386/ia64/amd64/windows.
-- Christian Holm Christensen Sat, 22 Apr 2006 03:15:21 +0200
root (5.11.03-1) experimental; urgency=low
* fixes to Proof library loading. Missing `#include "config.h"' added.
* Fix to ODBC plugin.
* Added print-out to s050000l.pe.
* Fixed symbol.ttf font in TImageDump.
* Fixed FSF address in root-common.copyright
-- Christian Holm Christensen Thu, 20 Apr 2006 22:17:08 +0200
root (5.11.02-1) experimental; urgency=low
* New upstream version.
* New scheme to make package file lists.
* Using new GPL'ed `symbol.tff'
* Fix it so that the font installer package doesn't overwrite and delete
the already installed `symbol.ttf'.
* Fixed free font table in TTF.cxx to include the GPL'ed symbol.ttf.
-- Christian Holm Christensen Thu, 20 Apr 2006 02:20:08 +0200
root (5.11.01-9) unstable; urgency=low
* Added plugin package root-plugin-odbc - ODBC database connectivty.
* [Kevin] Fixed spelling errors in description of libroot-mathmore
* [Kevin] Fixed call to dh_makeshlibs
* [Kevin] Fixed maxdb build on amd64
* [Kevin] Fixed some dependencies of root-plugin-peac and root-proofd
* [Kevin] Fixed some code problems in SapDB code (again!)
* Leave in `symbol.ttf' in the root-common package, because it will soon
be replaced by a GPL'ed one.
* Added a specific copyright file for root-common due to the new
symbol.ttf font.
-- Christian Holm Christensen Wed, 19 Apr 2006 02:25:10 +0200
root (5.11.01-8) unstable; urgency=low
* Various fixes from Kevin
* Added overrides for various extension packages
-- Christian Holm Christensen Sat, 15 Apr 2006 12:25:12 +0200
root (5.11.01-7) unstable; urgency=low
* Fixed a problem with transition of libroot-fftw to root-plugin-fftw3
-- Christian Holm Christensen Thu, 13 Apr 2006 15:26:10 +0200
root (5.11.01-6) unstable; urgency=low
* Package libroot-fftw made a plugin by Fons. Now it's called
root-plugin-fftw.
* Small fixes from Kevin.
* Default ZipMode is now 1 (checked in debian/rules).
* Implemented a configure switch to use system Zlib.
-- Christian Holm Christensen Wed, 12 Apr 2006 15:39:11 +0200
root (5.11.01-5) unstable; urgency=low
* Added new package libroot-fftw, and libroot-fftw-dev. Extension
packages with libraries to interface FFTw.
-- Christian Holm Christensen Tue, 11 Apr 2006 18:01:26 +0200
root (5.11.01-4) unstable; urgency=low
* Added packages libroot-mathmore5.11 and libroot-mathmore-dev.
* Also build libMathCore. This is put in libroot5.11 and libroot-dev.
-- Christian Holm Christensen Sun, 2 Apr 2006 15:15:16 +0200
root (5.11.01-3) unstable; urgency=low
* Fixed installation of PROOF configuration examples to new location.
-- Christian Holm Christensen Fri, 31 Mar 2006 12:12:56 +0200
root (5.11.01-2) unstable; urgency=low
* Some fixes upstream
-- Christian Holm Christensen Wed, 22 Mar 2006 15:11:49 +0100
root (5.11.01-1) unstable; urgency=low
* New upstream version. No changes to the debian part.
-- Christian Holm Christensen Tue, 21 Mar 2006 01:59:33 +0100
root (5.10.00-1) unstable; urgency=low
* New upstream version
-- Christian Holm Christensen Thu, 2 Mar 2006 10:09:35 +0100
root (5.09.01-10) unstable; urgency=low
* Removed dangling code directory in `minuit2/src'
* Set `Root.Zlib=1' in `/etc/root/system.rootrc' per default.
* Fixed some minor bugs in wrapper scripts and SYSV init scripts.
-- Christian Holm Christensen Fri, 24 Feb 2006 11:47:18 +0100
root (5.09.01-9) unstable; urgency=low
* Initial release. (Closes: #325306: RFP: root -- An object oriented
data analysis framework - Debian Bug report logs)
-- Christian Holm Christensen Thu, 23 Feb 2006 15:25:22 +0100
root (5.09.01-8) unstable; urgency=low
* Added some lintian overrides.
* Moved some shared configuration files to root-common.
* Fixed problems in init scripts.
* Fixed problem with wrappers using `root-config'.
* Removed some unused configuation scripts.
* Install xinetd files as examples.
* Removed /usr/share/root/proof/etc/*.sample and install them as
examples instead.
* Made `Replaces' and `Conflicts' dependencies on older packages
be version specific to static version numbers. We don't want
libroot-roofit to conflict with root-plugin-rootfit for all time.
-- Christian Holm Christensen Wed, 15 Feb 2006 23:11:28 +0100
root (5.09.01-7) unstable; urgency=low
* [Kevin] Fixed a problem with libXrdProof.so symlinks in root-xrootd.
* [Kevin] Made a wrapper script that calls proofserv with LD_LIBRARY_PATH
set to the plugin directory. This should be fixed upstream.
* [Kevin] Made wrapper scripts that calls xrdpwdadmin and xrdgsiproxy with
LD_LIBRARY_PATH set to plugin-script.
* [Kevin] Fixed problem in man page of xrdcp.
* Corrected kfreebsd-gnu to kfreebsd-i386.
* [Kevin] Fixed problem in proofserv man page.
-- Christian Holm Christensen Wed, 15 Feb 2006 04:33:07 +0100
root (5.09.01-6) unstable; urgency=low
* Fixed a problem in the rules file with a errornous backslash.
* Make configure output config.log for debugging.
* [Kevin] Build depend on libmysqlclient15-dev instead of older 12 or 14.
* [Kevin] Fix typo's in description of libroot-minuit.
* [Kevin] Use `-s' instead of `-a'.
* [Kevin] Fix a logic error in ttf-root-installer.
* [Kevin] Moved dependency of fonts from libroot to root-common.
* [Kevin] Removed all mention of root-cint
* [Kevin] Fixed problem with `set -e' in root-rootd.postrm.
* [Kevin] Set sticky bit on `/var/cache/rootd/{tmp,pub}' so users can
not overwrite each others files (root-rootd.preinst).
* Make sure that libHbook is linked against libg2c.so and not libg2c.a
which made `lintian' complain about `shlib-with-non-pic-code'.
-- Christian Holm Christensen Tue, 14 Feb 2006 01:10:54 +0100
root (5.09.01-5) unstable; urgency=low
* root-plugin-minuit moved to libroot-minut{,-dev}
-- Christian Holm Christensen Tue, 7 Feb 2006 18:21:50 +0100
root (5.09.01-4) unstable; urgency=low
* Fixed some build-dependencies. In partiucular, libsqlod75-dev is only
available on certain platforms, and libpacklib1-dev is not available on
GNU/kFreeBSD.
-- Christian Holm Christensen Sun, 15 Jan 2006 12:43:38 +0100
root (5.09.01-3) unstable; urgency=low
* Fixed some build dependencies.
* Fixed some non-POSIX /bin/sh code
* Fixed Python module location
* Added libafterimage-dev build-dependencies - eventually we'll use the
normal libafterimage-dev, but currently that's disabled up-stream.
* Added the executable xproofd to the root-proofd package, along with
it's man(1) page.
* Removed build-depends on libxpm4-dev, as that pulls in libxaw7-dev,
which is not really what we need. Instead the build-depends is now
libxpm.
* The TTF installer package now depends on msttcorefonts, and makes
mostly symbolic links to files in that package. Hence, we only need
to get and install `symbol.ttf' and `windings.ttf'.
* Revived the package root-plugin-sapdb as root-plugin-maxdb. Thanks to
Ricardo Yanez for pointing out libsqlod to me.
-- Christian Holm Christensen Fri, 13 Jan 2006 09:27:52 +0100
root (5.09.01-2) unstable; urgency=low
* Added the package root-common to hold common files
* Replaced root-plugin-clarens, root-plugin-ldap, root-plugin-mlp
root-plugin-python, root-plugin-quadp, root-plugin-roofit,
root-plugin-ruby with two packages, a run-time library package
(libroot-<...>) and a development package (libroot-<...>-dev).
This is because developers may want to link against these libraries.
* Removed the package root-cint, and moved libraries to libroot, headers
and the like to libroot-dev, and programs to root-bin. The
alternatives still exists for cint and makecint.
* Applied a patch that allows ROOT to use DFSG free TTF's rather than
the MS Core Fonts.
* Put a symlink to ruby extension library in ruby load directory.
These are in the _development_ package.
* Put a symlink to Python script and extension library in Python
load directory. These are in the _development_ package.
* Fixed some dependency issues, and similar - thanks to Kevin McCarty
for all his help on this.
-- Christian Holm Christensen Wed, 11 Jan 2006 01:16:25 +0100
root (5.09.01-1) unstable; urgency=low
* New upstream version
-- Christian Holm Christensen Mon, 9 Jan 2006 21:49:48 +0100
root (5.08.00-1) unstable; urgency=low
* New upstream version
-- Christian Holm Christensen Thu, 15 Dec 2005 14:59:41 +0100
root (5.06.01-1) unstable; urgency=low
* New upstream version
-- Christian Holm Christensen Wed, 16 Nov 2005 10:46:04 +0100
root (5.05.01-1) unstable; urgency=low
* New upstream version
-- Christian Holm Christensen Wed, 12 Oct 2005 00:41:44 +0200
root (5.04.00-2) unstable; urgency=low
* Some new stuff to handle the libraries and plugins installed by the
packages. For the plugin packages, we do not install the link
libraries in /usr/lib/root, but in /usr/lib/root/, as these
libraries are really plugins and should not be linked against.
However, we do need to install the `lib.so.' in
/usr/lib/root, as some may incrementally link against these.
-- Christian Holm Christensen Wed, 21 Sep 2005 22:07:12 +0200
root (5.04.00-1) unstable; urgency=low
* New upstream version
-- Christian Holm Christensen Tue, 20 Sep 2005 22:34:53 +0200
root (5.03.01-2) unstable; urgency=low
* New upstream version
* Make links in /usr/lib/root/ to shared libraries, so that
we can have many versions of the libraries installed, and we do not
need libroot-dev
-- Christian Holm Christensen Mon, 15 Aug 2005 00:46:18 +0200
root (5.01.01-1) unstable; urgency=low
* New upstream
-- Christian Holm Christensen Mon, 23 May 2005 13:42:03 +0200
root (4.03.03-1) unstable; urgency=low
* New upstream ROOT version
* New package root-plugin-oracle
* Package root-plugin-xml now contains an XML parser, not the XML I/O
-- Christian Holm Christensen Sun, 20 Mar 2005 16:28:37 +0100
root (4.03.02-1) unstable; urgency=low
* New packaging scripts
-- Christian Holm Christensen Mon, 21 Feb 2005 16:28:37 +0100
root (3.03.05-1) unstable; urgency=low
* Bumped Debian GNU/Linux version with ROOT
-- Christian Holm Mon, 13 May 2002 13:32:54 +0200
root (3.02.06-1) unstable; urgency=low
* Bumped Debian GNU/Linux version with ROOT
-- Christian Holm Wed, 9 Jan 2002 04:08:19 +0100
root (3.02.04-1) unstable; urgency=low
* Bumped Debian GNU/Linux version with ROOT
-- Christian Holm Tue, 8 Jan 2002 03:16:39 +0100
root (3.02.00-1) unstable; urgency=low
* Bumped Debian GNU/Linux version with ROOT
-- Christian Holm Thu, 15 Nov 2001 21:34:26 +0100
root (3.00.06-1) unstable; urgency=low
* Bumped Debian GNU/Linux version with ROOT
-- Christian Holm Sat, 24 Mar 2001 16:12:08 +0100
root (3.00.04-1) unstable; urgency=low
* Bump version to 3.00/04
-- Christian Holm Fri, 16 Feb 2001 23:59:40 +0100
root (2.26.00-1) unstable; urgency=low
* Initial Release.
-- Christian Holm Fri, 16 Feb 2001 23:59:04 +0100
debian/root-system-bin.mime 0000644 0000000 0000000 00000000167 12253755630 013126 0 ustar application/x-root; root %s; test=test "x$DISPLAY" != "x" ; description=ROOT Archive; nametemplate=%s.root; priority=7