You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(202) |
Nov
(201) |
Dec
(280) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(493) |
Feb
(106) |
Mar
(215) |
Apr
(163) |
May
(79) |
Jun
(193) |
Jul
(47) |
Aug
(71) |
Sep
(127) |
Oct
(41) |
Nov
(49) |
Dec
(120) |
2005 |
Jan
(147) |
Feb
(45) |
Mar
(26) |
Apr
(71) |
May
(52) |
Jun
(28) |
Jul
(92) |
Aug
(50) |
Sep
(35) |
Oct
(193) |
Nov
(106) |
Dec
(52) |
2006 |
Jan
(51) |
Feb
(38) |
Mar
(33) |
Apr
(79) |
May
(107) |
Jun
(67) |
Jul
(21) |
Aug
(65) |
Sep
(44) |
Oct
(87) |
Nov
(12) |
Dec
(56) |
2007 |
Jan
(48) |
Feb
(58) |
Mar
(63) |
Apr
(31) |
May
(25) |
Jun
(20) |
Jul
(72) |
Aug
(54) |
Sep
(30) |
Oct
(76) |
Nov
(74) |
Dec
(25) |
2008 |
Jan
(39) |
Feb
(39) |
Mar
(62) |
Apr
(64) |
May
(59) |
Jun
(31) |
Jul
(25) |
Aug
(25) |
Sep
(17) |
Oct
(24) |
Nov
|
Dec
(1) |
2009 |
Jan
(60) |
Feb
(39) |
Mar
(16) |
Apr
(30) |
May
(52) |
Jun
(35) |
Jul
(15) |
Aug
(15) |
Sep
(21) |
Oct
(32) |
Nov
(39) |
Dec
(52) |
2010 |
Jan
(42) |
Feb
(40) |
Mar
(23) |
Apr
(20) |
May
(27) |
Jun
(10) |
Jul
(30) |
Aug
(30) |
Sep
(66) |
Oct
(12) |
Nov
(35) |
Dec
(60) |
2011 |
Jan
(16) |
Feb
(1) |
Mar
(3) |
Apr
(28) |
May
(21) |
Jun
|
Jul
(12) |
Aug
(6) |
Sep
(10) |
Oct
(14) |
Nov
(40) |
Dec
(60) |
2012 |
Jan
(23) |
Feb
(17) |
Mar
(24) |
Apr
(18) |
May
(13) |
Jun
(1) |
Jul
|
Aug
(5) |
Sep
|
Oct
(5) |
Nov
(5) |
Dec
(15) |
2013 |
Jan
(2) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
(3) |
Jul
|
Aug
(3) |
Sep
(5) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2014 |
Jan
(3) |
Feb
(5) |
Mar
(8) |
Apr
(3) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
|
Sep
(4) |
Oct
(10) |
Nov
|
Dec
(9) |
2015 |
Jan
(18) |
Feb
(17) |
Mar
(5) |
Apr
(2) |
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
(24) |
Nov
(20) |
Dec
(41) |
2016 |
Jan
(9) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(8) |
Jun
(1) |
Jul
(6) |
Aug
(5) |
Sep
(2) |
Oct
(6) |
Nov
(1) |
Dec
(6) |
2017 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
(4) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <smi...@us...> - 2003-11-15 01:52:09
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv806/scripts Modified Files: bridge-utils Added Files: ebtables Log Message: added ebtables and removed old bridge-netfilter patch --- NEW FILE: ebtables --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/ebtables,v $ # $Revision: 1.1 $ # $Date: 2003/11/15 01:52:06 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: ebtables # Required-Start: $basebuildtools $libs # Required-Stop: # Default-Start: 1 2 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions MYNAME=BRIDGE_UTILS case $1 in build ) if [ "$CONFIG_EBTABLES" = "y" ]; then FLAGS="-Wall -Wunused" if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then FLAGS="$FLAGS -fno-stack-protector" fi make MANDIR=/usr/share/man CFLAGS="$FLAGS" $PMAKE all|| exit 1 strip_debug KERNELDIR=$(find_src_dir linux) zcat $DL_DIR/src/ebtables-brnf-*.diff.gz | patch -p 1 -d $KERNELDIR || exit 1 # update kernel config for CFG in $( grep dep_tristate $KERNELDIR/net/bridge/netfilter/Config.in | cut -d "'" -f 3 | cut -d " " -f 2 ); do echo "$CFG=m" >> $KERNELDIR/.config done for CFG in $( grep bool $KERNELDIR/net/bridge/netfilter/Config.in | cut -d "'" -f 3 | cut -d " " -f 2 ); do echo "$CFG=y" >> $KERNELDIR/.config done echo "CONFIG_IP_NF_MATCH_PHYSDEV=m" >> $KERNELDIR/.config fi ;; install ) if [ "$CONFIG_EBTABLES" = "y" ]; then make install MANDIR=$CDDIR/usr/share/man ETHERTYPESPATH=$ETCDIR/etc BINPATH=$CDDIR/sbin/ || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac Index: bridge-utils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bridge-utils,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- bridge-utils 13 Oct 2003 17:36:07 -0000 1.12 +++ bridge-utils 15 Nov 2003 01:52:06 -0000 1.13 @@ -32,14 +32,6 @@ ./configure --prefix=/usr || exit 1 make $PMAKE all|| exit 1 strip_debug - KERNELDIR=$(find_src_dir linux) - if [ "$CONFIG_BRIDGE_NETFILTER" = "y" ]; then - bzcat $DL_DIR/src/bridge-nf-*.diff.bz2 | patch -p 1 -d $KERNELDIR || exit 1 - # update kernel config - echo "CONFIG_BRIDGE_NF=y" >> $KERNELDIR/.config - else - echo "CONFIG_BRIDGE_NF=n" >> $KERNELDIR/.config - fi fi ;; |
From: <smi...@us...> - 2003-11-15 01:52:09
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv806/scripts/config Modified Files: buildorder.conf Log Message: added ebtables and removed old bridge-netfilter patch Index: buildorder.conf =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/buildorder.conf,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- buildorder.conf 18 Oct 2003 18:12:18 -0000 1.6 +++ buildorder.conf 15 Nov 2003 01:52:06 -0000 1.7 @@ -10,4 +10,4 @@ $installmain linux man iptables patch-o-matic e100 e1000 pcmcia-cs vlan iptables ppp ipac-ng wireless_tools coreutils -$kernel linux MOSKRN grsecurity xfsprogs LVM patch-o-matic iptables x509patch bridge-utils freeswan i2c iproute2 lm_sensors watchdog +$kernel linux MOSKRN grsecurity xfsprogs LVM patch-o-matic iptables x509patch freeswan i2c iproute2 lm_sensors watchdog |
From: <smi...@us...> - 2003-11-15 01:52:09
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv806/scripts/configuration Modified Files: bridge-utils.config Added Files: ebtables.config Log Message: added ebtables and removed old bridge-netfilter patch --- NEW FILE: ebtables.config --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/ebtables.config,v $ # $Revision: 1.1 $ # $Date: 2003/11/15 01:52:06 $ # # http://www.devil-linux.org menu_add "Networking|Firewall" bool "ebtables (Ethernet Bridging Tables)" CONFIG_EBTABLES Index: bridge-utils.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/bridge-utils.config,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- bridge-utils.config 2 Oct 2003 15:58:26 -0000 1.2 +++ bridge-utils.config 15 Nov 2003 01:52:06 -0000 1.3 @@ -6,6 +6,3 @@ # http://www.devil-linux.org menu_add "Networking|Firewall" bool "Bridge Utilities" CONFIG_BRIDGE_UTILS -if [ "$CONFIG_BRIDGE_UTILS" = "y" ]; then - menu_add "Networking|Firewall" bool "Bridging Firewall" CONFIG_BRIDGE_NETFILTER -fi |
From: <smi...@us...> - 2003-11-15 01:52:09
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv806 Modified Files: CHANGES Log Message: added ebtables and removed old bridge-netfilter patch Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.565 retrieving revision 1.566 diff -u -d -r1.565 -r1.566 --- CHANGES 14 Nov 2003 01:55:49 -0000 1.565 +++ CHANGES 15 Nov 2003 01:52:05 -0000 1.566 @@ -23,6 +23,9 @@ # 1.1.1 +- updated wget to v1.9.1 +- added ebtables v2.0.6 +- added ebtables patch ebtables-brnf-3_vs_2.4.22.diff - added group users - removed /etc/logrotate.d/logrotate.cron - updated snort to v2.0.4 |
From: <smi...@us...> - 2003-11-14 01:56:55
|
Update of /cvsroot/devil-linux/build/config/etc In directory sc8-pr-cvs1:/tmp/cvs-serv8074/config/etc Modified Files: Tag: rel-1-0-patches group Log Message: added group users Index: group =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/group,v retrieving revision 1.5.2.1 retrieving revision 1.5.2.2 diff -u -d -r1.5.2.1 -r1.5.2.2 --- group 28 Oct 2003 23:14:32 -0000 1.5.2.1 +++ group 14 Nov 2003 01:56:52 -0000 1.5.2.2 @@ -15,4 +15,5 @@ mail:x:14: wheel:x:15: vscan:x:65: +users:x:100: nogroup:x:65534: |
From: <smi...@us...> - 2003-11-14 01:56:55
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv8074 Modified Files: Tag: rel-1-0-patches CHANGES Log Message: added group users Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.33 retrieving revision 1.510.2.34 diff -u -d -r1.510.2.33 -r1.510.2.34 --- CHANGES 14 Nov 2003 00:11:27 -0000 1.510.2.33 +++ CHANGES 14 Nov 2003 01:56:51 -0000 1.510.2.34 @@ -23,6 +23,8 @@ # 1.0.2 +- added group users +- removed /etc/logrotate.d/logrotate.cron - updated snort to v2.0.4 - updated sagator to v20031031 - updated clamav to v0.65 |
From: <smi...@us...> - 2003-11-14 01:55:54
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv7961 Modified Files: CHANGES Log Message: added group users Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.564 retrieving revision 1.565 diff -u -d -r1.564 -r1.565 --- CHANGES 14 Nov 2003 01:53:59 -0000 1.564 +++ CHANGES 14 Nov 2003 01:55:49 -0000 1.565 @@ -23,6 +23,7 @@ # 1.1.1 +- added group users - removed /etc/logrotate.d/logrotate.cron - updated snort to v2.0.4 - updated sagator to v20031031 |
From: <smi...@us...> - 2003-11-14 01:55:54
|
Update of /cvsroot/devil-linux/build/config/etc In directory sc8-pr-cvs1:/tmp/cvs-serv7961/config/etc Modified Files: group Log Message: added group users Index: group =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/group,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- group 20 Sep 2003 17:36:57 -0000 1.5 +++ group 14 Nov 2003 01:55:49 -0000 1.6 @@ -14,4 +14,5 @@ shadow:x:13: mail:x:14: vscan:x:65: +users:x:100: nogroup:x:65534: |
From: <smi...@us...> - 2003-11-14 01:54:31
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7822/scripts Modified Files: Tag: rel-1-0-patches logrotate Log Message: removed /etc/logrotate.d/logrotate.cron Index: logrotate =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/logrotate,v retrieving revision 1.14 retrieving revision 1.14.2.1 diff -u -d -r1.14 -r1.14.2.1 --- logrotate 22 Jul 2003 19:45:11 -0000 1.14 +++ logrotate 14 Nov 2003 01:54:28 -0000 1.14.2.1 @@ -32,7 +32,6 @@ cp -dp logrotate $CDDIR/usr/sbin || exit 1 cp -dp $MYDIR/scripts/logrotate.conf $ETCDIR/etc || exit 1 mkdir -p $ETCDIR/etc/logrotate.d || exit 1 - cp -dp examples/logrotate.cron $ETCDIR/etc/logrotate.d/ || exit 1 cp -dp $MYDIR/scripts/logrotate.conf.* $ETCDIR/etc/logrotate.d/ || exit 1 copy_man fi |
From: <smi...@us...> - 2003-11-14 01:54:05
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv7756 Modified Files: CHANGES Log Message: removed /etc/logrotate.d/logrotate.cron Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.563 retrieving revision 1.564 diff -u -d -r1.563 -r1.564 --- CHANGES 13 Nov 2003 15:43:55 -0000 1.563 +++ CHANGES 14 Nov 2003 01:53:59 -0000 1.564 @@ -23,6 +23,7 @@ # 1.1.1 +- removed /etc/logrotate.d/logrotate.cron - updated snort to v2.0.4 - updated sagator to v20031031 - updated clamav to v0.65 |
From: <smi...@us...> - 2003-11-14 01:54:02
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7756/scripts Modified Files: logrotate Log Message: removed /etc/logrotate.d/logrotate.cron Index: logrotate =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/logrotate,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- logrotate 13 Oct 2003 17:36:08 -0000 1.15 +++ logrotate 14 Nov 2003 01:53:59 -0000 1.16 @@ -44,7 +44,6 @@ cp -dp logrotate $CDDIR/usr/sbin || exit 1 cp -dp $MYDIR/scripts/logrotate.conf $ETCDIR/etc || exit 1 mkdir -p $ETCDIR/etc/logrotate.d || exit 1 - cp -dp examples/logrotate.cron $ETCDIR/etc/logrotate.d/ || exit 1 cp -dp $MYDIR/scripts/logrotate.conf.* $ETCDIR/etc/logrotate.d/ || exit 1 copy_man fi |
From: <smi...@us...> - 2003-11-14 01:49:13
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv7171/scripts/configuration Modified Files: netacct-mysql.config Log Message: changed location in menuconfig Index: netacct-mysql.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/netacct-mysql.config,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- netacct-mysql.config 2 Oct 2003 15:58:26 -0000 1.2 +++ netacct-mysql.config 14 Nov 2003 01:49:09 -0000 1.3 @@ -5,4 +5,4 @@ # # http://www.devil-linux.org -menu_add "Networking|Services" bool "NETACCT-MYSQL" CONFIG_NETACCT +menu_add "Networking|Utilities" bool "NETACCT-MYSQL" CONFIG_NETACCT |
From: <smi...@us...> - 2003-11-14 01:48:35
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv7074/scripts/configuration Modified Files: Tag: rel-1-0-patches netacct-mysql.config Log Message: changed location in menuconfig Index: netacct-mysql.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/netacct-mysql.config,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -u -d -r1.2 -r1.2.2.1 --- netacct-mysql.config 2 Oct 2003 15:58:26 -0000 1.2 +++ netacct-mysql.config 14 Nov 2003 01:48:32 -0000 1.2.2.1 @@ -5,4 +5,4 @@ # # http://www.devil-linux.org -menu_add "Networking|Services" bool "NETACCT-MYSQL" CONFIG_NETACCT +menu_add "Networking|Utilities" bool "NETACCT-MYSQL" CONFIG_NETACCT |
From: <smi...@us...> - 2003-11-14 01:43:30
|
Update of /cvsroot/devil-linux/build/docs/documentation In directory sc8-pr-cvs1:/tmp/cvs-serv6530/docs/documentation Modified Files: documentation.xml Log Message: added information about patching Index: documentation.xml =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/documentation.xml,v retrieving revision 1.48 retrieving revision 1.49 diff -u -d -r1.48 -r1.49 --- documentation.xml 25 Oct 2003 00:22:15 -0000 1.48 +++ documentation.xml 14 Nov 2003 01:43:27 -0000 1.49 @@ -871,6 +871,35 @@ </caution></para> </sect1> <sect1> + <title>Your Modifications & Patches</title> + <para>The Devil-Linux Develop Team and our Users really appreciate when you send in your patches, so they can be included in the next release.</para> + <sect2> + <title>Submitting Patches</title> + <para>Please create a "unified diff" and send it to our mailinglist with the subject <quote>[PATCH] short title</quote>. </para> + <para>Attach the patch file to the email, so that no formatting is lost. Please compress the file if it's more then a few hundret bytes.</para> + <para>Add a (short) description what you patch is doing. </para> + <para>If your patch required the some source package has to be put into the <filename>build/src/</filename> directory, then please write us all the necessary links into the email.</para> + </sect2> + <sect2> + <title>Creating Patches</title> + <para>If you're not familiar with patches, take a look at the <command>man</command> pages of <command>patch</command> and <command>diff</command>.</para> + <itemizedlist> + <listitem> + <para>copy the unchanged <filename>SCRIPT</filename> to <filename>SCRIPT.old</filename> </para> + </listitem> + <listitem> + <para>make your changes</para> + </listitem> + <listitem> + <para>change into the <filename>build</filename> directory</para> + </listitem> + <listitem> + <para>execute: <command>diff -u subdir/SCRIPT.old subdir/SCRIPT > yourpatch.diff</command></para> + </listitem> + </itemizedlist> + </sect2> + </sect1> + <sect1> <title>The Build System</title> <sect2> <title>Directory structure</title> |
From: <smi...@us...> - 2003-11-14 00:11:31
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv23735 Modified Files: Tag: rel-1-0-patches CHANGES Log Message: pppoe now finally get's compiled in Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.32 retrieving revision 1.510.2.33 diff -u -d -r1.510.2.32 -r1.510.2.33 --- CHANGES 13 Nov 2003 15:21:01 -0000 1.510.2.32 +++ CHANGES 14 Nov 2003 00:11:27 -0000 1.510.2.33 @@ -23,6 +23,7 @@ # 1.0.2 +- updated snort to v2.0.4 - updated sagator to v20031031 - updated clamav to v0.65 - updated findutils to v4.1.20 |
From: <smi...@us...> - 2003-11-14 00:11:31
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv23735/scripts Modified Files: Tag: rel-1-0-patches pppoe-patch4 Log Message: pppoe now finally get's compiled in Index: pppoe-patch4 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Attic/pppoe-patch4,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -u -d -r1.7 -r1.7.2.1 --- pppoe-patch4 21 Apr 2003 20:53:40 -0000 1.7 +++ pppoe-patch4 14 Nov 2003 00:11:27 -0000 1.7.2.1 @@ -20,8 +20,8 @@ PPPDIR=$(find_src_dir ppp) PPPOEDIR=$(pwd) pushd $PPPDIR > /dev/null - patch -p0 < $PPPOEDIR/ppp-2.4.1-pppoe.patch4 || exit 1 - pop > /dev/null + patch -p1 < $PPPOEDIR/ppp-2.4.1-pppoe.patch4 || exit 1 + popd > /dev/null fi ;; |
From: <smi...@us...> - 2003-11-13 15:43:59
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv8943 Modified Files: CHANGES Log Message: sw update Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.562 retrieving revision 1.563 diff -u -d -r1.562 -r1.563 --- CHANGES 13 Nov 2003 15:20:43 -0000 1.562 +++ CHANGES 13 Nov 2003 15:43:55 -0000 1.563 @@ -23,6 +23,7 @@ # 1.1.1 +- updated snort to v2.0.4 - updated sagator to v20031031 - updated clamav to v0.65 - added isapnptools v1.26 |
From: <smi...@us...> - 2003-11-13 15:21:05
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv3934/scripts Modified Files: Tag: rel-1-0-patches sagator Log Message: software updates Index: sagator =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/sagator,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -u -d -r1.2 -r1.2.2.1 --- sagator 20 Sep 2003 17:36:58 -0000 1.2 +++ sagator 13 Nov 2003 15:21:01 -0000 1.2.2.1 @@ -30,7 +30,7 @@ rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr/sbin || exit 1 make PYTHONVER=$PYTHONVER install DESTDIR=$WORKDIR/tmp || exit 1 - rm $WORKDIR/tmp/etc/sagator.config || exit 1 + rm $WORKDIR/tmp/etc/sagator.conf || exit 1 mv $WORKDIR/tmp/usr/lib/sagator/config.py $WORKDIR/tmp/etc/sagator.config || exit 1 ln -sf /etc/sagator.config $WORKDIR/tmp/usr/lib/sagator/config.py || exit 1 rm $WORKDIR/tmp/usr/lib/sagator/config.pyc || exit 1 |
From: <smi...@us...> - 2003-11-13 15:21:05
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv3934 Modified Files: Tag: rel-1-0-patches CHANGES Log Message: software updates Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.31 retrieving revision 1.510.2.32 diff -u -d -r1.510.2.31 -r1.510.2.32 --- CHANGES 11 Nov 2003 21:34:18 -0000 1.510.2.31 +++ CHANGES 13 Nov 2003 15:21:01 -0000 1.510.2.32 @@ -23,6 +23,8 @@ # 1.0.2 +- updated sagator to v20031031 +- updated clamav to v0.65 - updated findutils to v4.1.20 - added isapnptools v1.26 - locate uses now correct directory /var/locatedb |
From: <smi...@us...> - 2003-11-13 15:20:47
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv3805 Modified Files: CHANGES Log Message: software updates Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.561 retrieving revision 1.562 diff -u -d -r1.561 -r1.562 --- CHANGES 10 Nov 2003 23:33:43 -0000 1.561 +++ CHANGES 13 Nov 2003 15:20:43 -0000 1.562 @@ -23,6 +23,8 @@ # 1.1.1 +- updated sagator to v20031031 +- updated clamav to v0.65 - added isapnptools v1.26 - locate uses now correct directory /var/locatedb - initrd scripts now use devfs device names |
From: <smi...@us...> - 2003-11-13 15:20:47
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv3805/scripts Modified Files: sagator Log Message: software updates Index: sagator =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/sagator,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- sagator 18 Oct 2003 13:49:59 -0000 1.4 +++ sagator 13 Nov 2003 15:20:43 -0000 1.5 @@ -42,7 +42,7 @@ rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr/sbin || exit 1 make PYTHONVER=$PYTHONVER install DESTDIR=$WORKDIR/tmp || exit 1 - rm $WORKDIR/tmp/etc/sagator.config || exit 1 + rm $WORKDIR/tmp/etc/sagator.conf || exit 1 mv $WORKDIR/tmp/usr/lib/sagator/config.py $WORKDIR/tmp/etc/sagator.config || exit 1 ln -sf /etc/sagator.config $WORKDIR/tmp/usr/lib/sagator/config.py || exit 1 rm $WORKDIR/tmp/usr/lib/sagator/config.pyc || exit 1 |
From: <smi...@us...> - 2003-11-12 13:18:43
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv2724 Added Files: Tag: rel-1-0-patches isapnptools Log Message: added missing script --- NEW FILE: isapnptools --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/isapnptools,v $ # $Revision: 1.1.2.1 $ # $Date: 2003/11/12 13:18:18 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: isapnptools # Required-Start: $basebuildtools $libs # Required-Stop: # Default-Start: 1 2 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions MYNAME=ISAPNPTOOLS case $1 in build ) if [ "$CONFIG_ISAPNPTOOLS" = "y" ]; then ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc || exit 1 make $PMAKE all || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_ISAPNPTOOLS" = "y" ]; then rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr/ || exit 1 make install DESTDIR=$WORKDIR/tmp || exit 1 copy_docs $WORKDIR/tmp cp -dpR $WORKDIR/tmp/usr/sbin/* $CDDIR/usr/sbin/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: <smi...@us...> - 2003-11-11 21:34:23
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv5606 Modified Files: Tag: rel-1-0-patches CHANGES Log Message: updated findutils to v4.1.20 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.30 retrieving revision 1.510.2.31 diff -u -d -r1.510.2.30 -r1.510.2.31 --- CHANGES 10 Nov 2003 23:58:47 -0000 1.510.2.30 +++ CHANGES 11 Nov 2003 21:34:18 -0000 1.510.2.31 @@ -23,6 +23,7 @@ # 1.0.2 +- updated findutils to v4.1.20 - added isapnptools v1.26 - locate uses now correct directory /var/locatedb - ISAPNP support is now directly on kernel (no more module) |
From: <smi...@us...> - 2003-11-11 21:34:21
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv5606/scripts Modified Files: Tag: rel-1-0-patches findutils Log Message: updated findutils to v4.1.20 Index: findutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/findutils,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -u -d -r1.6.2.1 -r1.6.2.2 --- findutils 9 Nov 2003 18:48:12 -0000 1.6.2.1 +++ findutils 11 Nov 2003 21:34:18 -0000 1.6.2.2 @@ -14,7 +14,6 @@ case $1 in build ) - bzcat $DL_DIR/src/findutils-*patch.bz2 | patch -p1 || exit 1 ./configure --prefix=/usr --disable-nls --localstatedir=/var --sysconfdir=/etc || exit 1 make $PMAKE all || exit 1 strip_debug |
From: <smi...@us...> - 2003-11-11 00:17:57
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv24750/scripts Modified Files: alsa-driver Log Message: don't compile modules with stack smashing protector Index: alsa-driver =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/alsa-driver,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- alsa-driver 7 Nov 2003 18:39:43 -0000 1.4 +++ alsa-driver 11 Nov 2003 00:17:54 -0000 1.5 @@ -20,15 +20,21 @@ source $MYDIR/settings source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) +KERNELDIR=$(find_src_dir linux) MYNAME=ALSA-DRIVER case $1 in build ) if [ "$CONFIG_ALSA" = "y" ]; then - ./configure --with-isa-pnp=yes --with-oss=yes --with-sequencer=yes --with-cards=all --with-kernel=$KERNELDIR --with-moddir=$CDDIR/lib/modules/$KERNELVERSION/misc --sysconfdir=$ETCDIR || exit 1 - make $PMAKE || exit 1 + ./configure --with-isa-pnp=yes --with-oss=yes --with-sequencer=yes --with-cards=all --with-kernel=$KERNELDIR \ + --with-moddir=$CDDIR/lib/modules/$KERNELVERSION/misc --sysconfdir=$ETCDIR || exit 1 + FLAGS="" + if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then + FLAGS="CFLAGS_KERNEL=-fno-stack-protector" + fi + + make $PMAKE $FLAGS || exit 1 strip_debug fi ;; |