Various patches

View: New views
5 Messages — Rating Filter:   Alert me  

Various patches

by Thomas Jourdan-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi

Here you are my first set of patches for T2. Here's the list :

l7-filter_update.patch : update l7-filter to latest version
libidl_native_stage.patch : enable libidl at native stage, this is
needed for orbit2
loop-aes_update.patch : update loop-aes to latest version
mesa_use_correct_linker.patch : the build of some gallium drivers uses
host gcc for linking instead of cross gcc
pcsc-lite_disable_hal.patch : disable hal during configure if hal
package is not installed (this is the case when cross building)
uclibc_svn_libm.patch.powerpc : fix a linking issue on powerpc
xslt_fix_libxml.patch : specify correct libxml during configure
zile_update.patch : update zile to the latest package

This is the first time I send patch to this project. Is there any
specific  signed-off, review / testing and acknowledge procedure ?

Regards,
Thomas

[l7-filter_update.desc]

Index: package/network/l7-filter/l7-filter.desc
===================================================================
--- package/network/l7-filter/l7-filter.desc (révision 34062)
+++ package/network/l7-filter/l7-filter.desc (copie de travail)
@@ -33,8 +33,8 @@
 
 [L] GPL
 [S] Stable
-[V] 2.20
+[V] 2.22
 [P] X -----5---9 800.000
 
-[D] 3830160358 l7-protocols-2008-04-23.tar.gz http://dl.sourceforge.net/sourceforge/l7-filter/
-[D] 2115960051 netfilter-layer7-v2.20.tar.gz http://dl.sourceforge.net/sourceforge/l7-filter/
+[D] X l7-protocols-2009-05-28.tar.gz http://dl.sourceforge.net/sourceforge/l7-filter/
+[D] X netfilter-layer7-v2.22.tar.gz http://dl.sourceforge.net/sourceforge/l7-filter/


[libidl_native_stage.patch]

Index: package/gnome2/libidl/libidl.desc
===================================================================
--- package/gnome2/libidl/libidl.desc (révision 34062)
+++ package/gnome2/libidl/libidl.desc (copie de travail)
@@ -29,7 +29,7 @@
 [L] LGPL
 [S] Beta
 [V] 0.8.13
-[P] X -----5---9 139.300
+[P] X 0----5---9 139.300
 
 [O] . $base/package/*/*/gnome2-conf.in
 


[loop-aes_update.patch]

Index: package/security/loop-aes/loop-aes.desc
===================================================================
--- package/security/loop-aes/loop-aes.desc (révision 34062)
+++ package/security/loop-aes/loop-aes.desc (copie de travail)
@@ -28,9 +28,9 @@
 
 [L] GPL
 [S] Stable
-[V] 3.2d
+[V] 3.2g
 [P] X -----5---9 106.100
 
 [D] 2743297180 aespipe-v2.3e.tar.bz2 http://loop-aes.sourceforge.net/aespipe/
-[D] 534163454 loop-AES-v3.2d.tar.bz2 http://loop-aes.sourceforge.net/loop-AES/
+[D] 3658232006 loop-AES-v3.2g.tar.bz2 http://loop-aes.sourceforge.net/loop-AES/
 [D] 3841084040 ciphers-v3.0e.tar.bz2 http://loop-aes.sourceforge.net/ciphers/


[mesa_use_correct_linker.patch]

--- Mesa-7.5/src/gallium/winsys/drm/Makefile.template.vanilla 2009-08-23 15:33:16.000000000 +0200
+++ Mesa-7.5/src/gallium/winsys/drm/Makefile.template 2009-08-23 15:35:32.000000000 +0200
@@ -82,5 +82,5 @@
 default: depend symlinks $(TOP)/$(LIB_DIR)/gallium/$(LIBNAME)
 
 $(LIBNAME): $(OBJECTS) $(MESA_MODULES) $(PIPE_DRIVERS) $(WINOBJ) Makefile $(TOP)/src/mesa/drivers/dri/Makefile.template
- $(MKLIB) -noprefix -o $@ \
+ $(MKLIB) -linker '$(CC)' -noprefix -o $@ \
  $(OBJECTS) $(PIPE_DRIVERS) $(MESA_MODULES)  $(WINOBJ) $(DRI_LIB_DEPS) $(DRIVER_EXTRAS)



[pcsc-lite_disable_hal.patch]

Index: package/security/pcsc-lite/pcsc-lite.conf
===================================================================
--- package/security/pcsc-lite/pcsc-lite.conf (révision 34062)
+++ package/security/pcsc-lite/pcsc-lite.conf (copie de travail)
@@ -13,6 +13,8 @@
 # GNU General Public License can be found in the file COPYING.
 # --- T2-COPYRIGHT-NOTE-END ---
 
+pkginstalled hal || var_append extraconfopt ' ' --disable-libhal
+
 post_pcsc() {
    # mkdir -p /usr/local/pcsc/drivers
 


[uclibc_svn_libm.patch.powerpc]

diff -uNr uClibc-0.9.30.org/libm/ldouble_wrappers.c uClibc-0.9.30/libm/ldouble_wrappers.c
--- uClibc-0.9.30.org/libm/ldouble_wrappers.c 2009-01-19 18:21:40.000000000 +0100
+++ uClibc-0.9.30/libm/ldouble_wrappers.c 2009-01-19 18:23:00.000000000 +0100
@@ -544,7 +544,6 @@
 {
  return __fpclassify ( (double) x );
 }
-libm_hidden_def(__fpclassifyl)
 #endif
 
 #ifdef L_finitel
@@ -552,7 +551,6 @@
 {
  return __finite ( (double)x );
 }
-libm_hidden_def(__finitel)
 #endif
 
 #ifdef L_signbitl
@@ -560,7 +558,6 @@
 {
  return __signbitl ( (double)x );
 }
-libm_hidden_def(__signbitl)
 #endif
 
 #ifdef L_isnanl
@@ -568,7 +565,6 @@
 {
  return __isnan ( (double)x );
 }
-libm_hidden_def(__isnanl)
 #endif
 
 #ifdef L_isinfl
@@ -576,7 +572,6 @@
 {
  return __isinf ( (double)x );
 }
-libm_hidden_def(__isinfl)
 #endif
 
 #endif


[xslt_fix_libxml.patch]

Index: package/textproc/libxslt/libxslt.conf
===================================================================
--- package/textproc/libxslt/libxslt.conf (révision 34062)
+++ package/textproc/libxslt/libxslt.conf (copie de travail)
@@ -20,5 +20,7 @@
  var_append extraconfopt ' ' --without-crypto
 fi
 
+var_append extraconfopt ' ' --with-libxml-prefix=$root/`pkgprefix prefix libxml`
+
 # now this is a mess, and of course not honoring it's own configure opts, ...
 var_append makeinstopt ' ' "DOC_MODULE=$pkg EXAMPLE_DIR=$docdir/examples DOCS_DIR=$docdir"


[zile_update.patch]

Index: package/editors/zile/zile.desc
===================================================================
--- package/editors/zile/zile.desc (révision 34062)
+++ package/editors/zile/zile.desc (copie de travail)
@@ -31,7 +31,7 @@
 
 [L] GPL
 [S] Stable
-[V] 2.3.4
+[V] 2.3.9
 [P] X -----5---9 126.100
 
-[D] 4053838652 zile-2.3.4.tar.gz http://ftp.gnu.org/gnu/zile/
+[D] 597337960 zile-2.3.9.tar.gz http://ftp.gnu.org/gnu/zile/


-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
lists@... with a subject of: unsubscribe t2

Re: Various patches

by Thomas Jourdan-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I didn't sent the correct l7-filter update patch. This one is the good
one.

Thomas

Le mercredi 26 août 2009 à 21:53 +0200, Thomas Jourdan a écrit :

> Hi
>
> Here you are my first set of patches for T2. Here's the list :
>
> l7-filter_update.patch : update l7-filter to latest version
> libidl_native_stage.patch : enable libidl at native stage, this is
> needed for orbit2
> loop-aes_update.patch : update loop-aes to latest version
> mesa_use_correct_linker.patch : the build of some gallium drivers uses
> host gcc for linking instead of cross gcc
> pcsc-lite_disable_hal.patch : disable hal during configure if hal
> package is not installed (this is the case when cross building)
> uclibc_svn_libm.patch.powerpc : fix a linking issue on powerpc
> xslt_fix_libxml.patch : specify correct libxml during configure
> zile_update.patch : update zile to the latest package
>
> This is the first time I send patch to this project. Is there any
> specific  signed-off, review / testing and acknowledge procedure ?
>
> Regards,
> Thomas

[l7-filter_update.patch]

Index: package/network/l7-filter/l7-filter.desc
===================================================================
--- package/network/l7-filter/l7-filter.desc (révision 34062)
+++ package/network/l7-filter/l7-filter.desc (copie de travail)
@@ -33,8 +33,8 @@
 
 [L] GPL
 [S] Stable
-[V] 2.20
+[V] 2.22
 [P] X -----5---9 800.000
 
-[D] 3830160358 l7-protocols-2008-04-23.tar.gz http://dl.sourceforge.net/sourceforge/l7-filter/
-[D] 2115960051 netfilter-layer7-v2.20.tar.gz http://dl.sourceforge.net/sourceforge/l7-filter/
+[D] 663261763 l7-protocols-2009-05-28.tar.gz http://dl.sourceforge.net/sourceforge/l7-filter/
+[D] 1262243031 netfilter-layer7-v2.22.tar.gz http://dl.sourceforge.net/sourceforge/l7-filter/


-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
lists@... with a subject of: unsubscribe t2

Re: Various patches

by René Rebe :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Thomas,

now that looks like some feedback! We have no specific sign off  
procedure
like in the Linux kernel.

I still have some priority work on my desk, but will go over all the  
list patches
for review and committing (though anyone of the 20+ people with write
access could: Aldas, Michael, ...?).

Greetings,
   René

On 26.08.2009, at 21:57, Thomas Jourdan wrote:

> I didn't sent the correct l7-filter update patch. This one is the good
> one.
>
> Thomas
>
> Le mercredi 26 août 2009 à 21:53 +0200, Thomas Jourdan a écrit :
>> Hi
>>
>> Here you are my first set of patches for T2. Here's the list :
>>
>> l7-filter_update.patch : update l7-filter to latest version
>> libidl_native_stage.patch : enable libidl at native stage, this is
>> needed for orbit2
>> loop-aes_update.patch : update loop-aes to latest version
>> mesa_use_correct_linker.patch : the build of some gallium drivers  
>> uses
>> host gcc for linking instead of cross gcc
>> pcsc-lite_disable_hal.patch : disable hal during configure if hal
>> package is not installed (this is the case when cross building)
>> uclibc_svn_libm.patch.powerpc : fix a linking issue on powerpc
>> xslt_fix_libxml.patch : specify correct libxml during configure
>> zile_update.patch : update zile to the latest package
>>
>> This is the first time I send patch to this project. Is there any
>> specific  signed-off, review / testing and acknowledge procedure ?
>>
>> Regards,
>> Thomas
> <l7-
> filter_update
> .patch>-----------------------------------------------------------
> If you wish to unsubscribe from this mailing, send mail to
> lists@... with a subject of: unsubscribe t2
--
   René Rebe, ExactCODE GmbH, Jaegerstr. 67, DE-10785 Berlin
   DE Legal: Amtsgericht Charlottenburg HRB 105123B, Tax-ID#:  
DE251602478
   Managing Directors: Susanne Klaus, René Rebe
   http://exactcode.de | http://t2-project.org | http://rene.rebe.name


-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
lists@... with a subject of: unsubscribe t2

Re: Various patches

by Aldas Nabazas-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Thomas, René

I will start applying them slowly by tomorrow if nothing major happens here.

Cheers,
Aldas

On Thu, Aug 27, 2009 at 8:52 AM, Rene Rebe <rene@...> wrote:
Hi Thomas,

now that looks like some feedback! We have no specific sign off procedure
like in the Linux kernel.

I still have some priority work on my desk, but will go over all the list patches
for review and committing (though anyone of the 20+ people with write
access could: Aldas, Michael, ...?).

Greetings,
 René


On 26.08.2009, at 21:57, Thomas Jourdan wrote:

I didn't sent the correct l7-filter update patch. This one is the good
one.

Thomas

Le mercredi 26 août 2009 à 21:53 +0200, Thomas Jourdan a écrit :
Hi

Here you are my first set of patches for T2. Here's the list :

l7-filter_update.patch : update l7-filter to latest version
libidl_native_stage.patch : enable libidl at native stage, this is
needed for orbit2
loop-aes_update.patch : update loop-aes to latest version
mesa_use_correct_linker.patch : the build of some gallium drivers uses
host gcc for linking instead of cross gcc
pcsc-lite_disable_hal.patch : disable hal during configure if hal
package is not installed (this is the case when cross building)
uclibc_svn_libm.patch.powerpc : fix a linking issue on powerpc
xslt_fix_libxml.patch : specify correct libxml during configure
zile_update.patch : update zile to the latest package

This is the first time I send patch to this project. Is there any
specific  signed-off, review / testing and acknowledge procedure ?

Regards,
Thomas
<l7-filter_update.patch>-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
lists@... with a subject of: unsubscribe t2

--
 René Rebe, ExactCODE GmbH, Jaegerstr. 67, DE-10785 Berlin
 DE Legal: Amtsgericht Charlottenburg HRB 105123B, Tax-ID#: DE251602478
 Managing Directors: Susanne Klaus, René Rebe
 http://exactcode.de | http://t2-project.org | http://rene.rebe.name


-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
lists@... with a subject of: unsubscribe t2



-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
lists@... with a subject of: unsubscribe t2

Re: Various patches

by Aldas Nabazas-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Thomas,

Thanks for your patches and sorry for taking so long applying them

2009/8/26 Thomas Jourdan <tjourdan@...>
Hi

Here you are my first set of patches for T2. Here's the list :

l7-filter_update.patch : update l7-filter to latest version
Committed revision 34378.
 
libidl_native_stage.patch : enable libidl at native stage, this is
needed for orbit2
I don't think this fully works. I was doing some tests some time ago so I might need to try it again.
I would rather disable orbit2 in stage 0, Rene what you think?
 
loop-aes_update.patch : update loop-aes to latest version
Committed revision r34371 
mesa_use_correct_linker.patch : the build of some gallium drivers uses
host gcc for linking instead of cross gcc
Rediffed for Mesa 7.6
Committed revision  r34375
pcsc-lite_disable_hal.patch : disable hal during configure if hal
package is not installed (this is the case when cross building)
Committed revision  r34373
uclibc_svn_libm.patch.powerpc : fix a linking issue on powerpc
Committed revision r34377
TODO, I need ack from Rene or Michael
xslt_fix_libxml.patch : specify correct libxml during configure
Committed revision  r34372
zile_update.patch : update zile to the latest package
Skiped, we already had newer version :)
 

This is the first time I send patch to this project. Is there any
specific  signed-off, review / testing and acknowledge procedure ?

Regards,
Thomas
 
Thanks,
Aldas


-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
lists@... with a subject of: unsubscribe t2