r37328 - in /packages/atlas/trunk/debian: changelog rules

sylvestre at users.alioth.debian.org sylvestre at users.alioth.debian.org
Sun Feb 13 10:21:33 UTC 2011


Author: sylvestre
Date: Sun Feb 13 10:21:32 2011
New Revision: 37328

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=37328
Log:
  * Some clean up of debian/rules (removed rules to build preoptimized packages)

Modified:
    packages/atlas/trunk/debian/changelog
    packages/atlas/trunk/debian/rules

Modified: packages/atlas/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/atlas/trunk/debian/changelog?rev=37328&op=diff
==============================================================================
--- packages/atlas/trunk/debian/changelog (original)
+++ packages/atlas/trunk/debian/changelog Sun Feb 13 10:21:32 2011
@@ -1,6 +1,7 @@
-atlas (3.8.3-30) unstable; urgency=low
+atlas (3.8.3-30) UNRELEASED; urgency=low
 
   * Update of the README.Debian (typos, old stuff, etc)
+  * Some clean up of debian/rules (removed rules to build preoptimized packages)
 
  -- Sylvestre Ledru <sylvestre at debian.org>  Fri, 04 Feb 2011 18:28:26 +0100
 

Modified: packages/atlas/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/atlas/trunk/debian/rules?rev=37328&op=diff
==============================================================================
--- packages/atlas/trunk/debian/rules (original)
+++ packages/atlas/trunk/debian/rules Sun Feb 13 10:21:32 2011
@@ -11,81 +11,26 @@
 
 # Pointer bitwidth (default value)
 MODE_BITWIDTH = 32
-
-# This is a data structure (machnam) coming from the C code:
-# CONFIG/include/atlconf.h
-# It defines the list of archs with preset options:
-#    {"UNKNOWN", "POWER3", "POWER4", "POWER5", "PPCG4", "PPCG5",
-#    "P5", "P5MMX", "PPRO", "PII", "PIII", "PM", "CoreSolo",
-#    "CoreDuo", "Core2Solo", "Core2", "Corei7", "P4", "P4E", "Efficeon", "K7",
-#    "HAMMER", "AMD64K10h", "UNKNOWNx86", "IA64Itan", "IA64Itan2",
-#    "USI", "USII", "USIII", "USIV", "UnknownUS", "MIPSR1xK", "MIPSICE9"};
-# This is used by the flag -A with the position in the array 
-# Don't forget, C format, the array starts from 0 
-
-# About CPU extensions, it is defined in the same file
-# the datastructure ISAXNAM contains:
-#    {"", "AltiVec", "SSE3", "SSE2", "SSE1", "3DNow"};
-# For example, for the activation of SSE2, we need both SSE2 (Number 3) 
-# and SSE1 (Number 4)
-# >>> ISA=0
-# >>> ISA = ISA | (1<<3)
-# >>> ISA = ISA | (1<<4)
-# 24
-# So, to activate the SSE2, -V 24 should be used to the configure
 
 # 0 means Unknown CPU. Leave Atlas find out
 # 1 means no extension
 ARCHS=base_0_1
 DEB_SHLIBDEPS_INCLUDE_libatlas3gf-base := $(CURDIR)/debian/libatlas3gf-base/usr/lib/atlas-base/:$(CURDIR)/debian/libatlas3gf-base/usr/lib/atlas-base/atlas/
 
-# ifeq ($(DEB_HOST_ARCH_CPU),i386)
-# ifneq ($(DEB_BUILD_ARCH),kfreebsd-i386)
-# CHECK_EXTENSIONS=sse3
-# endif
-# ARCHS = base_10_1 sse_10_16 sse2_17_24 sse3_17_28 core2sse3_14_28
-# # 10 = PII  17 = P4
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-sse = $(CURDIR)/debian/libatlas3gf-sse/usr/lib/atlas-sse:$(CURDIR)/debian/libatlas3gf-sse/usr/lib/atlas-sse/atlas
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-sse2 = $(CURDIR)/debian/libatlas3gf-sse2/usr/lib/atlas-sse2:$(CURDIR)/debian/libatlas3gf-sse2/usr/lib/atlas-sse2/atlas
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-sse3 = $(CURDIR)/debian/libatlas3gf-sse3/usr/lib/atlas-sse3:$(CURDIR)/debian/libatlas3gf-sse3/usr/lib/atlas-sse3/atlas
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-core2sse3 = $(CURDIR)/debian/libatlas3gf-core2sse3/usr/lib/atlas-core2sse3:$(CURDIR)/debian/libatlas3gf-core2sse3/usr/lib/atlas-core2sse3/atlas
-# endif
-
-
 # # see what do we do with the amd64 / intel 64
 ifeq ($(DEB_HOST_ARCH_CPU),amd64)
 # # 64 bits
 MODE_BITWIDTH = 64
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-amd64sse3 = $(CURDIR)/debian/libatlas3gf-amd64sse3/usr/lib/atlas-amd64sse3:$(CURDIR)/debian/libatlas3gf-amd64sse3/usr/lib/atlas-amd64sse3/atlas
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-core2sse3 = $(CURDIR)/debian/libatlas3gf-core2sse3/usr/lib/atlas-core2sse3:$(CURDIR)/debian/libatlas3gf-core2sse3/usr/lib/atlas-core2sse3/atlas
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-corei7sse3 = $(CURDIR)/debian/libatlas3gf-corei7sse3/usr/lib/atlas-corei7sse3:$(CURDIR)/debian/libatlas3gf-corei7sse3/usr/lib/atlas-corei7sse3/atlas
-# ARCHS += amd64sse3_20_28 core2sse3_17_28 corei7sse3_18_28
 endif
 
 ifeq ($(DEB_HOST_ARCH_CPU),ia64)
 MODE_BITWIDTH = 64
-# ARCHS = base_25_1 sse_25_16 sse2_25_24
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-sse = $(CURDIR)/debian/libatlas3gf-sse/usr/lib/atlas-sse:$(CURDIR)/debian/libatlas3gf-sse/usr/lib/atlas-sse/atlas
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-sse2 = $(CURDIR)/debian/libatlas3gf-sse2/usr/lib/atlas-sse2:$(CURDIR)/debian/libatlas3gf-sse2/usr/lib/atlas-sse2/atlas
 endif
 
 ifeq ($(DEB_HOST_ARCH_CPU),ppc64)
 # Power PC 64
 MODE_BITWIDTH = 64
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-altivec = $(CURDIR)/debian/libatlas3gf-altivec/usr/lib/atlas-altivec:$(CURDIR)/debian/libatlas3gf-altivec/usr/lib/atlas-altivec/atlas
-# ARCHS += altivec_3_2
-# # 2 = altivec
 endif
-
-
-# ifeq ($(DEB_HOST_ARCH_CPU),ppc)
-# # Power PC 32
-# DEB_SHLIBDEPS_INCLUDE_libatlas3gf-altivec = $(CURDIR)/debian/libatlas3gf-altivec/usr/lib/atlas-altivec:$(CURDIR)/debian/libatlas3gf-altivec/usr/lib/atlas-altivec/atlas
-# ARCHS += altivec_3_2 
-# # 2 = altivec
-# endif
-
-# TODO: alpha hppa sparc (they have specific accelerations)
 
 GFORTRAN_LIB_PATH=`gcc -print-search-dirs|grep ^install:|awk '{print $$2}'`
 




More information about the debian-science-commits mailing list