mpagano     15/05/14 19:26:29

  Modified:             ChangeLog kernel-2.eclass
  Log:
  Add back the deblob script functionality to the eclass.

Revision  Changes    Path
1.1615               eclass/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1615&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1615&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1614&r2=1.1615

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1614
retrieving revision 1.1615
diff -u -r1.1614 -r1.1615
--- ChangeLog   12 May 2015 15:15:31 -0000      1.1614
+++ ChangeLog   14 May 2015 19:26:29 -0000      1.1615
@@ -1,6 +1,9 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1614 2015/05/12 
15:15:31 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1615 2015/05/14 
19:26:29 mpagano Exp $
+
+  14 May 2015; Mike Pagano <[email protected]> kernel-2.eclass:
+  Add back the deblob script functionality to the eclass.
 
   12 May 2015; Bernard Cafarelli <[email protected]> webapp.eclass:
   Drop elog in webapp_serverowned, discussed with blueness in bug #542024



1.304                eclass/kernel-2.eclass

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/kernel-2.eclass?rev=1.304&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/kernel-2.eclass?rev=1.304&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/kernel-2.eclass?r1=1.303&r2=1.304

Index: kernel-2.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v
retrieving revision 1.303
retrieving revision 1.304
diff -u -r1.303 -r1.304
--- kernel-2.eclass     29 Apr 2015 00:07:30 -0000      1.303
+++ kernel-2.eclass     14 May 2015 19:26:29 -0000      1.304
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.303 2015/04/29 
00:07:30 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.304 2015/05/14 
19:26:29 mpagano Exp $
 
 # Description: kernel.eclass rewrite for a clean base regarding the 2.6
 #              series of kernel with back-compatibility for 2.4
@@ -56,6 +56,8 @@
 # K_DEBLOB_AVAILABLE   - A value of "0" will disable all of the optional deblob
 #                                                code. If empty, will be set 
to "1" if deblobbing is
 #                                                possible. Test ONLY for "1".
+# K_DEBLOB_TAG                 - This will be the version of deblob script. 
It's a upstream SVN tag
+#                                                such asw -gnu or -gnu1. 
 # K_PREDEBLOBBED               - This kernel was already deblobbed elsewhere.
 #                                                If false, either optional 
deblobbing will be available
 #                                                or the license will note the 
inclusion of freedist
@@ -476,15 +478,18 @@
                                DEBLOB_PV="${KV_MAJOR}.${KV_MINOR}"
                        fi
 
+                       # deblob svn tag, default is -gnu, to change, use 
K_DEBLOB_TAG in ebuild
+                       K_DEBLOB_TAG=${K_DEBLOB_TAG:--gnu}
                        DEBLOB_A="deblob-${DEBLOB_PV}"
                        DEBLOB_CHECK_A="deblob-check-${DEBLOB_PV}"
-                       
DEBLOB_HOMEPAGE="http://www.fsfla.org/svnwiki/selibre/linux-libre/";
-                       
DEBLOB_URI_PATH="download/releases/LATEST-${DEBLOB_PV}.N"
+                       
DEBLOB_HOMEPAGE="http://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags";
+                       DEBLOB_URI_PATH="${DEBLOB_PV}${K_DEBLOB_TAG}"
                        if ! has "${EAPI:-0}" 0 1 ; then
                                
DEBLOB_CHECK_URI="${DEBLOB_HOMEPAGE}/${DEBLOB_URI_PATH}/deblob-check -> 
${DEBLOB_CHECK_A}"
                        else
                                
DEBLOB_CHECK_URI="mirror://gentoo/${DEBLOB_CHECK_A}"
                        fi
+
                        
DEBLOB_URI="${DEBLOB_HOMEPAGE}/${DEBLOB_URI_PATH}/${DEBLOB_A}"
                        HOMEPAGE="${HOMEPAGE} ${DEBLOB_HOMEPAGE}"
 




Reply via email to