Re: SPECS: BitTorrent.spec - up to 4.1.7

2005-11-04 Thread Andrzej Krzysztofowicz
aredridel wrote:
 -mv -f $RPM_BUILD_ROOT%{_datadir}/locale/he{_IL,}

Why?

-- 
===
  Andrzej M. Krzysztofowicz   [EMAIL PROTECTED]
  phone (48)(58) 347 14 61
Faculty of Applied Phys.  Math.,   Gdansk University of Technology
___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


Re: SPECS: BitTorrent.spec - up to 4.1.7

2005-11-04 Thread Andrzej Krzysztofowicz
Andrzej Krzysztofowicz wrote:
 
 aredridel wrote:
  -mv -f $RPM_BUILD_ROOT%{_datadir}/locale/he{_IL,}
 
 Why?

Oh, I see... will fix it.

-- 
===
  Andrzej M. Krzysztofowicz   [EMAIL PROTECTED]
  phone (48)(58) 347 14 61
Faculty of Applied Phys.  Math.,   Gdansk University of Technology
___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


[OTAnn] Groups:New Developments at Roomity

2005-11-04 Thread shenanigans
I was interested in getting feedback from current communities of Roomity.com and let you know the recent improvements we are working on for better interface.Roomity.com v 1.5 is a web 2.01/RiA poster child community webapp. This new version adds broadcast video, social networking such as favorite authors and html editor.Its likely already you have groups and content you are already using but aggregated and safer, including technology, Java, etc., but it only works on broadband.S.*This is not spam! I work for Roomity and are trying to find better ways to enhance our members' experience.--Broadband interface (RIA) + mail box saftey = PLD_Developers_List_(English).roomity.com*Your* clubs, no sign up to read, ad supported; try broadband internet. ~~1131143145495~~--___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


shaperd.2.spec

2005-11-04 Thread Jan Palus
Few patches to shaperd.2:
- updated to the latest snap
- changed versioning scheme to enable updates (DDMMYY-YYMMDD)
- passing and respecting CC and CFLAGS by make
- fixed bug causing random crashes of shaperd (uninitialized var) -
  should be fixed in next realese.

Please review the patches and if good enough add them. Thanks.

-- 
atler
Index: shaperd.2.spec
===
RCS file: /cvsroot/SPECS/shaperd.2.spec,v
retrieving revision 1.28.2.1
diff -u -r1.28.2.1 shaperd.2.spec
--- shaperd.2.spec  27 Jun 2005 14:46:58 -  1.28.2.1
+++ shaperd.2.spec  29 Oct 2005 12:44:36 -
@@ -2,8 +2,8 @@
 Summary:   Shaperd - bandwidth limiting
 Summary(pl):   Shaperd - dzielenie łącza
 Name:  shaperd.2
-%definesnap060505
-Version:   2.24
+%definesnap050805
+Version:   2.25
 Release:   0.%{snap}.1
 License:   GPL
 Group: Networking/Admin
@@ -11,11 +11,13 @@
 # Changed source to decrease traffic at republika.pl
 #Source0:  http://www.cbq.trzepak.net/prg/%{name}.%{version}.tar.gz
 Source0:   http://www.cbq.trzepak.net/prg/shaperd_snapshot.tar.gz
-# Source0-md5: 5695ba2968d40fd7045eb5859f31597f
+# Source0-md5: 94ab3a29a74c97ad830a4cb3a581dc8f
 Source1:   %{name}.init
 Source2:   %{name}.conf
 Patch0:%{name}-fhs.patch
 Patch1:%{name}-iptables_path.patch
+Patch2:%{name}-makefile.patch
+Patch3:%{name}-crash_fix.patch
 #URL:  http://sp9wun.republika.pl/linux/shaperd_cbq.html
 URL:   http://www.cbq.trzepak.net/linux/shaperd_cbq.html
 PreReq:rc-scripts
@@ -55,13 +57,13 @@
 %setup -q -n shaperd
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
+%patch3 -p1
 
 %build
-%{__make}
-
-#{__make} \
-#CC=%{__cc} \
-#CFLAGS=%{rpmcflags} -Wall
+%{__make} \
+   CC=%{__cc} \
+   CFLAGS=%{rpmcflags} -Wall
 
 %install
 rm -rf $RPM_BUILD_ROOT
diff -Nur shaperd.old/Makefile shaperd/Makefile
--- shaperd.old/Makefile2005-10-29 13:47:51.0 +0200
+++ shaperd/Makefile2005-10-29 14:52:22.0 +0200
@@ -10,7 +10,9 @@
 
 MAKE=make
 INSTALL=install
-SYS_CC=gcc
+ifndef $(CC)
+   CC=gcc
+endif
 
 All: sources
 
diff -Nur shaperd.old/src/Makefile shaperd/src/Makefile
--- shaperd.old/src/Makefile2005-10-29 13:47:51.0 +0200
+++ shaperd/src/Makefile2005-10-29 14:52:38.0 +0200
@@ -13,24 +13,28 @@
 
 CFLAGS += -Wall
 
-CC = $(SYS_CC) $(DEFINES)
-
 shaperd: $(OBJS)
 
 shaperd.o: shaperd.c shaperd.h
+   $(CC) $(CFLAGS) $(DEFINES) -c $
 
 shaperd_old.o: shaperd_old.c shaperd_config.h shaperd_old.h read_config.h 
read_iplist.h firewall.h
-   $(CC) -c shaperd_old.c
+   $(CC) $(CFLAGS) $(DEFINES) -c $
 
 read_config.o: read_config.c read_config.h read_iplist.h firewall.h 
shaperd_old.h
+   $(CC) $(CFLAGS) $(DEFINES) -c $
 
 read_iplist.o: read_iplist.c read_iplist.h firewall.h shaperd_old.h
+   $(CC) $(CFLAGS) $(DEFINES) -c $
 
 firewall.o:firewall.c shaperd_config.h shaperd_old.h read_iplist.h
+   $(CC) $(CFLAGS) $(DEFINES) -c $
 
 shaperd_cmdline.o: shaperd_cmdline.c shaperd_config.h shaperd.h
+   $(CC) $(CFLAGS) $(DEFINES) -c $
 
 shaperd_helpers.o: shaperd_helpers.c
+   $(CC) $(CFLAGS) $(DEFINES) -c $
 
 clean-all: 
rm -f $(OBJS) 
--- shaperd/src/shaperd_old.c.orig  2005-10-29 14:38:34.0 +0200
+++ shaperd/src/shaperd_old.c   2005-10-29 14:38:40.0 +0200
@@ -3150,7 +3150,7 @@
 intf1,m,n;
 struct stat stbuf;
 unsigned long int  cnt1,cnt2;
-unsigned long int  dd1,dd2,dd3,dd4;
+unsigned long int  dd1,dd2 = 0,dd3,dd4;
 char   aa[12][20];
 char   *src;
 char   buf[30];
___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


Re: lstat.spec

2005-11-04 Thread Jan Palus
 - disabled building lstat with mod_perl1 support (with mod_perl1 live
   graphs are not generated for me)

Sorry, one more Req missing for apache1 build: apache1-mod_cgi.
___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


Re: lstat.spec

2005-11-04 Thread Adam Gołębiowski
On Fri, Nov 04, 2005 at 11:41:57PM +0100, Arkadiusz Miskiewicz wrote:
 On Friday 04 of November 2005 23:33, Jan Palus wrote:
  I attached some patches to lstat.spec:
 
 Well, I say +1 for giving cvs rw access.

+1, and if he gets one more +1 let him commit his stuff.

-- 
http://www.mysza.eu.org/ | Everybody needs someone sure, someone true,
   PLD Linux developer   | Everybody needs some solid rock, I know I do.
___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en


Re: lstat.spec

2005-11-04 Thread Elan Ruusamäe
On Saturday 05 November 2005 00:42, Jan Palus wrote:
  - disabled building lstat with mod_perl1 support (with mod_perl1 live
graphs are not generated for me)

 Sorry, one more Req missing for apache1 build: apache1-mod_cgi.
hmm

please read
http://cvs.pld-linux.org/cgi-bin/cvsweb/PLD-doc/devel-hints-en.txt

and try to make the package apache version independant.

-- 
glen
___
pld-devel-en mailing list
pld-devel-en@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-devel-en