r816 - in /trunk/boinc/debian: changelog rules

fst at users.alioth.debian.org fst at users.alioth.debian.org
Fri Jan 11 00:33:25 UTC 2008


Author: fst
Date: Fri Jan 11 00:33:25 2008
New Revision: 816

URL: http://svn.debian.org/wsvn/pkg-boinc/?sc=1&rev=816
Log:
Official BOINC platforms for some Debian GNU/Linux ports (alpha, ia64,
powerpc, and sparc) were assigned upstream and therefore changed these 
platforms accordingly:
-   alpha-unknown-linux-gnu ->  alpha-hp-linux-gnu
-    ia64-unknown-linux-gnu ->      ia64-linux-gnu
- powerpc-unknown-linux-gnu ->   powerpc-linux-gnu
-   sparc-unknown-linux-gnu -> sparc-sun-linux-gnu


Modified:
    trunk/boinc/debian/changelog
    trunk/boinc/debian/rules

Modified: trunk/boinc/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinc/debian/changelog?rev=816&op=diff
==============================================================================
--- trunk/boinc/debian/changelog (original)
+++ trunk/boinc/debian/changelog Fri Jan 11 00:33:25 2008
@@ -7,12 +7,17 @@
     tag "I: hyphen-used-as-minus-sign" by enclosing options in <command>
     elements with the <option> element.
   * debian/rules:
-    - Changed BOINC platform powerpc-unknown-linux-gnu to powerpc-linux-gnu on
-      powerpc, this is now an official BOINC platform.
+    - Official BOINC platforms for some Debian GNU/Linux ports (alpha, ia64,
+      powerpc, and sparc) were assigned upstream and therefore changed these
+      platforms accordingly:
+      -   alpha-unknown-linux-gnu ->  alpha-hp-linux-gnu
+      -    ia64-unknown-linux-gnu ->      ia64-linux-gnu
+      - powerpc-unknown-linux-gnu ->   powerpc-linux-gnu
+      -   sparc-unknown-linux-gnu -> sparc-sun-linux-gnu
     - Removed the --target and --program-prefix options from TYPE_FLAGS,
       because they are not required to set the BOINC platform anymore.
 
- -- Frank S. Thomas <fst at debian.org>  Thu, 10 Jan 2008 10:18:54 +0100
+ -- Frank S. Thomas <fst at debian.org>  Fri, 11 Jan 2008 01:20:04 +0100
 
 boinc (5.10.30-3) unstable; urgency=low
 

Modified: trunk/boinc/debian/rules
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinc/debian/rules?rev=816&op=diff
==============================================================================
--- trunk/boinc/debian/rules (original)
+++ trunk/boinc/debian/rules Fri Jan 11 00:33:25 2008
@@ -19,38 +19,56 @@
   TYPE_FLAGS = --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
 endif
 
-# On some architectures it is required to override the target type so that the
-# core client uses the official BOINC platform for this architecture otherwise
-# it would not download any applications because projects mostly provide only
-# applications for official BOINC platforms.
-# See http://boinc.berkeley.edu/trac/wiki/BoincPlatforms for the list of
-# official BOINC platforms.
-
-# change BOINC platform i486-pc-linux-gnu to i686-pc-linux-gnu 
+# On some architectures it is required to change the BOINC platform of the
+# core client (with the --with-boinc-platform configure option) to match the
+# official BOINC platform, otherwise it would not download any applications,
+# because projects mostly provide applications for official BOINC platforms
+# only. See http://boinc.berkeley.edu/trac/wiki/BoincPlatforms for the list
+# of official BOINC platforms.
+
+# Change BOINC platform alpha-unknown-linux-gnu to alpha-hp-linux-gnu and
+# declare alpha-unknown-linux-gnu as alternate platform, because some projects
+# offer applications for it.
+ifeq ($(DEB_HOST_GNU_TYPE), alpha-linux-gnu)
+  TYPE_FLAGS += --with-boinc-platform=alpha-hp-linux-gnu \
+    --with-boinc-alt-platform=alpha-unknown-linux-gnu
+endif
+
+# Change BOINC platform i486-pc-linux-gnu to i686-pc-linux-gnu.
 ifeq ($(DEB_HOST_GNU_TYPE), i486-linux-gnu)
   TYPE_FLAGS += --with-boinc-platform=i686-pc-linux-gnu
 endif
 
-# change BOINC platform i486-pc-kfreebsd-gnu to i686-pc-kfreebsd-gnu to be
-# consistent with the official BOINC platform i686-pc-linux-gnu
+# Change BOINC platform i486-pc-kfreebsd-gnu to i686-pc-kfreebsd-gnu to be
+# consistent with the official BOINC platform i686-pc-linux-gnu.
 ifeq ($(DEB_HOST_GNU_TYPE), i486-kfreebsd-gnu)
   TYPE_FLAGS += --with-boinc-platform=i686-pc-kfreebsd-gnu
 endif
 
-# change BOINC platform powerpc-unknown-linux-gnu to powerpc-linux-gnu
+# Change BOINC platform ia64-unknown-linux-gnu to ia64-linux-gnu.
+ifeq ($(DEB_HOST_GNU_TYPE), ia64-linux-gnu)
+  TYPE_FLAGS += --with-boinc-platform=ia64-linux-gnu
+endif
+
+# Change BOINC platform powerpc-unknown-linux-gnu to powerpc-linux-gnu.
 ifeq ($(DEB_HOST_GNU_TYPE), powerpc-linux-gnu)
   TYPE_FLAGS += --with-boinc-platform=powerpc-linux-gnu
 endif
 
-# change BOINC platform powerpc64-unknown-linux-gnu to ppc64-linux-gnu and
-# declare powerpc-unknown-linux-gnu as alternate platform
+# Change BOINC platform powerpc64-unknown-linux-gnu to ppc64-linux-gnu and
+# declare powerpc-linux-gnu as alternate platform.
 ifeq ($(DEB_HOST_GNU_TYPE), powerpc64-linux-gnu)
   TYPE_FLAGS += --with-boinc-platform=ppc64-linux-gnu \
     --with-boinc-alt-platform=powerpc-linux-gnu
 endif
 
-# declare i686-pc-kfreebsd-gnu as alternate BOINC platform for
-# x86_64-pc-kfreebsd-gnu
+# Change BOINC platform sparc-unknown-linux-gnu to sparc-sun-linux-gnu.
+ifeq ($(DEB_HOST_GNU_TYPE), sparc-linux-gnu)
+  TYPE_FLAGS += --with-boinc-platform=sparc-sun-linux-gnu
+endif
+
+# Declare i686-pc-kfreebsd-gnu as alternate platform for
+# x86_64-pc-kfreebsd-gnu.
 ifeq ($(DEB_HOST_GNU_TYPE), x86_64-kfreebsd-gnu)
   TYPE_FLAGS += --with-boinc-alt-platform=i686-pc-kfreebsd-gnu
 endif




More information about the pkg-boinc-commits mailing list